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