1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-27 13:56:24 +00:00

Get data declarations consistent...

This commit is contained in:
Roxy-3D 2018-03-22 19:22:49 -05:00 committed by GitHub
parent 1e41d157a3
commit 994fdb5179
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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