Skip to content

Commit

Permalink
Update configuration_store.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Jan 5, 2020
1 parent f2b54c1 commit 3e1a8c0
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions Marlin/src/module/configuration_store.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1145,7 +1145,7 @@ void MarlinSettings::postprocess() {
EEPROM_WRITE(planner.extruder_advance_K);
#else
dummy = 0;
for (uint8_t q = EXTRUDERS; q--;) EEPROM_WRITE(dummy);
for (uint8_t q = MIN(EXTRUDERS, 1); q--;) EEPROM_WRITE(dummy);
#endif
}

Expand Down Expand Up @@ -1934,14 +1934,12 @@ void MarlinSettings::postprocess() {
// Linear Advance
//
{
float extruder_advance_K[MIN(EXTRUDERS, 1)];
_FIELD_TEST(planner_extruder_advance_K);
#if EXTRUDERS
float extruder_advance_K[EXTRUDERS];
EEPROM_READ(extruder_advance_K);
#if ENABLED(LIN_ADVANCE)
if (!validating)
COPY(planner.extruder_advance_K, extruder_advance_K);
#endif
EEPROM_READ(extruder_advance_K);
#if ENABLED(LIN_ADVANCE)
if (!validating)
COPY(planner.extruder_advance_K, extruder_advance_K);
#endif
}

Expand Down Expand Up @@ -2556,9 +2554,9 @@ void MarlinSettings::reset() {
#if ENABLED(LIN_ADVANCE)
LOOP_L_N(i, EXTRUDERS) {
planner.extruder_advance_K[i] = LIN_ADVANCE_K;
#if ENABLED(EXTRA_LIN_ADVANCE_K)
saved_extruder_advance_K[i] = LIN_ADVANCE_K;
#endif
#if ENABLED(EXTRA_LIN_ADVANCE_K)
saved_extruder_advance_K[i] = LIN_ADVANCE_K;
#endif
}
#endif

Expand Down

0 comments on commit 3e1a8c0

Please sign in to comment.