altos: Add SPI-based companion board support
[fw/altos] / src / ao_host.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 #define _GNU_SOURCE
19
20 #include <stddef.h>
21 #include <stdint.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25
26 #define AO_ADC_RING     64
27 #define ao_adc_ring_next(n)     (((n) + 1) & (AO_ADC_RING - 1))
28 #define ao_adc_ring_prev(n)     (((n) - 1) & (AO_ADC_RING - 1))
29
30 /*
31  * One set of samples read from the A/D converter
32  */
33 struct ao_adc {
34         uint16_t        tick;           /* tick when the sample was read */
35         int16_t         accel;          /* accelerometer */
36         int16_t         pres;           /* pressure sensor */
37         int16_t         temp;           /* temperature sensor */
38         int16_t         v_batt;         /* battery voltage */
39         int16_t         sense_d;        /* drogue continuity sense */
40         int16_t         sense_m;        /* main continuity sense */
41 };
42
43 #define __pdata
44 #define __data
45 #define __xdata
46 #define __code
47 #define __reentrant
48
49 enum ao_flight_state {
50         ao_flight_startup = 0,
51         ao_flight_idle = 1,
52         ao_flight_pad = 2,
53         ao_flight_boost = 3,
54         ao_flight_fast = 4,
55         ao_flight_coast = 5,
56         ao_flight_drogue = 6,
57         ao_flight_main = 7,
58         ao_flight_landed = 8,
59         ao_flight_invalid = 9
60 };
61
62 struct ao_adc ao_adc_ring[AO_ADC_RING];
63 uint8_t ao_adc_head;
64
65 #define ao_led_on(l)
66 #define ao_led_off(l)
67 #define ao_timer_set_adc_interval(i)
68 #define ao_wakeup(wchan) ao_dump_state(wchan)
69 #define ao_cmd_register(c)
70 #define ao_usb_disable()
71 #define ao_telemetry_set_interval(x)
72 #define ao_delay(x)
73
74 enum ao_igniter {
75         ao_igniter_drogue = 0,
76         ao_igniter_main = 1
77 };
78
79 void
80 ao_ignite(enum ao_igniter igniter)
81 {
82         printf ("ignite %s\n", igniter == ao_igniter_drogue ? "drogue" : "main");
83 }
84
85 struct ao_task {
86         int dummy;
87 };
88
89 #define ao_add_task(t,f,n)
90
91 #define ao_log_start()
92 #define ao_log_stop()
93
94 #define AO_MS_TO_TICKS(ms)      ((ms) / 10)
95 #define AO_SEC_TO_TICKS(s)      ((s) * 100)
96
97 #define AO_FLIGHT_TEST
98
99 struct ao_adc ao_adc_static;
100
101 FILE *emulator_in;
102
103 void
104 ao_dump_state(void *wchan);
105
106 void
107 ao_sleep(void *wchan);
108
109 const char const * const ao_state_names[] = {
110         "startup", "idle", "pad", "boost", "fast",
111         "coast", "drogue", "main", "landed", "invalid"
112 };
113
114 struct ao_cmds {
115         void            (*func)(void);
116         const char      *help;
117 };
118
119
120 struct ao_config {
121         uint16_t        main_deploy;
122         int16_t         accel_zero_g;
123 };
124
125 #define ao_config_get()
126
127 struct ao_config ao_config = { 250, 16000 };