Correct EEPROM read/write disparities. (#12169)

This commit is contained in:
Roman Moravčík
2018-10-21 09:56:31 +02:00
committed by Scott Lahteine
parent 8d3a92fc4a
commit d801f85963
2 changed files with 20 additions and 21 deletions

View File

@@ -26,12 +26,14 @@
#if EXTRUDERS > 1
typedef struct {
float swap_length;
int16_t prime_speed, retract_speed;
#if ENABLED(SINGLENOZZLE_SWAP_PARK)
struct { float x, y; } change_point;
#if ENABLED(SINGLENOZZLE)
float swap_length;
int16_t prime_speed, retract_speed;
#if ENABLED(SINGLENOZZLE_SWAP_PARK)
struct { float x, y; } change_point;
#endif
#endif
float z_raise = TOOLCHANGE_ZRAISE;
float z_raise;
} toolchange_settings_t;
extern toolchange_settings_t toolchange_settings;