a3519150823a87763b441e25bd0ed57854397584
[fw/altos] / src / ao.h
1 /*
2  * Copyright © 2009 Keith Packard <keithp@keithp.com>
3  *
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
7  *
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.
12  *
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.
16  */
17
18 #ifndef _AO_H_
19 #define _AO_H_
20
21 #include <stdint.h>
22 #include <stdio.h>
23 #include <string.h>
24 #include <stddef.h>
25 #include "cc1111.h"
26 #include "ao_pins.h"
27
28 #define TRUE 1
29 #define FALSE 0
30
31 /* Convert a __data pointer into an __xdata pointer */
32 #define DATA_TO_XDATA(a)        ((void __xdata *) ((uint8_t) (a) | 0xff00))
33
34 /* Convert a __code pointer into an __xdata pointer */
35 #define CODE_TO_XDATA(a)        ((void __xdata *) ((uint16_t) (a)))
36
37 /* Stack runs from above the allocated __data space to 0xfe, which avoids
38  * writing to 0xff as that triggers the stack overflow indicator
39  */
40 #define AO_STACK_START  0x80
41 #define AO_STACK_END    0xfe
42 #define AO_STACK_SIZE   (AO_STACK_END - AO_STACK_START + 1)
43
44 /* An AltOS task */
45 struct ao_task {
46         __xdata void *wchan;            /* current wait channel (NULL if running) */
47         uint16_t alarm;                 /* abort ao_sleep time */
48         uint8_t stack_count;            /* amount of saved stack */
49         uint8_t task_id;                /* unique id */
50         __code char *name;              /* task name */
51         uint8_t stack[AO_STACK_SIZE];   /* saved stack */
52 };
53
54 extern __xdata struct ao_task *__data ao_cur_task;
55
56 #define AO_NUM_TASKS            16      /* maximum number of tasks */
57 #define AO_NO_TASK              0       /* no task id */
58
59 /*
60  ao_task.c
61  */
62
63 /* Suspend the current task until wchan is awoken.
64  * returns:
65  *  0 on normal wake
66  *  1 on alarm
67  */
68 uint8_t
69 ao_sleep(__xdata void *wchan);
70
71 /* Wake all tasks sleeping on wchan */
72 void
73 ao_wakeup(__xdata void *wchan);
74
75 /* Wake up a specific task */
76 void
77 ao_wake_task(__xdata struct ao_task *task);
78
79 /* set an alarm to go off in 'delay' ticks */
80 void
81 ao_alarm(uint16_t delay);
82
83 /* Yield the processor to another task */
84 void
85 ao_yield(void) __naked;
86
87 /* Add a task to the run queue */
88 void
89 ao_add_task(__xdata struct ao_task * task, void (*start)(void), __code char *name) __reentrant;
90
91 /* Terminate the current task */
92 void
93 ao_exit(void);
94
95 /* Dump task info to console */
96 void
97 ao_task_info(void);
98
99 /* Start the scheduler. This will not return */
100 void
101 ao_start_scheduler(void);
102
103 /*
104  * ao_panic.c
105  */
106
107 #define AO_PANIC_NO_TASK        1       /* AO_NUM_TASKS is not large enough */
108 #define AO_PANIC_DMA            2       /* Attempt to start DMA while active */
109 #define AO_PANIC_MUTEX          3       /* Mis-using mutex API */
110 #define AO_PANIC_EE             4       /* Mis-using eeprom API */
111 #define AO_PANIC_LOG            5       /* Failing to read/write log data */
112 #define AO_PANIC_CMD            6       /* Too many command sets registered */
113 #define AO_PANIC_STDIO          7       /* Too many stdio handlers registered */
114 #define AO_PANIC_REBOOT         8       /* Reboot failed */
115 #define AO_PANIC_FLASH          9       /* Invalid flash part (or wrong blocksize) */
116 #define AO_PANIC_USB            10      /* Trying to send USB packet while busy */
117
118 /* Stop the operating system, beeping and blinking the reason */
119 void
120 ao_panic(uint8_t reason);
121
122 /*
123  * ao_timer.c
124  */
125
126 /* Our timer runs at 100Hz */
127 #define AO_HERTZ                100
128 #define AO_MS_TO_TICKS(ms)      ((ms) / (1000 / AO_HERTZ))
129 #define AO_SEC_TO_TICKS(s)      ((s) * AO_HERTZ)
130
131 /* Returns the current time in ticks */
132 uint16_t
133 ao_time(void);
134
135 /* Suspend the current task until ticks time has passed */
136 void
137 ao_delay(uint16_t ticks);
138
139 /* Set the ADC interval */
140 void
141 ao_timer_set_adc_interval(uint8_t interval) __critical;
142
143 /* Timer interrupt */
144 void
145 ao_timer_isr(void) __interrupt 9;
146
147 /* Initialize the timer */
148 void
149 ao_timer_init(void);
150
151 /* Initialize the hardware clock. Must be called first */
152 void
153 ao_clock_init(void);
154
155 /*
156  * One set of samples read from the A/D converter or telemetry
157  */
158 struct ao_adc {
159         uint16_t        tick;           /* tick when the sample was read */
160         int16_t         accel;          /* accelerometer */
161         int16_t         pres;           /* pressure sensor */
162         int16_t         temp;           /* temperature sensor */
163         int16_t         v_batt;         /* battery voltage */
164         int16_t         sense_d;        /* drogue continuity sense */
165         int16_t         sense_m;        /* main continuity sense */
166 };
167
168 #ifndef HAS_ADC
169 #error Please define HAS_ADC
170 #endif
171
172 #if HAS_ADC
173 /*
174  * ao_adc.c
175  */
176
177 #define AO_ADC_RING     32
178 #define ao_adc_ring_next(n)     (((n) + 1) & (AO_ADC_RING - 1))
179 #define ao_adc_ring_prev(n)     (((n) - 1) & (AO_ADC_RING - 1))
180
181
182 /*
183  * A/D data is stored in a ring, with the next sample to be written
184  * at ao_adc_head
185  */
186 extern volatile __xdata struct ao_adc   ao_adc_ring[AO_ADC_RING];
187 extern volatile __data uint8_t          ao_adc_head;
188
189 /* Trigger a conversion sequence (called from the timer interrupt) */
190 void
191 ao_adc_poll(void);
192
193 /* Suspend the current task until another A/D sample is converted */
194 void
195 ao_adc_sleep(void);
196
197 /* Get a copy of the last complete A/D sample set */
198 void
199 ao_adc_get(__xdata struct ao_adc *packet);
200
201 /* The A/D interrupt handler */
202
203 void
204 ao_adc_isr(void) __interrupt 1;
205
206 /* Initialize the A/D converter */
207 void
208 ao_adc_init(void);
209
210 #endif /* HAS_ADC */
211
212 /*
213  * ao_beep.c
214  */
215
216 /*
217  * Various pre-defined beep frequencies
218  *
219  * frequency = 1/2 (24e6/32) / beep
220  */
221
222 #define AO_BEEP_LOW     150     /* 2500Hz */
223 #define AO_BEEP_MID     94      /* 3989Hz */
224 #define AO_BEEP_HIGH    75      /* 5000Hz */
225 #define AO_BEEP_OFF     0       /* off */
226
227 #define AO_BEEP_g       240     /* 1562.5Hz */
228 #define AO_BEEP_gs      227     /* 1652Hz (1655Hz) */
229 #define AO_BEEP_aa      214     /* 1752Hz (1754Hz) */
230 #define AO_BEEP_bbf     202     /* 1856Hz (1858Hz) */
231 #define AO_BEEP_bb      190     /* 1974Hz (1969Hz) */
232 #define AO_BEEP_cc      180     /* 2083Hz (2086Hz) */
233 #define AO_BEEP_ccs     170     /* 2205Hz (2210Hz) */
234 #define AO_BEEP_dd      160     /* 2344Hz (2341Hz) */
235 #define AO_BEEP_eef     151     /* 2483Hz (2480Hz) */
236 #define AO_BEEP_ee      143     /* 2622Hz (2628Hz) */
237 #define AO_BEEP_ff      135     /* 2778Hz (2784Hz) */
238 #define AO_BEEP_ffs     127     /* 2953Hz (2950Hz) */
239 #define AO_BEEP_gg      120     /* 3125Hz */
240 #define AO_BEEP_ggs     113     /* 3319Hz (3311Hz) */
241 #define AO_BEEP_aaa     107     /* 3504Hz (3508Hz) */
242 #define AO_BEEP_bbbf    101     /* 3713Hz (3716Hz) */
243 #define AO_BEEP_bbb     95      /* 3947Hz (3937Hz) */
244 #define AO_BEEP_ccc     90      /* 4167Hz (4171Hz) */
245 #define AO_BEEP_cccs    85      /* 4412Hz (4419Hz) */
246 #define AO_BEEP_ddd     80      /* 4688Hz (4682Hz) */
247 #define AO_BEEP_eeef    76      /* 4934Hz (4961Hz) */
248 #define AO_BEEP_eee     71      /* 5282Hz (5256Hz) */
249 #define AO_BEEP_fff     67      /* 5597Hz (5568Hz) */
250 #define AO_BEEP_fffs    64      /* 5859Hz (5899Hz) */
251 #define AO_BEEP_ggg     60      /* 6250Hz */
252
253 /* Set the beeper to the specified tone */
254 void
255 ao_beep(uint8_t beep);
256
257 /* Turn on the beeper for the specified time */
258 void
259 ao_beep_for(uint8_t beep, uint16_t ticks) __reentrant;
260
261 /* Initialize the beeper */
262 void
263 ao_beep_init(void);
264
265 /*
266  * ao_led.c
267  */
268
269 #define AO_LED_NONE     0
270
271 /* Turn on the specified LEDs */
272 void
273 ao_led_on(uint8_t colors);
274
275 /* Turn off the specified LEDs */
276 void
277 ao_led_off(uint8_t colors);
278
279 /* Set all of the LEDs to the specified state */
280 void
281 ao_led_set(uint8_t colors);
282
283 /* Toggle the specified LEDs */
284 void
285 ao_led_toggle(uint8_t colors);
286
287 /* Turn on the specified LEDs for the indicated interval */
288 void
289 ao_led_for(uint8_t colors, uint16_t ticks) __reentrant;
290
291 /* Initialize the LEDs */
292 void
293 ao_led_init(uint8_t enable);
294
295 /*
296  * ao_romconfig.c
297  */
298
299 #define AO_ROMCONFIG_VERSION    2
300
301 extern __code __at (0x00a0) uint16_t ao_romconfig_version;
302 extern __code __at (0x00a2) uint16_t ao_romconfig_check;
303 extern __code __at (0x00a4) uint16_t ao_serial_number;
304 extern __code __at (0x00a6) uint32_t ao_radio_cal;
305 extern __code __at (0x00aa) uint8_t ao_usb_descriptors [];
306
307 /*
308  * ao_usb.c
309  */
310
311 /* Put one character to the USB output queue */
312 void
313 ao_usb_putchar(char c);
314
315 /* Get one character from the USB input queue */
316 char
317 ao_usb_getchar(void);
318
319 /* Poll for a charcter on the USB input queue.
320  * returns AO_READ_AGAIN if none are available
321  */
322 char
323 ao_usb_pollchar(void);
324
325 /* Flush the USB output queue */
326 void
327 ao_usb_flush(void);
328
329 /* USB interrupt handler */
330 void
331 ao_usb_isr(void) __interrupt 6;
332
333 /* Enable the USB controller */
334 void
335 ao_usb_enable(void);
336
337 /* Disable the USB controller */
338 void
339 ao_usb_disable(void);
340
341 /* Initialize the USB system */
342 void
343 ao_usb_init(void);
344
345 /*
346  * ao_cmd.c
347  */
348
349 enum ao_cmd_status {
350         ao_cmd_success = 0,
351         ao_cmd_lex_error = 1,
352         ao_cmd_syntax_error = 2,
353 };
354
355 extern __xdata uint16_t ao_cmd_lex_i;
356 extern __xdata uint32_t ao_cmd_lex_u32;
357 extern __xdata char     ao_cmd_lex_c;
358 extern __xdata enum ao_cmd_status ao_cmd_status;
359
360 void
361 ao_cmd_lex(void);
362
363 void
364 ao_cmd_put8(uint8_t v);
365
366 void
367 ao_cmd_put16(uint16_t v);
368
369 void
370 ao_cmd_white(void);
371
372 void
373 ao_cmd_hex(void);
374
375 void
376 ao_cmd_decimal(void);
377
378 uint8_t
379 ao_match_word(__code char *word);
380
381 struct ao_cmds {
382         char            cmd;
383         void            (*func)(void);
384         const char      *help;
385 };
386
387 void
388 ao_cmd_register(__code struct ao_cmds *cmds);
389
390 void
391 ao_cmd_init(void);
392
393 /*
394  * ao_dma.c
395  */
396
397 /* Allocate a DMA channel. the 'done' parameter will be set
398  * when the dma is finished or aborted and will be used to
399  * wakeup any waiters
400  */
401
402 #define AO_DMA_DONE     1
403 #define AO_DMA_ABORTED  2
404
405 uint8_t
406 ao_dma_alloc(__xdata uint8_t * done);
407
408 /* Setup a DMA channel */
409 void
410 ao_dma_set_transfer(uint8_t id,
411                     void __xdata *srcaddr,
412                     void __xdata *dstaddr,
413                     uint16_t count,
414                     uint8_t cfg0,
415                     uint8_t cfg1);
416
417 /* Start a DMA channel */
418 void
419 ao_dma_start(uint8_t id);
420
421 /* Manually trigger a DMA channel */
422 void
423 ao_dma_trigger(uint8_t id);
424
425 /* Abort a running DMA transfer */
426 void
427 ao_dma_abort(uint8_t id);
428
429 /* DMA interrupt routine */
430 void
431 ao_dma_isr(void) __interrupt 8;
432
433 /*
434  * ao_mutex.c
435  */
436
437 void
438 ao_mutex_get(__xdata uint8_t *ao_mutex) __reentrant;
439
440 void
441 ao_mutex_put(__xdata uint8_t *ao_mutex) __reentrant;
442
443 /*
444  * ao_ee.c
445  */
446
447 /*
448  * We reserve the last block on the device for
449  * configuration space. Writes and reads in this
450  * area return errors.
451  */
452
453 #define AO_EE_BLOCK_SIZE        ((uint16_t) (256))
454 #define AO_EE_DEVICE_SIZE       ((uint32_t) 128 * (uint32_t) 1024)
455 #define AO_EE_DATA_SIZE         (AO_EE_DEVICE_SIZE - (uint32_t) AO_EE_BLOCK_SIZE)
456 #define AO_EE_CONFIG_BLOCK      ((uint16_t) (AO_EE_DATA_SIZE / AO_EE_BLOCK_SIZE))
457
458 void
459 ao_ee_flush(void) __reentrant;
460
461 /* Write to the eeprom */
462 uint8_t
463 ao_ee_write(uint32_t pos, uint8_t *buf, uint16_t len) __reentrant;
464
465 /* Read from the eeprom */
466 uint8_t
467 ao_ee_read(uint32_t pos, uint8_t *buf, uint16_t len) __reentrant;
468
469 /* Write the config block (at the end of the eeprom) */
470 uint8_t
471 ao_ee_write_config(uint8_t *buf, uint16_t len) __reentrant;
472
473 /* Read the config block (at the end of the eeprom) */
474 uint8_t
475 ao_ee_read_config(uint8_t *buf, uint16_t len) __reentrant;
476
477 /* Initialize the EEPROM code */
478 void
479 ao_ee_init(void);
480
481 /*
482  * ao_log.c
483  */
484
485 /*
486  * The data log is recorded in the eeprom as a sequence
487  * of data packets.
488  *
489  * Each packet starts with a 4-byte header that has the
490  * packet type, the packet checksum and the tick count. Then
491  * they all contain 2 16 bit values which hold packet-specific
492  * data.
493  *
494  * For each flight, the first packet
495  * is FLIGHT packet, indicating the serial number of the
496  * device and a unique number marking the number of flights
497  * recorded by this device.
498  *
499  * During flight, data from the accelerometer and barometer
500  * are recorded in SENSOR packets, using the raw 16-bit values
501  * read from the A/D converter.
502  *
503  * Also during flight, but at a lower rate, the deployment
504  * sensors are recorded in DEPLOY packets. The goal here is to
505  * detect failure in the deployment circuits.
506  *
507  * STATE packets hold state transitions as the flight computer
508  * transitions through different stages of the flight.
509  */
510 #define AO_LOG_FLIGHT           'F'
511 #define AO_LOG_SENSOR           'A'
512 #define AO_LOG_TEMP_VOLT        'T'
513 #define AO_LOG_DEPLOY           'D'
514 #define AO_LOG_STATE            'S'
515 #define AO_LOG_GPS_TIME         'G'
516 #define AO_LOG_GPS_LAT          'N'
517 #define AO_LOG_GPS_LON          'W'
518 #define AO_LOG_GPS_ALT          'H'
519 #define AO_LOG_GPS_SAT          'V'
520 #define AO_LOG_GPS_DATE         'Y'
521
522 #define AO_LOG_POS_NONE         (~0UL)
523
524 struct ao_log_record {
525         char                    type;
526         uint8_t                 csum;
527         uint16_t                tick;
528         union {
529                 struct {
530                         int16_t         ground_accel;
531                         uint16_t        flight;
532                 } flight;
533                 struct {
534                         int16_t         accel;
535                         int16_t         pres;
536                 } sensor;
537                 struct {
538                         int16_t         temp;
539                         int16_t         v_batt;
540                 } temp_volt;
541                 struct {
542                         int16_t         drogue;
543                         int16_t         main;
544                 } deploy;
545                 struct {
546                         uint16_t        state;
547                         uint16_t        reason;
548                 } state;
549                 struct {
550                         uint8_t         hour;
551                         uint8_t         minute;
552                         uint8_t         second;
553                         uint8_t         flags;
554                 } gps_time;
555                 int32_t         gps_latitude;
556                 int32_t         gps_longitude;
557                 struct {
558                         int16_t         altitude;
559                         uint16_t        unused;
560                 } gps_altitude;
561                 struct {
562                         uint16_t        svid;
563                         uint8_t         unused;
564                         uint8_t         c_n;
565                 } gps_sat;
566                 struct {
567                         uint8_t         year;
568                         uint8_t         month;
569                         uint8_t         day;
570                         uint8_t         extra;
571                 } gps_date;
572                 struct {
573                         uint16_t        d0;
574                         uint16_t        d1;
575                 } anon;
576         } u;
577 };
578
579 /* Write a record to the eeprom log */
580 uint8_t
581 ao_log_data(__xdata struct ao_log_record *log) __reentrant;
582
583 /* Flush the log */
584 void
585 ao_log_flush(void);
586
587 /* We record flight numbers in the first record of
588  * the log. Tasks may wait for this to be initialized
589  * by sleeping on this variable.
590  */
591 extern __xdata uint16_t ao_flight_number;
592
593 /* Retrieve first log record for the current flight */
594 uint8_t
595 ao_log_dump_first(void);
596
597 /* return next log record for the current flight */
598 uint8_t
599 ao_log_dump_next(void);
600
601 /* Logging thread main routine */
602 void
603 ao_log(void);
604
605 /* Start logging to eeprom */
606 void
607 ao_log_start(void);
608
609 /* Stop logging */
610 void
611 ao_log_stop(void);
612
613 /* Initialize the logging system */
614 void
615 ao_log_init(void);
616
617 /*
618  * ao_flight.c
619  */
620
621 enum ao_flight_state {
622         ao_flight_startup = 0,
623         ao_flight_idle = 1,
624         ao_flight_pad = 2,
625         ao_flight_boost = 3,
626         ao_flight_fast = 4,
627         ao_flight_coast = 5,
628         ao_flight_drogue = 6,
629         ao_flight_main = 7,
630         ao_flight_landed = 8,
631         ao_flight_invalid = 9
632 };
633
634 extern __xdata struct ao_adc            ao_flight_data;
635 extern __pdata enum ao_flight_state     ao_flight_state;
636 extern __pdata uint16_t                 ao_flight_tick;
637 extern __pdata int16_t                  ao_flight_accel;
638 extern __pdata int16_t                  ao_flight_pres;
639 extern __pdata int32_t                  ao_flight_vel;
640 extern __pdata int16_t                  ao_ground_pres;
641 extern __pdata int16_t                  ao_ground_accel;
642 extern __pdata int16_t                  ao_min_pres;
643 extern __pdata uint16_t                 ao_launch_time;
644 extern __xdata uint8_t                  ao_flight_force_idle;
645
646 /* Flight thread */
647 void
648 ao_flight(void);
649
650 /* Initialize flight thread */
651 void
652 ao_flight_init(void);
653
654 /*
655  * ao_report.c
656  */
657
658 void
659 ao_report_init(void);
660
661 /*
662  * ao_convert.c
663  *
664  * Given raw data, convert to SI units
665  */
666
667 /* pressure from the sensor to altitude in meters */
668 int16_t
669 ao_pres_to_altitude(int16_t pres) __reentrant;
670
671 int16_t
672 ao_altitude_to_pres(int16_t alt) __reentrant;
673
674 int16_t
675 ao_temp_to_dC(int16_t temp) __reentrant;
676
677 /*
678  * ao_dbg.c
679  *
680  * debug another telemetrum board
681  */
682
683 /* Send a byte to the dbg target */
684 void
685 ao_dbg_send_byte(uint8_t byte);
686
687 /* Receive a byte from the dbg target */
688 uint8_t
689 ao_dbg_recv_byte(void);
690
691 /* Start a bulk transfer to/from dbg target memory */
692 void
693 ao_dbg_start_transfer(uint16_t addr);
694
695 /* End a bulk transfer to/from dbg target memory */
696 void
697 ao_dbg_end_transfer(void);
698
699 /* Write a byte to dbg target memory */
700 void
701 ao_dbg_write_byte(uint8_t byte);
702
703 /* Read a byte from dbg target memory */
704 uint8_t
705 ao_dbg_read_byte(void);
706
707 /* Enable dbg mode, switching use of the pins */
708 void
709 ao_dbg_debug_mode(void);
710
711 /* Reset the dbg target */
712 void
713 ao_dbg_reset(void);
714
715 void
716 ao_dbg_init(void);
717
718 /*
719  * ao_serial.c
720  */
721
722 #ifndef HAS_SERIAL_1
723 #error Please define HAS_SERIAL_1
724 #endif
725
726 #if HAS_SERIAL_1
727 void
728 ao_serial_rx1_isr(void) __interrupt 3;
729
730 void
731 ao_serial_tx1_isr(void) __interrupt 14;
732
733 char
734 ao_serial_getchar(void) __critical;
735
736 void
737 ao_serial_putchar(char c) __critical;
738
739 #define AO_SERIAL_SPEED_4800    0
740 #define AO_SERIAL_SPEED_9600    1
741 #define AO_SERIAL_SPEED_57600   2
742
743 void
744 ao_serial_set_speed(uint8_t speed);
745
746 void
747 ao_serial_init(void);
748 #endif
749
750 /*
751  * ao_gps.c
752  */
753
754 #define AO_GPS_NUM_SAT_MASK     (0xf << 0)
755 #define AO_GPS_NUM_SAT_SHIFT    (0)
756
757 #define AO_GPS_VALID            (1 << 4)
758 #define AO_GPS_RUNNING          (1 << 5)
759 #define AO_GPS_DATE_VALID       (1 << 6)
760
761 extern __xdata uint16_t ao_gps_tick;
762
763 struct ao_gps_data {
764         uint8_t                 year;
765         uint8_t                 month;
766         uint8_t                 day;
767         uint8_t                 hour;
768         uint8_t                 minute;
769         uint8_t                 second;
770         uint8_t                 flags;
771         int32_t                 latitude;       /* degrees * 10⁷ */
772         int32_t                 longitude;      /* degrees * 10⁷ */
773         int16_t                 altitude;       /* m */
774         uint16_t                ground_speed;   /* cm/s */
775         uint8_t                 course;         /* degrees / 2 */
776         uint8_t                 hdop;           /* * 5 */
777         int16_t                 climb_rate;     /* cm/s */
778         uint16_t                h_error;        /* m */
779         uint16_t                v_error;        /* m */
780 };
781
782 struct ao_gps_sat_data {
783         uint8_t         svid;
784         uint8_t         c_n_1;
785 };
786
787 #define AO_MAX_GPS_TRACKING     12
788
789 struct ao_gps_tracking_data {
790         uint8_t                 channels;
791         struct ao_gps_sat_data  sats[AO_MAX_GPS_TRACKING];
792 };
793
794 extern __xdata uint8_t ao_gps_mutex;
795 extern __xdata struct ao_gps_data ao_gps_data;
796 extern __xdata struct ao_gps_tracking_data ao_gps_tracking_data;
797
798 void
799 ao_gps(void);
800
801 void
802 ao_gps_print(__xdata struct ao_gps_data *gps_data);
803
804 void
805 ao_gps_tracking_print(__xdata struct ao_gps_tracking_data *gps_tracking_data);
806
807 void
808 ao_gps_init(void);
809
810 /*
811  * ao_gps_report.c
812  */
813
814 void
815 ao_gps_report(void);
816
817 void
818 ao_gps_report_init(void);
819
820 /*
821  * ao_telemetry.c
822  */
823
824 #define AO_MAX_CALLSIGN         8
825 #define AO_TELEMETRY_VERSION    3
826
827 struct ao_telemetry {
828         uint8_t                 addr;
829         uint16_t                flight;
830         uint8_t                 flight_state;
831         int16_t                 flight_accel;
832         int16_t                 ground_accel;
833         int32_t                 flight_vel;
834         int16_t                 flight_pres;
835         int16_t                 ground_pres;
836         int16_t                 accel_plus_g;
837         int16_t                 accel_minus_g;
838         struct ao_adc           adc;
839         struct ao_gps_data      gps;
840         char                    callsign[AO_MAX_CALLSIGN];
841         struct ao_gps_tracking_data     gps_tracking;
842 };
843
844 /* Set delay between telemetry reports (0 to disable) */
845
846 #define AO_TELEMETRY_INTERVAL_PAD       AO_MS_TO_TICKS(1000)
847 #define AO_TELEMETRY_INTERVAL_FLIGHT    AO_MS_TO_TICKS(50)
848 #define AO_TELEMETRY_INTERVAL_RECOVER   AO_MS_TO_TICKS(1000)
849
850 void
851 ao_telemetry_set_interval(uint16_t interval);
852
853 void
854 ao_rdf_set(uint8_t rdf);
855
856 void
857 ao_telemetry_init(void);
858
859 /*
860  * ao_radio.c
861  */
862
863 extern __xdata uint8_t  ao_radio_dma;
864 extern __xdata uint8_t ao_radio_dma_done;
865 extern __xdata uint8_t ao_radio_done;
866 extern __xdata uint8_t ao_radio_mutex;
867
868 void
869 ao_radio_general_isr(void) __interrupt 16;
870
871 void
872 ao_radio_get(void);
873
874 #define ao_radio_put() ao_mutex_put(&ao_radio_mutex)
875
876 void
877 ao_radio_set_telemetry(void);
878
879 void
880 ao_radio_set_packet(void);
881
882 void
883 ao_radio_set_rdf(void);
884
885 void
886 ao_radio_send(__xdata struct ao_telemetry *telemetry) __reentrant;
887
888 struct ao_radio_recv {
889         struct ao_telemetry     telemetry;
890         int8_t                  rssi;
891         uint8_t                 status;
892 };
893
894 uint8_t
895 ao_radio_recv(__xdata struct ao_radio_recv *recv) __reentrant;
896
897 void
898 ao_radio_rdf(int ms);
899
900 void
901 ao_radio_abort(void);
902
903 void
904 ao_radio_rdf_abort(void);
905
906 void
907 ao_radio_idle(void);
908
909 void
910 ao_radio_init(void);
911
912 /*
913  * ao_monitor.c
914  */
915
916 extern const char const * const ao_state_names[];
917
918 void
919 ao_monitor(void);
920
921 void
922 ao_set_monitor(uint8_t monitoring);
923
924 void
925 ao_monitor_init(uint8_t led, uint8_t monitoring) __reentrant;
926
927 /*
928  * ao_stdio.c
929  */
930
931 #define AO_READ_AGAIN   ((char) -1)
932
933 struct ao_stdio {
934         char    (*pollchar)(void);
935         void    (*putchar)(char c) __reentrant;
936         void    (*flush)(void);
937 };
938
939 void
940 flush(void);
941
942 extern __xdata uint8_t ao_stdin_ready;
943
944 void
945 ao_add_stdio(char (*pollchar)(void),
946              void (*putchar)(char) __reentrant,
947              void (*flush)(void));
948
949 /*
950  * ao_ignite.c
951  */
952
953 enum ao_igniter {
954         ao_igniter_drogue = 0,
955         ao_igniter_main = 1
956 };
957
958 void
959 ao_ignite(enum ao_igniter igniter);
960
961 enum ao_igniter_status {
962         ao_igniter_unknown,     /* unknown status (ambiguous voltage) */
963         ao_igniter_ready,       /* continuity detected */
964         ao_igniter_active,      /* igniter firing */
965         ao_igniter_open,        /* open circuit detected */
966 };
967
968 enum ao_igniter_status
969 ao_igniter_status(enum ao_igniter igniter);
970
971 void
972 ao_igniter_init(void);
973
974 /*
975  * ao_config.c
976  */
977
978 #define AO_CONFIG_MAJOR 1
979 #define AO_CONFIG_MINOR 3
980
981 struct ao_config {
982         uint8_t         major;
983         uint8_t         minor;
984         uint16_t        main_deploy;
985         int16_t         accel_plus_g;           /* changed for minor version 2 */
986         uint8_t         radio_channel;
987         char            callsign[AO_MAX_CALLSIGN + 1];
988         uint8_t         apogee_delay;           /* minor version 1 */
989         int16_t         accel_minus_g;          /* minor version 2 */
990         uint32_t        radio_cal;              /* minor version 3 */
991 };
992
993 extern __xdata struct ao_config ao_config;
994
995 void
996 ao_config_get(void);
997
998 void
999 ao_config_init(void);
1000
1001 /*
1002  * ao_rssi.c
1003  */
1004
1005 void
1006 ao_rssi_set(int rssi_value);
1007
1008 void
1009 ao_rssi_init(uint8_t rssi_led);
1010
1011 /*
1012  * ao_product.c
1013  *
1014  * values which need to be defined for
1015  * each instance of a product
1016  */
1017
1018 extern __code __at(0x00aa) uint8_t ao_usb_descriptors [];
1019 extern const char ao_version[];
1020 extern const char ao_manufacturer[];
1021 extern const char ao_product[];
1022
1023 /*
1024  * Fifos
1025  */
1026
1027 #define AO_FIFO_SIZE    32
1028
1029 struct ao_fifo {
1030         uint8_t insert;
1031         uint8_t remove;
1032         char    fifo[AO_FIFO_SIZE];
1033 };
1034
1035 #define ao_fifo_insert(f,c) do { \
1036         (f).fifo[(f).insert] = (c); \
1037         (f).insert = ((f).insert + 1) & (AO_FIFO_SIZE-1); \
1038 } while(0)
1039
1040 #define ao_fifo_remove(f,c) do {\
1041         c = (f).fifo[(f).remove]; \
1042         (f).remove = ((f).remove + 1) & (AO_FIFO_SIZE-1); \
1043 } while(0)
1044
1045 #define ao_fifo_full(f)         ((((f).insert + 1) & (AO_FIFO_SIZE-1)) == (f).remove)
1046 #define ao_fifo_empty(f)        ((f).insert == (f).remove)
1047
1048 /*
1049  * ao_packet.c
1050  *
1051  * Packet-based command interface
1052  */
1053
1054 #define AO_PACKET_MAX           64
1055 #define AO_PACKET_SYN           (uint8_t) 0xff
1056
1057 struct ao_packet {
1058         uint8_t         addr;
1059         uint8_t         len;
1060         uint8_t         seq;
1061         uint8_t         ack;
1062         uint8_t         d[AO_PACKET_MAX];
1063         uint8_t         callsign[AO_MAX_CALLSIGN];
1064 };
1065
1066 struct ao_packet_recv {
1067         struct ao_packet        packet;
1068         int8_t                  rssi;
1069         uint8_t                 status;
1070 };
1071
1072 extern __xdata struct ao_packet_recv ao_rx_packet;
1073 extern __xdata struct ao_packet ao_tx_packet;
1074 extern __xdata struct ao_task   ao_packet_task;
1075 extern __xdata uint8_t ao_packet_enable;
1076 extern __xdata uint8_t ao_packet_master_sleeping;
1077 extern __pdata uint8_t ao_packet_rx_len, ao_packet_rx_used, ao_packet_tx_used;
1078
1079 void
1080 ao_packet_send(void);
1081
1082 uint8_t
1083 ao_packet_recv(void);
1084
1085 void
1086 ao_packet_flush(void);
1087
1088 void
1089 ao_packet_putchar(char c) __reentrant;
1090
1091 char
1092 ao_packet_pollchar(void) __critical;
1093
1094 /* ao_packet_master.c */
1095
1096 void
1097 ao_packet_master_init(void);
1098
1099 /* ao_packet_slave.c */
1100
1101 void
1102 ao_packet_slave_start(void);
1103
1104 void
1105 ao_packet_slave_stop(void);
1106
1107 void
1108 ao_packet_slave_init(void);
1109
1110 /* ao_terraui.c */
1111
1112 void
1113 ao_terraui(void);
1114
1115 void
1116 ao_terraui_init(void);
1117
1118 /* ao_audio.c */
1119
1120 void
1121 ao_audio_test(void);
1122
1123 void
1124 ao_audio_send(__xdata uint8_t *samples, uint16_t nsamples) __reentrant;
1125
1126 void
1127 ao_audio_init(void);
1128
1129 #endif /* _AO_H_ */