EEPROM followup (tmc_stepper_current_t)
This commit is contained in:
parent
50cbca4c55
commit
e8d2cf4fb5
@ -243,7 +243,6 @@ typedef struct SettingsDataStruct {
|
|||||||
//
|
//
|
||||||
// HAS_TRINAMIC
|
// HAS_TRINAMIC
|
||||||
//
|
//
|
||||||
#define TMC_AXES (MAX_EXTRUDERS + 7)
|
|
||||||
tmc_stepper_current_t tmc_stepper_current; // M906 X Y Z X2 Y2 Z2 Z3 E0 E1 E2 E3 E4 E5
|
tmc_stepper_current_t tmc_stepper_current; // M906 X Y Z X2 Y2 Z2 Z3 E0 E1 E2 E3 E4 E5
|
||||||
tmc_hybrid_threshold_t tmc_hybrid_threshold; // M913 X Y Z X2 Y2 Z2 Z3 E0 E1 E2 E3 E4 E5
|
tmc_hybrid_threshold_t tmc_hybrid_threshold; // M913 X Y Z X2 Y2 Z2 Z3 E0 E1 E2 E3 E4 E5
|
||||||
tmc_sgt_t tmc_sgt; // M914 X Y Z
|
tmc_sgt_t tmc_sgt; // M914 X Y Z
|
||||||
@ -1353,13 +1352,12 @@ void MarlinSettings::postprocess() {
|
|||||||
{
|
{
|
||||||
_FIELD_TEST(tmc_stepper_current);
|
_FIELD_TEST(tmc_stepper_current);
|
||||||
|
|
||||||
tmc_stepper_current_t tmc_stepper_current;
|
tmc_stepper_current_t currents;
|
||||||
|
EEPROM_READ(currents);
|
||||||
|
|
||||||
#if HAS_TRINAMIC
|
#if HAS_TRINAMIC
|
||||||
|
|
||||||
#define SET_CURR(Q) stepper##Q.rms_current(currents.Q ? currents.Q : Q##_CURRENT)
|
#define SET_CURR(Q) stepper##Q.rms_current(currents.Q ? currents.Q : Q##_CURRENT)
|
||||||
tmc_stepper_current_t currents;
|
|
||||||
EEPROM_READ(currents);
|
|
||||||
if (!validating) {
|
if (!validating) {
|
||||||
#if AXIS_IS_TMC(X)
|
#if AXIS_IS_TMC(X)
|
||||||
SET_CURR(X);
|
SET_CURR(X);
|
||||||
@ -1401,9 +1399,6 @@ void MarlinSettings::postprocess() {
|
|||||||
SET_CURR(E5);
|
SET_CURR(E5);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
#else
|
|
||||||
uint16_t val;
|
|
||||||
for (uint8_t q=TMC_AXES; q--;) EEPROM_READ(val);
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user