Patch EEPROM for 32-bit

This commit is contained in:
Scott Lahteine 2018-01-14 20:53:59 -06:00
parent 734fa91e63
commit 5c6c12dc3a

View File

@ -71,6 +71,8 @@
#include "fwretract.h"
#endif
#pragma pack(push, 1) // No padding between variables
typedef struct PID { float Kp, Ki, Kd; } PID;
typedef struct PIDC { float Kp, Ki, Kd, Kc; } PIDC;
@ -170,9 +172,9 @@ typedef struct SettingsDataStruct {
//
// ULTIPANEL
//
int lcd_preheat_hotend_temp[2], // M145 S0 H
lcd_preheat_bed_temp[2], // M145 S0 B
lcd_preheat_fan_speed[2]; // M145 S0 F
int16_t lcd_preheat_hotend_temp[2], // M145 S0 H
lcd_preheat_bed_temp[2], // M145 S0 B
lcd_preheat_fan_speed[2]; // M145 S0 F
//
// PIDTEMP
@ -247,6 +249,8 @@ typedef struct SettingsDataStruct {
} SettingsData;
#pragma pack(pop)
MarlinSettings settings;
#if ENABLED(AUTO_BED_LEVELING_BILINEAR)