diff options
| author | Selene ToyKeeper | 2023-05-30 06:10:39 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2023-05-30 06:10:39 -0600 |
| commit | 91ca88356ecd234a9eb6e7e5b3170103913f36f9 (patch) | |
| tree | be03491af2aa8655d8bd6b31a43271167675172a | |
| parent | converted Noctigon DM11-12V build, renamed to noctigon-dm11-boost (diff) | |
| download | anduril-91ca88356ecd234a9eb6e7e5b3170103913f36f9.tar.gz anduril-91ca88356ecd234a9eb6e7e5b3170103913f36f9.tar.bz2 anduril-91ca88356ecd234a9eb6e7e5b3170103913f36f9.zip | |
fixed bug: regulated down on some lights when not hot
(thermal calibration needs a signed integer, not unsigned)
Diffstat (limited to '')
| -rw-r--r-- | spaghetti-monster/anduril/load-save-config-fsm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spaghetti-monster/anduril/load-save-config-fsm.h b/spaghetti-monster/anduril/load-save-config-fsm.h index 862cf26..64ff6fd 100644 --- a/spaghetti-monster/anduril/load-save-config-fsm.h +++ b/spaghetti-monster/anduril/load-save-config-fsm.h @@ -87,7 +87,7 @@ typedef struct Config { #endif #ifdef USE_THERMAL_REGULATION uint8_t therm_ceil; - uint8_t therm_cal_offset; + int8_t therm_cal_offset; #endif ///// aux LEDs |
