Browse Source

Merge pull request #1425 from clefranc/Development

EEPROM data not aligned
Scott Lahteine 9 years ago
parent
commit
ab1ddcd89d
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      Marlin/ConfigurationStore.cpp

+ 3
- 1
Marlin/ConfigurationStore.cpp View File

@@ -98,6 +98,7 @@ void Config_StoreSettings()
98 98
 		dummy = 0.0f;
99 99
         EEPROM_WRITE_VAR(i,dummy);
100 100
         EEPROM_WRITE_VAR(i,dummy);
101
+        EEPROM_WRITE_VAR(i,dummy);
101 102
 	  }
102 103
 	}
103 104
   #else//PIDTEMP
@@ -106,6 +107,7 @@ void Config_StoreSettings()
106 107
 		dummy = 0.0f;
107 108
     EEPROM_WRITE_VAR(i,dummy);
108 109
     EEPROM_WRITE_VAR(i,dummy);
110
+    EEPROM_WRITE_VAR(i,dummy);
109 111
   #endif//PIDTEMP
110 112
   #ifndef DOGLCD
111 113
     int lcd_contrast = 32;
@@ -269,6 +271,7 @@ SERIAL_ECHOLNPGM("Scaling factors:");
269 271
     SERIAL_ECHOPAIR("   Swap rec. addl. length (mm): ", retract_recover_length_swap);
270 272
     SERIAL_ECHOLN("");
271 273
 #endif//EXTRUDERS > 1
274
+#endif//FWRETRACT
272 275
     SERIAL_ECHO_START;
273 276
     if (volumetric_enabled) {
274 277
         SERIAL_ECHOLNPGM("Filament settings:");
@@ -293,7 +296,6 @@ SERIAL_ECHOLNPGM("Scaling factors:");
293 296
     } else {
294 297
         SERIAL_ECHOLNPGM("Filament settings: Disabled");
295 298
     }
296
-#endif//FWRETRACT
297 299
 #ifdef CUSTOM_M_CODES
298 300
   SERIAL_ECHO_START;
299 301
   SERIAL_ECHOLNPGM("Z-Probe Offset (mm):");

Loading…
Cancel
Save