summaryrefslogtreecommitdiff
path: root/ao_flight_test.c
Commit message (Collapse)AuthorAge
* Make ao_flight_test show AGL altitude and positive acceleration under boostKeith Packard2009-05-13
| | | | | | This makes the output more readable Signed-off-by: Keith Packard <keithp@keithp.com>
* Make ao_flight_test able to read raw logging dataKeith Packard2009-05-13
| | | | | | | Protect ao_flight_test reading functions so that a simple 'script' output can be fed to the program and have it work correctly. Signed-off-by: Keith Packard <keithp@keithp.com>
* Use recorded accelerometer baseline data in ao_flight_testKeith Packard2009-05-10
| | | | | | | | With the flight computer recording a long-term average value for the accelerometer in the flight record, use that to prime the flight test code when running a log file through the simulator. Signed-off-by: Keith Packard <keithp@keithp.com>
* Use 'char' instead of 'uint8_t' for character dataKeith Packard2009-04-29
| | | | | String and character constants are of char type, so using uint8_t causes promotion to 16-bit types when comparing the two.
* Add configuration supportKeith Packard2009-04-26
| | | | | | | | | | | Current config variables: Main deploy altitude above launch (in meters) Acceleration zero g calibration (manual or automatic) Radio channel (freq = 435.550MHz + channel * 100kHz) Callsign (max 8 characters) Supporting this involved shuffling code around so that the non-telemetrum builds could include only the stuff they needed.
* Allow for slower ADC operation. Add power saving code.Keith Packard2009-04-25
| | | | | | This tries to make the flight computer use less power by disabling USB in flight mode, lowering the telemetry rate after ascent. It also disables the RDF beacon during ascent and re-enables it once descent has started.
* Display data with units while running simulationKeith Packard2009-04-24
|
* Update flight algorithm based on data collected from SN-1 Flight 1Keith Packard2009-04-24
| | | | | | | | This now correctly sequences through the flight data collected from the first TeleMetrum test flight. This also completes up the flight algorithm test harness (ao_flight_test), which runs the flight algorithm on the Linux host from a captured data log.
* Add igniters and update flight control algorithmKeith Packard2009-04-24