diff options
| author | Selene ToyKeeper | 2017-09-26 15:19:58 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2017-09-26 15:19:58 -0600 |
| commit | 491965697fc7f52f75cd737628349fd6a49a37c1 (patch) | |
| tree | eb0252a78d5e5ccaecc2098eeb54190294777e01 | |
| parent | Dropped moon power another 0.5 mA. (diff) | |
| download | anduril-491965697fc7f52f75cd737628349fd6a49a37c1.tar.gz anduril-491965697fc7f52f75cd737628349fd6a49a37c1.tar.bz2 anduril-491965697fc7f52f75cd737628349fd6a49a37c1.zip | |
Fixed moon in lockout state. Was too low since the MCU wasn't underclocked.
Diffstat (limited to '')
| -rw-r--r-- | spaghetti-monster/anduril/anduril.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/spaghetti-monster/anduril/anduril.c b/spaghetti-monster/anduril/anduril.c index 7833f4f..1044398 100644 --- a/spaghetti-monster/anduril/anduril.c +++ b/spaghetti-monster/anduril/anduril.c @@ -962,9 +962,10 @@ void loop() { if (0) {} #ifdef USE_IDLE_MODE - else if ((state == steady_state) + else if ( (state == steady_state) || (state == off_state) - || (state == goodnight_state)) { + || (state == lockout_state) + || (state == goodnight_state) ) { #ifdef MOON_POWERSAVE if (actual_level < 5) { // run at quarter speed |
