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