summaryrefslogtreecommitdiff
path: root/src/cc1111/ao_launch.h
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2018-08-05 12:17:19 +0800
committerKeith Packard <keithp@keithp.com>2018-10-13 08:21:58 -0700
commit56629222711ba3ef7853405c9b07ad614fb29b95 (patch)
treedcd25b54f45a09a60f3bb1320c66e9780771a704 /src/cc1111/ao_launch.h
parent382b3ef62a09e580834b07faf9ed2d00e5ce1621 (diff)
altos: Remove cc1111 products
We're not testing these anyways; building new firmware for them is not helpful. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/cc1111/ao_launch.h')
-rw-r--r--src/cc1111/ao_launch.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/cc1111/ao_launch.h b/src/cc1111/ao_launch.h
deleted file mode 100644
index 966b5cea..00000000
--- a/src/cc1111/ao_launch.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Copyright © 2017 Keith Packard <keithp@keithp.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- */
-
-#ifndef _AO_LAUNCH_H_
-#define _AO_LAUNCH_H_
-/* ao_launch.c */
-
-struct ao_launch_command {
- uint16_t tick;
- uint16_t serial;
- uint8_t cmd;
- uint8_t channel;
- uint16_t unused;
-};
-
-#define AO_LAUNCH_QUERY 1
-
-struct ao_launch_query {
- uint16_t tick;
- uint16_t serial;
- uint8_t channel;
- uint8_t valid;
- uint8_t arm_status;
- uint8_t igniter_status;
-};
-
-#define AO_LAUNCH_ARM 2
-#define AO_LAUNCH_FIRE 3
-
-void
-ao_launch_init(void);
-
-#endif /* _AO_LAUNCH_H_ */