diff options
| author | Selene ToyKeeper | 2017-08-23 19:22:22 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2017-08-23 19:22:22 -0600 |
| commit | 5631564b329d0445fb282e5e387217ba4e4ff191 (patch) | |
| tree | 008d8aec159c7ada2b2e650d71c4f092bc6679d5 /spaghetti-monster/fsm-states.c | |
| parent | Made Baton a little easier to read: (diff) | |
| download | anduril-5631564b329d0445fb282e5e387217ba4e4ff191.tar.gz anduril-5631564b329d0445fb282e5e387217ba4e4ff191.tar.bz2 anduril-5631564b329d0445fb282e5e387217ba4e4ff191.zip | |
Added thermal regulation to SpaghettiMonster / Baton.
Made some LVP values configurable.
Removed high_temperature() / low_temperature() shortcuts for now.
Diffstat (limited to 'spaghetti-monster/fsm-states.c')
| -rw-r--r-- | spaghetti-monster/fsm-states.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/spaghetti-monster/fsm-states.c b/spaghetti-monster/fsm-states.c index 652a9f2..ec24dc8 100644 --- a/spaghetti-monster/fsm-states.c +++ b/spaghetti-monster/fsm-states.c @@ -89,6 +89,7 @@ uint8_t default_state(EventPtr event, uint16_t arg) { } #endif + #if 0 #ifdef USE_THERMAL_REGULATION else if (event == EV_temperature_high) { high_temperature(); @@ -100,6 +101,7 @@ uint8_t default_state(EventPtr event, uint16_t arg) { return 0; } #endif + #endif // event not handled return 1; |
