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