Minor patches to POWER_LOSS_RECOVERY

This commit is contained in:
Scott Lahteine
2018-07-02 16:42:13 -05:00
parent 1ea222e6fc
commit 4b2af6ab48
3 changed files with 23 additions and 11 deletions

View File

@@ -40,13 +40,16 @@ typedef struct {
// Machine state
float current_position[NUM_AXIS], feedrate;
int16_t target_temperature[HOTENDS],
fanSpeeds[FAN_COUNT];
int16_t target_temperature[HOTENDS];
#if HAS_HEATED_BED
int16_t target_temperature_bed;
#endif
#if FAN_COUNT
int16_t fanSpeeds[FAN_COUNT];
#endif
#if HAS_LEVELING
bool leveling;
float fade;