altos: Move cc1111 DMA engine interface to cc1111/ao_arch.h from ao.h
[fw/altos] / src / core / 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 "ao_pins.h"
26 #include <ao_arch.h>
27
28 #define TRUE 1
29 #define FALSE 0
30
31 /* Convert a __data pointer into an __xdata pointer */
32 #ifndef DATA_TO_XDATA
33 #define DATA_TO_XDATA(a)        (a)
34 #endif
35 #ifndef PDATA_TO_XDATA
36 #define PDATA_TO_XDATA(a)       (a)
37 #endif
38 #ifndef CODE_TO_XDATA
39 #define CODE_TO_XDATA(a)        (a)
40 #endif
41
42 /* An AltOS task */
43 struct ao_task {
44         __xdata void *wchan;            /* current wait channel (NULL if running) */
45         uint16_t alarm;                 /* abort ao_sleep time */
46         ao_arch_task_members            /* any architecture-specific fields */
47         uint8_t task_id;                /* unique id */
48         __code char *name;              /* task name */
49         uint8_t stack[AO_STACK_SIZE];   /* saved stack */
50 };
51
52 extern __xdata struct ao_task *__data ao_cur_task;
53
54 #define AO_NUM_TASKS            16      /* maximum number of tasks */
55 #define AO_NO_TASK              0       /* no task id */
56
57 /*
58  ao_task.c
59  */
60
61 /* Suspend the current task until wchan is awoken.
62  * returns:
63  *  0 on normal wake
64  *  1 on alarm
65  */
66 uint8_t
67 ao_sleep(__xdata void *wchan);
68
69 /* Wake all tasks sleeping on wchan */
70 void
71 ao_wakeup(__xdata void *wchan);
72
73 /* set an alarm to go off in 'delay' ticks */
74 void
75 ao_alarm(uint16_t delay);
76
77 /* Clear any pending alarm */
78 void
79 ao_clear_alarm(void);
80
81 /* Yield the processor to another task */
82 void
83 ao_yield(void) ao_arch_naked_declare;
84
85 /* Add a task to the run queue */
86 void
87 ao_add_task(__xdata struct ao_task * task, void (*start)(void), __code char *name) __reentrant;
88
89 /* Terminate the current task */
90 void
91 ao_exit(void);
92
93 /* Dump task info to console */
94 void
95 ao_task_info(void);
96
97 /* Start the scheduler. This will not return */
98 void
99 ao_start_scheduler(void);
100
101 /*
102  * ao_panic.c
103  */
104
105 #define AO_PANIC_NO_TASK        1       /* AO_NUM_TASKS is not large enough */
106 #define AO_PANIC_DMA            2       /* Attempt to start DMA while active */
107 #define AO_PANIC_MUTEX          3       /* Mis-using mutex API */
108 #define AO_PANIC_EE             4       /* Mis-using eeprom API */
109 #define AO_PANIC_LOG            5       /* Failing to read/write log data */
110 #define AO_PANIC_CMD            6       /* Too many command sets registered */
111 #define AO_PANIC_STDIO          7       /* Too many stdio handlers registered */
112 #define AO_PANIC_REBOOT         8       /* Reboot failed */
113 #define AO_PANIC_FLASH          9       /* Invalid flash part (or wrong blocksize) */
114 #define AO_PANIC_USB            10      /* Trying to send USB packet while busy */
115 #define AO_PANIC_BT             11      /* Communications with bluetooth device failed */
116 #define AO_PANIC_STACK          12      /* Stack overflow */
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) ao_arch_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
159 #if HAS_ADC
160
161 /*
162  * ao_adc.c
163  */
164
165 #define ao_adc_ring_next(n)     (((n) + 1) & (AO_ADC_RING - 1))
166 #define ao_adc_ring_prev(n)     (((n) - 1) & (AO_ADC_RING - 1))
167
168
169 /*
170  * A/D data is stored in a ring, with the next sample to be written
171  * at ao_adc_head
172  */
173 extern volatile __xdata struct ao_adc   ao_adc_ring[AO_ADC_RING];
174 extern volatile __data uint8_t          ao_adc_head;
175 #if HAS_ACCEL_REF
176 extern volatile __xdata uint16_t        ao_accel_ref[AO_ADC_RING];
177 #endif
178
179 /* Trigger a conversion sequence (called from the timer interrupt) */
180 void
181 ao_adc_poll(void);
182
183 /* Suspend the current task until another A/D sample is converted */
184 void
185 ao_adc_sleep(void);
186
187 /* Get a copy of the last complete A/D sample set */
188 void
189 ao_adc_get(__xdata struct ao_adc *packet);
190
191 /* The A/D interrupt handler */
192
193 void
194 ao_adc_isr(void) ao_arch_interrupt(1);
195
196 /* Initialize the A/D converter */
197 void
198 ao_adc_init(void);
199
200 #endif /* HAS_ADC */
201
202 /*
203  * ao_beep.c
204  */
205
206 /*
207  * Various pre-defined beep frequencies
208  *
209  * frequency = 1/2 (24e6/32) / beep
210  */
211
212 #define AO_BEEP_LOW     150     /* 2500Hz */
213 #define AO_BEEP_MID     94      /* 3989Hz */
214 #define AO_BEEP_HIGH    75      /* 5000Hz */
215 #define AO_BEEP_OFF     0       /* off */
216
217 #define AO_BEEP_g       240     /* 1562.5Hz */
218 #define AO_BEEP_gs      227     /* 1652Hz (1655Hz) */
219 #define AO_BEEP_aa      214     /* 1752Hz (1754Hz) */
220 #define AO_BEEP_bbf     202     /* 1856Hz (1858Hz) */
221 #define AO_BEEP_bb      190     /* 1974Hz (1969Hz) */
222 #define AO_BEEP_cc      180     /* 2083Hz (2086Hz) */
223 #define AO_BEEP_ccs     170     /* 2205Hz (2210Hz) */
224 #define AO_BEEP_dd      160     /* 2344Hz (2341Hz) */
225 #define AO_BEEP_eef     151     /* 2483Hz (2480Hz) */
226 #define AO_BEEP_ee      143     /* 2622Hz (2628Hz) */
227 #define AO_BEEP_ff      135     /* 2778Hz (2784Hz) */
228 #define AO_BEEP_ffs     127     /* 2953Hz (2950Hz) */
229 #define AO_BEEP_gg      120     /* 3125Hz */
230 #define AO_BEEP_ggs     113     /* 3319Hz (3311Hz) */
231 #define AO_BEEP_aaa     107     /* 3504Hz (3508Hz) */
232 #define AO_BEEP_bbbf    101     /* 3713Hz (3716Hz) */
233 #define AO_BEEP_bbb     95      /* 3947Hz (3937Hz) */
234 #define AO_BEEP_ccc     90      /* 4167Hz (4171Hz) */
235 #define AO_BEEP_cccs    85      /* 4412Hz (4419Hz) */
236 #define AO_BEEP_ddd     80      /* 4688Hz (4682Hz) */
237 #define AO_BEEP_eeef    76      /* 4934Hz (4961Hz) */
238 #define AO_BEEP_eee     71      /* 5282Hz (5256Hz) */
239 #define AO_BEEP_fff     67      /* 5597Hz (5568Hz) */
240 #define AO_BEEP_fffs    64      /* 5859Hz (5899Hz) */
241 #define AO_BEEP_ggg     60      /* 6250Hz */
242
243 /* Set the beeper to the specified tone */
244 void
245 ao_beep(uint8_t beep);
246
247 /* Turn on the beeper for the specified time */
248 void
249 ao_beep_for(uint8_t beep, uint16_t ticks) __reentrant;
250
251 /* Initialize the beeper */
252 void
253 ao_beep_init(void);
254
255 /*
256  * ao_led.c
257  */
258
259 #define AO_LED_NONE     0
260
261 #ifndef AO_LED_TYPE
262 #define AO_LED_TYPE uint8_t
263 #endif
264
265 /* Turn on the specified LEDs */
266 void
267 ao_led_on(AO_LED_TYPE colors);
268
269 /* Turn off the specified LEDs */
270 void
271 ao_led_off(AO_LED_TYPE colors);
272
273 /* Set all of the LEDs to the specified state */
274 void
275 ao_led_set(AO_LED_TYPE colors);
276
277 /* Toggle the specified LEDs */
278 void
279 ao_led_toggle(AO_LED_TYPE colors);
280
281 /* Turn on the specified LEDs for the indicated interval */
282 void
283 ao_led_for(AO_LED_TYPE colors, uint16_t ticks) __reentrant;
284
285 /* Initialize the LEDs */
286 void
287 ao_led_init(AO_LED_TYPE enable);
288
289 /*
290  * ao_usb.c
291  */
292
293 /* Put one character to the USB output queue */
294 void
295 ao_usb_putchar(char c);
296
297 /* Get one character from the USB input queue */
298 char
299 ao_usb_getchar(void);
300
301 /* Poll for a charcter on the USB input queue.
302  * returns AO_READ_AGAIN if none are available
303  */
304 char
305 ao_usb_pollchar(void);
306
307 /* Flush the USB output queue */
308 void
309 ao_usb_flush(void);
310
311 #if HAS_USB
312 /* USB interrupt handler */
313 void
314 ao_usb_isr(void) ao_arch_interrupt(6);
315 #endif
316
317 /* Enable the USB controller */
318 void
319 ao_usb_enable(void);
320
321 /* Disable the USB controller */
322 void
323 ao_usb_disable(void);
324
325 /* Initialize the USB system */
326 void
327 ao_usb_init(void);
328
329 #if HAS_USB
330 extern __code __at (0x00aa) uint8_t ao_usb_descriptors [];
331 #endif
332
333 /*
334  * ao_cmd.c
335  */
336
337 enum ao_cmd_status {
338         ao_cmd_success = 0,
339         ao_cmd_lex_error = 1,
340         ao_cmd_syntax_error = 2,
341 };
342
343 extern __pdata uint16_t ao_cmd_lex_i;
344 extern __pdata uint32_t ao_cmd_lex_u32;
345 extern __pdata char     ao_cmd_lex_c;
346 extern __pdata enum ao_cmd_status ao_cmd_status;
347
348 void
349 ao_cmd_lex(void);
350
351 void
352 ao_cmd_put8(uint8_t v);
353
354 void
355 ao_cmd_put16(uint16_t v);
356
357 uint8_t
358 ao_cmd_is_white(void);
359
360 void
361 ao_cmd_white(void);
362
363 int8_t
364 ao_cmd_hexchar(char c);
365
366 void
367 ao_cmd_hexbyte(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         void            (*func)(void);
380         __code char     *help;
381 };
382
383 void
384 ao_cmd_register(const __code struct ao_cmds *cmds);
385
386 void
387 ao_cmd_init(void);
388
389 #if HAS_CMD_FILTER
390 /*
391  * Provided by an external module to filter raw command lines
392  */
393 uint8_t
394 ao_cmd_filter(void);
395 #endif
396
397 /*
398  * ao_mutex.c
399  */
400
401 void
402 ao_mutex_get(__xdata uint8_t *ao_mutex) __reentrant;
403
404 void
405 ao_mutex_put(__xdata uint8_t *ao_mutex) __reentrant;
406
407 /*
408  * Storage interface, provided by one of the eeprom or flash
409  * drivers
410  */
411
412 /* Total bytes of available storage */
413 extern __pdata uint32_t ao_storage_total;
414
415 /* Block size - device is erased in these units. At least 256 bytes */
416 extern __pdata uint32_t ao_storage_block;
417
418 /* Byte offset of config block. Will be ao_storage_block bytes long */
419 extern __pdata uint32_t ao_storage_config;
420
421 /* Storage unit size - device reads and writes must be within blocks of this size. Usually 256 bytes. */
422 extern __pdata uint16_t ao_storage_unit;
423
424 #define AO_STORAGE_ERASE_LOG    (ao_storage_config + AO_CONFIG_MAX_SIZE)
425
426 /* Initialize above values. Can only be called once the OS is running */
427 void
428 ao_storage_setup(void) __reentrant;
429
430 /* Write data. Returns 0 on failure, 1 on success */
431 uint8_t
432 ao_storage_write(uint32_t pos, __xdata void *buf, uint16_t len) __reentrant;
433
434 /* Read data. Returns 0 on failure, 1 on success */
435 uint8_t
436 ao_storage_read(uint32_t pos, __xdata void *buf, uint16_t len) __reentrant;
437
438 /* Erase a block of storage. This always clears ao_storage_block bytes */
439 uint8_t
440 ao_storage_erase(uint32_t pos) __reentrant;
441
442 /* Flush any pending writes to stable storage */
443 void
444 ao_storage_flush(void) __reentrant;
445
446 /* Initialize the storage code */
447 void
448 ao_storage_init(void);
449
450 /*
451  * Low-level functions wrapped by ao_storage.c
452  */
453
454 /* Read data within a storage unit */
455 uint8_t
456 ao_storage_device_read(uint32_t pos, __xdata void *buf, uint16_t len) __reentrant;
457
458 /* Write data within a storage unit */
459 uint8_t
460 ao_storage_device_write(uint32_t pos, __xdata void *buf, uint16_t len) __reentrant;
461
462 /* Initialize low-level device bits */
463 void
464 ao_storage_device_init(void);
465
466 /* Print out information about flash chips */
467 void
468 ao_storage_device_info(void) __reentrant;
469
470 /*
471  * ao_log.c
472  */
473
474 /* We record flight numbers in the first record of
475  * the log. Tasks may wait for this to be initialized
476  * by sleeping on this variable.
477  */
478 extern __xdata uint16_t ao_flight_number;
479
480 extern __pdata uint32_t ao_log_current_pos;
481 extern __pdata uint32_t ao_log_end_pos;
482 extern __pdata uint32_t ao_log_start_pos;
483 extern __xdata uint8_t  ao_log_running;
484 extern __pdata enum flight_state ao_log_state;
485
486 /* required functions from the underlying log system */
487
488 #define AO_LOG_FORMAT_UNKNOWN           0       /* unknown; altosui will have to guess */
489 #define AO_LOG_FORMAT_FULL              1       /* 8 byte typed log records */
490 #define AO_LOG_FORMAT_TINY              2       /* two byte state/baro records */
491 #define AO_LOG_FORMAT_TELEMETRY         3       /* 32 byte ao_telemetry records */
492 #define AO_LOG_FORMAT_TELESCIENCE       4       /* 32 byte typed telescience records */
493 #define AO_LOG_FORMAT_NONE              127     /* No log at all */
494
495 extern __code uint8_t ao_log_format;
496
497 /* Return the flight number from the given log slot, 0 if none */
498 uint16_t
499 ao_log_flight(uint8_t slot);
500
501 /* Flush the log */
502 void
503 ao_log_flush(void);
504
505 /* Logging thread main routine */
506 void
507 ao_log(void);
508
509 /* functions provided in ao_log.c */
510
511 /* Figure out the current flight number */
512 void
513 ao_log_scan(void) __reentrant;
514
515 /* Return the position of the start of the given log slot */
516 uint32_t
517 ao_log_pos(uint8_t slot);
518
519 /* Start logging to eeprom */
520 void
521 ao_log_start(void);
522
523 /* Stop logging */
524 void
525 ao_log_stop(void);
526
527 /* Initialize the logging system */
528 void
529 ao_log_init(void);
530
531 /* Write out the current flight number to the erase log */
532 void
533 ao_log_write_erase(uint8_t pos);
534
535 /* Returns true if there are any logs stored in eeprom */
536 uint8_t
537 ao_log_present(void);
538
539 /* Returns true if there is no more storage space available */
540 uint8_t
541 ao_log_full(void);
542
543 /*
544  * ao_log_big.c
545  */
546
547 /*
548  * The data log is recorded in the eeprom as a sequence
549  * of data packets.
550  *
551  * Each packet starts with a 4-byte header that has the
552  * packet type, the packet checksum and the tick count. Then
553  * they all contain 2 16 bit values which hold packet-specific
554  * data.
555  *
556  * For each flight, the first packet
557  * is FLIGHT packet, indicating the serial number of the
558  * device and a unique number marking the number of flights
559  * recorded by this device.
560  *
561  * During flight, data from the accelerometer and barometer
562  * are recorded in SENSOR packets, using the raw 16-bit values
563  * read from the A/D converter.
564  *
565  * Also during flight, but at a lower rate, the deployment
566  * sensors are recorded in DEPLOY packets. The goal here is to
567  * detect failure in the deployment circuits.
568  *
569  * STATE packets hold state transitions as the flight computer
570  * transitions through different stages of the flight.
571  */
572 #define AO_LOG_FLIGHT           'F'
573 #define AO_LOG_SENSOR           'A'
574 #define AO_LOG_TEMP_VOLT        'T'
575 #define AO_LOG_DEPLOY           'D'
576 #define AO_LOG_STATE            'S'
577 #define AO_LOG_GPS_TIME         'G'
578 #define AO_LOG_GPS_LAT          'N'
579 #define AO_LOG_GPS_LON          'W'
580 #define AO_LOG_GPS_ALT          'H'
581 #define AO_LOG_GPS_SAT          'V'
582 #define AO_LOG_GPS_DATE         'Y'
583
584 #define AO_LOG_POS_NONE         (~0UL)
585
586 struct ao_log_record {
587         char                    type;
588         uint8_t                 csum;
589         uint16_t                tick;
590         union {
591                 struct {
592                         int16_t         ground_accel;
593                         uint16_t        flight;
594                 } flight;
595                 struct {
596                         int16_t         accel;
597                         int16_t         pres;
598                 } sensor;
599                 struct {
600                         int16_t         temp;
601                         int16_t         v_batt;
602                 } temp_volt;
603                 struct {
604                         int16_t         drogue;
605                         int16_t         main;
606                 } deploy;
607                 struct {
608                         uint16_t        state;
609                         uint16_t        reason;
610                 } state;
611                 struct {
612                         uint8_t         hour;
613                         uint8_t         minute;
614                         uint8_t         second;
615                         uint8_t         flags;
616                 } gps_time;
617                 int32_t         gps_latitude;
618                 int32_t         gps_longitude;
619                 struct {
620                         int16_t         altitude;
621                         uint16_t        unused;
622                 } gps_altitude;
623                 struct {
624                         uint16_t        svid;
625                         uint8_t         unused;
626                         uint8_t         c_n;
627                 } gps_sat;
628                 struct {
629                         uint8_t         year;
630                         uint8_t         month;
631                         uint8_t         day;
632                         uint8_t         extra;
633                 } gps_date;
634                 struct {
635                         uint16_t        d0;
636                         uint16_t        d1;
637                 } anon;
638         } u;
639 };
640
641 /* Write a record to the eeprom log */
642 uint8_t
643 ao_log_data(__xdata struct ao_log_record *log) __reentrant;
644
645 /*
646  * ao_flight.c
647  */
648
649 enum ao_flight_state {
650         ao_flight_startup = 0,
651         ao_flight_idle = 1,
652         ao_flight_pad = 2,
653         ao_flight_boost = 3,
654         ao_flight_fast = 4,
655         ao_flight_coast = 5,
656         ao_flight_drogue = 6,
657         ao_flight_main = 7,
658         ao_flight_landed = 8,
659         ao_flight_invalid = 9
660 };
661
662 extern __pdata enum ao_flight_state     ao_flight_state;
663
664 extern __pdata uint16_t                 ao_launch_time;
665 extern __pdata uint8_t                  ao_flight_force_idle;
666
667 /* Flight thread */
668 void
669 ao_flight(void);
670
671 /* Initialize flight thread */
672 void
673 ao_flight_init(void);
674
675 /*
676  * ao_flight_nano.c
677  */
678
679 void
680 ao_flight_nano_init(void);
681
682 /*
683  * ao_sample.c
684  */
685
686 /*
687  * Barometer calibration
688  *
689  * We directly sample the barometer. The specs say:
690  *
691  * Pressure range: 15-115 kPa
692  * Voltage at 115kPa: 2.82
693  * Output scale: 27mV/kPa
694  *
695  * If we want to detect launch with the barometer, we need
696  * a large enough bump to not be fooled by noise. At typical
697  * launch elevations (0-2000m), a 200Pa pressure change cooresponds
698  * to about a 20m elevation change. This is 5.4mV, or about 3LSB.
699  * As all of our calculations are done in 16 bits, we'll actually see a change
700  * of 16 times this though
701  *
702  * 27 mV/kPa * 32767 / 3300 counts/mV = 268.1 counts/kPa
703  */
704
705 /* Accelerometer calibration
706  *
707  * We're sampling the accelerometer through a resistor divider which
708  * consists of 5k and 10k resistors. This multiplies the values by 2/3.
709  * That goes into the cc1111 A/D converter, which is running at 11 bits
710  * of precision with the bits in the MSB of the 16 bit value. Only positive
711  * values are used, so values should range from 0-32752 for 0-3.3V. The
712  * specs say we should see 40mV/g (uncalibrated), multiply by 2/3 for what
713  * the A/D converter sees (26.67 mV/g). We should see 32752/3300 counts/mV,
714  * for a final computation of:
715  *
716  * 26.67 mV/g * 32767/3300 counts/mV = 264.8 counts/g
717  *
718  * Zero g was measured at 16000 (we would expect 16384).
719  * Note that this value is only require to tell if the
720  * rocket is standing upright. Once that is determined,
721  * the value of the accelerometer is averaged for 100 samples
722  * to find the resting accelerometer value, which is used
723  * for all further flight computations
724  */
725
726 #define GRAVITY 9.80665
727
728 /*
729  * Above this height, the baro sensor doesn't work
730  */
731 #define AO_MAX_BARO_HEIGHT      12000
732
733 /*
734  * Above this speed, baro measurements are unreliable
735  */
736 #define AO_MAX_BARO_SPEED       200
737
738 #define ACCEL_NOSE_UP   (ao_accel_2g >> 2)
739
740 /*
741  * Speed and acceleration are scaled by 16 to provide a bit more
742  * resolution while still having reasonable range. Note that this
743  * limits speed to 2047m/s (around mach 6) and acceleration to
744  * 2047m/s² (over 200g)
745  */
746
747 #define AO_M_TO_HEIGHT(m)       ((int16_t) (m))
748 #define AO_MS_TO_SPEED(ms)      ((int16_t) ((ms) * 16))
749 #define AO_MSS_TO_ACCEL(mss)    ((int16_t) ((mss) * 16))
750
751 extern __pdata uint16_t ao_sample_tick;         /* time of last data */
752 extern __pdata int16_t  ao_sample_pres;         /* most recent pressure sensor reading */
753 extern __pdata int16_t  ao_sample_alt;          /* MSL of ao_sample_pres */
754 extern __pdata int16_t  ao_sample_height;       /* AGL of ao_sample_pres */
755 extern __data uint8_t   ao_sample_adc;          /* Ring position of last processed sample */
756
757 #if HAS_ACCEL
758 extern __pdata int16_t  ao_sample_accel;        /* most recent accel sensor reading */
759 #endif
760
761 extern __pdata int16_t  ao_ground_pres;         /* startup pressure */
762 extern __pdata int16_t  ao_ground_height;       /* MSL of ao_ground_pres */
763
764 #if HAS_ACCEL
765 extern __pdata int16_t  ao_ground_accel;        /* startup acceleration */
766 extern __pdata int16_t  ao_accel_2g;            /* factory accel calibration */
767 extern __pdata int32_t  ao_accel_scale;         /* sensor to m/s² conversion */
768 #endif
769
770 void ao_sample_init(void);
771
772 /* returns FALSE in preflight mode, TRUE in flight mode */
773 uint8_t ao_sample(void);
774
775 /*
776  * ao_kalman.c
777  */
778
779 #define to_fix16(x) ((int16_t) ((x) * 65536.0 + 0.5))
780 #define to_fix32(x) ((int32_t) ((x) * 65536.0 + 0.5))
781 #define from_fix(x)     ((x) >> 16)
782
783 extern __pdata int16_t                  ao_height;      /* meters */
784 extern __pdata int16_t                  ao_speed;       /* m/s * 16 */
785 extern __pdata int16_t                  ao_accel;       /* m/s² * 16 */
786 extern __pdata int16_t                  ao_max_height;  /* max of ao_height */
787 extern __pdata int16_t                  ao_avg_height;  /* running average of height */
788
789 extern __pdata int16_t                  ao_error_h;
790 extern __pdata int16_t                  ao_error_h_sq_avg;
791
792 #if HAS_ACCEL
793 extern __pdata int16_t                  ao_error_a;
794 #endif
795
796 void ao_kalman(void);
797
798 /*
799  * ao_report.c
800  */
801
802 void
803 ao_report_init(void);
804
805 /*
806  * ao_convert.c
807  *
808  * Given raw data, convert to SI units
809  */
810
811 /* pressure from the sensor to altitude in meters */
812 int16_t
813 ao_pres_to_altitude(int16_t pres) __reentrant;
814
815 int16_t
816 ao_altitude_to_pres(int16_t alt) __reentrant;
817
818 int16_t
819 ao_temp_to_dC(int16_t temp) __reentrant;
820
821 /*
822  * ao_dbg.c
823  *
824  * debug another telemetrum board
825  */
826
827 /* Send a byte to the dbg target */
828 void
829 ao_dbg_send_byte(uint8_t byte);
830
831 /* Receive a byte from the dbg target */
832 uint8_t
833 ao_dbg_recv_byte(void);
834
835 /* Start a bulk transfer to/from dbg target memory */
836 void
837 ao_dbg_start_transfer(uint16_t addr);
838
839 /* End a bulk transfer to/from dbg target memory */
840 void
841 ao_dbg_end_transfer(void);
842
843 /* Write a byte to dbg target memory */
844 void
845 ao_dbg_write_byte(uint8_t byte);
846
847 /* Read a byte from dbg target memory */
848 uint8_t
849 ao_dbg_read_byte(void);
850
851 /* Enable dbg mode, switching use of the pins */
852 void
853 ao_dbg_debug_mode(void);
854
855 /* Reset the dbg target */
856 void
857 ao_dbg_reset(void);
858
859 void
860 ao_dbg_init(void);
861
862 /*
863  * ao_serial.c
864  */
865
866 #ifndef HAS_SERIAL_1
867 #error Please define HAS_SERIAL_1
868 #endif
869
870 #if HAS_SERIAL_1 | HAS_SERIAL_2 | HAS_SERIAL_3
871 #ifndef USE_SERIAL_STDIN
872 #error Please define USE_SERIAL_STDIN
873 #endif
874
875 void
876 ao_serial_rx1_isr(void) ao_arch_interrupt(3);
877
878 void
879 ao_serial_tx1_isr(void) ao_arch_interrupt(14);
880
881 char
882 ao_serial_getchar(void) __critical;
883
884 #if USE_SERIAL_STDIN
885 char
886 ao_serial_pollchar(void) __critical;
887
888 void
889 ao_serial_set_stdin(uint8_t in);
890 #endif
891
892 void
893 ao_serial_putchar(char c) __critical;
894
895 void
896 ao_serial_drain(void) __critical;
897
898 #define AO_SERIAL_SPEED_4800    0
899 #define AO_SERIAL_SPEED_9600    1
900 #define AO_SERIAL_SPEED_19200   2
901 #define AO_SERIAL_SPEED_57600   3
902
903 void
904 ao_serial_set_speed(uint8_t speed);
905
906 void
907 ao_serial_init(void);
908 #endif
909
910 #ifndef HAS_SERIAL_0
911 #define HAS_SERIAL_0 0
912 #endif
913
914 #if HAS_SERIAL_0
915
916 extern volatile __xdata struct ao_fifo  ao_usart0_rx_fifo;
917 extern volatile __xdata struct ao_fifo  ao_usart0_tx_fifo;
918
919 void
920 ao_serial0_rx0_isr(void) ao_arch_interrupt(2);
921
922 void
923 ao_serial0_tx0_isr(void) ao_arch_interrupt(7);
924
925 char
926 ao_serial0_getchar(void) __critical;
927
928 void
929 ao_serial0_putchar(char c) __critical;
930
931 void
932 ao_serial0_drain(void) __critical;
933
934 void
935 ao_serial0_set_speed(uint8_t speed);
936
937 void
938 ao_serial0_init(void);
939
940 #endif
941
942
943 /*
944  * ao_spi.c
945  */
946
947 extern __xdata uint8_t  ao_spi_mutex;
948
949 #define ao_spi_get_mask(reg,mask) do {\
950         ao_mutex_get(&ao_spi_mutex); \
951         (reg) &= ~(mask); \
952         } while (0)
953
954 #define ao_spi_put_mask(reg,mask) do { \
955         (reg) |= (mask); \
956         ao_mutex_put(&ao_spi_mutex); \
957         } while (0)
958
959 #define ao_spi_get_bit(bit) do {\
960         ao_mutex_get(&ao_spi_mutex); \
961         (bit) = 0; \
962         } while (0)
963
964 #define ao_spi_put_bit(bit) do { \
965         (bit) = 1; \
966         ao_mutex_put(&ao_spi_mutex); \
967         } while (0)
968
969 /*
970  * The SPI mutex must be held to call either of these
971  * functions -- this mutex covers the entire SPI operation,
972  * from chip select low to chip select high
973  */
974
975 void
976 ao_spi_send(void __xdata *block, uint16_t len) __reentrant;
977
978 void
979 ao_spi_recv(void __xdata *block, uint16_t len) __reentrant;
980
981 void
982 ao_spi_init(void);
983
984 /*
985  * ao_spi_slave.c
986  */
987
988 uint8_t
989 ao_spi_slave_recv(uint8_t *buf, uint8_t len);
990
991 void
992 ao_spi_slave_send(uint8_t *buf, uint8_t len);
993
994 void
995 ao_spi_slave_init(void);
996
997 /* This must be defined by the product; it will get called when chip
998  * select goes low, at which point it should use ao_spi_read and
999  * ao_spi_write to deal with the request
1000  */
1001
1002 void
1003 ao_spi_slave(void);
1004
1005 /*
1006  * ao_telemetry.c
1007  */
1008 #define AO_MAX_CALLSIGN                 8
1009 #define AO_MAX_VERSION                  8
1010 #if LEGACY_MONITOR
1011 #define AO_MAX_TELEMETRY                128
1012 #else
1013 #define AO_MAX_TELEMETRY                32
1014 #endif
1015
1016 struct ao_telemetry_generic {
1017         uint16_t        serial;         /* 0 */
1018         uint16_t        tick;           /* 2 */
1019         uint8_t         type;           /* 4 */
1020         uint8_t         payload[27];    /* 5 */
1021         /* 32 */
1022 };
1023
1024 #define AO_TELEMETRY_SENSOR_TELEMETRUM  0x01
1025 #define AO_TELEMETRY_SENSOR_TELEMINI    0x02
1026 #define AO_TELEMETRY_SENSOR_TELENANO    0x03
1027
1028 struct ao_telemetry_sensor {
1029         uint16_t        serial;         /*  0 */
1030         uint16_t        tick;           /*  2 */
1031         uint8_t         type;           /*  4 */
1032
1033         uint8_t         state;          /*  5 flight state */
1034         int16_t         accel;          /*  6 accelerometer (TM only) */
1035         int16_t         pres;           /*  8 pressure sensor */
1036         int16_t         temp;           /* 10 temperature sensor */
1037         int16_t         v_batt;         /* 12 battery voltage */
1038         int16_t         sense_d;        /* 14 drogue continuity sense (TM/Tm) */
1039         int16_t         sense_m;        /* 16 main continuity sense (TM/Tm) */
1040
1041         int16_t         acceleration;   /* 18 m/s² * 16 */
1042         int16_t         speed;          /* 20 m/s * 16 */
1043         int16_t         height;         /* 22 m */
1044
1045         int16_t         ground_pres;    /* 24 average pres on pad */
1046         int16_t         ground_accel;   /* 26 average accel on pad */
1047         int16_t         accel_plus_g;   /* 28 accel calibration at +1g */
1048         int16_t         accel_minus_g;  /* 30 accel calibration at -1g */
1049         /* 32 */
1050 };
1051
1052 #define AO_TELEMETRY_CONFIGURATION      0x04
1053
1054 struct ao_telemetry_configuration {
1055         uint16_t        serial;                         /*  0 */
1056         uint16_t        tick;                           /*  2 */
1057         uint8_t         type;                           /*  4 */
1058
1059         uint8_t         device;                         /*  5 device type */
1060         uint16_t        flight;                         /*  6 flight number */
1061         uint8_t         config_major;                   /*  8 Config major version */
1062         uint8_t         config_minor;                   /*  9 Config minor version */
1063         uint16_t        apogee_delay;                   /* 10 Apogee deploy delay in seconds */
1064         uint16_t        main_deploy;                    /* 12 Main deploy alt in meters */
1065         uint16_t        flight_log_max;                 /* 14 Maximum flight log size in kB */
1066         char            callsign[AO_MAX_CALLSIGN];      /* 16 Radio operator identity */
1067         char            version[AO_MAX_VERSION];        /* 24 Software version */
1068         /* 32 */
1069 };
1070
1071 #define AO_TELEMETRY_LOCATION           0x05
1072
1073 #define AO_GPS_MODE_NOT_VALID           'N'
1074 #define AO_GPS_MODE_AUTONOMOUS          'A'
1075 #define AO_GPS_MODE_DIFFERENTIAL        'D'
1076 #define AO_GPS_MODE_ESTIMATED           'E'
1077 #define AO_GPS_MODE_MANUAL              'M'
1078 #define AO_GPS_MODE_SIMULATED           'S'
1079
1080 struct ao_telemetry_location {
1081         uint16_t        serial;         /*  0 */
1082         uint16_t        tick;           /*  2 */
1083         uint8_t         type;           /*  4 */
1084
1085         uint8_t         flags;          /*  5 Number of sats and other flags */
1086         int16_t         altitude;       /*  6 GPS reported altitude (m) */
1087         int32_t         latitude;       /*  8 latitude (degrees * 10⁷) */
1088         int32_t         longitude;      /* 12 longitude (degrees * 10⁷) */
1089         uint8_t         year;           /* 16 (- 2000) */
1090         uint8_t         month;          /* 17 (1-12) */
1091         uint8_t         day;            /* 18 (1-31) */
1092         uint8_t         hour;           /* 19 (0-23) */
1093         uint8_t         minute;         /* 20 (0-59) */
1094         uint8_t         second;         /* 21 (0-59) */
1095         uint8_t         pdop;           /* 22 (m * 5) */
1096         uint8_t         hdop;           /* 23 (m * 5) */
1097         uint8_t         vdop;           /* 24 (m * 5) */
1098         uint8_t         mode;           /* 25 */
1099         uint16_t        ground_speed;   /* 26 cm/s */
1100         int16_t         climb_rate;     /* 28 cm/s */
1101         uint8_t         course;         /* 30 degrees / 2 */
1102         uint8_t         unused[1];      /* 31 */
1103         /* 32 */
1104 };
1105
1106 #define AO_TELEMETRY_SATELLITE          0x06
1107
1108 struct ao_telemetry_satellite_info {
1109         uint8_t         svid;
1110         uint8_t         c_n_1;
1111 };
1112
1113 struct ao_telemetry_satellite {
1114         uint16_t                                serial;         /*  0 */
1115         uint16_t                                tick;           /*  2 */
1116         uint8_t                                 type;           /*  4 */
1117         uint8_t                                 channels;       /*  5 number of reported sats */
1118
1119         struct ao_telemetry_satellite_info      sats[12];       /* 6 */
1120         uint8_t                                 unused[2];      /* 30 */
1121         /* 32 */
1122 };
1123
1124 #define AO_TELEMETRY_COMPANION          0x07
1125
1126 #define AO_COMPANION_MAX_CHANNELS       12
1127
1128 struct ao_telemetry_companion {
1129         uint16_t                                serial;         /*  0 */
1130         uint16_t                                tick;           /*  2 */
1131         uint8_t                                 type;           /*  4 */
1132         uint8_t                                 board_id;       /*  5 */
1133
1134         uint8_t                                 update_period;  /*  6 */
1135         uint8_t                                 channels;       /*  7 */
1136         uint16_t                                companion_data[AO_COMPANION_MAX_CHANNELS];      /*  8 */
1137         /* 32 */
1138 };
1139         
1140 /* #define AO_SEND_ALL_BARO */
1141
1142 #define AO_TELEMETRY_BARO               0x80
1143
1144 /*
1145  * This packet allows the full sampling rate baro
1146  * data to be captured over the RF link so that the
1147  * flight software can be tested using 'real' data.
1148  *
1149  * Along with this telemetry packet, the flight
1150  * code is modified to send full-rate telemetry all the time
1151  * and never send an RDF tone; this ensure that the full radio
1152  * link is available.
1153  */
1154 struct ao_telemetry_baro {
1155         uint16_t                                serial;         /*  0 */
1156         uint16_t                                tick;           /*  2 */
1157         uint8_t                                 type;           /*  4 */
1158         uint8_t                                 samples;        /*  5 number samples */
1159
1160         int16_t                                 baro[12];       /* 6 samples */
1161         /* 32 */
1162 };
1163
1164 union ao_telemetry_all {
1165         struct ao_telemetry_generic             generic;
1166         struct ao_telemetry_sensor              sensor;
1167         struct ao_telemetry_configuration       configuration;
1168         struct ao_telemetry_location            location;
1169         struct ao_telemetry_satellite           satellite;
1170         struct ao_telemetry_companion           companion;
1171         struct ao_telemetry_baro                baro;
1172 };
1173
1174 struct ao_telemetry_all_recv {
1175         union ao_telemetry_all          telemetry;
1176         int8_t                          rssi;
1177         uint8_t                         status;
1178 };
1179
1180 /*
1181  * ao_gps.c
1182  */
1183
1184 #define AO_GPS_NUM_SAT_MASK     (0xf << 0)
1185 #define AO_GPS_NUM_SAT_SHIFT    (0)
1186
1187 #define AO_GPS_VALID            (1 << 4)
1188 #define AO_GPS_RUNNING          (1 << 5)
1189 #define AO_GPS_DATE_VALID       (1 << 6)
1190 #define AO_GPS_COURSE_VALID     (1 << 7)
1191
1192 extern __pdata uint16_t ao_gps_tick;
1193 extern __xdata uint8_t ao_gps_mutex;
1194 extern __xdata struct ao_telemetry_location ao_gps_data;
1195 extern __xdata struct ao_telemetry_satellite ao_gps_tracking_data;
1196
1197 struct ao_gps_orig {
1198         uint8_t                 year;
1199         uint8_t                 month;
1200         uint8_t                 day;
1201         uint8_t                 hour;
1202         uint8_t                 minute;
1203         uint8_t                 second;
1204         uint8_t                 flags;
1205         int32_t                 latitude;       /* degrees * 10⁷ */
1206         int32_t                 longitude;      /* degrees * 10⁷ */
1207         int16_t                 altitude;       /* m */
1208         uint16_t                ground_speed;   /* cm/s */
1209         uint8_t                 course;         /* degrees / 2 */
1210         uint8_t                 hdop;           /* * 5 */
1211         int16_t                 climb_rate;     /* cm/s */
1212         uint16_t                h_error;        /* m */
1213         uint16_t                v_error;        /* m */
1214 };
1215
1216 struct ao_gps_sat_orig {
1217         uint8_t         svid;
1218         uint8_t         c_n_1;
1219 };
1220
1221 #define AO_MAX_GPS_TRACKING     12
1222
1223 struct ao_gps_tracking_orig {
1224         uint8_t                 channels;
1225         struct ao_gps_sat_orig  sats[AO_MAX_GPS_TRACKING];
1226 };
1227
1228 void
1229 ao_gps(void);
1230
1231 void
1232 ao_gps_print(__xdata struct ao_gps_orig *gps_data);
1233
1234 void
1235 ao_gps_tracking_print(__xdata struct ao_gps_tracking_orig *gps_tracking_data);
1236
1237 void
1238 ao_gps_init(void);
1239
1240 /*
1241  * ao_gps_report.c
1242  */
1243
1244 void
1245 ao_gps_report(void);
1246
1247 void
1248 ao_gps_report_init(void);
1249
1250 /*
1251  * ao_telemetry_orig.c
1252  */
1253
1254 struct ao_telemetry_orig {
1255         uint16_t                serial;
1256         uint16_t                flight;
1257         uint8_t                 flight_state;
1258         int16_t                 accel;
1259         int16_t                 ground_accel;
1260         union {
1261                 struct {
1262                         int16_t                 speed;
1263                         int16_t                 unused;
1264                 } k;
1265                 int32_t         flight_vel;
1266         } u;
1267         int16_t                 height;
1268         int16_t                 ground_pres;
1269         int16_t                 accel_plus_g;
1270         int16_t                 accel_minus_g;
1271         struct ao_adc           adc;
1272         struct ao_gps_orig      gps;
1273         char                    callsign[AO_MAX_CALLSIGN];
1274         struct ao_gps_tracking_orig     gps_tracking;
1275 };
1276
1277 struct ao_telemetry_tiny {
1278         uint16_t                serial;
1279         uint16_t                flight;
1280         uint8_t                 flight_state;
1281         int16_t                 height;         /* AGL in meters */
1282         int16_t                 speed;          /* in m/s * 16 */
1283         int16_t                 accel;          /* in m/s² * 16 */
1284         int16_t                 ground_pres;    /* sensor units */
1285         struct ao_adc           adc;            /* raw ADC readings */
1286         char                    callsign[AO_MAX_CALLSIGN];
1287 };
1288
1289 struct ao_telemetry_orig_recv {
1290         struct ao_telemetry_orig        telemetry_orig;
1291         int8_t                          rssi;
1292         uint8_t                         status;
1293 };
1294
1295 struct ao_telemetry_tiny_recv {
1296         struct ao_telemetry_tiny        telemetry_tiny;
1297         int8_t                          rssi;
1298         uint8_t                         status;
1299 };
1300
1301 /*
1302  * ao_radio_recv tacks on rssi and status bytes
1303  */
1304
1305 struct ao_telemetry_raw_recv {
1306         uint8_t                 packet[AO_MAX_TELEMETRY + 2];
1307 };
1308
1309 /* Set delay between telemetry reports (0 to disable) */
1310
1311 #ifdef AO_SEND_ALL_BARO
1312 #define AO_TELEMETRY_INTERVAL_PAD       AO_MS_TO_TICKS(100)
1313 #define AO_TELEMETRY_INTERVAL_FLIGHT    AO_MS_TO_TICKS(100)
1314 #define AO_TELEMETRY_INTERVAL_RECOVER   AO_MS_TO_TICKS(100)
1315 #else
1316 #define AO_TELEMETRY_INTERVAL_PAD       AO_MS_TO_TICKS(1000)
1317 #define AO_TELEMETRY_INTERVAL_FLIGHT    AO_MS_TO_TICKS(100)
1318 #define AO_TELEMETRY_INTERVAL_RECOVER   AO_MS_TO_TICKS(1000)
1319 #endif
1320
1321 void
1322 ao_telemetry_set_interval(uint16_t interval);
1323
1324 void
1325 ao_rdf_set(uint8_t rdf);
1326
1327 void
1328 ao_telemetry_init(void);
1329
1330 void
1331 ao_telemetry_orig_init(void);
1332
1333 void
1334 ao_telemetry_tiny_init(void);
1335
1336 /*
1337  * ao_radio.c
1338  */
1339
1340 extern __xdata uint8_t  ao_radio_dma;
1341 extern __xdata uint8_t ao_radio_dma_done;
1342 extern __xdata uint8_t ao_radio_done;
1343 extern __xdata uint8_t ao_radio_mutex;
1344
1345 void
1346 ao_radio_general_isr(void) ao_arch_interrupt(16);
1347
1348 void
1349 ao_radio_get(uint8_t len);
1350
1351 #define ao_radio_put() ao_mutex_put(&ao_radio_mutex)
1352
1353 void
1354 ao_radio_set_packet(void);
1355
1356 void
1357 ao_radio_send(__xdata void *d, uint8_t size) __reentrant;
1358
1359 uint8_t
1360 ao_radio_recv(__xdata void *d, uint8_t size) __reentrant;
1361
1362 void
1363 ao_radio_recv_abort(void);
1364
1365 /*
1366  * Compute the packet length as follows:
1367  *
1368  * 2000 bps (for a 1kHz tone)
1369  * so, for 'ms' milliseconds, we need
1370  * 2 * ms bits, or ms / 4 bytes
1371  */
1372
1373 #define AO_MS_TO_RDF_LEN(ms) ((ms) > 255 * 4 ? 255 : ((ms) >> 2))
1374
1375 void
1376 ao_radio_rdf(uint8_t pkt_len);
1377
1378 void
1379 ao_radio_rdf_abort(void);
1380
1381 void
1382 ao_radio_idle(void);
1383
1384 void
1385 ao_radio_init(void);
1386
1387 /*
1388  * ao_monitor.c
1389  */
1390
1391 extern const char const * const ao_state_names[];
1392
1393 #define AO_MONITOR_RING 8
1394
1395 union ao_monitor {
1396         struct ao_telemetry_raw_recv    raw;
1397         struct ao_telemetry_all_recv    all;
1398         struct ao_telemetry_orig_recv   orig;
1399         struct ao_telemetry_tiny_recv   tiny;
1400 };
1401
1402 extern __xdata union ao_monitor ao_monitor_ring[AO_MONITOR_RING];
1403
1404 #define ao_monitor_ring_next(n) (((n) + 1) & (AO_MONITOR_RING - 1))
1405
1406 extern __data uint8_t ao_monitoring;
1407 extern __data uint8_t ao_monitor_head;
1408
1409 void
1410 ao_monitor(void);
1411
1412 #define AO_MONITORING_OFF       0
1413 #define AO_MONITORING_ORIG      1
1414
1415 void
1416 ao_monitor_set(uint8_t monitoring);
1417
1418 void
1419 ao_monitor_disable(void);
1420
1421 void
1422 ao_monitor_enable(void);
1423
1424 void
1425 ao_monitor_init(void) __reentrant;
1426
1427 /*
1428  * ao_stdio.c
1429  */
1430
1431 #define AO_READ_AGAIN   ((char) -1)
1432
1433 struct ao_stdio {
1434         char    (*pollchar)(void);
1435         void    (*putchar)(char c) __reentrant;
1436         void    (*flush)(void);
1437         uint8_t echo;
1438 };
1439
1440 extern __xdata struct ao_stdio ao_stdios[];
1441 extern __pdata int8_t ao_cur_stdio;
1442 extern __pdata int8_t ao_num_stdios;
1443
1444 void
1445 flush(void);
1446
1447 extern __xdata uint8_t ao_stdin_ready;
1448
1449 uint8_t
1450 ao_echo(void);
1451
1452 int8_t
1453 ao_add_stdio(char (*pollchar)(void),
1454              void (*putchar)(char) __reentrant,
1455              void (*flush)(void)) __reentrant;
1456
1457 /*
1458  * ao_ignite.c
1459  */
1460
1461 enum ao_igniter {
1462         ao_igniter_drogue = 0,
1463         ao_igniter_main = 1
1464 };
1465
1466 void
1467 ao_ignite(enum ao_igniter igniter);
1468
1469 enum ao_igniter_status {
1470         ao_igniter_unknown,     /* unknown status (ambiguous voltage) */
1471         ao_igniter_ready,       /* continuity detected */
1472         ao_igniter_active,      /* igniter firing */
1473         ao_igniter_open,        /* open circuit detected */
1474 };
1475
1476 struct ao_ignition {
1477         uint8_t request;
1478         uint8_t fired;
1479         uint8_t firing;
1480 };
1481
1482 extern __xdata struct ao_ignition ao_ignition[2];
1483
1484 enum ao_igniter_status
1485 ao_igniter_status(enum ao_igniter igniter);
1486
1487 extern __pdata uint8_t ao_igniter_present;
1488
1489 void
1490 ao_ignite_set_pins(void);
1491
1492 void
1493 ao_igniter_init(void);
1494
1495 /*
1496  * ao_config.c
1497  */
1498
1499 #define AO_CONFIG_MAJOR 1
1500 #define AO_CONFIG_MINOR 10
1501 #define AO_AES_LEN 16
1502
1503 #if HAS_RADIO_CHANNELS
1504 #define AO_CHANNEL_NAME_LEN     10
1505
1506 #define AO_NUM_CHANNELS         10
1507
1508 struct ao_radio_channel {
1509         char            name[AO_CHANNEL_NAME_LEN];
1510         uint32_t        kHz;
1511 };
1512 #endif
1513
1514 struct ao_config {
1515         uint8_t         major;
1516         uint8_t         minor;
1517         uint16_t        main_deploy;
1518         int16_t         accel_plus_g;           /* changed for minor version 2 */
1519         uint8_t         radio_channel;
1520         char            callsign[AO_MAX_CALLSIGN + 1];
1521         uint8_t         apogee_delay;           /* minor version 1 */
1522         int16_t         accel_minus_g;          /* minor version 2 */
1523         uint32_t        radio_cal;              /* minor version 3 */
1524         uint32_t        flight_log_max;         /* minor version 4 */
1525         uint8_t         ignite_mode;            /* minor version 5 */
1526         uint8_t         pad_orientation;        /* minor version 6 */
1527         uint32_t        radio_setting;          /* minor version 7 */
1528         uint8_t         radio_enable;           /* minor version 8 */
1529         uint8_t         aes_key[AO_AES_LEN];    /* minor version 9 */
1530         uint32_t        frequency;              /* minor version 10 */
1531 #if HAS_RADIO_CHANNELS
1532         struct ao_radio_channel radio_channels[AO_NUM_CHANNELS];        /* minor version 10 */
1533 #endif
1534 };
1535
1536 #define AO_IGNITE_MODE_DUAL             0
1537 #define AO_IGNITE_MODE_APOGEE           1
1538 #define AO_IGNITE_MODE_MAIN             2
1539
1540 #define AO_PAD_ORIENTATION_ANTENNA_UP   0
1541 #define AO_PAD_ORIENTATION_ANTENNA_DOWN 1
1542
1543 extern __xdata struct ao_config ao_config;
1544
1545 #define AO_CONFIG_MAX_SIZE      128
1546
1547 void
1548 ao_config_get(void);
1549
1550 void
1551 ao_config_put(void);
1552
1553 void
1554 ao_config_init(void);
1555
1556 /*
1557  * ao_rssi.c
1558  */
1559
1560 void
1561 ao_rssi_set(int rssi_value);
1562
1563 void
1564 ao_rssi_init(uint8_t rssi_led);
1565
1566 /*
1567  * ao_product.c
1568  *
1569  * values which need to be defined for
1570  * each instance of a product
1571  */
1572
1573 extern const char ao_version[];
1574 extern const char ao_manufacturer[];
1575 extern const char ao_product[];
1576
1577 /*
1578  * Fifos
1579  */
1580
1581 #define AO_FIFO_SIZE    32
1582
1583 struct ao_fifo {
1584         uint8_t insert;
1585         uint8_t remove;
1586         char    fifo[AO_FIFO_SIZE];
1587 };
1588
1589 #define ao_fifo_insert(f,c) do { \
1590         (f).fifo[(f).insert] = (c); \
1591         (f).insert = ((f).insert + 1) & (AO_FIFO_SIZE-1); \
1592 } while(0)
1593
1594 #define ao_fifo_remove(f,c) do {\
1595         c = (f).fifo[(f).remove]; \
1596         (f).remove = ((f).remove + 1) & (AO_FIFO_SIZE-1); \
1597 } while(0)
1598
1599 #define ao_fifo_full(f)         ((((f).insert + 1) & (AO_FIFO_SIZE-1)) == (f).remove)
1600 #define ao_fifo_empty(f)        ((f).insert == (f).remove)
1601
1602 /*
1603  * ao_packet.c
1604  *
1605  * Packet-based command interface
1606  */
1607
1608 #define AO_PACKET_MAX           64
1609 #define AO_PACKET_SYN           (uint8_t) 0xff
1610
1611 struct ao_packet {
1612         uint8_t         addr;
1613         uint8_t         len;
1614         uint8_t         seq;
1615         uint8_t         ack;
1616         uint8_t         d[AO_PACKET_MAX];
1617         uint8_t         callsign[AO_MAX_CALLSIGN];
1618 };
1619
1620 struct ao_packet_recv {
1621         struct ao_packet        packet;
1622         int8_t                  rssi;
1623         uint8_t                 status;
1624 };
1625
1626 extern __xdata struct ao_packet_recv ao_rx_packet;
1627 extern __xdata struct ao_packet ao_tx_packet;
1628 extern __xdata struct ao_task   ao_packet_task;
1629 extern __xdata uint8_t ao_packet_enable;
1630 extern __xdata uint8_t ao_packet_master_sleeping;
1631 extern __pdata uint8_t ao_packet_rx_len, ao_packet_rx_used, ao_packet_tx_used;
1632
1633 void
1634 ao_packet_send(void);
1635
1636 uint8_t
1637 ao_packet_recv(void);
1638
1639 void
1640 ao_packet_flush(void);
1641
1642 void
1643 ao_packet_putchar(char c) __reentrant;
1644
1645 char
1646 ao_packet_pollchar(void) __critical;
1647
1648 /* ao_packet_master.c */
1649
1650 void
1651 ao_packet_master_init(void);
1652
1653 /* ao_packet_slave.c */
1654
1655 void
1656 ao_packet_slave_start(void);
1657
1658 void
1659 ao_packet_slave_stop(void);
1660
1661 void
1662 ao_packet_slave_init(uint8_t enable);
1663
1664 /* ao_btm.c */
1665
1666 /* If bt_link is on P2, this interrupt is shared by USB, so the USB
1667  * code calls this function. Otherwise, it's a regular ISR.
1668  */
1669
1670 void
1671 ao_btm_isr(void)
1672 #if BT_LINK_ON_P1
1673         __interrupt 15
1674 #endif
1675         ;
1676
1677 void
1678 ao_btm_init(void);
1679
1680 /* ao_companion.c */
1681
1682 #define AO_COMPANION_SETUP              1
1683 #define AO_COMPANION_FETCH              2
1684 #define AO_COMPANION_NOTIFY             3
1685
1686 struct ao_companion_command {
1687         uint8_t         command;
1688         uint8_t         flight_state;
1689         uint16_t        tick;
1690         uint16_t        serial;
1691         uint16_t        flight;
1692 };
1693
1694 struct ao_companion_setup {
1695         uint16_t        board_id;
1696         uint16_t        board_id_inverse;
1697         uint8_t         update_period;
1698         uint8_t         channels;
1699 };
1700
1701 extern __pdata uint8_t                          ao_companion_running;
1702 extern __xdata uint8_t                          ao_companion_mutex;
1703 extern __xdata struct ao_companion_command      ao_companion_command;
1704 extern __xdata struct ao_companion_setup        ao_companion_setup;
1705 extern __xdata uint16_t                         ao_companion_data[AO_COMPANION_MAX_CHANNELS];
1706
1707 void
1708 ao_companion_init(void);
1709
1710 /* ao_lcd.c */
1711   
1712 void
1713 ao_lcd_putchar(uint8_t d);
1714
1715 void
1716 ao_lcd_putstring(char *string);
1717
1718 void
1719 ao_lcd_contrast_set(uint8_t contrast);
1720
1721 void
1722 ao_lcd_clear(void);
1723
1724 void
1725 ao_lcd_cursor_on(void);
1726
1727 void
1728 ao_lcd_cursor_off(void);
1729
1730 #define AO_LCD_ADDR(row,col)    ((row << 6) | (col))
1731
1732 void
1733 ao_lcd_goto(uint8_t addr);
1734
1735 void
1736 ao_lcd_start(void);
1737
1738 void
1739 ao_lcd_init(void);
1740
1741 /* ao_lcd_port.c */
1742
1743 void
1744 ao_lcd_port_put_nibble(uint8_t rs, uint8_t d);
1745
1746 void
1747 ao_lcd_port_init(void);
1748
1749 /* ao_aes.c */
1750
1751 extern __xdata uint8_t ao_aes_mutex;
1752
1753 /* AES keys and blocks are 128 bits */
1754
1755 enum ao_aes_mode {
1756         ao_aes_mode_cbc_mac
1757 };
1758
1759 #if HAS_AES
1760 void
1761 ao_aes_isr(void) __interrupt 4;
1762 #endif
1763
1764 void
1765 ao_aes_set_mode(enum ao_aes_mode mode);
1766
1767 void
1768 ao_aes_set_key(__xdata uint8_t *in);
1769
1770 void
1771 ao_aes_zero_iv(void);
1772
1773 void
1774 ao_aes_run(__xdata uint8_t *in,
1775            __xdata uint8_t *out);
1776
1777 void
1778 ao_aes_init(void);
1779
1780 /* ao_radio_cmac.c */
1781
1782 int8_t
1783 ao_radio_cmac_send(__xdata void *packet, uint8_t len) __reentrant;
1784
1785 #define AO_RADIO_CMAC_OK        0
1786 #define AO_RADIO_CMAC_LEN_ERROR -1
1787 #define AO_RADIO_CMAC_CRC_ERROR -2
1788 #define AO_RADIO_CMAC_MAC_ERROR -3
1789 #define AO_RADIO_CMAC_TIMEOUT   -4
1790
1791 int8_t
1792 ao_radio_cmac_recv(__xdata void *packet, uint8_t len, uint16_t timeout) __reentrant;
1793
1794 void
1795 ao_radio_cmac_init(void);
1796
1797 /* ao_launch.c */
1798
1799 struct ao_launch_command {
1800         uint16_t        tick;
1801         uint16_t        serial;
1802         uint8_t         cmd;
1803         uint8_t         channel;
1804         uint16_t        unused;
1805 };
1806
1807 #define AO_LAUNCH_QUERY         1
1808
1809 struct ao_launch_query {
1810         uint16_t        tick;
1811         uint16_t        serial;
1812         uint8_t         channel;
1813         uint8_t         valid;
1814         uint8_t         arm_status;
1815         uint8_t         igniter_status;
1816 };
1817
1818 #define AO_LAUNCH_ARM           2
1819 #define AO_LAUNCH_FIRE          3
1820
1821 void
1822 ao_launch_init(void);
1823
1824 /*
1825  * ao_log_single.c
1826  */
1827
1828 #define AO_LOG_TELESCIENCE_START        ((uint8_t) 's')
1829 #define AO_LOG_TELESCIENCE_DATA         ((uint8_t) 'd')
1830
1831 #define AO_LOG_TELESCIENCE_NUM_ADC      12
1832
1833 struct ao_log_telescience {
1834         uint8_t         type;
1835         uint8_t         csum;
1836         uint16_t        tick;
1837         uint16_t        tm_tick;
1838         uint8_t         tm_state;
1839         uint8_t         unused;
1840         uint16_t        adc[AO_LOG_TELESCIENCE_NUM_ADC];
1841 };
1842
1843 #define AO_LOG_SINGLE_SIZE              32
1844
1845 union ao_log_single {
1846         struct ao_log_telescience       telescience;
1847         union ao_telemetry_all          telemetry;
1848         uint8_t                         bytes[AO_LOG_SINGLE_SIZE];
1849 };
1850
1851 extern __xdata union ao_log_single      ao_log_single_write_data;
1852 extern __xdata union ao_log_single      ao_log_single_read_data;
1853
1854 void
1855 ao_log_single_extra_query(void);
1856
1857 void
1858 ao_log_single_list(void);
1859
1860 void
1861 ao_log_single_main(void);
1862
1863 uint8_t
1864 ao_log_single_write(void);
1865
1866 uint8_t
1867 ao_log_single_read(uint32_t pos);
1868
1869 void
1870 ao_log_single_start(void);
1871
1872 void
1873 ao_log_single_stop(void);
1874
1875 void
1876 ao_log_single_restart(void);
1877
1878 void
1879 ao_log_single_set(void);
1880
1881 void
1882 ao_log_single_delete(void);
1883
1884 void
1885 ao_log_single_init(void);
1886
1887 void
1888 ao_log_single(void);
1889
1890 /*
1891  * ao_pyro_slave.c
1892  */
1893
1894 #define AO_TELEPYRO_NUM_ADC     9
1895
1896 #ifndef ao_xmemcpy
1897 #define ao_xmemcpy(d,s,c) memcpy(d,s,c)
1898 #define ao_xmemset(d,v,c) memset(d,v,c)
1899 #define ao_xmemcmp(d,s,c) memcmp(d,s,c)
1900 #endif
1901
1902 /*
1903  * ao_terraui.c
1904  */
1905
1906 void
1907 ao_terraui_init(void);
1908
1909 /*
1910  * ao_battery.c
1911  */
1912
1913 #ifdef BATTERY_PIN
1914 void
1915 ao_battery_isr(void) ao_arch_interrupt(1);
1916
1917 uint16_t
1918 ao_battery_get(void);
1919
1920 void
1921 ao_battery_init(void);
1922 #endif /* BATTERY_PIN */
1923
1924 /*
1925  * ao_sqrt.c
1926  */
1927
1928 uint32_t
1929 ao_sqrt(uint32_t op);
1930
1931 /*
1932  * ao_freq.c
1933  */
1934
1935 int32_t ao_freq_to_set(int32_t freq, int32_t cal);
1936
1937 #endif /* _AO_H_ */