From 176144c74eb41b09c508ad338a16217a019165bc Mon Sep 17 00:00:00 2001 From: Selene ToyKeeper Date: Wed, 14 Oct 2020 21:49:42 -0600 Subject: renamed LED_ENABLE2_* to LED2_ENABLE_* --- spaghetti-monster/fsm-eeprom.c | 8 ++++---- spaghetti-monster/fsm-ramping.c | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'spaghetti-monster') diff --git a/spaghetti-monster/fsm-eeprom.c b/spaghetti-monster/fsm-eeprom.c index 0de7e05..4c734a2 100644 --- a/spaghetti-monster/fsm-eeprom.c +++ b/spaghetti-monster/fsm-eeprom.c @@ -30,7 +30,7 @@ uint8_t eeprom[EEPROM_BYTES]; #endif uint8_t load_eeprom() { - #ifdef LED_ENABLE_PIN + #if defined(LED_ENABLE_PIN) || defined(LED2_ENABLE_PIN) delay_4ms(2); // wait for power to stabilize #endif @@ -48,7 +48,7 @@ uint8_t load_eeprom() { } void save_eeprom() { - #ifdef LED_ENABLE_PIN + #if defined(LED_ENABLE_PIN) || defined(LED2_ENABLE_PIN) delay_4ms(2); // wait for power to stabilize #endif @@ -70,7 +70,7 @@ uint8_t eeprom_wl[EEPROM_WL_BYTES]; uint8_t * eep_wl_prev_offset; uint8_t load_eeprom_wl() { - #ifdef LED_ENABLE_PIN + #if defined(LED_ENABLE_PIN) || defined(LED2_ENABLE_PIN) delay_4ms(2); // wait for power to stabilize #endif @@ -99,7 +99,7 @@ uint8_t load_eeprom_wl() { } void save_eeprom_wl() { - #ifdef LED_ENABLE_PIN + #if defined(LED_ENABLE_PIN) || defined(LED2_ENABLE_PIN) delay_4ms(2); // wait for power to stabilize #endif diff --git a/spaghetti-monster/fsm-ramping.c b/spaghetti-monster/fsm-ramping.c index 6c6d0cb..5ea4a47 100644 --- a/spaghetti-monster/fsm-ramping.c +++ b/spaghetti-monster/fsm-ramping.c @@ -72,8 +72,8 @@ void set_level(uint8_t level) { #ifdef LED_ENABLE_PIN LED_ENABLE_PORT &= ~(1 << LED_ENABLE_PIN); #endif - #ifdef LED_ENABLE2_PIN - LED_ENABLE2_PORT &= ~(1 << LED_ENABLE2_PIN); + #ifdef LED2_ENABLE_PIN + LED2_ENABLE_PORT &= ~(1 << LED2_ENABLE_PIN); #endif } else { level --; @@ -82,8 +82,8 @@ void set_level(uint8_t level) { #ifdef LED_ENABLE_PIN LED_ENABLE_PORT |= (1 << LED_ENABLE_PIN); #endif - #ifdef LED_ENABLE2_PIN - LED_ENABLE2_PORT |= (1 << LED_ENABLE2_PIN); + #ifdef LED2_ENABLE_PIN + LED2_ENABLE_PORT |= (1 << LED2_ENABLE_PIN); #endif #ifdef USE_TINT_RAMPING -- cgit v1.2.3