acba8c3757af16c85b83fc536a574a03ea4a8912
[fw/altos] / src / telegps-v2.0 / ao_pins.h
1 /*
2  * Copyright © 2017 Bdale Garbee <bdale@gag.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; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 #ifndef _AO_PINS_H_
20 #define _AO_PINS_H_
21
22 #define LED_PORT_ENABLE STM_RCC_AHBENR_IOPBEN
23 #define LED_PORT        (&stm_gpiob)
24 #define LED_PIN_RED     5
25 #define AO_LED_RED      (1 << LED_PIN_RED)
26
27 #define LEDS_AVAILABLE  (AO_LED_RED)
28
29 #define HAS_BEEP               0
30
31 #define AO_HSE                  32000000
32 #define AO_RCC_CFGR_PLLMUL      STM_RCC_CFGR_PLLMUL_3
33 #define AO_PLLMUL               3
34 #define AO_PLLDIV               1
35
36 /* HCLK = 48MHz */
37 #define AO_AHB_PRESCALER        1
38 #define AO_RCC_CFGR_HPRE_DIV    STM_RCC_CFGR_HPRE_DIV_1
39
40 /* APB = 48MHz */
41 #define AO_APB_PRESCALER        1
42 #define AO_RCC_CFGR_PPRE_DIV    STM_RCC_CFGR_PPRE_DIV_1
43
44 #define AO_RCC_CFGR2_PLLDIV     STM_RCC_CFGR2_PREDIV_1
45
46 #define HAS_USB                         1
47 #define AO_USB_DIRECTIO                 0
48 #define AO_PA11_PA12_RMP                1
49
50 #define IS_FLASH_LOADER 0
51
52 /* ADC */
53
54 #define HAS_ADC                 1
55 #define AO_ADC_PIN0_PORT        (&stm_gpioa)
56 #define AO_ADC_PIN0_PIN         0
57 #define AO_ADC_PIN0_CH          0
58
59 #define AO_ADC_RCC_AHBENR       ((1 << STM_RCC_AHBENR_IOPAEN))
60
61 #define AO_NUM_ADC              1
62
63 #define AO_DATA_RING            4
64
65 /*
66  * Voltage divider on ADC battery sampler
67  */
68 #define AO_BATTERY_DIV_PLUS     56      /* 5.6k */
69 #define AO_BATTERY_DIV_MINUS    100     /* 10k */
70
71 /*
72  * ADC reference in decivolts
73  */
74 #define AO_ADC_REFERENCE_DV     33
75
76 struct ao_adc {
77         int16_t                 v_batt;
78 };
79
80 #define AO_ADC_DUMP(p) \
81         printf("tick: %5u batt: %5d\n", \
82                (p)->tick, \
83                (p)->adc.v_batt)
84
85 /* SPI */
86 #define HAS_SPI_1               1
87 #define HAS_SPI_2               0
88 #define SPI_1_PA5_PA6_PA7       1
89 #define SPI_1_PB3_PB4_PB5       0
90 #define SPI_1_OSPEEDR           STM_OSPEEDR_HIGH
91
92 #define HAS_MS5607              0
93
94 /* Flash */
95
96 #define M25_MAX_CHIPS           1
97 #define AO_M25_SPI_CS_PORT      (&stm_gpiob)
98 #define AO_M25_SPI_CS_MASK      (1 << 0)
99 #define AO_M25_SPI_BUS          AO_SPI_1_PA5_PA6_PA7
100
101 #define HAS_SERIAL_1            1
102 #define SERIAL_1_PB6_PB7        1
103 #define USE_SERIAL_1_STDIN      0
104
105 #define ao_gps_getchar          ao_serial1_getchar
106 #define ao_gps_putchar          ao_serial1_putchar
107 #define ao_gps_set_speed        ao_serial1_set_speed
108 #define ao_gps_fifo             (ao_usart_rx_fifo)
109
110 #define HAS_EEPROM              1
111 #define USE_INTERNAL_FLASH      0
112 #define HAS_RADIO               1
113 #define HAS_TELEMETRY           1
114 #define HAS_RDF                 1
115 #define HAS_APRS                1
116 #define HAS_RADIO_RECV          0
117
118 #define HAS_GPS                 1
119 #define HAS_FLIGHT              0
120 #define HAS_LOG                 1
121 #define FLIGHT_LOG_APPEND       1
122 #define HAS_TRACKER             1
123
124 #define AO_CONFIG_DEFAULT_APRS_INTERVAL         0
125 #define AO_CONFIG_DEFAULT_RADIO_POWER           0xc0
126
127 /*
128  * GPS
129  */
130
131 #define AO_SERIAL_SPEED_UBLOX   AO_SERIAL_SPEED_9600
132
133
134 /*
135  * Radio (cc1120)
136  */
137
138 /* gets pretty close to 434.550 */
139
140 #define AO_RADIO_CAL_DEFAULT    5695733
141
142 #define AO_FEC_DEBUG            0
143 #define AO_CC1200_SPI_CS_PORT   (&stm_gpioa)
144 #define AO_CC1200_SPI_CS_PIN    5
145 #define AO_CC1200_SPI_BUS       AO_SPI_1_PA5_PA6_PA7
146 #define AO_CC1200_SPI           stm_spi1
147 #define AO_CC1200_SPI_SPEED     AO_SPI_SPEED_FAST
148
149 #define AO_CC1200_INT_PORT              (&stm_gpioa)
150 #define AO_CC1200_INT_PIN               4
151 #define AO_CC1200_MCU_WAKEUP_PORT       (&stm_gpioa)
152 #define AO_CC1200_MCU_WAKEUP_PIN        (0)
153
154 #define AO_CC1200_INT_GPIO      2
155 #define AO_CC1200_INT_GPIO_IOCFG        CC1200_IOCFG2
156
157 #define AO_CC1200_MARC_GPIO     3
158 #define AO_CC1200_MARC_GPIO_IOCFG       CC1200_IOCFG3
159
160 #define HAS_BOOT_RADIO          0
161
162 #endif /* _AO_PINS_H_ */