Add HAS_HEATED_BED conditional (#10494)

This commit is contained in:
Scott Lahteine
2018-04-22 23:40:49 -05:00
committed by GitHub
parent 6b50a50676
commit b19d8182c1
12 changed files with 304 additions and 264 deletions

View File

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