Browse Source

Tweak eeprom storage type

Scott Lahteine 5 years ago
parent
commit
54a12ee1d6
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/configuration_store.cpp

+ 1
- 1
Marlin/src/module/configuration_store.cpp View File

@@ -1231,7 +1231,7 @@ void MarlinSettings::postprocess() {
1231 1231
       #if HAS_MOTOR_CURRENT_PWM
1232 1232
         EEPROM_WRITE(stepper.motor_current_setting);
1233 1233
       #else
1234
-        const xyz_ulong_t no_current{0};
1234
+        const uint32_t no_current[3] = { 0 };
1235 1235
         EEPROM_WRITE(no_current);
1236 1236
       #endif
1237 1237
     }

Loading…
Cancel
Save