Skip to content

Commit

Permalink
Fix compilation with TMC_DEBUG. Add lost parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
DerAndere1 committed Sep 19, 2020
1 parent 1c4ca89 commit 620a17e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/feature/tmc_util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
SERIAL_PRINTLN(data.drv_status, HEX);
if (data.is_ot) SERIAL_ECHOLNPGM("overtemperature");
if (data.is_s2g) SERIAL_ECHOLNPGM("coil short circuit");
TERN_(TMC_DEBUG, tmc_report_all(LIST_N(NON_E_AXES, true, true, true, true, true, true), true);
TERN_(TMC_DEBUG, tmc_report_all(LIST_N(NON_E_AXES, true, true, true, true, true, true), true));
kill(PSTR("Driver error"));
}
#endif
Expand Down

0 comments on commit 620a17e

Please sign in to comment.