Fix for limit pin reporting compile-option
- The limit pin reporting wasn’t working correctly due to calling the wrong similarly-named function. Verified to be working now.
This commit is contained in:
parent
4c20a2173f
commit
f5e7436a02
@ -496,8 +496,8 @@ void report_realtime_status()
|
||||
printPgmString(PSTR(",Lim:"));
|
||||
uint8_t idx;
|
||||
for (idx=0; idx<N_AXIS; idx++) {
|
||||
if (LIMIT_PIN & get_limit_pin_mask(idx)) { printString(PSTR("1")); }
|
||||
else { printString(PSTR("0")); }
|
||||
if (LIMIT_PIN & get_limit_pin_mask(idx)) { printPgmString(PSTR("1")); }
|
||||
else { printPgmString(PSTR("0")); }
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user