2 * Copyright © 2009 Keith Packard <keithp@keithp.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
31 /* Convert a __data pointer into an __xdata pointer */
32 #define DATA_TO_XDATA(a) ((void __xdata *) ((uint8_t) (a) | 0xff00))
34 /* Stack runs from above the allocated __data space to 0xfe, which avoids
35 * writing to 0xff as that triggers the stack overflow indicator
37 #define AO_STACK_START 0x90
38 #define AO_STACK_END 0xfe
39 #define AO_STACK_SIZE (AO_STACK_END - AO_STACK_START + 1)
43 __xdata void *wchan; /* current wait channel (NULL if running) */
44 uint16_t alarm; /* abort ao_sleep time */
45 uint8_t stack_count; /* amount of saved stack */
46 uint8_t task_id; /* unique id */
47 __code char *name; /* task name */
48 uint8_t stack[AO_STACK_SIZE]; /* saved stack */
51 extern __xdata struct ao_task *__data ao_cur_task;
53 #define AO_NUM_TASKS 16 /* maximum number of tasks */
54 #define AO_NO_TASK 0 /* no task id */
60 /* Suspend the current task until wchan is awoken.
66 ao_sleep(__xdata void *wchan);
68 /* Wake all tasks sleeping on wchan */
70 ao_wakeup(__xdata void *wchan);
72 /* set an alarm to go off in 'delay' ticks */
74 ao_alarm(uint16_t delay);
76 /* Yield the processor to another task */
78 ao_yield(void) __naked;
80 /* Add a task to the run queue */
82 ao_add_task(__xdata struct ao_task * task, void (*start)(void), __code char *name) __reentrant;
84 /* Terminate the current task */
88 /* Dump task info to console */
92 /* Start the scheduler. This will not return */
94 ao_start_scheduler(void);
100 #define AO_PANIC_NO_TASK 1 /* AO_NUM_TASKS is not large enough */
101 #define AO_PANIC_DMA 2 /* Attempt to start DMA while active */
102 #define AO_PANIC_MUTEX 3 /* Mis-using mutex API */
103 #define AO_PANIC_EE 4 /* Mis-using eeprom API */
104 #define AO_PANIC_LOG 5 /* Failing to read/write log data */
105 #define AO_PANIC_CMD 6 /* Too many command sets registered */
106 #define AO_PANIC_STDIO 7 /* Too many stdio handlers registered */
107 #define AO_PANIC_REBOOT 8 /* Reboot failed */
108 #define AO_PANIC_FLASH 9 /* Invalid flash part (or wrong blocksize) */
109 #define AO_PANIC_USB 10 /* Trying to send USB packet while busy */
110 #define AO_PANIC_BT 11 /* Communications with bluetooth device failed */
112 /* Stop the operating system, beeping and blinking the reason */
114 ao_panic(uint8_t reason);
120 /* Our timer runs at 100Hz */
122 #define AO_MS_TO_TICKS(ms) ((ms) / (1000 / AO_HERTZ))
123 #define AO_SEC_TO_TICKS(s) ((s) * AO_HERTZ)
125 /* Returns the current time in ticks */
129 /* Suspend the current task until ticks time has passed */
131 ao_delay(uint16_t ticks);
133 /* Set the ADC interval */
135 ao_timer_set_adc_interval(uint8_t interval) __critical;
137 /* Timer interrupt */
139 ao_timer_isr(void) __interrupt 9;
141 /* Initialize the timer */
145 /* Initialize the hardware clock. Must be called first */
150 * One set of samples read from the A/D converter or telemetry
153 uint16_t tick; /* tick when the sample was read */
154 int16_t accel; /* accelerometer */
155 int16_t pres; /* pressure sensor */
156 int16_t temp; /* temperature sensor */
157 int16_t v_batt; /* battery voltage */
158 int16_t sense_d; /* drogue continuity sense */
159 int16_t sense_m; /* main continuity sense */
163 #error Please define HAS_ADC
169 #ifndef HAS_ACCEL_REF
170 #error Please define HAS_ACCEL_REF
173 #define HAS_ACCEL_REF 0
180 #define AO_ADC_RING 32
181 #define ao_adc_ring_next(n) (((n) + 1) & (AO_ADC_RING - 1))
182 #define ao_adc_ring_prev(n) (((n) - 1) & (AO_ADC_RING - 1))
186 * A/D data is stored in a ring, with the next sample to be written
189 extern volatile __xdata struct ao_adc ao_adc_ring[AO_ADC_RING];
190 extern volatile __data uint8_t ao_adc_head;
192 extern volatile __xdata uint16_t ao_accel_ref[AO_ADC_RING];
195 /* Trigger a conversion sequence (called from the timer interrupt) */
199 /* Suspend the current task until another A/D sample is converted */
203 /* Get a copy of the last complete A/D sample set */
205 ao_adc_get(__xdata struct ao_adc *packet);
207 /* The A/D interrupt handler */
210 ao_adc_isr(void) __interrupt 1;
212 /* Initialize the A/D converter */
223 * Various pre-defined beep frequencies
225 * frequency = 1/2 (24e6/32) / beep
228 #define AO_BEEP_LOW 150 /* 2500Hz */
229 #define AO_BEEP_MID 94 /* 3989Hz */
230 #define AO_BEEP_HIGH 75 /* 5000Hz */
231 #define AO_BEEP_OFF 0 /* off */
233 #define AO_BEEP_g 240 /* 1562.5Hz */
234 #define AO_BEEP_gs 227 /* 1652Hz (1655Hz) */
235 #define AO_BEEP_aa 214 /* 1752Hz (1754Hz) */
236 #define AO_BEEP_bbf 202 /* 1856Hz (1858Hz) */
237 #define AO_BEEP_bb 190 /* 1974Hz (1969Hz) */
238 #define AO_BEEP_cc 180 /* 2083Hz (2086Hz) */
239 #define AO_BEEP_ccs 170 /* 2205Hz (2210Hz) */
240 #define AO_BEEP_dd 160 /* 2344Hz (2341Hz) */
241 #define AO_BEEP_eef 151 /* 2483Hz (2480Hz) */
242 #define AO_BEEP_ee 143 /* 2622Hz (2628Hz) */
243 #define AO_BEEP_ff 135 /* 2778Hz (2784Hz) */
244 #define AO_BEEP_ffs 127 /* 2953Hz (2950Hz) */
245 #define AO_BEEP_gg 120 /* 3125Hz */
246 #define AO_BEEP_ggs 113 /* 3319Hz (3311Hz) */
247 #define AO_BEEP_aaa 107 /* 3504Hz (3508Hz) */
248 #define AO_BEEP_bbbf 101 /* 3713Hz (3716Hz) */
249 #define AO_BEEP_bbb 95 /* 3947Hz (3937Hz) */
250 #define AO_BEEP_ccc 90 /* 4167Hz (4171Hz) */
251 #define AO_BEEP_cccs 85 /* 4412Hz (4419Hz) */
252 #define AO_BEEP_ddd 80 /* 4688Hz (4682Hz) */
253 #define AO_BEEP_eeef 76 /* 4934Hz (4961Hz) */
254 #define AO_BEEP_eee 71 /* 5282Hz (5256Hz) */
255 #define AO_BEEP_fff 67 /* 5597Hz (5568Hz) */
256 #define AO_BEEP_fffs 64 /* 5859Hz (5899Hz) */
257 #define AO_BEEP_ggg 60 /* 6250Hz */
259 /* Set the beeper to the specified tone */
261 ao_beep(uint8_t beep);
263 /* Turn on the beeper for the specified time */
265 ao_beep_for(uint8_t beep, uint16_t ticks) __reentrant;
267 /* Initialize the beeper */
275 #define AO_LED_NONE 0
277 /* Turn on the specified LEDs */
279 ao_led_on(uint8_t colors);
281 /* Turn off the specified LEDs */
283 ao_led_off(uint8_t colors);
285 /* Set all of the LEDs to the specified state */
287 ao_led_set(uint8_t colors);
289 /* Toggle the specified LEDs */
291 ao_led_toggle(uint8_t colors);
293 /* Turn on the specified LEDs for the indicated interval */
295 ao_led_for(uint8_t colors, uint16_t ticks) __reentrant;
297 /* Initialize the LEDs */
299 ao_led_init(uint8_t enable);
305 #define AO_ROMCONFIG_VERSION 2
307 extern __code __at (0x00a0) uint16_t ao_romconfig_version;
308 extern __code __at (0x00a2) uint16_t ao_romconfig_check;
309 extern __code __at (0x00a4) uint16_t ao_serial_number;
310 extern __code __at (0x00a6) uint32_t ao_radio_cal;
313 #error Please define HAS_USB
317 extern __code __at (0x00aa) uint8_t ao_usb_descriptors [];
324 /* Put one character to the USB output queue */
326 ao_usb_putchar(char c);
328 /* Get one character from the USB input queue */
330 ao_usb_getchar(void);
332 /* Poll for a charcter on the USB input queue.
333 * returns AO_READ_AGAIN if none are available
336 ao_usb_pollchar(void);
338 /* Flush the USB output queue */
343 /* USB interrupt handler */
345 ao_usb_isr(void) __interrupt 6;
348 /* Enable the USB controller */
352 /* Disable the USB controller */
354 ao_usb_disable(void);
356 /* Initialize the USB system */
366 ao_cmd_lex_error = 1,
367 ao_cmd_syntax_error = 2,
370 extern __xdata uint16_t ao_cmd_lex_i;
371 extern __xdata uint32_t ao_cmd_lex_u32;
372 extern __xdata char ao_cmd_lex_c;
373 extern __xdata enum ao_cmd_status ao_cmd_status;
379 ao_cmd_put8(uint8_t v);
382 ao_cmd_put16(uint16_t v);
391 ao_cmd_decimal(void);
394 ao_match_word(__code char *word);
402 ao_cmd_register(__code struct ao_cmds *cmds);
409 * Provided by an external module to filter raw command lines
419 /* Allocate a DMA channel. the 'done' parameter will be set when the
420 * dma is finished and will be used to wakeup any waiters
424 ao_dma_alloc(__xdata uint8_t * done);
426 /* Setup a DMA channel */
428 ao_dma_set_transfer(uint8_t id,
429 void __xdata *srcaddr,
430 void __xdata *dstaddr,
435 /* Start a DMA channel */
437 ao_dma_start(uint8_t id);
439 /* Manually trigger a DMA channel */
441 ao_dma_trigger(uint8_t id);
443 /* Abort a running DMA transfer */
445 ao_dma_abort(uint8_t id);
447 /* DMA interrupt routine */
449 ao_dma_isr(void) __interrupt 8;
456 ao_mutex_get(__xdata uint8_t *ao_mutex) __reentrant;
459 ao_mutex_put(__xdata uint8_t *ao_mutex) __reentrant;
462 * Storage interface, provided by one of the eeprom or flash
466 /* Total bytes of available storage */
467 extern __xdata uint32_t ao_storage_total;
469 /* Block size - device is erased in these units. At least 256 bytes */
470 extern __xdata uint32_t ao_storage_block;
472 /* Byte offset of config block. Will be ao_storage_block bytes long */
473 extern __xdata uint32_t ao_storage_config;
475 /* Storage unit size - device reads and writes must be within blocks of this size. Usually 256 bytes. */
476 extern __xdata uint16_t ao_storage_unit;
478 #define AO_STORAGE_ERASE_LOG (ao_storage_config + AO_CONFIG_MAX_SIZE)
480 /* Initialize above values. Can only be called once the OS is running */
482 ao_storage_setup(void) __reentrant;
484 /* Write data. Returns 0 on failure, 1 on success */
486 ao_storage_write(uint32_t pos, __xdata void *buf, uint16_t len) __reentrant;
488 /* Read data. Returns 0 on failure, 1 on success */
490 ao_storage_read(uint32_t pos, __xdata void *buf, uint16_t len) __reentrant;
492 /* Erase a block of storage. This always clears ao_storage_block bytes */
494 ao_storage_erase(uint32_t pos) __reentrant;
496 /* Flush any pending writes to stable storage */
498 ao_storage_flush(void) __reentrant;
500 /* Initialize the storage code */
502 ao_storage_init(void);
505 * Low-level functions wrapped by ao_storage.c
508 /* Read data within a storage unit */
510 ao_storage_device_read(uint32_t pos, __xdata void *buf, uint16_t len) __reentrant;
512 /* Write data within a storage unit */
514 ao_storage_device_write(uint32_t pos, __xdata void *buf, uint16_t len) __reentrant;
516 /* Initialize low-level device bits */
518 ao_storage_device_init(void);
520 /* Print out information about flash chips */
522 ao_storage_device_info(void) __reentrant;
528 /* We record flight numbers in the first record of
529 * the log. Tasks may wait for this to be initialized
530 * by sleeping on this variable.
532 extern __xdata uint16_t ao_flight_number;
534 extern __pdata uint32_t ao_log_current_pos;
535 extern __pdata uint32_t ao_log_end_pos;
536 extern __pdata uint32_t ao_log_start_pos;
537 extern __xdata uint8_t ao_log_running;
538 extern __xdata enum flight_state ao_log_state;
540 /* required functions from the underlying log system */
542 /* Return the flight number from the given log slot, 0 if none */
544 ao_log_flight(uint8_t slot);
550 /* Logging thread main routine */
554 /* functions provided in ao_log.c */
556 /* Figure out the current flight number */
558 ao_log_scan(void) __reentrant;
560 /* Return the position of the start of the given log slot */
562 ao_log_pos(uint8_t slot);
564 /* Start logging to eeprom */
572 /* Initialize the logging system */
576 /* Write out the current flight number to the erase log */
578 ao_log_write_erase(uint8_t pos);
580 /* Returns true if there are any logs stored in eeprom */
582 ao_log_present(void);
584 /* Returns true if there is no more storage space available */
593 * The data log is recorded in the eeprom as a sequence
596 * Each packet starts with a 4-byte header that has the
597 * packet type, the packet checksum and the tick count. Then
598 * they all contain 2 16 bit values which hold packet-specific
601 * For each flight, the first packet
602 * is FLIGHT packet, indicating the serial number of the
603 * device and a unique number marking the number of flights
604 * recorded by this device.
606 * During flight, data from the accelerometer and barometer
607 * are recorded in SENSOR packets, using the raw 16-bit values
608 * read from the A/D converter.
610 * Also during flight, but at a lower rate, the deployment
611 * sensors are recorded in DEPLOY packets. The goal here is to
612 * detect failure in the deployment circuits.
614 * STATE packets hold state transitions as the flight computer
615 * transitions through different stages of the flight.
617 #define AO_LOG_FLIGHT 'F'
618 #define AO_LOG_SENSOR 'A'
619 #define AO_LOG_TEMP_VOLT 'T'
620 #define AO_LOG_DEPLOY 'D'
621 #define AO_LOG_STATE 'S'
622 #define AO_LOG_GPS_TIME 'G'
623 #define AO_LOG_GPS_LAT 'N'
624 #define AO_LOG_GPS_LON 'W'
625 #define AO_LOG_GPS_ALT 'H'
626 #define AO_LOG_GPS_SAT 'V'
627 #define AO_LOG_GPS_DATE 'Y'
629 #define AO_LOG_POS_NONE (~0UL)
631 struct ao_log_record {
637 int16_t ground_accel;
662 int32_t gps_latitude;
663 int32_t gps_longitude;
686 /* Write a record to the eeprom log */
688 ao_log_data(__xdata struct ao_log_record *log) __reentrant;
694 enum ao_flight_state {
695 ao_flight_startup = 0,
701 ao_flight_drogue = 6,
703 ao_flight_landed = 8,
704 ao_flight_invalid = 9
707 extern __pdata enum ao_flight_state ao_flight_state;
709 extern __pdata uint16_t ao_launch_time;
710 extern __xdata uint8_t ao_flight_force_idle;
716 /* Initialize flight thread */
718 ao_flight_init(void);
725 ao_flight_nano_init(void);
732 * Barometer calibration
734 * We directly sample the barometer. The specs say:
736 * Pressure range: 15-115 kPa
737 * Voltage at 115kPa: 2.82
738 * Output scale: 27mV/kPa
740 * If we want to detect launch with the barometer, we need
741 * a large enough bump to not be fooled by noise. At typical
742 * launch elevations (0-2000m), a 200Pa pressure change cooresponds
743 * to about a 20m elevation change. This is 5.4mV, or about 3LSB.
744 * As all of our calculations are done in 16 bits, we'll actually see a change
745 * of 16 times this though
747 * 27 mV/kPa * 32767 / 3300 counts/mV = 268.1 counts/kPa
750 /* Accelerometer calibration
752 * We're sampling the accelerometer through a resistor divider which
753 * consists of 5k and 10k resistors. This multiplies the values by 2/3.
754 * That goes into the cc1111 A/D converter, which is running at 11 bits
755 * of precision with the bits in the MSB of the 16 bit value. Only positive
756 * values are used, so values should range from 0-32752 for 0-3.3V. The
757 * specs say we should see 40mV/g (uncalibrated), multiply by 2/3 for what
758 * the A/D converter sees (26.67 mV/g). We should see 32752/3300 counts/mV,
759 * for a final computation of:
761 * 26.67 mV/g * 32767/3300 counts/mV = 264.8 counts/g
763 * Zero g was measured at 16000 (we would expect 16384).
764 * Note that this value is only require to tell if the
765 * rocket is standing upright. Once that is determined,
766 * the value of the accelerometer is averaged for 100 samples
767 * to find the resting accelerometer value, which is used
768 * for all further flight computations
771 #define GRAVITY 9.80665
774 * Above this height, the baro sensor doesn't work
776 #define AO_MAX_BARO_HEIGHT 12000
779 * Above this speed, baro measurements are unreliable
781 #define AO_MAX_BARO_SPEED 200
783 #define ACCEL_NOSE_UP (ao_accel_2g >> 2)
786 * Speed and acceleration are scaled by 16 to provide a bit more
787 * resolution while still having reasonable range. Note that this
788 * limits speed to 2047m/s (around mach 6) and acceleration to
789 * 2047m/s² (over 200g)
792 #define AO_M_TO_HEIGHT(m) ((int16_t) (m))
793 #define AO_MS_TO_SPEED(ms) ((int16_t) ((ms) * 16))
794 #define AO_MSS_TO_ACCEL(mss) ((int16_t) ((mss) * 16))
796 extern __pdata uint16_t ao_sample_tick; /* time of last data */
797 extern __pdata int16_t ao_sample_pres; /* most recent pressure sensor reading */
798 extern __pdata int16_t ao_sample_alt; /* MSL of ao_sample_pres */
799 extern __pdata int16_t ao_sample_height; /* AGL of ao_sample_pres */
800 extern __data uint8_t ao_sample_adc; /* Ring position of last processed sample */
803 extern __pdata int16_t ao_sample_accel; /* most recent accel sensor reading */
806 extern __xdata int16_t ao_ground_pres; /* startup pressure */
807 extern __xdata int16_t ao_ground_height; /* MSL of ao_ground_pres */
810 extern __xdata int16_t ao_ground_accel; /* startup acceleration */
811 extern __xdata int16_t ao_accel_2g; /* factory accel calibration */
812 extern __xdata int32_t ao_accel_scale; /* sensor to m/s² conversion */
815 void ao_sample_init(void);
817 /* returns FALSE in preflight mode, TRUE in flight mode */
818 uint8_t ao_sample(void);
824 #define to_fix16(x) ((int16_t) ((x) * 65536.0 + 0.5))
825 #define to_fix32(x) ((int32_t) ((x) * 65536.0 + 0.5))
826 #define from_fix(x) ((x) >> 16)
828 extern __pdata int16_t ao_height; /* meters */
829 extern __pdata int16_t ao_speed; /* m/s * 16 */
830 extern __pdata int16_t ao_accel; /* m/s² * 16 */
831 extern __pdata int16_t ao_max_height; /* max of ao_height */
833 extern __pdata int16_t ao_error_h;
834 extern __pdata int16_t ao_error_h_sq_avg;
837 extern __pdata int16_t ao_error_a;
840 void ao_kalman(void);
847 ao_report_init(void);
852 * Given raw data, convert to SI units
855 /* pressure from the sensor to altitude in meters */
857 ao_pres_to_altitude(int16_t pres) __reentrant;
860 ao_altitude_to_pres(int16_t alt) __reentrant;
863 ao_temp_to_dC(int16_t temp) __reentrant;
868 * debug another telemetrum board
871 /* Send a byte to the dbg target */
873 ao_dbg_send_byte(uint8_t byte);
875 /* Receive a byte from the dbg target */
877 ao_dbg_recv_byte(void);
879 /* Start a bulk transfer to/from dbg target memory */
881 ao_dbg_start_transfer(uint16_t addr);
883 /* End a bulk transfer to/from dbg target memory */
885 ao_dbg_end_transfer(void);
887 /* Write a byte to dbg target memory */
889 ao_dbg_write_byte(uint8_t byte);
891 /* Read a byte from dbg target memory */
893 ao_dbg_read_byte(void);
895 /* Enable dbg mode, switching use of the pins */
897 ao_dbg_debug_mode(void);
899 /* Reset the dbg target */
911 #error Please define HAS_SERIAL_1
915 #ifndef USE_SERIAL_STDIN
916 #error Please define USE_SERIAL_STDIN
920 ao_serial_rx1_isr(void) __interrupt 3;
923 ao_serial_tx1_isr(void) __interrupt 14;
926 ao_serial_getchar(void) __critical;
930 ao_serial_pollchar(void) __critical;
933 ao_serial_set_stdin(uint8_t stdin);
937 ao_serial_putchar(char c) __critical;
940 ao_serial_drain(void) __critical;
942 #define AO_SERIAL_SPEED_4800 0
943 #define AO_SERIAL_SPEED_9600 1
944 #define AO_SERIAL_SPEED_19200 2
945 #define AO_SERIAL_SPEED_57600 3
948 ao_serial_set_speed(uint8_t speed);
951 ao_serial_init(void);
959 ao_spi_send(void __xdata *block, uint16_t len) __reentrant;
962 ao_spi_recv(void __xdata *block, uint16_t len) __reentrant;
971 #define AO_GPS_NUM_SAT_MASK (0xf << 0)
972 #define AO_GPS_NUM_SAT_SHIFT (0)
974 #define AO_GPS_VALID (1 << 4)
975 #define AO_GPS_RUNNING (1 << 5)
976 #define AO_GPS_DATE_VALID (1 << 6)
977 #define AO_GPS_COURSE_VALID (1 << 7)
979 extern __xdata uint16_t ao_gps_tick;
989 int32_t latitude; /* degrees * 10⁷ */
990 int32_t longitude; /* degrees * 10⁷ */
991 int16_t altitude; /* m */
992 uint16_t ground_speed; /* cm/s */
993 uint8_t course; /* degrees / 2 */
994 uint8_t hdop; /* * 5 */
995 int16_t climb_rate; /* cm/s */
996 uint16_t h_error; /* m */
997 uint16_t v_error; /* m */
1000 struct ao_gps_sat_data {
1005 #define AO_MAX_GPS_TRACKING 12
1007 struct ao_gps_tracking_data {
1009 struct ao_gps_sat_data sats[AO_MAX_GPS_TRACKING];
1012 extern __xdata uint8_t ao_gps_mutex;
1013 extern __xdata struct ao_gps_data ao_gps_data;
1014 extern __xdata struct ao_gps_tracking_data ao_gps_tracking_data;
1020 ao_gps_print(__xdata struct ao_gps_data *gps_data);
1023 ao_gps_tracking_print(__xdata struct ao_gps_tracking_data *gps_tracking_data);
1033 ao_gps_report(void);
1036 ao_gps_report_init(void);
1042 #define AO_MAX_CALLSIGN 8
1044 struct ao_telemetry {
1047 uint8_t flight_state;
1049 int16_t ground_accel;
1058 int16_t ground_pres;
1059 int16_t accel_plus_g;
1060 int16_t accel_minus_g;
1062 struct ao_gps_data gps;
1063 char callsign[AO_MAX_CALLSIGN];
1064 struct ao_gps_tracking_data gps_tracking;
1067 struct ao_telemetry_tiny {
1070 uint8_t flight_state;
1071 int16_t height; /* AGL in meters */
1072 int16_t speed; /* in m/s * 16 */
1073 int16_t accel; /* in m/s² * 16 */
1074 int16_t ground_pres; /* sensor units */
1075 struct ao_adc adc; /* raw ADC readings */
1076 char callsign[AO_MAX_CALLSIGN];
1080 * ao_radio_recv tacks on rssi and status bytes
1082 struct ao_telemetry_recv {
1083 struct ao_telemetry telemetry;
1088 struct ao_telemetry_tiny_recv {
1089 struct ao_telemetry_tiny telemetry_tiny;
1094 /* Set delay between telemetry reports (0 to disable) */
1096 #define AO_TELEMETRY_INTERVAL_PAD AO_MS_TO_TICKS(1000)
1097 #define AO_TELEMETRY_INTERVAL_FLIGHT AO_MS_TO_TICKS(100)
1098 #define AO_TELEMETRY_INTERVAL_RECOVER AO_MS_TO_TICKS(1000)
1101 ao_telemetry_set_interval(uint16_t interval);
1104 ao_rdf_set(uint8_t rdf);
1107 ao_telemetry_init(void);
1110 ao_telemetry_tiny_init(void);
1116 extern __xdata uint8_t ao_radio_dma;
1117 extern __xdata uint8_t ao_radio_dma_done;
1118 extern __xdata uint8_t ao_radio_done;
1119 extern __xdata uint8_t ao_radio_mutex;
1122 ao_radio_general_isr(void) __interrupt 16;
1125 ao_radio_get(uint8_t len);
1127 #define ao_radio_put() ao_mutex_put(&ao_radio_mutex)
1130 ao_radio_set_packet(void);
1133 ao_radio_send(__xdata void *data, uint8_t size) __reentrant;
1136 ao_radio_recv(__xdata void *data, uint8_t size) __reentrant;
1139 ao_radio_recv_abort(void);
1142 ao_radio_rdf(int ms);
1145 ao_radio_rdf_abort(void);
1148 ao_radio_idle(void);
1151 ao_radio_init(void);
1157 extern const char const * const ao_state_names[];
1162 #define AO_MONITORING_OFF 0
1163 #define AO_MONITORING_FULL 1
1164 #define AO_MONITORING_TINY 2
1167 ao_set_monitor(uint8_t monitoring);
1170 ao_monitor_init(uint8_t led, uint8_t monitoring) __reentrant;
1176 #define AO_READ_AGAIN ((char) -1)
1179 char (*pollchar)(void);
1180 void (*putchar)(char c) __reentrant;
1181 void (*flush)(void);
1185 extern __xdata struct ao_stdio ao_stdios[];
1186 extern __data int8_t ao_cur_stdio;
1187 extern __data int8_t ao_num_stdios;
1192 extern __xdata uint8_t ao_stdin_ready;
1198 ao_add_stdio(char (*pollchar)(void),
1199 void (*putchar)(char) __reentrant,
1200 void (*flush)(void)) __reentrant;
1207 ao_igniter_drogue = 0,
1212 ao_ignite(enum ao_igniter igniter);
1214 enum ao_igniter_status {
1215 ao_igniter_unknown, /* unknown status (ambiguous voltage) */
1216 ao_igniter_ready, /* continuity detected */
1217 ao_igniter_active, /* igniter firing */
1218 ao_igniter_open, /* open circuit detected */
1221 enum ao_igniter_status
1222 ao_igniter_status(enum ao_igniter igniter);
1225 ao_igniter_init(void);
1231 #define AO_CONFIG_MAJOR 1
1232 #define AO_CONFIG_MINOR 4
1237 uint16_t main_deploy;
1238 int16_t accel_plus_g; /* changed for minor version 2 */
1239 uint8_t radio_channel;
1240 char callsign[AO_MAX_CALLSIGN + 1];
1241 uint8_t apogee_delay; /* minor version 1 */
1242 int16_t accel_minus_g; /* minor version 2 */
1243 uint32_t radio_cal; /* minor version 3 */
1244 uint32_t flight_log_max; /* minor version 4 */
1247 extern __xdata struct ao_config ao_config;
1249 #define AO_CONFIG_MAX_SIZE 128
1252 ao_config_get(void);
1255 ao_config_put(void);
1258 ao_config_init(void);
1265 ao_rssi_set(int rssi_value);
1268 ao_rssi_init(uint8_t rssi_led);
1273 * values which need to be defined for
1274 * each instance of a product
1277 extern const char ao_version[];
1278 extern const char ao_manufacturer[];
1279 extern const char ao_product[];
1285 #define AO_FIFO_SIZE 32
1290 char fifo[AO_FIFO_SIZE];
1293 #define ao_fifo_insert(f,c) do { \
1294 (f).fifo[(f).insert] = (c); \
1295 (f).insert = ((f).insert + 1) & (AO_FIFO_SIZE-1); \
1298 #define ao_fifo_remove(f,c) do {\
1299 c = (f).fifo[(f).remove]; \
1300 (f).remove = ((f).remove + 1) & (AO_FIFO_SIZE-1); \
1303 #define ao_fifo_full(f) ((((f).insert + 1) & (AO_FIFO_SIZE-1)) == (f).remove)
1304 #define ao_fifo_empty(f) ((f).insert == (f).remove)
1309 * Packet-based command interface
1312 #define AO_PACKET_MAX 64
1313 #define AO_PACKET_SYN (uint8_t) 0xff
1320 uint8_t d[AO_PACKET_MAX];
1321 uint8_t callsign[AO_MAX_CALLSIGN];
1324 struct ao_packet_recv {
1325 struct ao_packet packet;
1330 extern __xdata struct ao_packet_recv ao_rx_packet;
1331 extern __xdata struct ao_packet ao_tx_packet;
1332 extern __xdata struct ao_task ao_packet_task;
1333 extern __xdata uint8_t ao_packet_enable;
1334 extern __xdata uint8_t ao_packet_master_sleeping;
1335 extern __pdata uint8_t ao_packet_rx_len, ao_packet_rx_used, ao_packet_tx_used;
1338 ao_packet_send(void);
1341 ao_packet_recv(void);
1344 ao_packet_flush(void);
1347 ao_packet_putchar(char c) __reentrant;
1350 ao_packet_pollchar(void) __critical;
1352 /* ao_packet_master.c */
1355 ao_packet_master_init(void);
1357 /* ao_packet_slave.c */
1360 ao_packet_slave_start(void);
1363 ao_packet_slave_stop(void);
1366 ao_packet_slave_init(uint8_t enable);
1370 /* If bt_link is on P2, this interrupt is shared by USB, so the USB
1371 * code calls this function. Otherwise, it's a regular ISR.