2 * Copyright © 2012 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.
22 ao_pyro_none = 0x00000000,
24 ao_pyro_accel_less = 0x00000001,
25 ao_pyro_accel_greater = 0x00000002,
27 ao_pyro_speed_less = 0x00000004,
28 ao_pyro_speed_greater = 0x00000008,
30 ao_pyro_height_less = 0x00000010,
31 ao_pyro_height_greater = 0x00000020,
33 ao_pyro_orient_less = 0x00000040,
34 ao_pyro_orient_greater = 0x00000080,
36 ao_pyro_time_less = 0x00000100,
37 ao_pyro_time_greater = 0x00000200,
39 ao_pyro_ascending = 0x00000400,
40 ao_pyro_descending = 0x00000800,
42 ao_pyro_after_motor = 0x00001000,
44 ao_pyro_delay = 0x00002000,
46 ao_pyro_state_less = 0x00004000,
47 ao_pyro_state_greater_or_equal = 0x00008000,
51 enum ao_pyro_flag flags;
52 int16_t accel_less, accel_greater;
53 int16_t speed_less, speed_greater;
54 int16_t height_less, height_greater;
55 int16_t orient_less, orient_greater;
56 int16_t time_less, time_greater;
58 uint8_t state_less, state_greater_or_equal;
64 extern uint8_t ao_pyro_wakeup;