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.
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))
31 * One set of samples read from the A/D converter
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 */
49 #define DATA_TO_XDATA(a) (a)
50 #define PDATA_TO_XDATA(a) (a)
51 #define CODE_TO_XDATA(a) (a)
53 enum ao_flight_state {
54 ao_flight_startup = 0,
66 struct ao_adc ao_adc_ring[AO_ADC_RING];
71 #define ao_timer_set_adc_interval(i)
72 #define ao_wakeup(wchan) ao_dump_state(wchan)
73 #define ao_cmd_register(c)
74 #define ao_usb_disable()
75 #define ao_telemetry_set_interval(x)
79 ao_igniter_drogue = 0,
84 ao_ignite(enum ao_igniter igniter)
86 printf ("ignite %s\n", igniter == ao_igniter_drogue ? "drogue" : "main");
93 #define ao_add_task(t,f,n)
95 #define ao_log_start()
98 #define AO_MS_TO_TICKS(ms) ((ms) / 10)
99 #define AO_SEC_TO_TICKS(s) ((s) * 100)
101 #define AO_FLIGHT_TEST
103 struct ao_adc ao_adc_static;
108 ao_dump_state(void *wchan);
111 ao_sleep(void *wchan);
113 const char const * const ao_state_names[] = {
114 "startup", "idle", "pad", "boost", "fast",
115 "coast", "drogue", "main", "landed", "invalid"
125 uint16_t main_deploy;
126 int16_t accel_zero_g;
129 #define ao_config_get()
131 struct ao_config ao_config = { 250, 16000 };
133 #define ao_xmemcpy(d,s,c) memcpy(d,s,c)
134 #define ao_xmemset(d,v,c) memset(d,v,c)
135 #define ao_xmemcmp(d,s,c) memcmp(d,s,c)