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