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