dRonin  adbada4
dRonin firmware
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
pios_board.h
Go to the documentation of this file.
1 
15 /*
16  * This program is free software; you can redistribute it and/or modify
17  * it under the terms of the GNU General Public License as published by
18  * the Free Software Foundation; either version 3 of the License, or
19  * (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful, but
22  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
23  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
24  * for more details.
25  *
26  * You should have received a copy of the GNU General Public License along
27  * with this program; if not, see <http://www.gnu.org/licenses/>
28  */
29 
30 
31 #ifndef STM3210E_INS_H_
32 #define STM3210E_INS_H_
33 
34 #include <stdbool.h>
35 
36 #if defined(PIOS_INCLUDE_DEBUG_CONSOLE)
37 #define DEBUG_LEVEL 0
38 #define DEBUG_PRINTF(level, ...) {if(level <= DEBUG_LEVEL && pios_com_debug_id > 0) { PIOS_COM_SendFormattedStringNonBlocking(pios_com_debug_id, __VA_ARGS__); }}
39 #else
40 #define DEBUG_PRINTF(level, ...)
41 #endif /* PIOS_INCLUDE_DEBUG_CONSOLE */
42 
43 //------------------------
44 // Timers and Channels Used
45 //------------------------
46 /*
47 Timer | Channel 1 | Channel 2 | Channel 3 | Channel 4
48 ------+-----------+-----------+-----------+----------
49 TIM1 | | | |
50 TIM2 | --------------- PIOS_DELAY -----------------
51 TIM3 | | | |
52 TIM4 | | | |
53 TIM5 | | | |
54 TIM6 | | | |
55 TIM7 | | | |
56 TIM8 | | | |
57 ------+-----------+-----------+-----------+----------
58 */
59 
60 //------------------------
61 // DMA Channels Used
62 //------------------------
63 /* Channel 1 - */
64 /* Channel 2 - */
65 /* Channel 3 - */
66 /* Channel 4 - */
67 /* Channel 5 - */
68 /* Channel 6 - */
69 /* Channel 7 - */
70 /* Channel 8 - */
71 /* Channel 9 - */
72 /* Channel 10 - */
73 /* Channel 11 - */
74 /* Channel 12 - */
75 
76 //------------------------
77 // BOOTLOADER_SETTINGS
78 //------------------------
79 #define BOARD_READABLE true
80 #define BOARD_WRITABLE true
81 #define MAX_DEL_RETRYS 3
82 
83 
84 //------------------------
85 // PIOS_LED
86 //------------------------
87 #define PIOS_LED_GREEN 0
88 #define PIOS_LED_RED 1
89 #define PIOS_ANNUNCIATOR_BUZZER 2
90 
91 #define PIOS_LED_HEARTBEAT PIOS_LED_GREEN
92 #define PIOS_LED_ALARM PIOS_LED_RED
93 
94 
95 //------------------------
96 // PIOS_WDG
97 //------------------------
98 #define PIOS_WATCHDOG_TIMEOUT 250
99 #define PIOS_WDG_REGISTER RTC_BKP_DR4
100 
101 //-------------------------
102 // PIOS_COM
103 //
104 // See also pios_board.c
105 //-------------------------
106 extern uintptr_t pios_com_telem_serial_id;
107 extern uintptr_t pios_com_gps_id;
108 extern uintptr_t pios_com_telem_usb_id;
109 extern uintptr_t pios_com_bridge_id;
110 extern uintptr_t pios_com_vcp_id;
111 extern uintptr_t pios_com_mavlink_id;
112 extern uintptr_t pios_com_frsky_sensor_hub_id;
113 extern uintptr_t pios_com_frsky_sport_id;
114 extern uintptr_t pios_com_lighttelemetry_id;
115 extern uintptr_t pios_com_hott_id;
116 extern uintptr_t pios_com_openlog_logging_id;
117 extern uintptr_t pios_com_storm32bgc_id;
118 extern uintptr_t pios_com_tbsvtxconfig_id;
119 
120 #define PIOS_COM_GPS (pios_com_gps_id)
121 #define PIOS_COM_TELEM_USB (pios_com_telem_usb_id)
122 #define PIOS_COM_BRIDGE (pios_com_bridge_id)
123 #define PIOS_COM_VCP (pios_com_vcp_id)
124 #define PIOS_COM_MAVLINK (pios_com_mavlink_id)
125 #define PIOS_COM_HOTT (pios_com_hott_id)
126 #define PIOS_COM_FRSKY_SENSOR_HUB (pios_com_frsky_sensor_hub_id)
127 #define PIOS_COM_FRSKY_SPORT (pios_com_frsky_sport_id)
128 #define PIOS_COM_LIGHTTELEMETRY (pios_com_lighttelemetry_id)
129 #define PIOS_COM_OPENLOG (uintptr_t)(pios_com_openlog_logging_id)
130 #define PIOS_COM_STORM32BGC (pios_com_storm32bgc_id)
131 #define PIOS_COM_TBSVTXCONFIG (pios_com_tbsvtxconfig_id)
132 
133 #if defined(PIOS_INCLUDE_DEBUG_CONSOLE)
134 extern uintptr_t pios_com_debug_id;
135 #define PIOS_COM_DEBUG (pios_com_debug_id)
136 #endif /* PIOS_INCLUDE_DEBUG_CONSOLE */
137 
138 #include <pios_ws2811.h>
140 
141 //-------------------------
142 // Packet Handler
143 //-------------------------
144 #define RS_ECC_NPARITY 4
145 
146 
147 #define PIOS_SYSCLK SYSCLK_FREQ
148 // Peripherals that belongs to APB1 are:
149 // DAC |PWR |CAN1,2
150 // I2C1,2,3 |UART4,5 |USART3,2
151 // I2S3Ext |SPI3/I2S3 |SPI2/I2S2
152 // I2S2Ext |IWDG |WWDG
153 // RTC/BKP reg
154 // TIM2,3,4,5,6,7,12,13,14
155 
156 // Calculated as SYSCLK / APBPresc * (APBPre == 1 ? 1 : 2)
157 // Default APB1 Prescaler = 4
158 #define PIOS_PERIPHERAL_APB1_CLOCK (PIOS_SYSCLK / 4)
159 
160 // Peripherals belonging to APB2
161 // SDIO |EXTI |SYSCFG |SPI1
162 // ADC1,2,3
163 // USART1,6
164 // TIM1,8,9,10,11
165 //
166 // Default APB2 Prescaler = 2
167 //
168 #define PIOS_PERIPHERAL_APB2_CLOCK (PIOS_SYSCLK / 2)
169 
170 
171 //-------------------------
172 // Interrupt Priorities
173 //-------------------------
174 #define PIOS_IRQ_PRIO_LOW 12 // lower than RTOS
175 #define PIOS_IRQ_PRIO_MID 8 // higher than RTOS
176 #define PIOS_IRQ_PRIO_HIGH 5 // for SPI, ADC, I2C etc...
177 #define PIOS_IRQ_PRIO_HIGHEST 4 // for USART etc...
178 
179 
180 //------------------------
181 // PIOS_RCVR
182 // See also pios_board.c
183 //------------------------
184 #define PIOS_RCVR_MAX_CHANNELS 12
185 
186 //-------------------------
187 // Receiver PPM input
188 //-------------------------
189 #define PIOS_PPM_NUM_INPUTS 12
190 
191 //-------------------------
192 // Receiver PWM input
193 //-------------------------
194 #define PIOS_PWM_NUM_INPUTS 8
195 
196 //-------------------------
197 // Receiver DSM input
198 //-------------------------
199 #define PIOS_DSM_NUM_INPUTS 12
200 
201 //-------------------------
202 // Receiver S.Bus input
203 //-------------------------
204 #define PIOS_SBUS_NUM_INPUTS (16+2)
205 
206 //-------------------------
207 // Receiver HSUM input
208 //-------------------------
209 #define PIOS_HSUM_MAX_DEVS 2
210 #define PIOS_HSUM_NUM_INPUTS 32
211 
212 //-------------------------
213 // Servo outputs
214 //-------------------------
215 #define PIOS_SERVO_UPDATE_HZ 50
216 #define PIOS_SERVOS_INITIAL_POSITION 0 /* dont want to start motors, have no pulse till settings loaded */
217 
218 //--------------------------
219 // Timer controller settings
220 //--------------------------
221 #define PIOS_TIM_MAX_DEVS 8
222 
223 /* we have to do all this to satisfy the PIOS_ADC_MAX_SAMPLES define in pios_adc.h */
224 /* which is annoying because this then determines the rate at which we generate buffer turnover events */
225 /* the objective here is to get enough buffer space to support 100Hz averaging rate */
226 #define PIOS_ADC_MAX_OVERSAMPLING 1
227 #define PIOS_ADC_USE_ADC2 0
228 
229 #define VREF_PLUS 3.275
230 
231 #define PIOS_ADC_SUB_DRIVER_MAX_INSTANCES 3
232 
233 //-------------------------
234 // USB
235 //-------------------------
236 #define PIOS_USB_ENABLED 1 /* Should remove all references to this */
237 
238 #endif /* STM3210E_INS_H_ */
239 
uintptr_t pios_com_frsky_sport_id
uintptr_t pios_com_frsky_sensor_hub_id
uintptr_t pios_com_tbsvtxconfig_id
uintptr_t pios_com_telem_serial_id
Definition: pios_hal.c:127
uintptr_t pios_com_debug_id
Definition: pios_board.c:76
uintptr_t pios_com_hott_id
uintptr_t pios_com_mavlink_id
uintptr_t pios_com_lighttelemetry_id
ws2811_dev_t pios_ws2811
Definition: pios_board.c:66
uintptr_t pios_com_openlog_logging_id
Definition: pios_board.c:49
uintptr_t pios_com_telem_usb_id
Definition: pios_board.c:42
uintptr_t pios_com_bridge_id
Definition: pios_hal.c:81
uintptr_t pios_com_storm32bgc_id
uintptr_t pios_com_gps_id
Definition: pios_hal.c:80
uintptr_t pios_com_vcp_id