Skip to content

Commit 54a12ee

Browse files
committed
Tweak eeprom storage type
1 parent d6a4c30 commit 54a12ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Marlin/src/module/configuration_store.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1231,7 +1231,7 @@ void MarlinSettings::postprocess() {
12311231
#if HAS_MOTOR_CURRENT_PWM
12321232
EEPROM_WRITE(stepper.motor_current_setting);
12331233
#else
1234-
const xyz_ulong_t no_current{0};
1234+
const uint32_t no_current[3] = { 0 };
12351235
EEPROM_WRITE(no_current);
12361236
#endif
12371237
}

0 commit comments

Comments
 (0)