Merge branch 'master' into micropeak-logging
[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 HAS_ADC                 1
34         #define HAS_EEPROM              1
35         #define HAS_LOG                 1
36         #define USE_INTERNAL_FLASH      0
37         #define HAS_DBG                 1
38         #define DBG_ON_P1               1
39         #define DBG_ON_P0               0
40         #define IGNITE_ON_P2            1
41         #define IGNITE_ON_P0            0
42         #define PACKET_HAS_MASTER       0
43         #define PACKET_HAS_SLAVE        1
44
45         #define HAS_COMPANION           1
46         #define AO_COMPANION_CS_PORT    P1
47         #define AO_COMPANION_CS_PIN     2
48         #define AO_COMPANION_CS         P1_2
49
50         #define AO_LED_RED              1
51         #define LEDS_AVAILABLE          (AO_LED_RED)
52         #define HAS_EXTERNAL_TEMP       0
53         #define HAS_ACCEL_REF           1
54         #define SPI_CS_ON_P1            1
55         #define SPI_CS_ON_P0            0
56         #define AO_M25_SPI_CS_MASK      0x02    /* CS0 is P1_1 */
57         #define M25_MAX_CHIPS           1
58         #define HAS_ACCEL               1
59         #define HAS_IGNITE              0
60         #define HAS_MONITOR             0
61 #endif
62
63 #if DBG_ON_P1
64
65         #define DBG_CLOCK       (1 << 4)        /* mi0 */
66         #define DBG_DATA        (1 << 5)        /* mo0 */
67         #define DBG_RESET_N     (1 << 3)        /* c0 */
68
69         #define DBG_CLOCK_PIN   (P1_4)
70         #define DBG_DATA_PIN    (P1_5)
71         #define DBG_RESET_N_PIN (P1_3)
72
73         #define DBG_PORT_NUM    1
74         #define DBG_PORT        P1
75         #define DBG_PORT_SEL    P1SEL
76         #define DBG_PORT_INP    P1INP
77         #define DBG_PORT_DIR    P1DIR
78
79 #endif /* DBG_ON_P1 */
80
81 #if DBG_ON_P0
82
83         #define DBG_CLOCK       (1 << 3)
84         #define DBG_DATA        (1 << 4)
85         #define DBG_RESET_N     (1 << 5)
86
87         #define DBG_CLOCK_PIN   (P0_3)
88         #define DBG_DATA_PIN    (P0_4)
89         #define DBG_RESET_N_PIN (P0_5)
90
91         #define DBG_PORT_NUM    0
92         #define DBG_PORT        P0
93         #define DBG_PORT_SEL    P0SEL
94         #define DBG_PORT_INP    P0INP
95         #define DBG_PORT_DIR    P0DIR
96
97 #endif /* DBG_ON_P0 */
98
99 #if COMPANION_CS_ON_P1
100         #define COMPANION_CS_PORT       P1
101         #define COMPANION_CS_SEL        P1SEL
102         #define COMPANION_CS_DIR        P1DIR
103 #endif
104
105 #if SPI_CS_ON_P1
106         #define SPI_CS_PORT     P1
107         #define SPI_CS_SEL      P1SEL
108         #define SPI_CS_DIR      P1DIR
109 #endif
110
111 #if SPI_CS_ON_P0
112         #define SPI_CS_PORT     P0
113         #define SPI_CS_SEL      P0SEL
114         #define SPI_CS_DIR      P0DIR
115 #endif
116
117 #define AO_M25_SPI_CS_PORT      SPI_CS_PORT
118
119 #ifndef IGNITE_ON_P2
120 #error Please define IGNITE_ON_P2
121 #endif
122
123 #ifndef IGNITE_ON_P0
124 #error Please define IGNITE_ON_P0
125 #endif
126
127 #ifndef HAS_SERIAL_1
128 #error Please define HAS_SERIAL_1
129 #endif
130
131 #ifndef HAS_ADC
132 #error Please define HAS_ADC
133 #endif
134
135 #ifndef HAS_EEPROM
136 #error Please define HAS_EEPROM
137 #endif
138
139 #ifndef HAS_LOG
140 #error Please define HAS_LOG
141 #endif
142
143 #if HAS_EEPROM
144 #ifndef USE_INTERNAL_FLASH
145 #error Please define USE_INTERNAL_FLASH
146 #endif
147 #endif
148
149 #ifndef HAS_DBG
150 #error Please define HAS_DBG
151 #endif
152
153 #ifndef HAS_IGNITE
154 #error Please define HAS_IGNITE
155 #endif
156
157 #if HAS_IGNITE
158 #define HAS_IGNITE_REPORT 1
159 #endif
160
161 #ifndef PACKET_HAS_MASTER
162 #error Please define PACKET_HAS_MASTER
163 #endif
164
165 #ifndef PACKET_HAS_SLAVE
166 #error Please define PACKET_HAS_SLAVE
167 #endif
168
169 #ifndef HAS_MONITOR
170 #error Please define HAS_MONITOR
171 #endif
172
173 #if HAS_MONITOR
174 #ifndef HAS_RSSI
175 #error Please define HAS_RSSI
176 #endif
177 #endif
178
179 #ifndef HAS_ADC
180 #error Please define HAS_ADC
181 #endif
182
183 #if HAS_ADC
184
185 #if HAS_ACCEL
186 #ifndef HAS_ACCEL_REF
187 #error Please define HAS_ACCEL_REF
188 #endif
189 #else
190 #define HAS_ACCEL_REF 0
191 #endif
192
193 #endif /* HAS_ADC */
194
195 #if IGNITE_ON_P2
196 #define AO_IGNITER_DROGUE       P2_3
197 #define AO_IGNITER_MAIN         P2_4
198 #define AO_IGNITER_DIR          P2DIR
199 #define AO_IGNITER_DROGUE_BIT   (1 << 3)
200 #define AO_IGNITER_MAIN_BIT     (1 << 4)
201 #endif
202
203 #if IGNITE_ON_P0
204 #define AO_IGNITER_DROGUE       P0_5
205 #define AO_IGNITER_MAIN         P0_4
206 #define AO_IGNITER_DIR          P0DIR
207 #define AO_IGNITER_DROGUE_BIT   (1 << 5)
208 #define AO_IGNITER_MAIN_BIT     (1 << 4)
209 #endif
210
211 /* test these values with real igniters */
212 #define AO_IGNITER_OPEN         1000
213 #define AO_IGNITER_CLOSED       7000
214 #define AO_IGNITER_FIRE_TIME    AO_MS_TO_TICKS(50)
215 #define AO_IGNITER_CHARGE_TIME  AO_MS_TO_TICKS(2000)
216
217 struct ao_adc {
218         int16_t         accel;          /* accelerometer */
219         int16_t         pres;           /* pressure sensor */
220         int16_t         temp;           /* temperature sensor */
221         int16_t         v_batt;         /* battery voltage */
222         int16_t         sense_d;        /* drogue continuity sense */
223         int16_t         sense_m;        /* main continuity sense */
224 #if HAS_ACCEL_REF
225         uint16_t        accel_ref;      /* acceleration reference */
226 #endif
227 };
228
229 #endif /* _AO_PINS_H_ */