2 * Copyright © 2009 Keith Packard <keithp@keithp.com>
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
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.
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.
31 /* Convert a __data pointer into an __xdata pointer */
33 #define DATA_TO_XDATA(a) (a)
35 #ifndef PDATA_TO_XDATA
36 #define PDATA_TO_XDATA(a) (a)
39 #define CODE_TO_XDATA(a) (a)
47 #define AO_PORT_TYPE uint8_t
50 typedef AO_PORT_TYPE ao_port_t;
55 #include <ao_notask.h>
62 #define AO_PANIC_NO_TASK 1 /* AO_NUM_TASKS is not large enough */
63 #define AO_PANIC_DMA 2 /* Attempt to start DMA while active */
64 #define AO_PANIC_MUTEX 3 /* Mis-using mutex API */
65 #define AO_PANIC_EE 4 /* Mis-using eeprom API */
66 #define AO_PANIC_LOG 5 /* Failing to read/write log data */
67 #define AO_PANIC_CMD 6 /* Too many command sets registered */
68 #define AO_PANIC_STDIO 7 /* Too many stdio handlers registered */
69 #define AO_PANIC_REBOOT 8 /* Reboot failed */
70 #define AO_PANIC_FLASH 9 /* Invalid flash part (or wrong blocksize) */
71 #define AO_PANIC_USB 10 /* Trying to send USB packet while busy */
72 #define AO_PANIC_BT 11 /* Communications with bluetooth device failed */
73 #define AO_PANIC_STACK 12 /* Stack overflow */
74 #define AO_PANIC_SPI 13 /* SPI communication failure */
75 #define AO_PANIC_CRASH 14 /* Processor crashed */
76 #define AO_PANIC_BUFIO 15 /* Mis-using bufio API */
77 #define AO_PANIC_EXTI 16 /* Mis-using exti API */
78 #define AO_PANIC_FAST_TIMER 17 /* Mis-using fast timer API */
79 #define AO_PANIC_SELF_TEST_CC1120 0x40 | 1 /* Self test failure */
80 #define AO_PANIC_SELF_TEST_HMC5883 0x40 | 2 /* Self test failure */
81 #define AO_PANIC_SELF_TEST_MPU6000 0x40 | 3 /* Self test failure */
82 #define AO_PANIC_SELF_TEST_MS5607 0x40 | 4 /* Self test failure */
84 /* Stop the operating system, beeping and blinking the reason */
86 ao_panic(uint8_t reason);
93 #define AO_TICK_TYPE uint16_t
94 #define AO_TICK_SIGNED int16_t
97 extern volatile __data AO_TICK_TYPE ao_tick_count;
99 /* Our timer runs at 100Hz */
103 #define AO_MS_TO_TICKS(ms) ((ms) / (1000 / AO_HERTZ))
104 #define AO_SEC_TO_TICKS(s) ((s) * AO_HERTZ)
106 /* Returns the current time in ticks */
110 /* Suspend the current task until ticks time has passed */
112 ao_delay(uint16_t ticks);
114 /* Set the ADC interval */
116 ao_timer_set_adc_interval(uint8_t interval);
118 /* Timer interrupt */
120 ao_timer_isr(void) ao_arch_interrupt(9);
122 /* Initialize the timer */
126 /* Initialize the hardware clock. Must be called first */
136 ao_mutex_get(__xdata uint8_t *ao_mutex) __reentrant;
139 ao_mutex_put(__xdata uint8_t *ao_mutex) __reentrant;
148 ao_cmd_lex_error = 1,
149 ao_cmd_syntax_error = 2,
152 extern __pdata uint16_t ao_cmd_lex_i;
153 extern __pdata uint32_t ao_cmd_lex_u32;
154 extern __pdata char ao_cmd_lex_c;
155 extern __pdata enum ao_cmd_status ao_cmd_status;
158 ao_put_string(__code char *s);
164 ao_cmd_put8(uint8_t v);
167 ao_cmd_put16(uint16_t v);
170 ao_cmd_is_white(void);
176 ao_cmd_hexchar(char c);
179 ao_cmd_hexbyte(void);
185 ao_cmd_decimal(void) __reentrant;
187 /* Read a single hex nibble off stdin. */
192 ao_match_word(__code char *word);
200 ao_cmd_register(const __code struct ao_cmds *cmds);
207 * Provided by an external module to filter raw command lines
233 #include <ao_storage.h>
241 #include <ao_flight.h>
242 #include <ao_sample.h>
249 #define AO_RDF_INTERVAL_TICKS AO_SEC_TO_TICKS(5)
250 #define AO_RDF_LENGTH_MS 500
251 #define AO_RDF_CONTINUITY_MS 32
252 #define AO_RDF_CONTINUITY_PAUSE 96
253 #define AO_RDF_CONTINUITY_TOTAL ((AO_RDF_CONTINUITY_PAUSE + AO_RDF_CONTINUITY_MS) * 3 + AO_RDF_CONTINUITY_PAUSE)
255 /* This assumes that we're generating a 1kHz tone, which
256 * modulates the carrier at 2kbps, or 250kBps
258 #define AO_MS_TO_RDF_LEN(ms) ((ms) / 4)
260 #define AO_RADIO_RDF_LEN AO_MS_TO_RDF_LEN(AO_RDF_LENGTH_MS)
261 #define AO_RADIO_CONT_TONE_LEN AO_MS_TO_RDF_LEN(AO_RDF_CONTINUITY_MS)
262 #define AO_RADIO_CONT_PAUSE_LEN AO_MS_TO_RDF_LEN(AO_RDF_CONTINUITY_PAUSE)
263 #define AO_RADIO_CONT_TOTAL_LEN AO_MS_TO_RDF_LEN(AO_RDF_CONTINUITY_TOTAL)
265 /* returns a value 0-3 to indicate igniter continuity */
267 ao_report_igniter(void);
270 ao_report_init(void);
275 * Given raw data, convert to SI units
278 /* pressure from the sensor to altitude in meters */
280 ao_pres_to_altitude(int16_t pres) __reentrant;
283 ao_altitude_to_pres(int16_t alt) __reentrant;
286 ao_temp_to_dC(int16_t temp) __reentrant;
291 * Convert between pressure in Pa and altitude in meters
297 ao_pa_to_altitude(int32_t pa);
300 ao_altitude_to_pa(alt_t alt);
306 #if HAS_SERIAL_0 || HAS_SERIAL_1 || HAS_SERIAL_2 || HAS_SERIAL_3
307 #include <ao_serial.h>
316 ao_spi_slave_recv(void *buf, uint16_t len);
319 ao_spi_slave_send(void *buf, uint16_t len);
322 ao_spi_slave_init(void);
324 /* This must be defined by the product; it will get called when chip
325 * select goes low, at which point it should use ao_spi_read and
326 * ao_spi_write to deal with the request
332 #include <ao_telemetry.h>
337 #define AO_GPS_NUM_SAT_MASK (0xf << 0)
338 #define AO_GPS_NUM_SAT_SHIFT (0)
340 #define AO_GPS_VALID (1 << 4)
341 #define AO_GPS_RUNNING (1 << 5)
342 #define AO_GPS_DATE_VALID (1 << 6)
343 #define AO_GPS_COURSE_VALID (1 << 7)
345 #define AO_GPS_NEW_DATA 1
346 #define AO_GPS_NEW_TRACKING 2
348 extern __xdata uint8_t ao_gps_new;
349 extern __pdata uint16_t ao_gps_tick;
350 extern __xdata uint8_t ao_gps_mutex;
351 extern __xdata struct ao_telemetry_location ao_gps_data;
352 extern __xdata struct ao_telemetry_satellite ao_gps_tracking_data;
362 int32_t latitude; /* degrees * 10⁷ */
363 int32_t longitude; /* degrees * 10⁷ */
364 int16_t altitude; /* m */
365 uint16_t ground_speed; /* cm/s */
366 uint8_t course; /* degrees / 2 */
367 uint8_t hdop; /* * 5 */
368 int16_t climb_rate; /* cm/s */
369 uint16_t h_error; /* m */
370 uint16_t v_error; /* m */
373 struct ao_gps_sat_orig {
378 #define AO_MAX_GPS_TRACKING 12
380 struct ao_gps_tracking_orig {
382 struct ao_gps_sat_orig sats[AO_MAX_GPS_TRACKING];
389 ao_gps_print(__xdata struct ao_gps_orig *gps_data);
392 ao_gps_tracking_print(__xdata struct ao_gps_tracking_orig *gps_tracking_data);
395 ao_gps_show(void) __reentrant;
408 ao_gps_report_init(void);
411 * ao_gps_report_mega.c
415 ao_gps_report_mega(void);
418 ao_gps_report_mega_init(void);
421 * ao_telemetry_orig.c
426 uint16_t tick; /* tick when the sample was read */
427 int16_t accel; /* accelerometer */
428 int16_t pres; /* pressure sensor */
429 int16_t temp; /* temperature sensor */
430 int16_t v_batt; /* battery voltage */
431 int16_t sense_d; /* drogue continuity sense */
432 int16_t sense_m; /* main continuity sense */
435 struct ao_telemetry_orig {
438 uint8_t flight_state;
440 int16_t ground_accel;
450 int16_t accel_plus_g;
451 int16_t accel_minus_g;
452 struct ao_adc_orig adc;
453 struct ao_gps_orig gps;
454 char callsign[AO_MAX_CALLSIGN];
455 struct ao_gps_tracking_orig gps_tracking;
458 struct ao_telemetry_tiny {
461 uint8_t flight_state;
462 int16_t height; /* AGL in meters */
463 int16_t speed; /* in m/s * 16 */
464 int16_t accel; /* in m/s² * 16 */
465 int16_t ground_pres; /* sensor units */
466 struct ao_adc adc; /* raw ADC readings */
467 char callsign[AO_MAX_CALLSIGN];
470 struct ao_telemetry_orig_recv {
471 struct ao_telemetry_orig telemetry_orig;
476 struct ao_telemetry_tiny_recv {
477 struct ao_telemetry_tiny telemetry_tiny;
482 #endif /* LEGACY_MONITOR */
484 /* Unfortunately, we've exposed the CC1111 rssi units as the 'usual' method
485 * for reporting RSSI. So, now we use these values everywhere
487 #define AO_RSSI_FROM_RADIO(radio) ((int16_t) ((int8_t) (radio) >> 1) - 74)
488 #define AO_RADIO_FROM_RSSI(rssi) (((int8_t) (rssi) + 74) << 1)
491 * ao_radio_recv tacks on rssi and status bytes
494 struct ao_telemetry_raw_recv {
495 uint8_t packet[AO_MAX_TELEMETRY + 2];
498 /* Set delay between telemetry reports (0 to disable) */
500 #ifdef AO_SEND_ALL_BARO
501 #define AO_TELEMETRY_INTERVAL_PAD AO_MS_TO_TICKS(100)
502 #define AO_TELEMETRY_INTERVAL_FLIGHT AO_MS_TO_TICKS(100)
503 #define AO_TELEMETRY_INTERVAL_RECOVER AO_MS_TO_TICKS(100)
505 #define AO_TELEMETRY_INTERVAL_PAD AO_MS_TO_TICKS(1000)
506 #define AO_TELEMETRY_INTERVAL_FLIGHT AO_MS_TO_TICKS(100)
507 #define AO_TELEMETRY_INTERVAL_RECOVER AO_MS_TO_TICKS(1000)
511 ao_telemetry_set_interval(uint16_t interval);
514 ao_rdf_set(uint8_t rdf);
517 ao_telemetry_init(void);
520 ao_telemetry_orig_init(void);
523 ao_telemetry_tiny_init(void);
529 extern __xdata uint8_t ao_radio_dma;
531 extern __xdata int8_t ao_radio_rssi;
533 #ifdef PKT_APPEND_STATUS_1_CRC_OK
534 #define AO_RADIO_STATUS_CRC_OK PKT_APPEND_STATUS_1_CRC_OK
537 #define AO_RADIO_STATUS_CRC_OK AO_FEC_DECODE_CRC_OK
540 #ifndef HAS_RADIO_RECV
541 #define HAS_RADIO_RECV HAS_RADIO
543 #ifndef HAS_RADIO_XMIT
544 #define HAS_RADIO_XMIT HAS_RADIO
548 ao_radio_general_isr(void) ao_arch_interrupt(16);
552 ao_radio_send(const __xdata void *d, uint8_t size) __reentrant;
557 ao_radio_recv(__xdata void *d, uint8_t size, uint8_t timeout) __reentrant;
560 ao_radio_recv_abort(void);
564 ao_radio_test(uint8_t on);
566 typedef int16_t (*ao_radio_fill_func)(uint8_t *buffer, int16_t len);
569 ao_radio_send_aprs(ao_radio_fill_func fill);
577 ao_radio_pa_on(void);
580 ao_radio_pa_off(void);
583 ao_radio_pa_init(void);
585 #define ao_radio_pa_on()
586 #define ao_radio_pa_off()
587 #define ao_radio_pa_init()
591 * Compute the packet length as follows:
593 * 2000 bps (for a 1kHz tone)
594 * so, for 'ms' milliseconds, we need
595 * 2 * ms bits, or ms / 4 bytes
602 ao_radio_continuity(uint8_t c);
605 ao_radio_rdf_abort(void);
616 extern const char const * const ao_state_names[];
618 #define AO_MONITOR_RING 8
621 struct ao_telemetry_raw_recv raw;
622 struct ao_telemetry_all_recv all;
624 struct ao_telemetry_orig_recv orig;
625 struct ao_telemetry_tiny_recv tiny;
629 extern __xdata union ao_monitor ao_monitor_ring[AO_MONITOR_RING];
631 #define ao_monitor_ring_next(n) (((n) + 1) & (AO_MONITOR_RING - 1))
633 extern __data uint8_t ao_monitoring;
634 extern __data uint8_t ao_monitor_head;
639 #define AO_MONITORING_OFF 0
640 #define AO_MONITORING_ORIG 1
643 ao_monitor_set(uint8_t monitoring);
646 ao_monitor_disable(void);
649 ao_monitor_enable(void);
652 ao_monitor_init(void) __reentrant;
660 #define AO_READ_AGAIN (-1)
663 int (*_pollchar)(void); /* Called with interrupts blocked */
664 void (*putchar)(char c) __reentrant;
669 extern __xdata struct ao_stdio ao_stdios[];
670 extern __pdata int8_t ao_cur_stdio;
671 extern __pdata int8_t ao_num_stdios;
676 extern __xdata uint8_t ao_stdin_ready;
682 ao_add_stdio(int (*pollchar)(void),
683 void (*putchar)(char) __reentrant,
684 void (*flush)(void)) __reentrant;
691 ao_igniter_drogue = 0,
696 ao_ignite(enum ao_igniter igniter);
698 enum ao_igniter_status {
699 ao_igniter_unknown, /* unknown status (ambiguous voltage) */
700 ao_igniter_ready, /* continuity detected */
701 ao_igniter_active, /* igniter firing */
702 ao_igniter_open, /* open circuit detected */
711 extern __code char * __code ao_igniter_status_names[];
713 extern __xdata struct ao_ignition ao_ignition[2];
715 enum ao_igniter_status
716 ao_igniter_status(enum ao_igniter igniter);
718 extern __pdata uint8_t ao_igniter_present;
721 ao_ignite_set_pins(void);
724 ao_igniter_init(void);
736 * Set this to force the frequency to 434.550MHz
738 extern __xdata uint8_t ao_force_freq;
741 #define AO_CONFIG_MAJOR 1
742 #define AO_CONFIG_MINOR 14
744 #define AO_AES_LEN 16
746 extern __xdata uint8_t ao_config_aes_seq;
751 uint16_t main_deploy;
752 int16_t accel_plus_g; /* changed for minor version 2 */
753 uint8_t _legacy_radio_channel;
754 char callsign[AO_MAX_CALLSIGN + 1];
755 uint8_t apogee_delay; /* minor version 1 */
756 int16_t accel_minus_g; /* minor version 2 */
757 uint32_t radio_cal; /* minor version 3 */
758 uint32_t flight_log_max; /* minor version 4 */
759 uint8_t ignite_mode; /* minor version 5 */
760 uint8_t pad_orientation; /* minor version 6 */
761 uint32_t radio_setting; /* minor version 7 */
762 uint8_t radio_enable; /* minor version 8 */
763 uint8_t aes_key[AO_AES_LEN]; /* minor version 9 */
764 uint32_t frequency; /* minor version 10 */
765 uint16_t apogee_lockout; /* minor version 11 */
767 struct ao_pyro pyro[AO_PYRO_NUM]; /* minor version 12 */
769 uint16_t aprs_interval; /* minor version 13 */
771 uint8_t radio_power; /* minor version 14 */
774 uint8_t radio_amp; /* minor version 14 */
778 #define AO_IGNITE_MODE_DUAL 0
779 #define AO_IGNITE_MODE_APOGEE 1
780 #define AO_IGNITE_MODE_MAIN 2
782 #define AO_RADIO_ENABLE_CORE 1
783 #define AO_RADIO_DISABLE_TELEMETRY 2
784 #define AO_RADIO_DISABLE_RDF 4
786 #define AO_PAD_ORIENTATION_ANTENNA_UP 0
787 #define AO_PAD_ORIENTATION_ANTENNA_DOWN 1
789 extern __xdata struct ao_config ao_config;
791 #define AO_CONFIG_MAX_SIZE 128
794 _ao_config_edit_start(void);
797 _ao_config_edit_finish(void);
806 ao_config_set_radio(void);
809 ao_config_init(void);
816 ao_rssi_set(int rssi_value);
819 ao_rssi_init(uint8_t rssi_led);
824 * values which need to be defined for
825 * each instance of a product
828 extern const char ao_version[];
829 extern const char ao_manufacturer[];
830 extern const char ao_product[];
836 #define AO_FIFO_SIZE 32
841 char fifo[AO_FIFO_SIZE];
844 #define ao_fifo_insert(f,c) do { \
845 (f).fifo[(f).insert] = (c); \
846 (f).insert = ((f).insert + 1) & (AO_FIFO_SIZE-1); \
849 #define ao_fifo_remove(f,c) do {\
850 c = (f).fifo[(f).remove]; \
851 (f).remove = ((f).remove + 1) & (AO_FIFO_SIZE-1); \
854 #define ao_fifo_full(f) ((((f).insert + 1) & (AO_FIFO_SIZE-1)) == (f).remove)
855 #define ao_fifo_empty(f) ((f).insert == (f).remove)
857 #if PACKET_HAS_MASTER || PACKET_HAS_SLAVE
858 #include <ao_packet.h>
866 #include <ao_companion.h>
879 struct ao_launch_command {
887 #define AO_LAUNCH_QUERY 1
889 struct ao_launch_query {
895 uint8_t igniter_status;
898 #define AO_LAUNCH_ARM 2
899 #define AO_LAUNCH_FIRE 3
902 ao_launch_init(void);
908 #define AO_LOG_TELESCIENCE_START ((uint8_t) 's')
909 #define AO_LOG_TELESCIENCE_DATA ((uint8_t) 'd')
911 #define AO_LOG_TELESCIENCE_NUM_ADC 12
913 struct ao_log_telescience {
920 uint16_t adc[AO_LOG_TELESCIENCE_NUM_ADC];
923 #define AO_LOG_SINGLE_SIZE 32
925 union ao_log_single {
926 struct ao_log_telescience telescience;
927 union ao_telemetry_all telemetry;
928 uint8_t bytes[AO_LOG_SINGLE_SIZE];
931 extern __xdata union ao_log_single ao_log_single_write_data;
932 extern __xdata union ao_log_single ao_log_single_read_data;
935 ao_log_single_extra_query(void);
938 ao_log_single_list(void);
941 ao_log_single_main(void);
944 ao_log_single_write(void);
947 ao_log_single_read(uint32_t pos);
950 ao_log_single_start(void);
953 ao_log_single_stop(void);
956 ao_log_single_restart(void);
959 ao_log_single_set(void);
962 ao_log_single_delete(void);
965 ao_log_single_init(void);
974 #define AO_TELEPYRO_NUM_ADC 9
977 #define ao_xmemcpy(d,s,c) memcpy(d,s,c)
978 #define ao_xmemset(d,v,c) memset(d,v,c)
979 #define ao_xmemcmp(d,s,c) memcmp(d,s,c)
987 ao_terraui_init(void);
995 ao_battery_isr(void) ao_arch_interrupt(1);
998 ao_battery_get(void);
1001 ao_battery_init(void);
1002 #endif /* BATTERY_PIN */
1009 ao_sqrt(uint32_t op);
1015 int32_t ao_freq_to_set(int32_t freq, int32_t cal) __reentrant;
1021 void ao_ms5607_init(void);
1023 #include <ao_arch_funcs.h>