altos: Add TeleTerra v0.2 product
[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
40         #define HAS_COMPANION           0
41
42         #define LEDS_AVAILABLE          0
43         #define HAS_EXTERNAL_TEMP       0
44         #define HAS_ACCEL_REF           0
45         #define HAS_ACCEL               0
46         #define HAS_IGNITE              0
47         #define HAS_MONITOR             1
48         #define LEGACY_MONITOR          0
49         #define HAS_RSSI                0
50         #define HAS_AES                 0
51
52         #define SPI_CS_ON_P1            1
53         #define SPI_CS_ON_P0            0
54         #define M25_CS_MASK             0x04
55         #define M25_MAX_CHIPS           1
56 #endif
57
58 #if DBG_ON_P1
59
60         #define DBG_CLOCK       (1 << 4)        /* mi0 */
61         #define DBG_DATA        (1 << 5)        /* mo0 */
62         #define DBG_RESET_N     (1 << 3)        /* c0 */
63
64         #define DBG_CLOCK_PIN   (P1_4)
65         #define DBG_DATA_PIN    (P1_5)
66         #define DBG_RESET_N_PIN (P1_3)
67
68         #define DBG_PORT_NUM    1
69         #define DBG_PORT        P1
70         #define DBG_PORT_SEL    P1SEL
71         #define DBG_PORT_INP    P1INP
72         #define DBG_PORT_DIR    P1DIR
73
74 #endif /* DBG_ON_P1 */
75
76 #if DBG_ON_P0
77
78         #define DBG_CLOCK       (1 << 3)
79         #define DBG_DATA        (1 << 4)
80         #define DBG_RESET_N     (1 << 5)
81
82         #define DBG_CLOCK_PIN   (P0_3)
83         #define DBG_DATA_PIN    (P0_4)
84         #define DBG_RESET_N_PIN (P0_5)
85
86         #define DBG_PORT_NUM    0
87         #define DBG_PORT        P0
88         #define DBG_PORT_SEL    P0SEL
89         #define DBG_PORT_INP    P0INP
90         #define DBG_PORT_DIR    P0DIR
91
92 #endif /* DBG_ON_P0 */
93
94 #if COMPANION_CS_ON_P1
95         #define COMPANION_CS_PORT       P1
96         #define COMPANION_CS_SEL        P1SEL
97         #define COMPANION_CS_DIR        P1DIR
98 #endif
99
100 #if SPI_CS_ON_P1
101         #define SPI_CS_PORT     P1
102         #define SPI_CS_SEL      P1SEL
103         #define SPI_CS_DIR      P1DIR
104 #endif
105
106 #if SPI_CS_ON_P0
107         #define SPI_CS_PORT     P0
108         #define SPI_CS_SEL      P0SEL
109         #define SPI_CS_DIR      P0DIR
110 #endif
111
112 #ifndef IGNITE_ON_P2
113 #error Please define IGNITE_ON_P2
114 #endif
115
116 #ifndef IGNITE_ON_P0
117 #error Please define IGNITE_ON_P0
118 #endif
119
120 #ifndef HAS_SERIAL_1
121 #error Please define HAS_SERIAL_1
122 #endif
123
124 #ifndef USE_SERIAL_STDIN
125 #error Please define USE_SERIAL_STDIN
126 #endif
127
128 #ifndef HAS_ADC
129 #error Please define HAS_ADC
130 #endif
131
132 #ifndef HAS_EEPROM
133 #error Please define HAS_EEPROM
134 #endif
135
136 #ifndef HAS_LOG
137 #error Please define HAS_LOG
138 #endif
139
140 #if HAS_EEPROM
141 #ifndef USE_INTERNAL_FLASH
142 #error Please define USE_INTERNAL_FLASH
143 #endif
144 #endif
145
146 #ifndef HAS_DBG
147 #error Please define HAS_DBG
148 #endif
149
150 #ifndef HAS_IGNITE
151 #error Please define HAS_IGNITE
152 #endif
153
154 #if HAS_IGNITE
155 #define HAS_IGNITE_REPORT 1
156 #endif
157
158 #ifndef PACKET_HAS_MASTER
159 #error Please define PACKET_HAS_MASTER
160 #endif
161
162 #ifndef PACKET_HAS_SLAVE
163 #error Please define PACKET_HAS_SLAVE
164 #endif
165
166 #ifndef HAS_MONITOR
167 #error Please define HAS_MONITOR
168 #endif
169
170 #if HAS_MONITOR
171 #ifndef HAS_RSSI
172 #error Please define HAS_RSSI
173 #endif
174 #endif
175
176 #ifndef HAS_ADC
177 #error Please define HAS_ADC
178 #endif
179
180 #if HAS_ADC
181
182 #if HAS_ACCEL
183 #ifndef HAS_ACCEL_REF
184 #error Please define HAS_ACCEL_REF
185 #endif
186 #else
187 #define HAS_ACCEL_REF 0
188 #endif
189
190 #endif /* HAS_ADC */
191
192 #if IGNITE_ON_P2
193 #define AO_IGNITER_DROGUE       P2_3
194 #define AO_IGNITER_MAIN         P2_4
195 #define AO_IGNITER_DIR          P2DIR
196 #define AO_IGNITER_DROGUE_BIT   (1 << 3)
197 #define AO_IGNITER_MAIN_BIT     (1 << 4)
198 #endif
199
200 #if IGNITE_ON_P0
201 #define AO_IGNITER_DROGUE       P0_5
202 #define AO_IGNITER_MAIN         P0_4
203 #define AO_IGNITER_DIR          P0DIR
204 #define AO_IGNITER_DROGUE_BIT   (1 << 5)
205 #define AO_IGNITER_MAIN_BIT     (1 << 4)
206 #endif
207
208 /* test these values with real igniters */
209 #define AO_IGNITER_OPEN         1000
210 #define AO_IGNITER_CLOSED       7000
211 #define AO_IGNITER_FIRE_TIME    AO_MS_TO_TICKS(50)
212 #define AO_IGNITER_CHARGE_TIME  AO_MS_TO_TICKS(2000)
213
214 #endif /* _AO_PINS_H_ */