86dd04597e07922ce37a9e0a3f0ff741f58d439a
[fw/altos] / src / teledongle-v1.9 / ao_pins.h
1 /*
2  * Copyright © 2012 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 /* Using TeleMetrum v1.9 board */
19
20 #ifndef _AO_PINS_H_
21 #define _AO_PINS_H_
22
23 #define HAS_TASK_QUEUE          1
24
25 /* 8MHz High speed external crystal */
26 #define AO_HSE                  8000000
27
28 /* PLLVCO = 96MHz (so that USB will work) */
29 #define AO_PLLMUL               12
30 #define AO_RCC_CFGR_PLLMUL      (STM_RCC_CFGR_PLLMUL_12)
31
32 /* SYSCLK = 32MHz (no need to go faster than CPU) */
33 #define AO_PLLDIV               3
34 #define AO_RCC_CFGR_PLLDIV      (STM_RCC_CFGR_PLLDIV_3)
35
36 /* HCLK = 32MHz (CPU clock) */
37 #define AO_AHB_PRESCALER        1
38 #define AO_RCC_CFGR_HPRE_DIV    STM_RCC_CFGR_HPRE_DIV_1
39
40 /* Run APB1 at 16MHz (HCLK/2) */
41 #define AO_APB1_PRESCALER       2
42 #define AO_RCC_CFGR_PPRE1_DIV   STM_RCC_CFGR_PPRE2_DIV_2
43
44 /* Run APB2 at 16MHz (HCLK/2) */
45 #define AO_APB2_PRESCALER       2
46 #define AO_RCC_CFGR_PPRE2_DIV   STM_RCC_CFGR_PPRE2_DIV_2
47
48 #define HAS_SERIAL_1            0
49 #define USE_SERIAL_1_STDIN      0
50 #define SERIAL_1_PB6_PB7        0
51 #define SERIAL_1_PA9_PA10       0
52
53 #define HAS_SERIAL_2            0
54 #define USE_SERIAL_2_STDIN      0
55 #define SERIAL_2_PA2_PA3        0
56 #define SERIAL_2_PD5_PD6        0
57
58 #define HAS_SERIAL_3            0
59 #define USE_SERIAL_3_STDIN      0
60 #define SERIAL_3_PB10_PB11      0
61 #define SERIAL_3_PC10_PC11      0
62 #define SERIAL_3_PD8_PD9        0
63
64 #define HAS_EEPROM              1
65 #define USE_INTERNAL_FLASH      1
66 #define USE_STORAGE_CONFIG      0
67 #define USE_EEPROM_CONFIG       1
68 #define HAS_USB                 1
69 #define HAS_BEEP                0
70 #define HAS_RADIO               1
71 #define HAS_TELEMETRY           0
72 #define HAS_RSSI                1
73
74 #define HAS_SPI_1               0
75 #define SPI_1_PA5_PA6_PA7       0       /* Barometer */
76 #define SPI_1_PB3_PB4_PB5       0
77 #define SPI_1_PE13_PE14_PE15    0       /* Accelerometer */
78
79 #define HAS_SPI_2               1
80 #define SPI_2_PB13_PB14_PB15    1       /* Radio */
81 #define SPI_2_PD1_PD3_PD4       0
82 #define SPI_2_OSPEEDR           STM_OSPEEDR_10MHz
83
84 #define SPI_2_PORT              (&stm_gpiob)
85 #define SPI_2_SCK_PIN           13
86 #define SPI_2_MISO_PIN          14
87 #define SPI_2_MOSI_PIN          15
88
89 #define PACKET_HAS_SLAVE        0
90 #define PACKET_HAS_MASTER       1
91
92 #define LOW_LEVEL_DEBUG         0
93
94 #define LED_PORT_0_ENABLE       STM_RCC_AHBENR_GPIOCEN
95 #define LED_PORT_0              (&stm_gpioc)
96 #define LED_PORT_0_MASK         (0xffff)
97 #define LED_PORT_0_SHIFT        0
98 #define LED_PIN_RED             8
99 #define LED_PIN_GREEN           9
100 #define AO_LED_RED              (1 << LED_PIN_RED)
101 #define AO_LED_GREEN            (1 << LED_PIN_GREEN)
102
103 #define LEDS_AVAILABLE          (AO_LED_RED | AO_LED_GREEN)
104
105 #define HAS_GPS                 0
106 #define HAS_FLIGHT              0
107 #define HAS_ADC                 0
108 #define HAS_LOG                 0
109
110 /*
111  * Telemetry monitoring
112  */
113 #define HAS_MONITOR             1
114 #define LEGACY_MONITOR          0
115 #define HAS_MONITOR_PUT         1
116 #define AO_MONITOR_LED          AO_LED_GREEN
117
118 /*
119  * Radio (cc1200)
120  */
121
122 /* gets pretty close to 434.550 */
123
124 #define AO_RADIO_CAL_DEFAULT    5695733
125
126 #define AO_FEC_DEBUG            0
127 #define AO_CC1200_SPI_CS_PORT   (&stm_gpioc)
128 #define AO_CC1200_SPI_CS_PIN    5
129 #define AO_CC1200_SPI_BUS       AO_SPI_2_PB13_PB14_PB15
130 #define AO_CC1200_SPI           stm_spi2
131
132 #define AO_CC1200_INT_PORT      (&stm_gpioe)
133 #define AO_CC1200_INT_PIN       1
134
135 #define AO_CC1200_INT_GPIO      2
136 #define AO_CC1200_INT_GPIO_IOCFG        CC1200_IOCFG2
137
138 /*
139  * Profiling Viterbi decoding
140  */
141
142 #ifndef AO_PROFILE
143 #define AO_PROFILE              0
144 #endif
145
146 #endif /* _AO_PINS_H_ */