summaryrefslogtreecommitdiff
path: root/ao_cmd.c
Commit message (Collapse)AuthorAge
* Use autotools, move altos to src subdirKeith Packard2009-06-04
| | | | Signed-off-by: Keith Packard <keithp@keithp.com>
* Add version command to show product informationKeith Packard2009-05-09
|
* 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 manual ignition and igniter test commandsKeith Packard2009-04-26
|
* 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.
* Bump NUM_CMDS to 10Keith Packard2009-04-24
|
* Fix up fancy dbg stuff. Add teleterra initial bits.Keith Packard2009-04-21
| | | | | | | | | The dbg stuff needed a bit of help to actually walk the tables; it appears that complex expressions confuse sdcc. This also adds primitive teleterra bits, but no UI, etc. Signed-off-by: Keith Packard <keithp@keithp.com>
* Add radio support. Build separate executables for TeleMetrum and the TI dongleKeith Packard2009-04-20
| | | | | | | | | Ok, way too big a patch, but things were in rough shape. This patch adds support for the radio, both transmit and receive. Then, because I could no longer run the TeleMetrum code on the TI dongle, I ended up building a separate image for the TI board, which involved creating a mechanism for having multiple command sets and splitting code for different functions into different files.
* Parse GPS data locally. Add 'g' command to display recent GPS results.Keith Packard2009-04-18
| | | | | This parses the GPS GGA message and stores it in a global variable, protected by a mutex.
* Add task names and 'T' command to show task status.Keith Packard2009-04-18
| | | | The T command shows the current wchan and PC for each task in the system.
* Fix GPL version at 2Keith Packard2009-04-18
| | | | Signed-off-by: Keith Packard <keithp@keithp.com>
* Add gps, debug dongle support and pressure alt tablesKeith Packard2009-04-17
| | | | | | | | GPS also pulled in serial support. The altitude tables take raw 11-bit pressure sample numbers and convert them to standard pressure altitude values. Signed-off-by: Keith Packard <keithp@keithp.com>
* Move a bunch of variables from __data to __xdataKeith Packard2009-04-15
|
* Leave beeping and lights to the flight codeKeith Packard2009-04-14
|
* Add in existing flight pieces: flight/report/logKeith Packard2009-04-14
| | | | | | These pieces come from the old telemetrum firmware. Signed-off-by: Keith Packard <keithp@keithp.com>
* Add eeprom driver and command loopKeith Packard2009-04-14
This involved adding dma control and a mutex implementation. Signed-off-by: Keith Packard <keithp@keithp.com>