|
14 | 14 | from typing_extensions import Callable |
15 | 15 |
|
16 | 16 | from .commands import ( |
17 | | - axes_map_calibration, |
18 | 17 | axes_shaper_calibration, |
19 | 18 | compare_belts_responses, |
20 | 19 | create_vibrations_profile, |
|
37 | 36 | 'EXCITATE_AXIS_AT_FREQ': ( |
38 | 37 | 'Maintain a specified excitation frequency for a period of time to diagnose and locate a source of vibrations' |
39 | 38 | ), |
40 | | - 'AXES_MAP_CALIBRATION': ( |
41 | | - 'Perform a set of movements to measure the orientation of the accelerometer ' |
42 | | - 'and help you set the best axes_map configuration for your printer' |
43 | | - ), |
44 | 39 | 'COMPARE_BELTS_RESPONSES': ( |
45 | 40 | 'Perform a custom half-axis test to analyze and compare the ' |
46 | 41 | 'frequency profiles of individual belts on CoreXY or CoreXZ printers' |
@@ -92,7 +87,6 @@ def _register_commands(self) -> None: |
92 | 87 | gcode = self._printer.lookup_object('gcode') |
93 | 88 | measurement_commands = [ |
94 | 89 | ('EXCITATE_AXIS_AT_FREQ', self.cmd_EXCITATE_AXIS_AT_FREQ, ST_COMMANDS['EXCITATE_AXIS_AT_FREQ']), |
95 | | - ('AXES_MAP_CALIBRATION', self.cmd_AXES_MAP_CALIBRATION, ST_COMMANDS['AXES_MAP_CALIBRATION']), |
96 | 90 | ('COMPARE_BELTS_RESPONSES', self.cmd_COMPARE_BELTS_RESPONSES, ST_COMMANDS['COMPARE_BELTS_RESPONSES']), |
97 | 91 | ('AXES_SHAPER_CALIBRATION', self.cmd_AXES_SHAPER_CALIBRATION, ST_COMMANDS['AXES_SHAPER_CALIBRATION']), |
98 | 92 | ('CREATE_VIBRATIONS_PROFILE', self.cmd_CREATE_VIBRATIONS_PROFILE, ST_COMMANDS['CREATE_VIBRATIONS_PROFILE']), |
@@ -169,9 +163,6 @@ def _cmd_helper(self, gcmd, graph_type: str, cmd_function: Callable) -> None: |
169 | 163 | def cmd_EXCITATE_AXIS_AT_FREQ(self, gcmd) -> None: |
170 | 164 | self._cmd_helper(gcmd, 'static frequency', excitate_axis_at_freq) |
171 | 165 |
|
172 | | - def cmd_AXES_MAP_CALIBRATION(self, gcmd) -> None: |
173 | | - self._cmd_helper(gcmd, 'axes map', axes_map_calibration) |
174 | | - |
175 | 166 | def cmd_COMPARE_BELTS_RESPONSES(self, gcmd) -> None: |
176 | 167 | self._cmd_helper(gcmd, 'belts comparison', compare_belts_responses) |
177 | 168 |
|
|
0 commit comments