altoslib: fix computation of TeleGPS battery voltage
[fw/altos] / src / teleshield-v0.1 / ao_pins.h
1 /*
2  * Copyright © 2010 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 #ifndef _AO_PINS_H_
20 #define _AO_PINS_H_
21
22 #if defined(TELESHIELD_V_0_1)
23         #define HAS_FLIGHT              0
24         #define HAS_USB                 1
25         #define HAS_BEEP                0
26         #define HAS_SERIAL_1            1
27         #define HAS_SERIAL_1_ALT_1      1
28         #define HAS_SERIAL_1_ALT_2      0
29         #define HAS_SERIAL_1_HW_FLOW    1
30         #define USE_SERIAL_1_STDIN      1
31         #define HAS_SERIAL_0            1
32         #define HAS_SERIAL_0_ALT_1      0
33         #define HAS_SERIAL_0_ALT_2      1
34         #define HAS_SERIAL_0_HW_FLOW    0
35         #define HAS_ADC                 0
36         #define HAS_DBG                 1
37         #define HAS_EEPROM              1
38         #define HAS_LOG                 0
39         #define USE_INTERNAL_FLASH      1
40         #define HAS_BTM                 1
41         #define DBG_ON_P1               1
42         #define DBG_ON_P0               0
43         #define IGNITE_ON_P2            0
44         #define IGNITE_ON_P0            0
45         #define PACKET_HAS_MASTER       0
46         #define PACKET_HAS_SLAVE        1
47         #define AO_LED_RED              1
48         #define AO_LED_GREEN            2
49         #define AO_MONITOR_LED          AO_LED_RED
50         #define AO_BT_LED               AO_LED_GREEN
51         #define LEDS_AVAILABLE          (AO_LED_RED|AO_LED_GREEN)
52         #define SPI_CS_ON_P1            1
53         #define SPI_CS_ON_P0            0
54         #define HAS_ACCEL               0
55         #define HAS_IGNITE              0
56         #define HAS_IGNITE_REPORT       0
57         #define BT_LINK_ON_P2           0
58         #define BT_LINK_ON_P1           1
59         #define BT_LINK_PIN_INDEX       7
60         #define BT_LINK_PIN             P1_7
61         #define HAS_MONITOR             1
62         #define LEGACY_MONITOR          0
63         #define HAS_RSSI                0
64         #define HAS_AES                 0
65         #define HAS_RADIO               1
66         #define HAS_TELEMETRY           0
67 #endif
68
69 #if DBG_ON_P1
70
71         #define DBG_CLOCK       (1 << 4)        /* mi0 */
72         #define DBG_DATA        (1 << 5)        /* mo0 */
73         #define DBG_RESET_N     (1 << 3)        /* c0 */
74
75         #define DBG_CLOCK_PIN   (P1_4)
76         #define DBG_DATA_PIN    (P1_5)
77         #define DBG_RESET_N_PIN (P1_3)
78
79         #define DBG_PORT_NUM    1
80         #define DBG_PORT        P1
81         #define DBG_PORT_SEL    P1SEL
82         #define DBG_PORT_INP    P1INP
83         #define DBG_PORT_DIR    P1DIR
84
85 #endif /* DBG_ON_P1 */
86
87 #if DBG_ON_P0
88
89         #define DBG_CLOCK       (1 << 3)
90         #define DBG_DATA        (1 << 4)
91         #define DBG_RESET_N     (1 << 5)
92
93         #define DBG_CLOCK_PIN   (P0_3)
94         #define DBG_DATA_PIN    (P0_4)
95         #define DBG_RESET_N_PIN (P0_5)
96
97         #define DBG_PORT_NUM    0
98         #define DBG_PORT        P0
99         #define DBG_PORT_SEL    P0SEL
100         #define DBG_PORT_INP    P0INP
101         #define DBG_PORT_DIR    P0DIR
102
103 #endif /* DBG_ON_P0 */
104
105 #if COMPANION_CS_ON_P1
106         #define COMPANION_CS_PORT       P1
107         #define COMPANION_CS_SEL        P1SEL
108         #define COMPANION_CS_DIR        P1DIR
109 #endif
110
111 #if SPI_CS_ON_P1
112         #define SPI_CS_PORT     P1
113         #define SPI_CS_SEL      P1SEL
114         #define SPI_CS_DIR      P1DIR
115 #endif
116
117 #if SPI_CS_ON_P0
118         #define SPI_CS_PORT     P0
119         #define SPI_CS_SEL      P0SEL
120         #define SPI_CS_DIR      P0DIR
121 #endif
122
123 #ifndef IGNITE_ON_P2
124 #error Please define IGNITE_ON_P2
125 #endif
126
127 #ifndef IGNITE_ON_P0
128 #error Please define IGNITE_ON_P0
129 #endif
130
131 #ifndef HAS_SERIAL_1
132 #error Please define HAS_SERIAL_1
133 #endif
134
135 #ifndef HAS_ADC
136 #error Please define HAS_ADC
137 #endif
138
139 #ifndef HAS_EEPROM
140 #error Please define HAS_EEPROM
141 #endif
142
143 #ifndef HAS_LOG
144 #error Please define HAS_LOG
145 #endif
146
147 #if HAS_EEPROM
148 #ifndef USE_INTERNAL_FLASH
149 #error Please define USE_INTERNAL_FLASH
150 #endif
151 #endif
152
153 #ifndef HAS_DBG
154 #error Please define HAS_DBG
155 #endif
156
157 #ifndef HAS_IGNITE
158 #error Please define HAS_IGNITE
159 #endif
160
161 #if HAS_IGNITE
162 #define HAS_IGNITE_REPORT 1
163 #endif
164
165 #ifndef PACKET_HAS_MASTER
166 #error Please define PACKET_HAS_MASTER
167 #endif
168
169 #ifndef PACKET_HAS_SLAVE
170 #error Please define PACKET_HAS_SLAVE
171 #endif
172
173 #ifndef HAS_MONITOR
174 #error Please define HAS_MONITOR
175 #endif
176
177 #if HAS_MONITOR
178 #ifndef HAS_RSSI
179 #error Please define HAS_RSSI
180 #endif
181 #endif
182
183 #ifndef HAS_ADC
184 #error Please define HAS_ADC
185 #endif
186
187 #if HAS_ADC
188
189 #if HAS_ACCEL
190 #ifndef HAS_ACCEL_REF
191 #error Please define HAS_ACCEL_REF
192 #endif
193 #else
194 #define HAS_ACCEL_REF 0
195 #endif
196
197 #endif /* HAS_ADC */
198
199 #if IGNITE_ON_P2
200 #define AO_IGNITER_DROGUE       P2_3
201 #define AO_IGNITER_MAIN         P2_4
202 #define AO_IGNITER_DIR          P2DIR
203 #define AO_IGNITER_DROGUE_BIT   (1 << 3)
204 #define AO_IGNITER_MAIN_BIT     (1 << 4)
205 #endif
206
207 #if IGNITE_ON_P0
208 #define AO_IGNITER_DROGUE       P0_5
209 #define AO_IGNITER_MAIN         P0_4
210 #define AO_IGNITER_DIR          P0DIR
211 #define AO_IGNITER_DROGUE_BIT   (1 << 5)
212 #define AO_IGNITER_MAIN_BIT     (1 << 4)
213 #endif
214
215 /* test these values with real igniters */
216 #define AO_IGNITER_OPEN         1000
217 #define AO_IGNITER_CLOSED       7000
218 #define AO_IGNITER_FIRE_TIME    AO_MS_TO_TICKS(50)
219 #define AO_IGNITER_CHARGE_TIME  AO_MS_TO_TICKS(2000)
220
221 void
222 ao_ardu_serial_init (void);
223
224
225 #endif /* _AO_PINS_H_ */