mmu: remove obsolete EEPROM comments

This commit is contained in:
Guðni Már Gilbert 2023-10-18 23:42:59 +00:00
parent 62b90fde28
commit d56f2bc57e
2 changed files with 2 additions and 3 deletions

View File

@ -55,7 +55,7 @@ MMU2::MMU2()
void MMU2::Start() { void MMU2::Start() {
mmu2Serial.begin(MMU_BAUD); mmu2Serial.begin(MMU_BAUD);
PowerOn(); // I repurposed this to serve as our EEPROM disable toggle. PowerOn();
mmu2Serial.flush(); // make sure the UART buffer is clear before starting communication mmu2Serial.flush(); // make sure the UART buffer is clear before starting communication
extruder = MMU2_NO_TOOL; extruder = MMU2_NO_TOOL;

View File

@ -7,8 +7,7 @@
namespace MMU2 { namespace MMU2 {
// sadly, on MK3 we cannot do actual power cycle on HW... // On MK3 we cannot do actual power cycle on HW. Instead trigger a hardware reset.
// so we just block the MMU via EEPROM var instead.
void power_on() { void power_on() {
#ifdef MMU_HWRESET #ifdef MMU_HWRESET
WRITE(MMU_RST_PIN, 1); WRITE(MMU_RST_PIN, 1);