amiro-os / modules / NUCLEO-F103RB / module.c @ 70dd091e
History | View | Annotate | Download (10.271 KB)
1 | f4da707a | Thomas Schöpping | /*
|
---|---|---|---|
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 Structures and constant for the NUCLEO-F103RB module.
|
||
22 | *
|
||
23 | * @addtogroup NUCLEO-F103RB_module
|
||
24 | * @{
|
||
25 | */
|
||
26 | |||
27 | 4c72a54c | Thomas Schöpping | #include <amiroos.h> |
28 | f4da707a | Thomas Schöpping | |
29 | /*===========================================================================*/
|
||
30 | /**
|
||
31 | * @name Module specific functions
|
||
32 | * @{
|
||
33 | */
|
||
34 | /*===========================================================================*/
|
||
35 | |||
36 | /** @} */
|
||
37 | |||
38 | /*===========================================================================*/
|
||
39 | /**
|
||
40 | * @name ChibiOS/HAL configuration
|
||
41 | * @{
|
||
42 | */
|
||
43 | /*===========================================================================*/
|
||
44 | |||
45 | SerialConfig moduleHalProgIfConfig = { |
||
46 | /* bit rate */ 115200, |
||
47 | /* CR1 */ 0, |
||
48 | /* CR1 */ 0, |
||
49 | /* CR1 */ 0, |
||
50 | }; |
||
51 | |||
52 | 4c72a54c | Thomas Schöpping | #if (BOARD_DW1000_CONNECTED == true) |
53 | deaaa47e | Cung Sang | /*! SPI (high and low speed) configuration for DW1000 */
|
54 | SPIConfig moduleHalSpiUwbHsConfig = { |
||
55 | /* circular buffer mode */ false, |
||
56 | /* callback function pointer */ NULL, |
||
57 | /* chip select line port */ GPIOB,
|
||
58 | /* chip select line pad number */ GPIOB_PIN12,
|
||
59 | /* CR1 */ 0, |
||
60 | /* CR2 */ 0, |
||
61 | }; |
||
62 | |||
63 | SPIConfig moduleHalSpiUwbLsConfig = { |
||
64 | /* circular buffer mode */ false, |
||
65 | /* callback function pointer */ NULL, |
||
66 | /* chip select line port */ GPIOB,
|
||
67 | /* chip select line pad number */ GPIOB_PIN12,
|
||
68 | /* CR1 */ SPI_CR1_BR_1 | SPI_CR1_BR_0,
|
||
69 | /* CR2 */ 0, |
||
70 | }; |
||
71 | 4c72a54c | Thomas Schöpping | #endif /* (BOARD_DW1000_CONNECTED == true) */ |
72 | deaaa47e | Cung Sang | |
73 | f4da707a | Thomas Schöpping | /** @} */
|
74 | |||
75 | /*===========================================================================*/
|
||
76 | /**
|
||
77 | * @name GPIO definitions
|
||
78 | * @{
|
||
79 | */
|
||
80 | /*===========================================================================*/
|
||
81 | |||
82 | /**
|
||
83 | * @brief LED output signal GPIO.
|
||
84 | */
|
||
85 | static apalGpio_t _gpioLed = {
|
||
86 | 4c72a54c | Thomas Schöpping | /* line */ LINE_LED_GREEN,
|
87 | f4da707a | Thomas Schöpping | }; |
88 | ROMCONST apalControlGpio_t moduleGpioLed = { |
||
89 | /* GPIO */ &_gpioLed,
|
||
90 | /* meta */ {
|
||
91 | /* direction */ APAL_GPIO_DIRECTION_OUTPUT,
|
||
92 | /* active state */ APAL_GPIO_ACTIVE_HIGH,
|
||
93 | /* interrupt edge */ APAL_GPIO_EDGE_NONE,
|
||
94 | }, |
||
95 | }; |
||
96 | |||
97 | 4c72a54c | Thomas Schöpping | #if (BOARD_DW1000_CONNECTED == true) |
98 | deaaa47e | Cung Sang | /**
|
99 | * @brief DW1000 reset output signal GPIO.
|
||
100 | */
|
||
101 | static apalGpio_t _gpioDw1000Reset = {
|
||
102 | 8d4d058e | Cung Sang | /* line */ LINE_ARD_D15, //PAL_LINE(GPIOA, GPIOA_ARD_A0) |
103 | deaaa47e | Cung Sang | }; |
104 | ROMCONST apalControlGpio_t moduleGpioDw1000Reset = { |
||
105 | /* GPIO */ &_gpioDw1000Reset,
|
||
106 | /* meta */ {
|
||
107 | /* direction */ APAL_GPIO_DIRECTION_BIDIRECTIONAL,
|
||
108 | /* active state */ APAL_GPIO_ACTIVE_HIGH,
|
||
109 | /* interrupt edge */ APAL_GPIO_EDGE_NONE,
|
||
110 | }, |
||
111 | }; |
||
112 | |||
113 | |||
114 | /**
|
||
115 | * @brief DW1000 interrrupt input signal GPIO.
|
||
116 | */
|
||
117 | static apalGpio_t _gpioDw1000Irqn = {
|
||
118 | 8d4d058e | Cung Sang | /* line */ LINE_ARD_D14, // PAL_LINE(GPIOB, GPIOB_ARD_D6) |
119 | deaaa47e | Cung Sang | }; |
120 | ROMCONST apalControlGpio_t moduleGpioDw1000Irqn = { |
||
121 | /* GPIO */ &_gpioDw1000Irqn,
|
||
122 | /* meta */ {
|
||
123 | /* direction */ APAL_GPIO_DIRECTION_INPUT,
|
||
124 | /* active state */ APAL_GPIO_ACTIVE_LOW,
|
||
125 | /* interrupt edge */ APAL_GPIO_EDGE_RISING,
|
||
126 | }, |
||
127 | }; |
||
128 | |||
129 | |||
130 | /**
|
||
131 | * @brief DW1000 SPI chip select output signal GPIO.
|
||
132 | */
|
||
133 | static apalGpio_t _gpioSpiChipSelect = {
|
||
134 | 3106e8cc | Thomas Schöpping | /* line */ PAL_LINE(GPIOB, GPIOB_PIN12),
|
135 | deaaa47e | Cung Sang | }; |
136 | ROMCONST apalControlGpio_t moduleGpioSpiChipSelect = { |
||
137 | /* GPIO */ &_gpioSpiChipSelect,
|
||
138 | /* meta */ {
|
||
139 | /* direction */ APAL_GPIO_DIRECTION_OUTPUT,
|
||
140 | /* active state */ APAL_GPIO_ACTIVE_LOW,
|
||
141 | /* interrupt edge */ APAL_GPIO_EDGE_NONE,
|
||
142 | }, |
||
143 | }; |
||
144 | 4c72a54c | Thomas Schöpping | #endif /* (BOARD_DW1000_CONNECTED == true) */ |
145 | deaaa47e | Cung Sang | |
146 | f4da707a | Thomas Schöpping | /**
|
147 | * @brief User button input signal GPIO.
|
||
148 | */
|
||
149 | static apalGpio_t _gpioUserButton = {
|
||
150 | 4c72a54c | Thomas Schöpping | /* line */ LINE_BUTTON,
|
151 | f4da707a | Thomas Schöpping | }; |
152 | ROMCONST apalControlGpio_t moduleGpioUserButton = { |
||
153 | /* GPIO */ &_gpioUserButton,
|
||
154 | /* meta */ {
|
||
155 | /* direction */ APAL_GPIO_DIRECTION_INPUT,
|
||
156 | /* active state */ APAL_GPIO_ACTIVE_LOW,
|
||
157 | /* interrupt edge */ APAL_GPIO_EDGE_BOTH,
|
||
158 | }, |
||
159 | }; |
||
160 | |||
161 | /** @} */
|
||
162 | |||
163 | /*===========================================================================*/
|
||
164 | /**
|
||
165 | * @name AMiRo-OS core configurations
|
||
166 | * @{
|
||
167 | */
|
||
168 | /*===========================================================================*/
|
||
169 | |||
170 | #if (AMIROOS_CFG_SHELL_ENABLE == true) || (AMIROOS_CFG_TESTS_ENABLE == true) || defined(__DOXYGEN__) |
||
171 | ROMCONST char* moduleShellPrompt = "NUCLEO-F103RB"; |
||
172 | 7de0cc90 | Thomas Schöpping | #endif /* (AMIROOS_CFG_SHELL_ENABLE == true) || (AMIROOS_CFG_TESTS_ENABLE == true) */ |
173 | f4da707a | Thomas Schöpping | |
174 | /** @} */
|
||
175 | |||
176 | /*===========================================================================*/
|
||
177 | /**
|
||
178 | * @name Startup Shutdown Synchronization Protocol (SSSP)
|
||
179 | * @{
|
||
180 | */
|
||
181 | /*===========================================================================*/
|
||
182 | |||
183 | 4c72a54c | Thomas Schöpping | /** @} */
|
184 | deaaa47e | Cung Sang | |
185 | /*===========================================================================*/
|
||
186 | /**
|
||
187 | * @name Hardware specific wrappers Functions
|
||
188 | * @{
|
||
189 | */
|
||
190 | /*===========================================================================*/
|
||
191 | |||
192 | 4c72a54c | Thomas Schöpping | #if (BOARD_DW1000_CONNECTED == true) |
193 | deaaa47e | Cung Sang | /*! @brief TODO: Manual implementation of SPI configuration. Somehow, it is necessary in NUCLEO-F103RB */
|
194 | void dw1000_spi_init(void){ |
||
195 | palSetPadMode(GPIOB, GPIOB_PIN13, PAL_MODE_STM32_ALTERNATE_PUSHPULL); |
||
196 | palSetPadMode(GPIOB, GPIOB_PIN14, PAL_MODE_STM32_ALTERNATE_PUSHPULL); |
||
197 | palSetPadMode(GPIOB, GPIOB_PIN15, PAL_MODE_STM32_ALTERNATE_PUSHPULL); |
||
198 | 3106e8cc | Thomas Schöpping | palSetLineMode(moduleGpioSpiChipSelect.gpio->line, PAL_MODE_OUTPUT_PUSHPULL); |
199 | deaaa47e | Cung Sang | apalGpioWrite(moduleGpioSpiChipSelect.gpio, APAL_GPIO_LOW); |
200 | } |
||
201 | |||
202 | 3cee92c7 | Cung Sang | /*! @brief Manually reset the DW1000 module */
|
203 | void reset_DW1000(void){ |
||
204 | |||
205 | // Set the pin as output
|
||
206 | palSetLineMode(moduleGpioDw1000Reset.gpio->line, APAL_GPIO_DIRECTION_OUTPUT); |
||
207 | |||
208 | //drive the RSTn pin low
|
||
209 | apalGpioWrite(moduleGpioDw1000Reset.gpio, APAL_GPIO_LOW); |
||
210 | |||
211 | //put the pin back to tri-state ... as input
|
||
212 | // palSetLineMode(moduleGpioDw1000Reset.gpio->line, APAL_GPIO_DIRECTION_INPUT); // TODO:
|
||
213 | |||
214 | aosThdMSleep(2);
|
||
215 | } |
||
216 | |||
217 | 8d4d058e | Cung Sang | /*! @brief entry point to the IRQn event in DW1000 module
|
218 | *
|
||
219 | * */
|
||
220 | void process_deca_irq(void){ |
||
221 | do{
|
||
222 | dwt_isr(); |
||
223 | //while IRS line active (ARM can only do edge sensitive interrupts)
|
||
224 | }while(port_CheckEXT_IRQ() == 1); |
||
225 | } |
||
226 | |||
227 | /*! @brief Check the current value of GPIO pin and return the value */
|
||
228 | apalGpioState_t port_CheckEXT_IRQ(void) {
|
||
229 | apalGpioState_t val; |
||
230 | apalGpioRead(moduleGpioDw1000Irqn.gpio, &val); |
||
231 | return val;
|
||
232 | } |
||
233 | |||
234 | /*! @brief Manually set the chip select pin of the SPI */
|
||
235 | void set_SPI_chip_select(void){ |
||
236 | apalGpioWrite(moduleGpioSpiChipSelect.gpio, APAL_GPIO_HIGH); |
||
237 | } |
||
238 | |||
239 | /*! @brief Manually reset the chip select pin of the SPI */
|
||
240 | void clear_SPI_chip_select(void){ |
||
241 | apalGpioWrite(moduleGpioSpiChipSelect.gpio, APAL_GPIO_LOW); |
||
242 | } |
||
243 | |||
244 | /*! @brief Change the SPI speed configuration on the fly */
|
||
245 | void setHighSpeed_SPI(bool speedValue, DW1000Driver* drv){ |
||
246 | |||
247 | spiStop(drv->spid); |
||
248 | |||
249 | if (speedValue == FALSE){
|
||
250 | spiStart(drv->spid, &moduleHalSpiUwbLsConfig); // low speed spi configuration
|
||
251 | } |
||
252 | else{
|
||
253 | spiStart(drv->spid, &moduleHalSpiUwbHsConfig); // high speed spi configuration
|
||
254 | } |
||
255 | } |
||
256 | 4c72a54c | Thomas Schöpping | #endif /* (BOARD_DW1000_CONNECTED == true) */ |
257 | f4da707a | Thomas Schöpping | /** @} */
|
258 | |||
259 | /*===========================================================================*/
|
||
260 | /**
|
||
261 | * @name Low-level drivers
|
||
262 | * @{
|
||
263 | */
|
||
264 | /*===========================================================================*/
|
||
265 | |||
266 | 4c72a54c | Thomas Schöpping | LEDDriver moduleLldLed = { |
267 | /* LED enable Gpio */ &moduleGpioLed,
|
||
268 | }; |
||
269 | |||
270 | ButtonDriver moduleLldUserButton = { |
||
271 | /* Button Gpio */ &moduleGpioUserButton,
|
||
272 | }; |
||
273 | |||
274 | #if (BOARD_DW1000_CONNECTED == true) |
||
275 | deaaa47e | Cung Sang | DW1000Driver moduleLldDw1000 = { |
276 | /* SPI driver */ &MODULE_HAL_SPI_UWB,
|
||
277 | /* ext interrupt */ &moduleGpioDw1000Irqn,
|
||
278 | /* RESET DW1000 */ &moduleGpioDw1000Reset,
|
||
279 | }; |
||
280 | 4c72a54c | Thomas Schöpping | #endif /* (BOARD_DW1000_CONNECTED == true) */ |
281 | |||
282 | f4da707a | Thomas Schöpping | /** @} */
|
283 | |||
284 | /*===========================================================================*/
|
||
285 | /**
|
||
286 | 4c72a54c | Thomas Schöpping | * @name Tests
|
287 | f4da707a | Thomas Schöpping | * @{
|
288 | */
|
||
289 | /*===========================================================================*/
|
||
290 | #if (AMIROOS_CFG_TESTS_ENABLE == true) || defined(__DOXYGEN__) |
||
291 | |||
292 | 4c72a54c | Thomas Schöpping | /*
|
293 | * LED
|
||
294 | */
|
||
295 | #include <module_test_LED.h> |
||
296 | static int _testLedShellCmdCb(BaseSequentialStream* stream, int argc, char* argv[]) |
||
297 | { |
||
298 | return moduleTestLedShellCb(stream, argc, argv, NULL); |
||
299 | } |
||
300 | AOS_SHELL_COMMAND(moduleTestLedShellCmd, "test:LED", _testLedShellCmdCb);
|
||
301 | |||
302 | /*
|
||
303 | * User button
|
||
304 | */
|
||
305 | #include <module_test_button.h> |
||
306 | static int _testButtonShellCmdCb(BaseSequentialStream* stream, int argc, char* argv[]) |
||
307 | { |
||
308 | return moduleTestButtonShellCb(stream, argc, argv, NULL); |
||
309 | } |
||
310 | AOS_SHELL_COMMAND(moduleTestButtonShellCmd, "test:button", _testButtonShellCmdCb);
|
||
311 | |||
312 | #if (BOARD_DW1000_CONNECTED == true) || defined(__DOXYGEN__) |
||
313 | deaaa47e | Cung Sang | /*
|
314 | * UwB Driver (DW1000)
|
||
315 | */
|
||
316 | 8d4d058e | Cung Sang | #include <module_test_DW1000.h> |
317 | static int _testDw1000ShellCmdCb(BaseSequentialStream* stream, int argc, char* argv[]) |
||
318 | deaaa47e | Cung Sang | { |
319 | 8d4d058e | Cung Sang | return moduleTestDw1000ShellCb(stream, argc, argv, NULL); |
320 | deaaa47e | Cung Sang | } |
321 | 8d4d058e | Cung Sang | AOS_SHELL_COMMAND(moduleTestDw1000ShellCmd, "test:DW1000", _testDw1000ShellCmdCb);
|
322 | 4c72a54c | Thomas Schöpping | #endif /* (BOARD_DW1000_CONNECTED == true) */ |
323 | |||
324 | /*
|
||
325 | * entire module
|
||
326 | */
|
||
327 | static int _testAllShellCmdCb(BaseSequentialStream* stream, int argc, char* argv[]) |
||
328 | { |
||
329 | (void)argc;
|
||
330 | (void)argv;
|
||
331 | |||
332 | int status = AOS_OK;
|
||
333 | char* targv[AMIROOS_CFG_SHELL_MAXARGS] = {NULL}; |
||
334 | aos_testresult_t result_test = {0, 0}; |
||
335 | aos_testresult_t result_total = {0, 0}; |
||
336 | |||
337 | /* LED */
|
||
338 | status |= moduleTestLedShellCb(stream, 0, targv, &result_test);
|
||
339 | result_total = aosTestResultAdd(result_total, result_test); |
||
340 | |||
341 | /* User button */
|
||
342 | status |= moduleTestButtonShellCb(stream, 0, targv, &result_test);
|
||
343 | result_total = aosTestResultAdd(result_total, result_test); |
||
344 | |||
345 | 8d4d058e | Cung Sang | #if (BOARD_DW1000_CONNECTED == true) || defined(__DOXYGEN__) |
346 | 4c72a54c | Thomas Schöpping | /* DW1000 */
|
347 | 8d4d058e | Cung Sang | status |= moduleTestDw1000ShellCb(stream, 0, targv, &result_test);
|
348 | result_total = aosTestResultAdd(result_total, result_test); |
||
349 | #endif /* (BOARD_DW1000_CONNECTED == true) */ |
||
350 | 4c72a54c | Thomas Schöpping | |
351 | // print total result
|
||
352 | chprintf(stream, "\n");
|
||
353 | aosTestResultPrintSummary(stream, &result_total, "entire module");
|
||
354 | |||
355 | return status;
|
||
356 | } |
||
357 | AOS_SHELL_COMMAND(moduleTestAllShellCmd, "test:all", _testAllShellCmdCb);
|
||
358 | deaaa47e | Cung Sang | |
359 | 7de0cc90 | Thomas Schöpping | #endif /* (AMIROOS_CFG_TESTS_ENABLE == true) */ |
360 | f4da707a | Thomas Schöpping | |
361 | /** @} */
|
||
362 | /** @} */ |