altos/kernel: Allow ao_cmd to be built without tasking
[fw/altos] / src / kernel / 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; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 #ifndef _AO_H_
20 #define _AO_H_
21
22 #include <stdint.h>
23 #include <stdio.h>
24 #include <string.h>
25 #include <stddef.h>
26 #include <ao_pins.h>
27 #include <ao_arch.h>
28
29 #define TRUE 1
30 #define FALSE 0
31
32 /* Convert a __data pointer into an __xdata pointer */
33 #ifndef DATA_TO_XDATA
34 #define DATA_TO_XDATA(a)        (a)
35 #endif
36 #ifndef PDATA_TO_XDATA
37 #define PDATA_TO_XDATA(a)       (a)
38 #endif
39 #ifndef CODE_TO_XDATA
40 #define CODE_TO_XDATA(a)        (a)
41 #endif
42
43 #ifndef HAS_TASK
44 #define HAS_TASK        1
45 #endif
46
47 typedef AO_PORT_TYPE ao_port_t;
48
49 #if HAS_TASK
50 #include <ao_task.h>
51 #else
52 #include <ao_notask.h>
53 #endif
54
55 /*
56  * ao_panic.c
57  */
58
59 #define AO_PANIC_NO_TASK        1       /* AO_NUM_TASKS is not large enough */
60 #define AO_PANIC_DMA            2       /* Attempt to start DMA while active */
61 #define AO_PANIC_MUTEX          3       /* Mis-using mutex API */
62 #define AO_PANIC_EE             4       /* Mis-using eeprom API */
63 #define AO_PANIC_LOG            5       /* Failing to read/write log data */
64 #define AO_PANIC_CMD            6       /* Too many command sets registered */
65 #define AO_PANIC_STDIO          7       /* Too many stdio handlers registered */
66 #define AO_PANIC_REBOOT         8       /* Reboot failed */
67 #define AO_PANIC_FLASH          9       /* Invalid flash part (or wrong blocksize) */
68 #define AO_PANIC_USB            10      /* Trying to send USB packet while busy */
69 #define AO_PANIC_BT             11      /* Communications with bluetooth device failed */
70 #define AO_PANIC_STACK          12      /* Stack overflow */
71 #define AO_PANIC_SPI            13      /* SPI communication failure */
72 #define AO_PANIC_CRASH          14      /* Processor crashed */
73 #define AO_PANIC_BUFIO          15      /* Mis-using bufio API */
74 #define AO_PANIC_EXTI           16      /* Mis-using exti API */
75 #define AO_PANIC_FAST_TIMER     17      /* Mis-using fast timer API */
76 #define AO_PANIC_ADC            18      /* Mis-using ADC interface */
77 #define AO_PANIC_IRQ            19      /* interrupts not blocked */
78 #define AO_PANIC_SELF_TEST_CC1120       0x40 | 1        /* Self test failure */
79 #define AO_PANIC_SELF_TEST_HMC5883      0x40 | 2        /* Self test failure */
80 #define AO_PANIC_SELF_TEST_MPU6000      0x40 | 3        /* Self test failure */
81 #define AO_PANIC_SELF_TEST_MPU9250      0x40 | 3        /* Self test failure */
82 #define AO_PANIC_SELF_TEST_MS5607       0x40 | 4        /* Self test failure */
83
84 /* Stop the operating system, beeping and blinking the reason */
85 void
86 ao_panic(uint8_t reason);
87
88 /*
89  * ao_timer.c
90  */
91
92 #ifndef AO_TICK_TYPE
93 #define AO_TICK_TYPE    uint16_t
94 #define AO_TICK_SIGNED  int16_t
95 #endif
96
97 extern volatile __data AO_TICK_TYPE ao_tick_count;
98
99 /* Our timer runs at 100Hz */
100 #ifndef AO_HERTZ
101 #define AO_HERTZ                100
102 #endif
103 #define AO_MS_TO_TICKS(ms)      ((ms) / (1000 / AO_HERTZ))
104 #define AO_SEC_TO_TICKS(s)      ((s) * AO_HERTZ)
105
106 /* Returns the current time in ticks */
107 AO_TICK_TYPE
108 ao_time(void);
109
110 /* Suspend the current task until ticks time has passed */
111 void
112 ao_delay(uint16_t ticks);
113
114 /* Set the ADC interval */
115 void
116 ao_timer_set_adc_interval(uint8_t interval);
117
118 /* Timer interrupt */
119 void
120 ao_timer_isr(void) ao_arch_interrupt(9);
121
122 /* Initialize the timer */
123 void
124 ao_timer_init(void);
125
126 /* Initialize the hardware clock. Must be called first */
127 void
128 ao_clock_init(void);
129
130 #if AO_POWER_MANAGEMENT
131 /* Go to low power clock */
132 void
133 ao_clock_suspend(void);
134
135 /* Restart full-speed clock */
136 void
137 ao_clock_resume(void);
138 #endif
139
140 /*
141  * ao_mutex.c
142  */
143
144 #ifndef ao_mutex_get
145 uint8_t
146 ao_mutex_try(__xdata uint8_t *ao_mutex, uint8_t task_id) __reentrant;
147
148 void
149 ao_mutex_get(__xdata uint8_t *ao_mutex) __reentrant;
150
151 void
152 ao_mutex_put(__xdata uint8_t *ao_mutex) __reentrant;
153 #endif
154
155 /*
156  * ao_cmd.c
157  */
158
159 enum ao_cmd_status {
160         ao_cmd_success = 0,
161         ao_cmd_lex_error = 1,
162         ao_cmd_syntax_error = 2,
163 };
164
165 extern __pdata uint16_t ao_cmd_lex_i;
166 extern __pdata uint32_t ao_cmd_lex_u32;
167 extern __pdata char     ao_cmd_lex_c;
168 extern __pdata enum ao_cmd_status ao_cmd_status;
169
170 void
171 ao_put_string(__code char *s);
172
173 void
174 ao_cmd_readline(void);
175
176 char
177 ao_cmd_lex(void);
178
179 void
180 ao_cmd_put8(uint8_t v);
181
182 void
183 ao_cmd_put16(uint16_t v);
184
185 uint8_t
186 ao_cmd_is_white(void);
187
188 void
189 ao_cmd_white(void);
190
191 int8_t
192 ao_cmd_hexchar(char c);
193
194 void
195 ao_cmd_hexbyte(void);
196
197 void
198 ao_cmd_hex(void);
199
200 void
201 ao_cmd_decimal(void) __reentrant;
202
203 /* Read a single hex nibble off stdin. */
204 uint8_t
205 ao_getnibble(void);
206
207 uint8_t
208 ao_match_word(__code char *word);
209
210 struct ao_cmds {
211         void            (*func)(void);
212         __code char     *help;
213 };
214
215 void
216 ao_cmd_register(const __code struct ao_cmds *cmds);
217
218 void
219 ao_cmd_init(void);
220
221 void
222 ao_cmd(void);
223
224 #if HAS_CMD_FILTER
225 /*
226  * Provided by an external module to filter raw command lines
227  */
228 uint8_t
229 ao_cmd_filter(void);
230 #endif
231
232 /*
233  * Various drivers
234  */
235 #if HAS_ADC
236 #include <ao_adc.h>
237 #endif
238
239 #if HAS_BEEP
240 #include <ao_beep.h>
241 #endif
242
243 #if LEDS_AVAILABLE
244 #include <ao_led.h>
245 #endif
246
247 #if HAS_USB
248 #include <ao_usb.h>
249 #endif
250
251 #if HAS_EEPROM
252 #include <ao_storage.h>
253 #endif
254
255 #if HAS_LOG
256 #include <ao_log.h>
257 #endif
258
259 #if HAS_FLIGHT
260 #include <ao_flight.h>
261 #include <ao_sample.h>
262 #endif
263
264 /*
265  * ao_report.c
266  */
267
268 #define AO_RDF_INTERVAL_TICKS   AO_SEC_TO_TICKS(5)
269 #define AO_RDF_LENGTH_MS        500
270 #define AO_RDF_CONTINUITY_MS    32
271 #define AO_RDF_CONTINUITY_PAUSE 96
272 #define AO_RDF_CONTINUITY_TOTAL ((AO_RDF_CONTINUITY_PAUSE + AO_RDF_CONTINUITY_MS) * 3 + AO_RDF_CONTINUITY_PAUSE)
273
274 /* This assumes that we're generating a 1kHz tone, which
275  * modulates the carrier at 2kbps, or 250kBps
276  */
277 #define AO_MS_TO_RDF_LEN(ms) ((ms) / 4)
278
279 #define AO_RADIO_RDF_LEN        AO_MS_TO_RDF_LEN(AO_RDF_LENGTH_MS)
280 #define AO_RADIO_CONT_TONE_LEN  AO_MS_TO_RDF_LEN(AO_RDF_CONTINUITY_MS)
281 #define AO_RADIO_CONT_PAUSE_LEN AO_MS_TO_RDF_LEN(AO_RDF_CONTINUITY_PAUSE)
282 #define AO_RADIO_CONT_TOTAL_LEN AO_MS_TO_RDF_LEN(AO_RDF_CONTINUITY_TOTAL)
283
284 /* returns a value 0-3 to indicate igniter continuity */
285 uint8_t
286 ao_report_igniter(void);
287
288 void
289 ao_report_init(void);
290
291 /*
292  * ao_convert.c
293  *
294  * Given raw data, convert to SI units
295  */
296
297 #if HAS_BARO
298 /* pressure from the sensor to altitude in meters */
299 alt_t
300 ao_pres_to_altitude(pres_t pres) __reentrant;
301
302 pres_t
303 ao_altitude_to_pres(alt_t alt) __reentrant;
304
305 int16_t
306 ao_temp_to_dC(int16_t temp) __reentrant;
307 #endif
308
309 /*
310  * ao_convert_pa.c
311  *
312  * Convert between pressure in Pa and altitude in meters
313  */
314
315 #include <ao_data.h>
316
317 #if HAS_BARO
318 alt_t
319 ao_pa_to_altitude(pres_t pa);
320
321 int32_t
322 ao_altitude_to_pa(alt_t alt);
323 #endif
324
325 #if HAS_DBG
326 #include <ao_dbg.h>
327 #endif
328
329 #if HAS_SERIAL_0 || HAS_SERIAL_1 || HAS_SERIAL_2 || HAS_SERIAL_3
330 #include <ao_serial.h>
331 #endif
332
333 /*
334  * ao_convert_volt.c
335  *
336  * Convert ADC readings to decivolts
337  */
338
339 int16_t
340 ao_battery_decivolt(int16_t adc);
341
342 int16_t
343 ao_ignite_decivolt(int16_t adc);
344
345 /*
346  * ao_spi_slave.c
347  */
348
349 uint8_t
350 ao_spi_slave_recv(void *buf, uint16_t len);
351
352 void
353 ao_spi_slave_send(void *buf, uint16_t len);
354
355 void
356 ao_spi_slave_init(void);
357
358 /* This must be defined by the product; it will get called when chip
359  * select goes low, at which point it should use ao_spi_read and
360  * ao_spi_write to deal with the request
361  */
362
363 void
364 ao_spi_slave(void);
365
366 #include <ao_telemetry.h>
367 /*
368  * ao_gps.c
369  */
370
371 #define AO_GPS_NUM_SAT_MASK     (0xf << 0)
372 #define AO_GPS_NUM_SAT_SHIFT    (0)
373
374 #define AO_GPS_VALID            (1 << 4)
375 #define AO_GPS_RUNNING          (1 << 5)
376 #define AO_GPS_DATE_VALID       (1 << 6)
377 #define AO_GPS_COURSE_VALID     (1 << 7)
378
379 #define AO_GPS_NEW_DATA         1
380 #define AO_GPS_NEW_TRACKING     2
381
382 extern __xdata uint8_t ao_gps_new;
383 extern __pdata uint16_t ao_gps_tick;
384 extern __xdata uint8_t ao_gps_mutex;
385 extern __xdata struct ao_telemetry_location ao_gps_data;
386 extern __xdata struct ao_telemetry_satellite ao_gps_tracking_data;
387
388 struct ao_gps_orig {
389         uint8_t                 year;
390         uint8_t                 month;
391         uint8_t                 day;
392         uint8_t                 hour;
393         uint8_t                 minute;
394         uint8_t                 second;
395         uint8_t                 flags;
396         int32_t                 latitude;       /* degrees * 10⁷ */
397         int32_t                 longitude;      /* degrees * 10⁷ */
398         int16_t                 altitude;       /* m */
399         uint16_t                ground_speed;   /* cm/s */
400         uint8_t                 course;         /* degrees / 2 */
401         uint8_t                 hdop;           /* * 5 */
402         int16_t                 climb_rate;     /* cm/s */
403         uint16_t                h_error;        /* m */
404         uint16_t                v_error;        /* m */
405 };
406
407 struct ao_gps_sat_orig {
408         uint8_t         svid;
409         uint8_t         c_n_1;
410 };
411
412 #define AO_MAX_GPS_TRACKING     12
413
414 struct ao_gps_tracking_orig {
415         uint8_t                 channels;
416         struct ao_gps_sat_orig  sats[AO_MAX_GPS_TRACKING];
417 };
418
419 void
420 ao_gps_set_rate(uint8_t rate);
421
422 void
423 ao_gps(void);
424
425 void
426 ao_gps_print(__xdata struct ao_gps_orig *gps_data);
427
428 void
429 ao_gps_tracking_print(__xdata struct ao_gps_tracking_orig *gps_tracking_data);
430
431 void
432 ao_gps_show(void) __reentrant;
433
434 void
435 ao_gps_init(void);
436
437 /*
438  * ao_gps_report.c
439  */
440
441 void
442 ao_gps_report(void);
443
444 void
445 ao_gps_report_init(void);
446
447 /*
448  * ao_gps_report_mega.c
449  */
450
451 void
452 ao_gps_report_mega(void);
453
454 void
455 ao_gps_report_mega_init(void);
456
457 /*
458  * ao_telemetry_orig.c
459  */
460
461 #if LEGACY_MONITOR
462 struct ao_adc_orig {
463         uint16_t        tick;           /* tick when the sample was read */
464         int16_t         accel;          /* accelerometer */
465         int16_t         pres;           /* pressure sensor */
466         int16_t         temp;           /* temperature sensor */
467         int16_t         v_batt;         /* battery voltage */
468         int16_t         sense_d;        /* drogue continuity sense */
469         int16_t         sense_m;        /* main continuity sense */
470 };
471
472 struct ao_telemetry_orig {
473         uint16_t                serial;
474         uint16_t                flight;
475         uint8_t                 flight_state;
476         int16_t                 accel;
477         int16_t                 ground_accel;
478         union {
479                 struct {
480                         int16_t                 speed;
481                         int16_t                 unused;
482                 } k;
483                 int32_t         flight_vel;
484         } u;
485         int16_t                 height;
486         int16_t                 ground_pres;
487         int16_t                 accel_plus_g;
488         int16_t                 accel_minus_g;
489         struct ao_adc_orig      adc;
490         struct ao_gps_orig      gps;
491         char                    callsign[AO_MAX_CALLSIGN];
492         struct ao_gps_tracking_orig     gps_tracking;
493 };
494
495 struct ao_telemetry_tiny {
496         uint16_t                serial;
497         uint16_t                flight;
498         uint8_t                 flight_state;
499         int16_t                 height;         /* AGL in meters */
500         int16_t                 speed;          /* in m/s * 16 */
501         int16_t                 accel;          /* in m/s² * 16 */
502         int16_t                 ground_pres;    /* sensor units */
503         struct ao_adc           adc;            /* raw ADC readings */
504         char                    callsign[AO_MAX_CALLSIGN];
505 };
506
507 struct ao_telemetry_orig_recv {
508         struct ao_telemetry_orig        telemetry_orig;
509         int8_t                          rssi;
510         uint8_t                         status;
511 };
512
513 struct ao_telemetry_tiny_recv {
514         struct ao_telemetry_tiny        telemetry_tiny;
515         int8_t                          rssi;
516         uint8_t                         status;
517 };
518
519 #endif /* LEGACY_MONITOR */
520
521 /* Unfortunately, we've exposed the CC1111 rssi units as the 'usual' method
522  * for reporting RSSI. So, now we use these values everywhere
523  */
524 #define AO_RSSI_FROM_RADIO(radio)       ((int16_t) ((int8_t) (radio) >> 1) - 74)
525 #define AO_RADIO_FROM_RSSI(rssi)        (((int8_t) (rssi) + 74) << 1)
526
527 /*
528  * ao_radio_recv tacks on rssi and status bytes
529  */
530
531 struct ao_telemetry_raw_recv {
532         uint8_t                 packet[AO_MAX_TELEMETRY + 2];
533 };
534
535 /* Set delay between telemetry reports (0 to disable) */
536
537 #define AO_TELEMETRY_INTERVAL_PAD       AO_MS_TO_TICKS(1000)
538 #define AO_TELEMETRY_INTERVAL_FLIGHT    AO_MS_TO_TICKS(100)
539 #define AO_TELEMETRY_INTERVAL_RECOVER   AO_MS_TO_TICKS(1000)
540
541 void
542 ao_telemetry_reset_interval(void);
543
544 void
545 ao_telemetry_set_interval(uint16_t interval);
546
547 void
548 ao_rdf_set(uint8_t rdf);
549
550 void
551 ao_telemetry_init(void);
552
553 void
554 ao_telemetry_orig_init(void);
555
556 void
557 ao_telemetry_tiny_init(void);
558
559 /*
560  * ao_radio.c
561  */
562
563 extern __xdata uint8_t  ao_radio_dma;
564
565 extern __xdata int8_t   ao_radio_rssi;
566
567 #ifdef PKT_APPEND_STATUS_1_CRC_OK
568 #define AO_RADIO_STATUS_CRC_OK  PKT_APPEND_STATUS_1_CRC_OK
569 #else
570 #include <ao_fec.h>
571 #define AO_RADIO_STATUS_CRC_OK  AO_FEC_DECODE_CRC_OK
572 #endif
573
574 #ifndef HAS_RADIO_RECV
575 #define HAS_RADIO_RECV HAS_RADIO
576 #endif
577 #ifndef HAS_RADIO_XMIT
578 #define HAS_RADIO_XMIT HAS_RADIO
579 #endif
580
581 #define AO_RADIO_RATE_38400     0
582 #define AO_RADIO_RATE_9600      1
583 #define AO_RADIO_RATE_2400      2
584 #define AO_RADIO_RATE_MAX       AO_RADIO_RATE_2400
585
586 #if defined(HAS_RADIO) && !defined(HAS_RADIO_RATE)
587 #define HAS_RADIO_RATE  HAS_RADIO
588 #endif
589
590 void
591 ao_radio_general_isr(void) ao_arch_interrupt(16);
592
593 #if HAS_RADIO_XMIT
594 void
595 ao_radio_send(const __xdata void *d, uint8_t size) __reentrant;
596 #endif
597
598 #if HAS_RADIO_RECV
599 uint8_t
600 ao_radio_recv(__xdata void *d, uint8_t size, uint8_t timeout) __reentrant;
601
602 void
603 ao_radio_recv_abort(void);
604 #endif
605
606 void
607 ao_radio_test(uint8_t on);
608
609 typedef int16_t (*ao_radio_fill_func)(uint8_t *buffer, int16_t len);
610
611 void
612 ao_radio_send_aprs(ao_radio_fill_func fill);
613
614 /*
615  * ao_radio_pa
616  */
617
618 #if HAS_RADIO_AMP
619 void
620 ao_radio_pa_on(void);
621
622 void
623 ao_radio_pa_off(void);
624
625 void
626 ao_radio_pa_init(void);
627 #else
628 #define ao_radio_pa_on()
629 #define ao_radio_pa_off()
630 #define ao_radio_pa_init()
631 #endif
632
633 /*
634  * Compute the packet length as follows:
635  *
636  * 2000 bps (for a 1kHz tone)
637  * so, for 'ms' milliseconds, we need
638  * 2 * ms bits, or ms / 4 bytes
639  */
640
641 void
642 ao_radio_rdf(void);
643
644 void
645 ao_radio_continuity(uint8_t c);
646
647 void
648 ao_radio_rdf_abort(void);
649
650 void
651 ao_radio_test_on(void);
652
653 void
654 ao_radio_test_off(void);
655
656 void
657 ao_radio_init(void);
658
659 /*
660  * ao_monitor.c
661  */
662
663 #if HAS_MONITOR
664
665 extern const char const * const ao_state_names[];
666
667 #define AO_MONITOR_RING 8
668
669 union ao_monitor {
670         struct ao_telemetry_raw_recv    raw;
671         struct ao_telemetry_all_recv    all;
672 #if LEGACY_MONITOR
673         struct ao_telemetry_orig_recv   orig;
674         struct ao_telemetry_tiny_recv   tiny;
675 #endif
676 };
677
678 extern __xdata union ao_monitor ao_monitor_ring[AO_MONITOR_RING];
679
680 #define ao_monitor_ring_next(n) (((n) + 1) & (AO_MONITOR_RING - 1))
681 #define ao_monitor_ring_prev(n) (((n) - 1) & (AO_MONITOR_RING - 1))
682
683 extern __xdata uint8_t ao_monitoring_mutex;
684 extern __data uint8_t ao_monitoring;
685 extern __data uint8_t ao_monitor_head;
686
687 void
688 ao_monitor(void);
689
690 #define AO_MONITORING_OFF       0
691 #define AO_MONITORING_ORIG      1
692
693 void
694 ao_monitor_set(uint8_t monitoring);
695
696 void
697 ao_monitor_disable(void);
698
699 void
700 ao_monitor_enable(void);
701
702 void
703 ao_monitor_init(void) __reentrant;
704
705 #endif
706
707 /*
708  * ao_stdio.c
709  */
710
711 #define AO_READ_AGAIN   (-1)
712
713 struct ao_stdio {
714         int     (*_pollchar)(void);     /* Called with interrupts blocked */
715         void    (*putchar)(char c) __reentrant;
716         void    (*flush)(void);
717         uint8_t echo;
718 };
719
720 extern __xdata struct ao_stdio ao_stdios[];
721 extern __pdata int8_t ao_cur_stdio;
722 extern __pdata int8_t ao_num_stdios;
723
724 void
725 flush(void);
726
727 extern __xdata uint8_t ao_stdin_ready;
728
729 uint8_t
730 ao_echo(void);
731
732 int8_t
733 ao_add_stdio(int (*pollchar)(void),
734              void (*putchar)(char) __reentrant,
735              void (*flush)(void)) __reentrant;
736
737 /*
738  * ao_ignite.c
739  */
740
741 enum ao_igniter {
742         ao_igniter_drogue = 0,
743         ao_igniter_main = 1
744 };
745
746 void
747 ao_ignite(enum ao_igniter igniter);
748
749 enum ao_igniter_status {
750         ao_igniter_unknown,     /* unknown status (ambiguous voltage) */
751         ao_igniter_ready,       /* continuity detected */
752         ao_igniter_active,      /* igniter firing */
753         ao_igniter_open,        /* open circuit detected */
754 };
755
756 struct ao_ignition {
757         uint8_t request;
758         uint8_t fired;
759         uint8_t firing;
760 };
761
762 extern __code char * __code ao_igniter_status_names[];
763
764 extern __xdata struct ao_ignition ao_ignition[2];
765
766 enum ao_igniter_status
767 ao_igniter_status(enum ao_igniter igniter);
768
769 extern __pdata uint8_t ao_igniter_present;
770
771 void
772 ao_ignite_set_pins(void);
773
774 void
775 ao_igniter_init(void);
776
777 /*
778  * ao_config.c
779  */
780 #include <ao_config.h>
781
782 #if AO_PYRO_NUM
783 #include <ao_pyro.h>
784 #endif
785
786 #if HAS_FORCE_FREQ
787 /*
788  * Set this to force the frequency to 434.550MHz
789  */
790 extern __xdata uint8_t ao_force_freq;
791 #endif
792
793 /*
794  * ao_rssi.c
795  */
796
797 #ifdef AO_LED_TYPE
798 void
799 ao_rssi_set(int16_t rssi_value);
800
801 void
802 ao_rssi_init(AO_LED_TYPE rssi_led);
803 #endif
804
805 /*
806  * ao_product.c
807  *
808  * values which need to be defined for
809  * each instance of a product
810  */
811
812 extern const char ao_version[];
813 extern const char ao_manufacturer[];
814 extern const char ao_product[];
815
816 /*
817  * Fifos
818  */
819
820 #define AO_FIFO_SIZE    32
821
822 struct ao_fifo {
823         uint8_t insert;
824         uint8_t remove;
825         char    fifo[AO_FIFO_SIZE];
826 };
827
828 #define ao_fifo_insert(f,c) do { \
829         (f).fifo[(f).insert] = (c); \
830         (f).insert = ((f).insert + 1) & (AO_FIFO_SIZE-1); \
831 } while(0)
832
833 #define ao_fifo_remove(f,c) do {\
834         c = (f).fifo[(f).remove]; \
835         (f).remove = ((f).remove + 1) & (AO_FIFO_SIZE-1); \
836 } while(0)
837
838 #define ao_fifo_full(f)         ((((f).insert + 1) & (AO_FIFO_SIZE-1)) == (f).remove)
839 #define ao_fifo_mostly(f)       ((((f).insert - (f).remove) & (AO_FIFO_SIZE-1)) >= (AO_FIFO_SIZE * 3 / 4))
840 #define ao_fifo_barely(f)       ((((f).insert - (f).remove) & (AO_FIFO_SIZE-1)) >= (AO_FIFO_SIZE * 1 / 4))
841 #define ao_fifo_empty(f)        ((f).insert == (f).remove)
842
843 #if PACKET_HAS_MASTER || PACKET_HAS_SLAVE
844 #include <ao_packet.h>
845 #endif
846
847 #if HAS_BTM
848 #include <ao_btm.h>
849 #endif
850
851 #if HAS_COMPANION
852 #include <ao_companion.h>
853 #endif
854
855 #if HAS_LCD
856 #include <ao_lcd.h>
857 #endif
858
859 #if HAS_AES
860 #include <ao_aes.h>
861 #endif
862
863 /*
864  * ao_log_single.c
865  */
866
867 #define AO_LOG_TELESCIENCE_START        ((uint8_t) 's')
868 #define AO_LOG_TELESCIENCE_DATA         ((uint8_t) 'd')
869
870 #define AO_LOG_TELESCIENCE_NUM_ADC      12
871
872 struct ao_log_telescience {
873         uint8_t         type;
874         uint8_t         csum;
875         uint16_t        tick;
876         uint16_t        tm_tick;
877         uint8_t         tm_state;
878         uint8_t         unused;
879         uint16_t        adc[AO_LOG_TELESCIENCE_NUM_ADC];
880 };
881
882 #define AO_LOG_SINGLE_SIZE              32
883
884 union ao_log_single {
885         struct ao_log_telescience       telescience;
886         union ao_telemetry_all          telemetry;
887         uint8_t                         bytes[AO_LOG_SINGLE_SIZE];
888 };
889
890 extern __xdata union ao_log_single      ao_log_single_write_data;
891 extern __xdata union ao_log_single      ao_log_single_read_data;
892
893 void
894 ao_log_single_extra_query(void);
895
896 void
897 ao_log_single_list(void);
898
899 void
900 ao_log_single_main(void);
901
902 uint8_t
903 ao_log_single_write(void);
904
905 uint8_t
906 ao_log_single_read(uint32_t pos);
907
908 void
909 ao_log_single_start(void);
910
911 void
912 ao_log_single_stop(void);
913
914 void
915 ao_log_single_restart(void);
916
917 void
918 ao_log_single_set(void);
919
920 void
921 ao_log_single_delete(void);
922
923 void
924 ao_log_single_init(void);
925
926 void
927 ao_log_single(void);
928
929 /*
930  * ao_pyro_slave.c
931  */
932
933 #define AO_TELEPYRO_NUM_ADC     9
934
935 #ifndef ao_xmemcpy
936 #define ao_xmemcpy(d,s,c) memcpy(d,s,c)
937 #define ao_xmemset(d,v,c) memset(d,v,c)
938 #define ao_xmemcmp(d,s,c) memcmp(d,s,c)
939 #endif
940
941 /*
942  * ao_terraui.c
943  */
944
945 void
946 ao_terraui_init(void);
947
948 /*
949  * ao_battery.c
950  */
951
952 #ifdef BATTERY_PIN
953 void
954 ao_battery_isr(void) ao_arch_interrupt(1);
955
956 uint16_t
957 ao_battery_get(void);
958
959 void
960 ao_battery_init(void);
961 #endif /* BATTERY_PIN */
962
963 /*
964  * ao_sqrt.c
965  */
966
967 uint32_t
968 ao_sqrt(uint32_t op);
969
970 /*
971  * ao_freq.c
972  */
973
974 int32_t ao_freq_to_set(int32_t freq, int32_t cal) __reentrant;
975
976 /*
977  * ao_ms5607.c
978  */
979
980 void ao_ms5607_init(void);
981
982 #include <ao_arch_funcs.h>
983
984 #endif /* _AO_H_ */