Improved M900

This commit is contained in:
Scott Lahteine
2020-02-29 04:28:07 -06:00
parent b1a50d54e2
commit 6b5347ee39
2 changed files with 81 additions and 75 deletions

View File

@ -101,7 +101,7 @@
#endif
#if ENABLED(EXTRA_LIN_ADVANCE_K)
extern float saved_extruder_advance_K[EXTRUDERS];
extern float other_extruder_advance_K[EXTRUDERS];
#endif
#if EXTRUDERS > 1
@ -2717,7 +2717,7 @@ void MarlinSettings::reset() {
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;
other_extruder_advance_K[i] = LIN_ADVANCE_K;
#endif
}
#endif