mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-08-05 13:03:56 -06:00
Fix compile error (#21877)
This commit is contained in:
parent
0d629c80c7
commit
10a1ff1622
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@
|
|||
* M122: Debug TMC drivers
|
||||
*/
|
||||
void GcodeSuite::M122() {
|
||||
xyze_bool_t print_axis = ARRAY_N_1(NUM_AXIS, false);
|
||||
xyze_bool_t print_axis = ARRAY_N_1(XYZE, false);
|
||||
|
||||
bool print_all = true;
|
||||
LOOP_XYZE(i) if (parser.seen(axis_codes[i])) { print_axis[i] = true; print_all = false; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue