From 994fdb5179f5b716e11b61fc7572bda67d4651f1 Mon Sep 17 00:00:00 2001 From: Roxy-3D Date: Thu, 22 Mar 2018 19:22:49 -0500 Subject: [PATCH] Get data declarations consistent... --- Marlin/configuration_store.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/configuration_store.cpp b/Marlin/configuration_store.cpp index 785e0071e30..d1f9fdd825d 100644 --- a/Marlin/configuration_store.cpp +++ b/Marlin/configuration_store.cpp @@ -37,7 +37,7 @@ */ // Change EEPROM version if the structure changes -#define EEPROM_VERSION "V53" +#define EEPROM_VERSION "V54" #define EEPROM_OFFSET 100 // Check the integrity of data offsets. @@ -1341,7 +1341,7 @@ void MarlinSettings::postprocess() { #if HAS_TRINAMIC #define TMC_SET_PWMTHRS(P,Q) tmc_set_pwmthrs(stepper##Q, TMC_##Q, tmc_hybrid_threshold[TMC_##Q], planner.axis_steps_per_mm[P##_AXIS]) - uint16_t tmc_hybrid_threshold[TMC_AXES]; + uint32_t tmc_hybrid_threshold[TMC_AXES]; EEPROM_READ(tmc_hybrid_threshold); if (!validating) { #if X_IS_TRINAMIC