Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Update flight algorithm based on data collected from SN-1 Flight 1 | Keith Packard | 2009-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 algorithm | Keith Packard | 2009-04-24 | |
| | ||||
* | Avoid ram from 0xfda2 through feff, its funky | Keith Packard | 2009-04-24 | |
| | ||||
* | remove ao_flight_test until its ready | Keith Packard | 2009-04-23 | |
| | ||||
* | Add teledongle module | Keith Packard | 2009-04-23 | |
| | ||||
* | Set telemetry rate to 100ms | Keith Packard | 2009-04-23 | |
| | ||||
* | Wrong license on ao_monitor.c | Keith Packard | 2009-04-23 | |
| | ||||
* | Crank up radio to 10dBm | Keith Packard | 2009-04-23 | |
| | ||||
* | Add COPYING file | Keith Packard | 2009-04-22 | |
| | ||||
* | Clean up TeleTerra files | Keith Packard | 2009-04-22 | |
| | ||||
* | simplify ao_time function | Keith Packard | 2009-04-22 | |
| | ||||
* | One line radio status | Keith Packard | 2009-04-22 | |
| | ||||
* | Add new binaries to .gitignore | Keith Packard | 2009-04-22 | |
| | ||||
* | Speed up dbg port bit frobbing | Keith Packard | 2009-04-22 | |
| | ||||
* | Use sdcc from path | Keith Packard | 2009-04-22 | |
| | ||||
* | Clean up task list formatting | Keith Packard | 2009-04-22 | |
| | ||||
* | Control radio monitoring with the M command | Keith Packard | 2009-04-22 | |
| | ||||
* | Clean up telemetry now that all packets are the same | Keith Packard | 2009-04-21 | |
| | ||||
* | Add longer debug delays to reset/debug_mode entry | Keith Packard | 2009-04-21 | |
| | ||||
* | Fix up fancy dbg stuff. Add teleterra initial bits. | Keith Packard | 2009-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 dongle | Keith Packard | 2009-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. | |||
* | Start using pdata area for less-frequently used datasn1-flight1 | Keith Packard | 2009-04-18 | |
| | ||||
* | Slow down panic presentation | Keith Packard | 2009-04-18 | |
| | ||||
* | Parse GPS data locally. Add 'g' command to display recent GPS results. | Keith Packard | 2009-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 Packard | 2009-04-18 | |
| | | | | The T command shows the current wchan and PC for each task in the system. | |||
* | Fix GPL version at 2 | Keith Packard | 2009-04-18 | |
| | | | | Signed-off-by: Keith Packard <keithp@keithp.com> | |||
* | Add gps, debug dongle support and pressure alt tables | Keith Packard | 2009-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 __xdata | Keith Packard | 2009-04-15 | |
| | ||||
* | Slow down panic code, disable interrupts | Keith Packard | 2009-04-14 | |
| | ||||
* | Keep reporting flight state while it changes | Keith Packard | 2009-04-14 | |
| | ||||
* | use red LED to indicate system startup | Keith Packard | 2009-04-14 | |
| | ||||
* | Use ao_ee_flush_internal while holding mutex | Keith Packard | 2009-04-14 | |
| | ||||
* | Leave beeping and lights to the flight code | Keith Packard | 2009-04-14 | |
| | ||||
* | Make mutex functions reentrant | Keith Packard | 2009-04-14 | |
| | ||||
* | Add in existing flight pieces: flight/report/log | Keith Packard | 2009-04-14 | |
| | | | | | | These pieces come from the old telemetrum firmware. Signed-off-by: Keith Packard <keithp@keithp.com> | |||
* | Add eeprom driver and command loop | Keith Packard | 2009-04-14 | |
| | | | | | | This involved adding dma control and a mutex implementation. Signed-off-by: Keith Packard <keithp@keithp.com> | |||
* | Switch from --model-large to --model-small | Keith Packard | 2009-04-14 | |
| | | | | | | This shrinks the application quite a bit, and should make it faster as well. Signed-off-by: Keith Packard <keithp@keithp.com> | |||
* | Add comments, clean up white space, etc. | Keith Packard | 2009-04-14 | |
| | | | | | | Various clean ups now that the basic code appears to work. Signed-off-by: Keith Packard <keithp@keithp.com> | |||
* | Switch USB to double-buffered | Keith Packard | 2009-04-13 | |
| | ||||
* | Fix USB input/output by reloading packet limits. | Keith Packard | 2009-04-13 | |
| | | | | | | | | The USB controller is reset during the connection process, which clears the packet limits set in the controller at initialization time. Reload those values when the configuration is set. Signed-off-by: Keith Packard <keithp@keithp.com> | |||
* | USB working up through reading strings | Keith Packard | 2009-04-13 | |
| | ||||
* | Add USB support. | Keith Packard | 2009-04-13 | |
| | | | | | | This offers a single CDC ACM device over USB. Signed-off-by: Keith Packard <keithp@keithp.com> | |||
* | Add beep/led support. | Keith Packard | 2009-04-12 | |
| | | | | | | Support our P2_0 connected buzzer, and formalize LED output support. Signed-off-by: Keith Packard <keithp@keithp.com> | |||
* | Add A/D sampler | Keith Packard | 2009-04-12 | |
| | | | | | | | Sample A/D at the timer tick, placing data in a ring of samples. Signed-off-by: Keith Packard <keithp@keithp.com> | |||
* | Add 100Hz timer | Keith Packard | 2009-04-12 | |
| | | | | Use Timer 1 to generate a 100Hz timer interrupt | |||
* | Update README | Keith Packard | 2009-04-12 | |
| | ||||
* | GPL Version 2 only | Keith Packard | 2009-04-12 | |
| | ||||
* | Make test more complicated | Keith Packard | 2009-04-12 | |
| | ||||
* | SP points at last pushed byte | Keith Packard | 2009-04-12 | |
| | ||||
* | Add .gitignore | Keith Packard | 2009-04-12 | |
| |