aboutsummaryrefslogtreecommitdiff
path: root/spaghetti-monster
diff options
context:
space:
mode:
authorGabriel Hart2022-01-04 16:56:37 -0600
committerGabriel Hart2022-01-04 16:56:37 -0600
commita01a27d8d2562e08baf7a58a76fc90670cdc2c4e (patch)
tree8540c84dc361037bbb62c3a0f7a317f575af5f2f /spaghetti-monster
parentMerge TKs changes through her commit 628 (diff)
downloadanduril-a01a27d8d2562e08baf7a58a76fc90670cdc2c4e.tar.gz
anduril-a01a27d8d2562e08baf7a58a76fc90670cdc2c4e.tar.bz2
anduril-a01a27d8d2562e08baf7a58a76fc90670cdc2c4e.zip
Experimental: add optional delay when using LED_ENABLE_PIN to avoid flashes of light
Diffstat (limited to '')
-rw-r--r--spaghetti-monster/anduril/version.h2
-rw-r--r--spaghetti-monster/fsm-ramping.c10
2 files changed, 11 insertions, 1 deletions
diff --git a/spaghetti-monster/anduril/version.h b/spaghetti-monster/anduril/version.h
index 7560ef2..ff0abc7 100644
--- a/spaghetti-monster/anduril/version.h
+++ b/spaghetti-monster/anduril/version.h
@@ -1 +1 @@
-#define VERSION_NUMBER "20211029"
+#define VERSION_NUMBER "20220104"
diff --git a/spaghetti-monster/fsm-ramping.c b/spaghetti-monster/fsm-ramping.c
index 05c2e0e..89e1f13 100644
--- a/spaghetti-monster/fsm-ramping.c
+++ b/spaghetti-monster/fsm-ramping.c
@@ -103,6 +103,10 @@ void set_level(uint8_t level) {
} else {
// enable the power channel, if relevant
#ifdef LED_ENABLE_PIN
+ #ifdef LED_ENABLE_DELAY
+ uint8_t led_enable_port_save = LED_ENABLE_PORT;
+ #endif
+
#ifndef LED_ENABLE_PIN_LEVEL_MIN
LED_ENABLE_PORT |= (1 << LED_ENABLE_PIN);
#else
@@ -113,6 +117,12 @@ void set_level(uint8_t level) {
else // disable during other parts of the ramp
LED_ENABLE_PORT &= ~(1 << LED_ENABLE_PIN);
#endif
+
+ // for drivers with a slow regulator chip (eg, boost converter, delay before lighting up to prevent flashes
+ #ifdef LED_ENABLE_DELAY
+ if (LED_ENABLE_PORT != led_enable_port_save) // only delay if the pin status changed
+ delay_4ms(LED_ENABLE_DELAY/4);
+ #endif
#endif
#ifdef LED2_ENABLE_PIN
LED2_ENABLE_PORT |= (1 << LED2_ENABLE_PIN);