mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-18 07:29:33 +00:00
Fix to allow M120/M121
This commit is contained in:
parent
8446c9dc92
commit
c27081aa4a
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ volatile char count_direction[NUM_AXIS] = { 1, 1, 1, 1};
|
||||||
#ifdef ENDSTOPS_ONLY_FOR_HOMING
|
#ifdef ENDSTOPS_ONLY_FOR_HOMING
|
||||||
#define CHECK_ENDSTOPS if(check_endstops)
|
#define CHECK_ENDSTOPS if(check_endstops)
|
||||||
#else
|
#else
|
||||||
#define CHECK_ENDSTOPS
|
#define CHECK_ENDSTOPS if(check_endstops)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// intRes = intIn1 * intIn2 >> 16
|
// intRes = intIn1 * intIn2 >> 16
|
||||||
|
|
Loading…
Reference in a new issue