Skip to content

Commit

Permalink
V 01.45.02.Mod - testfix for watchdog problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Nibbels committed May 1, 2020
1 parent 3881817 commit ad2fe65
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Repetier/Eeprom.cpp
Expand Up @@ -1412,8 +1412,8 @@ uint8_t EEPROM::computeChecksum() {
lastTime = currentTime;
}
}
return checksum;

return checksum;
} // computeChecksum

void EEPROM::writeExtruderPrefix(uint pos) {
Expand Down
2 changes: 1 addition & 1 deletion Repetier/ui.cpp
Expand Up @@ -4057,8 +4057,8 @@ void UIDisplay::changeSwitchCase(int action, int8_t increment) {
Extruder::selectExtruderById(Extruder::current->id);
if (updateall)
HAL::eprSetByte(EPR_RF_MICRO_STEPS_USED, 0xAB); //erstes schreiben markiert eepromwerte als gültig
EEPROM::updateChecksum();
noInts.unprotect();
EEPROM::updateChecksum();
}
break;
}
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
@@ -1,3 +1,6 @@
V 01.45.02.Mod (2020-05-01)
- Possible fix for a watchdog trigger when changing microsteps in menu (on sensible mainboards)

V 01.45.01.Mod (2020-04-19)
- Z-Matrix Output: M3013 with parameter S does switch back the matrix after console output. (Thx @thecky)
- Output object: In milling mode, the script is no longer executed automatically after an sd print (/menu stop print).
Expand Down

0 comments on commit ad2fe65

Please sign in to comment.