Move M18_M84, M85 to cpp

This commit is contained in:
Scott Lahteine
2017-09-16 23:57:09 -05:00
parent a911215b0e
commit 381b17e6a9
6 changed files with 21 additions and 18 deletions

View File

@ -170,8 +170,8 @@ volatile bool wait_for_heatup = true;
#endif
// Inactivity shutdown
static millis_t max_inactive_time = 0;
static millis_t stepper_inactive_time = (DEFAULT_STEPPER_DEACTIVE_TIME) * 1000UL;
millis_t max_inactive_time = 0,
stepper_inactive_time = (DEFAULT_STEPPER_DEACTIVE_TIME) * 1000UL;
#if ENABLED(Z_DUAL_ENDSTOPS)
float z_endstop_adj;
@ -359,10 +359,6 @@ bool pin_is_protected(const int8_t pin) {
return false;
}
#include "gcode/control/M18_M84.h"
#include "gcode/control/M85.h"
#include "gcode/config/M92.h"
#if ENABLED(M100_FREE_MEMORY_WATCHER)