| Commit message (Expand) | Author | Files | Lines |
| 2023-11-02 | reorganized project files (part 1) | Selene ToyKeeper | 1 | -573/+0 |
| 2023-07-08 | Partially fixed oscillating aux LED voltage colors while asleep. | Selene ToyKeeper | 1 | -9/+14 |
| 2023-07-08 | Fixed spurious voltage warnings in attiny1616 sleep mode. Fixed by SammysHP. | Selene ToyKeeper | 1 | -9/+7 |
| 2023-04-26 | made sleep voltage work on attiny1616 again | Selene ToyKeeper | 1 | -0/+25 |
| 2023-04-25 | fixed bug behind K93_LOCKOUT_KLUDGE which could exit lockout in solid aux mode | Selene ToyKeeper | 1 | -0/+2 |
| 2023-04-17 | switched the rest of FSM + Anduril to use SPDX license headers | Selene ToyKeeper | 1 | -22/+5 |
| 2023-04-16 | reduced ROM by ~600 bytes by moving all eeprom config values to a "cfg" struct | Selene ToyKeeper | 1 | -7/+7 |
| 2023-03-28 | just whitespace / comments | Selene ToyKeeper | 1 | -1/+1 |
| 2022-10-21 | fixed voltage calibration resolution on SP10 Pro | Selene ToyKeeper | 1 | -2/+2 |
| 2021-12-08 | added a compile option for USE_LOWPASS_WHILE_ASLEEP, | Selene ToyKeeper | 1 | -2/+20 |
| 2021-01-12 | Add Sofirn SP10S (adapter) and dual-voltage logic | Gabriel Hart | 1 | -0/+4 |
| 2020-12-18 | Add AVR 1-Series and t1616 board and scripts | Gabriel Hart | 1 | -1/+52 |
| 2020-09-07 | added support for external thermal sensors in fsm-adc.c | Selene ToyKeeper | 1 | -0/+14 |
| 2020-08-23 | attempt to fix laggy voltage readings right after waking, on FW3A | Selene ToyKeeper | 1 | -5/+4 |
| 2020-07-31 | added a voltage calibration / correction function, 7C from battcheck to confi... | Selene ToyKeeper | 1 | -2/+12 |
| 2020-04-27 | set default thermal response magnitude back to how it was before the KR4 upda... | Selene ToyKeeper | 1 | -1/+1 |
| 2020-04-19 | added tweakable thermal_response_magnitude option, adjusted KR4 thermal vars,... | Selene ToyKeeper | 1 | -10/+10 |
| 2020-04-19 | made thermal response larger when error is large, smaller when error is small | Selene ToyKeeper | 1 | -2/+8 |
| 2020-03-26 | made thermal regulation use a smaller target window, and prioritize cooling more | Selene ToyKeeper | 1 | -3/+3 |
| 2020-03-16 | fixed calc_voltage_divider() (use 10-bit calibration values, not 8-bit) | Selene ToyKeeper | 1 | -1/+1 |
| 2020-03-16 | merged some misc fixes from pakutrai, cleaned up comments, removed unused sym... | Selene ToyKeeper | 1 | -2/+3 |
| 2020-03-16 | reduced regulation jitter by biasing errors toward zero by a constant amount, | Selene ToyKeeper | 1 | -1/+14 |
| 2020-03-15 | the ADC sample count doesn't need to be 16-bit any more, and isn't really a c... | Selene ToyKeeper | 1 | -2/+3 |
| 2020-03-15 | removed dead comments and dead code | Selene ToyKeeper | 1 | -28/+2 |
| 2020-03-15 | replaced temperature_timer (which wasn't even being used) with a variable del... | Selene ToyKeeper | 1 | -27/+43 |
| 2020-03-13 | tried to make thermal code a bit less twitchy... | Selene ToyKeeper | 1 | -7/+10 |
| 2020-03-05 | initial support for Noctigon KR4 | Selene ToyKeeper | 1 | -0/+6 |
| 2020-02-28 | went back to continuous lowpass because it had the best noise reduction | Selene ToyKeeper | 1 | -51/+73 |
| 2020-02-05 | brute force method for reducing ADC noise -- average a ridiculous number of s... | Selene ToyKeeper | 1 | -19/+13 |
| 2020-02-05 | still doesn't work, but at least it's a bit less broken than before... | Selene ToyKeeper | 1 | -8/+12 |
| 2020-02-05 | first pass at a smaller simpler thermal regulation algorithm... | Selene ToyKeeper | 1 | -75/+52 |
| 2020-01-30 | saving state of ADC / WDT refactoring before doing more changes... what chan... | Selene ToyKeeper | 1 | -69/+38 |
| 2020-01-30 | switched to a pseudo-rolling-average method to reduce noise, set prescaler ba... | Selene ToyKeeper | 1 | -8/+13 |
| 2020-01-29 | increased effective ADC resolution by switching from continuous-lowpass to su... | Selene ToyKeeper | 1 | -64/+43 |
| 2020-01-29 | remove truncation noise by adding 0.5 to each result | Selene ToyKeeper | 1 | -24/+22 |
| 2020-01-29 | rewrote ADC code to use a continuous lowpass system on all measurements, to e... | Selene ToyKeeper | 1 | -121/+175 |
| 2019-12-17 | fixed too-slow thermal response (was introduced in the irq-refactor branch) | Selene ToyKeeper | 1 | -5/+8 |
| 2019-11-25 | calibrated Noctigon K1, changed voltage divider calibration values to 10-bit ... | Selene ToyKeeper | 1 | -1/+1 |
| 2019-11-19 | reduced build size by a few bytes | Selene ToyKeeper | 1 | -1/+1 |
| 2019-11-19 | fixed ADC cycles running 2X as fast as intended | Selene ToyKeeper | 1 | -8/+8 |
| 2019-11-14 | added a lowpass filter for battery voltage measurements | Selene ToyKeeper | 1 | -37/+22 |
| 2019-11-14 | fixed ADC code; measures and behaves correctly now, and is easier to read... | Selene ToyKeeper | 1 | -39/+37 |
| 2019-11-14 | started refactoring ADC code to split voltage and temperature into their own ... | Selene ToyKeeper | 1 | -210/+222 |
| 2019-11-14 | refactored how interrupts work... | Selene ToyKeeper | 1 | -10/+35 |
| 2019-09-28 | remapped D1S V2 pins to match new driver | Selene ToyKeeper | 1 | -2/+2 |
| 2019-08-05 | merged a sanitized copy of the Emisar D4v2 branch; history summarized below: | Selene ToyKeeper | 1 | -29/+108 |
| 2019-07-26 | merged a sanitized copy of the Emisar D4v2 branch; history summarized below: | Selene ToyKeeper | 1 | -29/+108 |
| 2019-05-22 | Rewrote thermal regulation. Seems to be much more stable now... doesn't boun... | Selene ToyKeeper | 1 | -71/+40 |
| 2019-01-03 | removed redundant clock speed lines, updated some comments | Selene ToyKeeper | 1 | -1/+1 |
| 2018-06-23 | Moved pseudo_rand() into its own header, and made it gather entropy from ADC ... | Selene ToyKeeper | 1 | -0/+5 |