diff options
| author | Selene ToyKeeper | 2023-05-30 09:20:19 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2023-05-30 09:20:19 -0600 |
| commit | d2f1f195a4e8691bde5bbf21babf6db90fb0dac3 (patch) | |
| tree | 83970ce64d672e30744d9a64f44c4620d6734c20 | |
| parent | documented new version check format (diff) | |
| download | anduril-d2f1f195a4e8691bde5bbf21babf6db90fb0dac3.tar.gz anduril-d2f1f195a4e8691bde5bbf21babf6db90fb0dac3.tar.bz2 anduril-d2f1f195a4e8691bde5bbf21babf6db90fb0dac3.zip | |
fixed aux pre-flash (thanks to wolfgirl42)
| -rw-r--r-- | spaghetti-monster/anduril/aux-leds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spaghetti-monster/anduril/aux-leds.c b/spaghetti-monster/anduril/aux-leds.c index 3ecbefd..f18ceb0 100644 --- a/spaghetti-monster/anduril/aux-leds.c +++ b/spaghetti-monster/anduril/aux-leds.c @@ -102,7 +102,7 @@ void rgb_led_update(uint8_t mode, uint16_t arg) { uint8_t color = mode & 0x0f; // always preview in high mode - if (! go_to_standby) { pattern = 2; } + if (setting_rgb_mode_now) { pattern = 2; } #ifdef USE_POST_OFF_VOLTAGE // use voltage high mode for a few seconds after initial poweroff |
