Fix compile error (#21877)

This commit is contained in:
ellensp 2021-05-12 19:18:44 +12:00 committed by GitHub
parent 0d629c80c7
commit 10a1ff1622
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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; }