diff options
author | charminULTRA <jcw122@gmail.com> | 2024-04-29 19:48:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-29 19:48:10 -0400 |
commit | af149b47814c500fb795d7d18df26643bc59412d (patch) | |
tree | 5c80a6b8d6607475f27464f95218f142158d922f | |
parent | d8d072b3759a2b62de37efd4b8811d962a4d7e7c (diff) | |
download | kutter-af149b47814c500fb795d7d18df26643bc59412d.tar.gz kutter-af149b47814c500fb795d7d18df26643bc59412d.tar.xz kutter-af149b47814c500fb795d7d18df26643bc59412d.zip |
docs: Update Measuring_Resonances.md (#6509)
Current command, using the *, results in bad chart output when more than one .csv file exists in the tmp folder. This isn't obvious for people who may not know that the * is a wildcard character.
Signed-off-by: Jonathan Williams <jcw122@gmail.com>
-rw-r--r-- | docs/Measuring_Resonances.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/Measuring_Resonances.md b/docs/Measuring_Resonances.md index c06f17a5..d5f7f54c 100644 --- a/docs/Measuring_Resonances.md +++ b/docs/Measuring_Resonances.md @@ -450,7 +450,11 @@ TEST_RESONANCES AXIS=Y ``` This will generate 2 CSV files (`/tmp/resonances_x_*.csv` and `/tmp/resonances_y_*.csv`). These files can be processed with the stand-alone -script on a Raspberry Pi. To do that, run the following commands: +script on a Raspberry Pi. This script is intended to be run with a single CSV +file for each axis measured, although it can be used with multiple CSV files +if you desire to average the results. Averaging results can be useful, for +example, if resonance tests were done at multiple test points. Delete the extra +CSV files if you do not desire to average them. ``` ~/klipper/scripts/calibrate_shaper.py /tmp/resonances_x_*.csv -o /tmp/shaper_calibrate_x.png ~/klipper/scripts/calibrate_shaper.py /tmp/resonances_y_*.csv -o /tmp/shaper_calibrate_y.png |