amiro-os / modules / PowerManagement_1-2 / board.h @ a193bcf1
History | View | Annotate | Download (109.404 KB)
1 |
/*
|
---|---|
2 |
AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform.
|
3 |
Copyright (C) 2016..2019 Thomas Schöpping et al.
|
4 |
|
5 |
This program is free software: you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
7 |
the Free Software Foundation, either version 3 of the License, or
|
8 |
(at your option) any later version.
|
9 |
|
10 |
This program is distributed in the hope that it will be useful,
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13 |
GNU General Public License for more details.
|
14 |
|
15 |
You should have received a copy of the GNU General Public License
|
16 |
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
17 |
*/
|
18 |
|
19 |
/**
|
20 |
* @file
|
21 |
* @brief PowerManagement v1.2 Board specific macros.
|
22 |
*
|
23 |
* @addtogroup powermanagement_board
|
24 |
* @{
|
25 |
*/
|
26 |
|
27 |
#ifndef BOARD_H
|
28 |
#define BOARD_H
|
29 |
|
30 |
/*
|
31 |
* Setup for AMiRo PowerManagement v1.2 board.
|
32 |
*/
|
33 |
|
34 |
/*
|
35 |
* Board identifier.
|
36 |
*/
|
37 |
#define BOARD_POWERMANAGEMENT_1_2
|
38 |
#define BOARD_NAME "AMiRo PowerManagement v1.2" |
39 |
|
40 |
/*
|
41 |
* Board oscillators-related settings.
|
42 |
* NOTE: LSE not fitted.
|
43 |
*/
|
44 |
#if !defined(STM32_LSECLK)
|
45 |
#define STM32_LSECLK 0U |
46 |
#endif
|
47 |
|
48 |
#if !defined(STM32_HSECLK)
|
49 |
#define STM32_HSECLK 8000000U |
50 |
#endif
|
51 |
|
52 |
/*
|
53 |
* Board voltages.
|
54 |
* Required for performance limits calculation.
|
55 |
*/
|
56 |
#define STM32_VDD 330U |
57 |
|
58 |
/*
|
59 |
* MCU type as defined in the ST header.
|
60 |
*/
|
61 |
#define STM32F405xx
|
62 |
|
63 |
/*
|
64 |
* STM32F4 alternate function definitions
|
65 |
*/
|
66 |
#define STM32F4xx_AF_system 0U |
67 |
#define STM32F4xx_AF_TIM1to2 1U |
68 |
#define STM32F4xx_AF_TIM3to5 2U |
69 |
#define STM32F4xx_AF_TIM8to11 3U |
70 |
#define STM32F4xx_AF_I2C1to3 4U |
71 |
#define STM32F4xx_AF_SPI1to2 5U |
72 |
#define STM32F4xx_AF_SPI3 6U |
73 |
#define STM32F4xx_AF_USART1to3 7U |
74 |
#define STM32F4xx_AF_USART4to6 8U |
75 |
#define STM32F4xx_AF_CAN1to2_TIM12to14 9U |
76 |
#define STM32F4xx_AF_OTG_HSFS 10U |
77 |
#define STM32F4xx_AF_ETH 11U |
78 |
#define STM32F4xx_AF_FSMC_SDIO_OTGHS 12U |
79 |
#define STM32F4xx_AF_DCMI 13U |
80 |
#define STM32F4xx_AF_EVENTOUT 15U |
81 |
|
82 |
/*
|
83 |
* Identifiers for the several sensor rings, which can be attached to the PowerManagement v1.2 module.
|
84 |
*/
|
85 |
#define BOARD_NOSENSORRING 0 |
86 |
#define BOARD_PROXIMITYSENSOR 1 |
87 |
#define BOARD_DISTANCESENSOR_VL53L0X 2 |
88 |
#define BOARD_DISTANCESENSOR_VL53L1X 3 |
89 |
|
90 |
/*
|
91 |
* Configuration macro to define which type of sensor ring is attached.
|
92 |
*/
|
93 |
#define BOARD_SENSORRING BOARD_PROXIMITYSENSOR
|
94 |
|
95 |
/*
|
96 |
* IO pins assignments.
|
97 |
*/
|
98 |
#define GPIOA_WKUP 0U |
99 |
#define GPIOA_SWITCH_STATUS_N 1U |
100 |
#define GPIOA_SYS_UART_TX 2U |
101 |
#define GPIOA_SYS_UART_RX 3U |
102 |
#define GPIOA_SYS_SPI_SS0_N 4U |
103 |
#define GPIOA_SYS_SPI_SCLK 5U |
104 |
#define GPIOA_SYS_SPI_MISO 6U |
105 |
#define GPIOA_SYS_SPI_MOSI 7U |
106 |
#define GPIOA_SYS_REG_EN 8U |
107 |
#define GPIOA_PROG_RX 9U |
108 |
#define GPIOA_PROG_TX 10U |
109 |
#define GPIOA_CAN_RX 11U |
110 |
#define GPIOA_CAN_TX 12U |
111 |
#define GPIOA_SWDIO 13U |
112 |
#define GPIOA_SWCLK 14U |
113 |
#define GPIOA_SYS_SPI_SS1_N 15U |
114 |
|
115 |
#define GPIOB_IR_INT1_N 0U |
116 |
#define GPIOB_VSYS_SENSE 1U |
117 |
#define GPIOB_POWER_EN 2U |
118 |
#define GPIOB_SYS_UART_DN 3U |
119 |
#define GPIOB_CHARGE_STAT2A 4U |
120 |
#define GPIOB_BUZZER 5U |
121 |
#define GPIOB_GAUGE_BATLOW2 6U |
122 |
#define GPIOB_GAUGE_BATGD2_N 7U |
123 |
#define GPIOB_GAUGE_SCL2 8U |
124 |
#define GPIOB_GAUGE_SDA2 9U |
125 |
#define GPIOB_GAUGE_SCL1 10U |
126 |
#define GPIOB_GAUGE_SDA1 11U |
127 |
#define GPIOB_LED 12U |
128 |
#define GPIOB_BT_RTS 13U |
129 |
#define GPIOB_BT_CTS 14U |
130 |
#define GPIOB_SYS_UART_UP 15U |
131 |
|
132 |
#define GPIOC_CHARGE_STAT1A 0U |
133 |
#define GPIOC_GAUGE_BATLOW1 1U |
134 |
#define GPIOC_GAUGE_BATGD1_N 2U |
135 |
#define GPIOC_CHARGE_EN1_N 3U |
136 |
#define GPIOC_IR_INT2_N 4U |
137 |
#define GPIOC_TOUCH_INT_N 5U |
138 |
#define GPIOC_SYS_DONE 6U |
139 |
#define GPIOC_SYS_PROG_N 7U |
140 |
#define GPIOC_PATH_DC 8U |
141 |
#define GPIOC_SYS_SPI_DIR 9U |
142 |
#define GPIOC_BT_RX 10U |
143 |
#define GPIOC_BT_TX 11U |
144 |
#define GPIOC_SYS_INT_N 12U |
145 |
#define GPIOC_SYS_PD_N 13U |
146 |
#define GPIOC_SYS_WARMRST_N 14U |
147 |
#define GPIOC_BT_RST 15U |
148 |
|
149 |
#define GPIOD_PIN0 0U |
150 |
#define GPIOD_PIN1 1U |
151 |
#define GPIOD_CHARGE_EN2_N 2U |
152 |
#define GPIOD_PIN3 3U |
153 |
#define GPIOD_PIN4 4U |
154 |
#define GPIOD_PIN5 5U |
155 |
#define GPIOD_PIN6 6U |
156 |
#define GPIOD_PIN7 7U |
157 |
#define GPIOD_PIN8 8U |
158 |
#define GPIOD_PIN9 9U |
159 |
#define GPIOD_PIN10 10U |
160 |
#define GPIOD_PIN11 11U |
161 |
#define GPIOD_PIN12 12U |
162 |
#define GPIOD_PIN13 13U |
163 |
#define GPIOD_PIN14 14U |
164 |
#define GPIOD_PIN15 15U |
165 |
|
166 |
#define GPIOE_PIN0 0U |
167 |
#define GPIOE_PIN1 1U |
168 |
#define GPIOE_PIN2 2U |
169 |
#define GPIOE_PIN3 3U |
170 |
#define GPIOE_PIN4 4U |
171 |
#define GPIOE_PIN5 5U |
172 |
#define GPIOE_PIN6 6U |
173 |
#define GPIOE_PIN7 7U |
174 |
#define GPIOE_PIN8 8U |
175 |
#define GPIOE_PIN9 9U |
176 |
#define GPIOE_PIN10 10U |
177 |
#define GPIOE_PIN11 11U |
178 |
#define GPIOE_PIN12 12U |
179 |
#define GPIOE_PIN13 13U |
180 |
#define GPIOE_PIN14 14U |
181 |
#define GPIOE_PIN15 15U |
182 |
|
183 |
#define GPIOF_PIN0 0U |
184 |
#define GPIOF_PIN1 1U |
185 |
#define GPIOF_PIN2 2U |
186 |
#define GPIOF_PIN3 3U |
187 |
#define GPIOF_PIN4 4U |
188 |
#define GPIOF_PIN5 5U |
189 |
#define GPIOF_PIN6 6U |
190 |
#define GPIOF_PIN7 7U |
191 |
#define GPIOF_PIN8 8U |
192 |
#define GPIOF_PIN9 9U |
193 |
#define GPIOF_PIN10 10U |
194 |
#define GPIOF_PIN11 11U |
195 |
#define GPIOF_PIN12 12U |
196 |
#define GPIOF_PIN13 13U |
197 |
#define GPIOF_PIN14 14U |
198 |
#define GPIOF_PIN15 15U |
199 |
|
200 |
#define GPIOG_PIN0 0U |
201 |
#define GPIOG_PIN1 1U |
202 |
#define GPIOG_PIN2 2U |
203 |
#define GPIOG_PIN3 3U |
204 |
#define GPIOG_PIN4 4U |
205 |
#define GPIOG_PIN5 5U |
206 |
#define GPIOG_PIN6 6U |
207 |
#define GPIOG_PIN7 7U |
208 |
#define GPIOG_PIN8 8U |
209 |
#define GPIOG_PIN9 9U |
210 |
#define GPIOG_PIN10 10U |
211 |
#define GPIOG_PIN11 11U |
212 |
#define GPIOG_PIN12 12U |
213 |
#define GPIOG_PIN13 13U |
214 |
#define GPIOG_PIN14 14U |
215 |
#define GPIOG_PIN15 15U |
216 |
|
217 |
#define GPIOH_OSC_IN 0U |
218 |
#define GPIOH_OSC_OUT 1U |
219 |
#define GPIOH_PIN2 2U |
220 |
#define GPIOH_PIN3 3U |
221 |
#define GPIOH_PIN4 4U |
222 |
#define GPIOH_PIN5 5U |
223 |
#define GPIOH_PIN6 6U |
224 |
#define GPIOH_PIN7 7U |
225 |
#define GPIOH_PIN8 8U |
226 |
#define GPIOH_PIN9 9U |
227 |
#define GPIOH_PIN10 10U |
228 |
#define GPIOH_PIN11 11U |
229 |
#define GPIOH_PIN12 12U |
230 |
#define GPIOH_PIN13 13U |
231 |
#define GPIOH_PIN14 14U |
232 |
#define GPIOH_PIN15 15U |
233 |
|
234 |
#define GPIOI_PIN0 0U |
235 |
#define GPIOI_PIN1 1U |
236 |
#define GPIOI_PIN2 2U |
237 |
#define GPIOI_PIN3 3U |
238 |
#define GPIOI_PIN4 4U |
239 |
#define GPIOI_PIN5 5U |
240 |
#define GPIOI_PIN6 6U |
241 |
#define GPIOI_PIN7 7U |
242 |
#define GPIOI_PIN8 8U |
243 |
#define GPIOI_PIN9 9U |
244 |
#define GPIOI_PIN10 10U |
245 |
#define GPIOI_PIN11 11U |
246 |
#define GPIOI_PIN12 12U |
247 |
#define GPIOI_PIN13 13U |
248 |
#define GPIOI_PIN14 14U |
249 |
#define GPIOI_PIN15 15U |
250 |
|
251 |
/*
|
252 |
* IO lines assignments.
|
253 |
*/
|
254 |
#define LINE_WKUP PAL_LINE(GPIOA, GPIOA_WKUP)
|
255 |
#define LINE_SWITCH_STATUS_N PAL_LINE(GPIOA, GPIOA_SWITCH_STATUS_N)
|
256 |
#define LINE_SYS_UART_TX PAL_LINE(GPIOA, GPIOA_SYS_UART_TX)
|
257 |
#define LINE_SYS_UART_RX PAL_LINE(GPIOA, GPIOA_SYS_UART_RX)
|
258 |
#define LINE_SYS_SPI_SS0_N PAL_LINE(GPIOA, GPIOA_SYS_SPI_SS0_N)
|
259 |
#define LINE_SYS_SPI_SCLK PAL_LINE(GPIOA, GPIOA_SYS_SPI_SCLK)
|
260 |
#define LINE_SYS_SPI_MISO PAL_LINE(GPIOA, GPIOA_SYS_SPI_MISO)
|
261 |
#define LINE_SYS_SPI_MOSI PAL_LINE(GPIOA, GPIOA_SYS_SPI_MOSI)
|
262 |
#define LINE_SYS_REG_EN PAL_LINE(GPIOA, GPIOA_SYS_REG_EN)
|
263 |
#define LINE_PROG_RX PAL_LINE(GPIOA, GPIOA_PROG_RX)
|
264 |
#define LINE_PROG_TX PAL_LINE(GPIOA, GPIOA_PROG_TX)
|
265 |
#define LINE_CAN_RX PAL_LINE(GPIOA, GPIOA_CAN_RX)
|
266 |
#define LINE_CAN_TX PAL_LINE(GPIOA, GPIOA_CAN_TX)
|
267 |
#define LINE_SWDIO PAL_LINE(GPIOA, GPIOA_SWDIO)
|
268 |
#define LINE_SWCLK PAL_LINE(GPIOA, GPIOA_SWCLK)
|
269 |
#define LINE_SYS_SPI_SS1_N PAL_LINE(GPIOA, GPIOA_SYS_SPI_SS1_N)
|
270 |
|
271 |
#define LINE_IR_INT1_N PAL_LINE(GPIOB, GPIOB_IR_INT1_N)
|
272 |
#define LINE_VSYS_SENSE PAL_LINE(GPIOB, GPIOB_VSYS_SENSE)
|
273 |
#define LINE_POWER_EN PAL_LINE(GPIOB, GPIOB_POWER_EN)
|
274 |
#define LINE_SYS_UART_DN PAL_LINE(GPIOB, GPIOB_SYS_UART_DN)
|
275 |
#define LINE_CHARGE_STAT2A PAL_LINE(GPIOB, GPIOB_CHARGE_STAT2A)
|
276 |
#define LINE_BUZZER PAL_LINE(GPIOB, GPIOB_BUZZER)
|
277 |
#define LINE_GAUGE_BATLOW2 PAL_LINE(GPIOB, GPIOB_GAUGE_BATLOW2)
|
278 |
#define LINE_GAUGE_BATGD2_N PAL_LINE(GPIOB, GPIOB_GAUGE_BATGD2_N)
|
279 |
#define LINE_GAUGE_SCL2 PAL_LINE(GPIOB, GPIOB_GAUGE_SCL2)
|
280 |
#define LINE_GAUGE_SDA2 PAL_LINE(GPIOB, GPIOB_GAUGE_SDA2)
|
281 |
#define LINE_GAUGE_SCL1 PAL_LINE(GPIOB, GPIOB_GAUGE_SCL1)
|
282 |
#define LINE_GAUGE_SDA1 PAL_LINE(GPIOB, GPIOB_GAUGE_SDA1)
|
283 |
#define LINE_LED PAL_LINE(GPIOB, GPIOB_LED)
|
284 |
#define LINE_BT_RTS PAL_LINE(GPIOB, GPIOB_BT_RTS)
|
285 |
#define LINE_BT_CTS PAL_LINE(GPIOB, GPIOB_BT_CTS)
|
286 |
#define LINE_SYS_UART_UP PAL_LINE(GPIOB, GPIOB_SYS_UART_UP)
|
287 |
|
288 |
#define LINE_CHARGE_STAT1A PAL_LINE(GPIOC, GPIOC_CHARGE_STAT1A)
|
289 |
#define LINE_GAUGE_BATLOW1 PAL_LINE(GPIOC, GPIOC_GAUGE_BATLOW1)
|
290 |
#define LINE_GAUGE_BATGD1_N PAL_LINE(GPIOC, GPIOC_GAUGE_BATGD1_N)
|
291 |
#define LINE_CHARGE_EN1_N PAL_LINE(GPIOC, GPIOC_CHARGE_EN1_N)
|
292 |
#define LINE_IR_INT2_N PAL_LINE(GPIOC, GPIOC_IR_INT2_N)
|
293 |
#define LINE_TOUCH_INT_N PAL_LINE(GPIOC, GPIOC_TOUCH_INT_N)
|
294 |
#define LINE_SYS_DONE PAL_LINE(GPIOC, GPIOC_SYS_DONE)
|
295 |
#define LINE_SYS_PROG_N PAL_LINE(GPIOC, GPIOC_SYS_PROG_N)
|
296 |
#define LINE_PATH_DC PAL_LINE(GPIOC, GPIOC_PATH_DC)
|
297 |
#define LINE_SYS_SPI_DIR PAL_LINE(GPIOC, GPIOC_SYS_SPI_DIR)
|
298 |
#define LINE_BT_RX PAL_LINE(GPIOC, GPIOC_BT_RX)
|
299 |
#define LINE_BT_TX PAL_LINE(GPIOC, GPIOC_BT_TX)
|
300 |
#define LINE_SYS_INT_N PAL_LINE(GPIOC, GPIOC_SYS_INT_N)
|
301 |
#define LINE_SYS_PD_N PAL_LINE(GPIOC, GPIOC_SYS_PD_N)
|
302 |
#define LINE_SYS_WARMRST_N PAL_LINE(GPIOC, GPIOC_SYS_WARMRST_N)
|
303 |
#define LINE_BT_RST PAL_LINE(GPIOC, GPIOC_BT_RST)
|
304 |
|
305 |
#define LINE_CHARGE_EN2_N PAL_LINE(GPIOD, GPIOD_CHARGE_EN2_N)
|
306 |
|
307 |
#define LINE_OSC_IN PAL_LINE(GPIOH, 0U) |
308 |
#define LINE_OSC_OUT PAL_LINE(GPIOH, 1U) |
309 |
|
310 |
/*
|
311 |
* I/O ports initial setup, this configuration is established soon after reset
|
312 |
* in the initialization code.
|
313 |
* Please refer to the STM32 Reference Manual for details.
|
314 |
*/
|
315 |
#define PIN_IGNORE(n) (1U << (n)) |
316 |
#define PIN_MODE_INPUT(n) (0U << ((n) * 2U)) |
317 |
#define PIN_MODE_OUTPUT(n) (1U << ((n) * 2U)) |
318 |
#define PIN_MODE_ALTERNATE(n) (2U << ((n) * 2U)) |
319 |
#define PIN_MODE_ANALOG(n) (3U << ((n) * 2U)) |
320 |
#define PIN_ODR_LOW(n) (0U << (n)) |
321 |
#define PIN_ODR_HIGH(n) (1U << (n)) |
322 |
|