diff options
author | Dmitry Butyugin <dmbutyugin@google.com> | 2021-04-03 23:45:42 +0200 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2021-04-07 19:05:23 -0400 |
commit | 165d2fc2281798452c3f192b58fd2712e84bf1dd (patch) | |
tree | 95c65b39c4a16dba4748c8fc5fc8065ea00aea11 /klippy/extras/shaper_calibrate.py | |
parent | bf01d6d1f8a95add76e5f8d93e7adf2da8658191 (diff) | |
download | kutter-165d2fc2281798452c3f192b58fd2712e84bf1dd.tar.gz kutter-165d2fc2281798452c3f192b58fd2712e84bf1dd.tar.xz kutter-165d2fc2281798452c3f192b58fd2712e84bf1dd.zip |
resonance_tester: Fixed multi-point resonance testing
Signed-off-by: Dmitry Butyugin <dmbutyugin@google.com>
Diffstat (limited to 'klippy/extras/shaper_calibrate.py')
-rw-r--r-- | klippy/extras/shaper_calibrate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/shaper_calibrate.py b/klippy/extras/shaper_calibrate.py index 71e5e489..3c6065de 100644 --- a/klippy/extras/shaper_calibrate.py +++ b/klippy/extras/shaper_calibrate.py @@ -142,7 +142,7 @@ class CalibrationData: self._psd_map = {'x': self.psd_x, 'y': self.psd_y, 'z': self.psd_z, 'all': self.psd_sum} self.data_sets = 1 - def join(self, other): + def add_data(self, other): np = self.numpy joined_data_sets = self.data_sets + other.data_sets for psd, other_psd in zip(self._psd_list, other._psd_list): |