diff --git a/Firmware/mmu2_power.cpp b/Firmware/mmu2_power.cpp index 405f0d7c3..a0359f016 100644 --- a/Firmware/mmu2_power.cpp +++ b/Firmware/mmu2_power.cpp @@ -12,18 +12,12 @@ namespace MMU2 { // so we just block the MMU via EEPROM var instead. void power_on() { - if (!eeprom_read_byte((uint8_t *)EEPROM_MMU_ENABLED)) - { - eeprom_update_byte((uint8_t *)EEPROM_MMU_ENABLED, true); - } + eeprom_update_byte((uint8_t *)EEPROM_MMU_ENABLED, true); } void power_off() { - if (eeprom_read_byte((uint8_t *)EEPROM_MMU_ENABLED)) - { - eeprom_update_byte((uint8_t *)EEPROM_MMU_ENABLED, false); - } + eeprom_update_byte((uint8_t *)EEPROM_MMU_ENABLED, false); } void reset() {