altos/telemini-v3.0: Update to second prototype version
[fw/altos] / src / telemini-v3.0 / ao_pins.h
1 /*
2  * Copyright © 2013 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 #define HAS_BEEP                1
19 #define HAS_BATTERY_REPORT      1
20
21 #define AO_STACK_SIZE   384
22
23 #define RELOCATE_INTERRUPT 0
24
25 #define IS_FLASH_LOADER 0
26
27 /* 48MHz clock based on 16MHz reference */
28 //#define AO_HSI48      1
29 #define AO_HSE                  16000000
30 #define AO_RCC_CFGR_PLLMUL      STM_RCC_CFGR_PLLMUL_3
31 #define AO_RCC_CFGR2_PLLDIV     STM_RCC_CFGR2_PREDIV_1
32 #define AO_PLLMUL               3
33 #define AO_PLLDIV               1
34
35 /* HCLK = 48MHz */
36 #define AO_AHB_PRESCALER        1
37 #define AO_RCC_CFGR_HPRE_DIV    STM_RCC_CFGR_HPRE_DIV_1
38
39 /* APB = 40MHz */
40 #define AO_APB_PRESCALER        1
41 #define AO_RCC_CFGR_PPRE_DIV    STM_RCC_CFGR_PPRE_DIV_1
42
43 #define HAS_USB                 0
44 #define AO_USB_DIRECTIO         0
45 #define AO_PA11_PA12_RMP        0
46
47 #define PACKET_HAS_SLAVE        1
48
49 #define AO_LOG_FORMAT           AO_LOG_FORMAT_EASYMINI
50
51 #define HAS_BOOT_RADIO          0
52
53 #define HAS_ACCEL               0
54 #define HAS_GPS                 0
55 #define HAS_RADIO               1
56 #define HAS_RADIO_RATE          1
57 #define HAS_FLIGHT              1
58 #define HAS_EEPROM              1
59 #define HAS_TELEMETRY           1
60 #define HAS_APRS                0
61 #define HAS_LOG                 1
62 #define USE_INTERNAL_FLASH      0
63 #define HAS_IGNITE              1
64 #define HAS_IGNITE_REPORT       1
65
66 /* Beeper is on Tim1 CH3 */
67 #define BEEPER_CHANNEL          3
68
69 /* LED */
70 #define LED_PORT_ENABLE         STM_RCC_AHBENR_IOPAEN
71 #define LED_PORT                (&stm_gpioa)
72 #define LED_PIN_GREEN           15
73 #define AO_LED_GREEN            (1 << 15)
74 #define AO_LED_PANIC            AO_LED_GREEN
75
76 #define LEDS_AVAILABLE          AO_LED_GREEN
77
78 /* USART */
79
80 #define HAS_SERIAL              0
81 #define USE_SERIAL_0_STDIN      1
82 #define SERIAL_0_18_19          1
83 #define SERIAL_0_14_15          0
84 #define SERIAL_0_17_18          0
85 #define SERIAL_0_26_27          0
86
87 /* SPI */
88
89 #define HAS_SPI_1               1
90 #define SPI_SCK1_P1_15          1
91 #define SPI_MISO1_P0_22         1
92 #define SPI_MOSI1_P0_21         1
93
94 /* M25 */
95
96 #define M25_MAX_CHIPS           1
97 #define AO_M25_SPI_CS_PORT      (&stm_gpioa)
98 #define AO_M25_SPI_CS_MASK      (1 << 3)
99 #define AO_M25_SPI_BUS          AO_SPI_1_PA5_PA6_PA7
100
101 /* MS5607 */
102
103 #define HAS_MS5607              1
104 #define HAS_MS5611              0
105 #define AO_MS5607_PRIVATE_PINS  0
106 #define AO_MS5607_CS_PORT       (&stm_gpioa)
107 #define AO_MS5607_CS_PIN        4
108 #define AO_MS5607_CS_MASK       (1 << AO_MS5607_CS_PIN)
109 #define AO_MS5607_MISO_PORT     (&stm_gpiob)
110 #define AO_MS5607_MISO_PIN      4
111 #define AO_MS5607_MISO_MASK     (1 << AO_MS5607_MISO_PIN)
112 #define AO_MS5607_SPI_INDEX     AO_SPI_1_PB3_PB4_PB5
113
114 /* CC1200 */
115
116 // #define AO_RADIO_CAL_DEFAULT         5695733
117 #define AO_RADIO_CAL_DEFAULT    5695717
118
119 #define AO_FEC_DEBUG            0
120 #define AO_CC1200_SPI_CS_PORT   (&stm_gpiob)
121 #define AO_CC1200_SPI_CS_PIN    0
122 #define AO_CC1200_SPI_BUS       AO_SPI_1_PA5_PA6_PA7
123 #define AO_CC1200_SPI           stm_spi1
124
125 #define AO_CC1200_INT_PORT              (&stm_gpiob)
126 #define AO_CC1200_INT_PIN               1
127
128 #define AO_CC1200_INT_GPIO      2
129 #define AO_CC1200_INT_GPIO_IOCFG        CC1200_IOCFG2
130
131
132 #define AO_DATA_RING            16
133
134 /*
135  * ADC
136  */
137
138 #define HAS_ADC                 1
139
140 #define AO_ADC_PIN0_PORT        (&stm_gpioa)
141 #define AO_ADC_PIN0_PIN         0
142 #define AO_ADC_PIN0_CH          0
143 #define AO_ADC_PIN1_PORT        (&stm_gpioa)
144 #define AO_ADC_PIN1_PIN         1
145 #define AO_ADC_PIN1_CH          1
146 #define AO_ADC_PIN2_PORT        (&stm_gpioa)
147 #define AO_ADC_PIN2_PIN         2
148 #define AO_ADC_PIN2_CH          2
149
150 #define AO_ADC_RCC_AHBENR       ((1 << STM_RCC_AHBENR_IOPAEN))
151
152 #define AO_NUM_ADC              3
153
154 struct ao_adc {
155         int16_t         sense_a;
156         int16_t         sense_m;
157         int16_t         v_batt;
158 };
159
160 /*
161  * Igniter
162  */
163
164 #define AO_IGNITER_CLOSED       400
165 #define AO_IGNITER_OPEN         60
166
167 #define AO_IGNITER_DROGUE_PORT  (&stm_gpiob)
168 #define AO_IGNITER_DROGUE_PIN   7
169 #define AO_IGNITER_SET_DROGUE(v)        ao_gpio_set(AO_IGNITER_DROGUE_PORT, AO_IGNITER_DROGUE_PIN, AO_IGNITER_DROGUE, v)
170
171 #define AO_IGNITER_MAIN_PORT    (&stm_gpiob)
172 #define AO_IGNITER_MAIN_PIN     6
173 #define AO_IGNITER_SET_MAIN(v)          ao_gpio_set(AO_IGNITER_MAIN_PORT, AO_IGNITER_MAIN_PIN, AO_IGNITER_MAIN, v)
174
175 #define AO_SENSE_DROGUE(p)      ((p)->adc.sense_a)
176 #define AO_SENSE_MAIN(p)        ((p)->adc.sense_m)
177
178 #define AO_ADC_DUMP(p) \
179         printf("tick: %5u apogee: %5d main: %5d batt: %5d\n", \
180                (p)->tick, (p)->adc.sense_a, (p)->adc.sense_m, (p)->adc.v_batt)
181
182 /*
183  * Voltage divider on ADC battery sampler
184  */
185 #define AO_BATTERY_DIV_PLUS     56      /* 5.6k */
186 #define AO_BATTERY_DIV_MINUS    100     /* 10k */
187
188 /*
189  * Voltage divider on ADC igniter samplers
190  */
191 #define AO_IGNITE_DIV_PLUS      100     /* 100k */
192 #define AO_IGNITE_DIV_MINUS     27      /* 27k */
193
194 /*
195  * ADC reference in decivolts
196  */
197 #define AO_ADC_REFERENCE_DV     33