amiro-os / modules / NUCLEO-L476RG / module.h @ 10fd7ac9
History | View | Annotate | Download (9.835 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 Structures and constant for the NUCLEO-L476RG module.
|
22 |
*
|
23 |
* @addtogroup NUCLEO-L476RG_module
|
24 |
* @{
|
25 |
*/
|
26 |
|
27 |
#ifndef AMIROOS_MODULE_H
|
28 |
#define AMIROOS_MODULE_H
|
29 |
|
30 |
#include <amiroos.h> |
31 |
|
32 |
/*===========================================================================*/
|
33 |
/**
|
34 |
* @name Module specific functions
|
35 |
* @{
|
36 |
*/
|
37 |
/*===========================================================================*/
|
38 |
|
39 |
/** @} */
|
40 |
|
41 |
/*===========================================================================*/
|
42 |
/**
|
43 |
* @name ChibiOS/HAL configuration
|
44 |
* @{
|
45 |
*/
|
46 |
/*===========================================================================*/
|
47 |
|
48 |
/**
|
49 |
* @brief Serial driver of the programmer interface.
|
50 |
*/
|
51 |
#define MODULE_HAL_PROGIF SD2
|
52 |
|
53 |
/**
|
54 |
* @brief Configuration for the programmer serial interface driver.
|
55 |
*/
|
56 |
extern SerialConfig moduleHalProgIfConfig;
|
57 |
|
58 |
/**
|
59 |
* @brief Real-Time Clock driver.
|
60 |
*/
|
61 |
#define MODULE_HAL_RTC RTCD1
|
62 |
|
63 |
#if (BOARD_MPU6050_CONNECTED == true) || defined(__DOXYGEN__) |
64 |
|
65 |
/**
|
66 |
* @brief I2C driver to access multiplexer, proximity sensors 5 to 8, power monitors for VSYS4.2, VIO 5.0 and VDD, EEPROM, touch sensor, and fuel gauge (front battery).
|
67 |
*/
|
68 |
#define MODULE_HAL_I2C3 I2CD3
|
69 |
|
70 |
/**
|
71 |
* @brief Configuration for the I2C driver #3.
|
72 |
*/
|
73 |
extern I2CConfig moduleHalI2c3Config;
|
74 |
|
75 |
#endif /* (BOARD_MPU6050_CONNECTED == true) */ |
76 |
|
77 |
/** @} */
|
78 |
|
79 |
/*===========================================================================*/
|
80 |
/**
|
81 |
* @name GPIO definitions
|
82 |
* @{
|
83 |
*/
|
84 |
/*===========================================================================*/
|
85 |
|
86 |
/**
|
87 |
* @brief LED output signal GPIO.
|
88 |
*/
|
89 |
extern ROMCONST apalControlGpio_t moduleGpioLed;
|
90 |
|
91 |
/**
|
92 |
* @brief User button input signal.
|
93 |
*/
|
94 |
extern ROMCONST apalControlGpio_t moduleGpioUserButton;
|
95 |
|
96 |
/** @} */
|
97 |
|
98 |
/*===========================================================================*/
|
99 |
/**
|
100 |
* @name AMiRo-OS core configurations
|
101 |
* @{
|
102 |
*/
|
103 |
/*===========================================================================*/
|
104 |
|
105 |
/**
|
106 |
* @brief Event flag to be set on a USER_BUTTON interrupt.
|
107 |
*/
|
108 |
#define MODULE_OS_GPIOEVENTFLAG_USERBUTTON AOS_GPIOEVENT_FLAG(PAL_PAD(LINE_BUTTON))
|
109 |
|
110 |
#if (AMIROOS_CFG_SHELL_ENABLE == true) || defined(__DOXYGEN__) |
111 |
/**
|
112 |
* @brief Shell prompt text.
|
113 |
*/
|
114 |
extern ROMCONST char* moduleShellPrompt; |
115 |
#endif /* (AMIROOS_CFG_SHELL_ENABLE == true) */ |
116 |
|
117 |
/**
|
118 |
* @brief Interrupt initialization macro.
|
119 |
*/
|
120 |
#define MODULE_INIT_INTERRUPTS() { \
|
121 |
/* user button */ \
|
122 |
palSetLineCallback(moduleGpioUserButton.gpio->line, aosSysGetStdGpioCallback(), &moduleGpioUserButton.gpio->line); \ |
123 |
palEnableLineEvent(moduleGpioUserButton.gpio->line, APAL2CH_EDGE(moduleGpioUserButton.meta.edge)); \ |
124 |
} |
125 |
|
126 |
/**
|
127 |
* @brief Test initialization hook.
|
128 |
*/
|
129 |
#define MODULE_INIT_TESTS() { \
|
130 |
/* add test commands to shell */ \
|
131 |
aosShellAddCommand(&aos.shell, &moduleTestLedShellCmd); \ |
132 |
aosShellAddCommand(&aos.shell, &moduleTestButtonShellCmd); \ |
133 |
MODULE_INIT_TEST_MPU6050(); \ |
134 |
aosShellAddCommand(&aos.shell, &moduleTestAllShellCmd); \ |
135 |
} |
136 |
#if (BOARD_MPU6050_CONNECTED == true) |
137 |
#define MODULE_INIT_TEST_MPU6050() { \
|
138 |
aosShellAddCommand(&aos.shell, &moduleTestMpu6050ShellCmd); \ |
139 |
} |
140 |
#else /* (BOARD_MPU6050_CONNECTED == true) */ |
141 |
#define MODULE_INIT_TEST_MPU6050() {}
|
142 |
#endif /* (BOARD_MPU6050_CONNECTED == true) */ |
143 |
|
144 |
/**
|
145 |
* @brief Periphery communication interfaces initialization hook.
|
146 |
*/
|
147 |
#define MODULE_INIT_PERIPHERY_IF() { \
|
148 |
/* serial driver */ \
|
149 |
sdStart(&MODULE_HAL_PROGIF, &moduleHalProgIfConfig); \ |
150 |
/* MPU6050 demo */ \
|
151 |
MODULE_INIT_PERIPHERY_IF_MPU6050(); \ |
152 |
} |
153 |
#if (BOARD_MPU6050_CONNECTED == true) |
154 |
#define MODULE_INIT_PERIPHERY_IF_MPU6050() { \
|
155 |
/* maximum I2C frequency is 1MHz for this MCU */ \
|
156 |
uint32_t i2c3_freq = 1000000; \
|
157 |
/* find minimum amon all devices connected to this bus */ \
|
158 |
i2c3_freq = (MPU6050_LLD_I2C_MAXFREQUENCY < i2c3_freq) ? MPU6050_LLD_I2C_MAXFREQUENCY : i2c3_freq; \ |
159 |
/* calculate PRESC (prescaler): \
|
160 |
* target is 1/(I2CXCLK * (PRESC + 1)) = 125ns \
|
161 |
*/ \
|
162 |
moduleHalI2c3Config.timingr = ((uint8_t)((0.000000125f * STM32_I2C3CLK) - 1)) << I2C_TIMINGR_PRESC_Pos; \ |
163 |
/* SCL shall be low half of the time. */ \
|
164 |
moduleHalI2c3Config.timingr |= ((uint8_t)((1.f / i2c3_freq / 2 / 0.000000125f) - 1)) << I2C_TIMINGR_SCLL_Pos; \ |
165 |
/* SCL shall be high half the time of low or slightly longer. */ \
|
166 |
moduleHalI2c3Config.timingr |= (uint8_t)(ceilf(((moduleHalI2c3Config.timingr & I2C_TIMINGR_SCLL_Msk) >> I2C_TIMINGR_SCLL_Pos) / 2.f)) << I2C_TIMINGR_SCLH_Pos; \
|
167 |
/* SDA shall be delayed 1/10 of SCL low, or shorter */ \
|
168 |
moduleHalI2c3Config.timingr |= (uint8_t)(((moduleHalI2c3Config.timingr & I2C_TIMINGR_SCLL_Msk) >> I2C_TIMINGR_SCLL_Pos) * 0.1f) << I2C_TIMINGR_SDADEL_Pos; \ |
169 |
/* SCL shall be delyed twice as long as SDA, but longer than 0. */ \
|
170 |
moduleHalI2c3Config.timingr |= ((((moduleHalI2c3Config.timingr & I2C_TIMINGR_SDADEL_Msk) >> I2C_TIMINGR_SDADEL_Pos) * 2) + 1) << I2C_TIMINGR_SCLDEL_Pos; \ |
171 |
/* now we can start the I2C driver */ \
|
172 |
chSysLock(); \ |
173 |
palSetLineMode(LINE_ARD_A4, PAL_MODE_ALTERNATE(4)); \
|
174 |
palSetLineMode(LINE_ARD_A5, PAL_MODE_ALTERNATE(4)); \
|
175 |
chSysUnlock(); \ |
176 |
i2cStart(&MODULE_HAL_I2C3, &moduleHalI2c3Config); \ |
177 |
} |
178 |
#else /* (BOARD_MPU6050_CONNECTED == true) */ |
179 |
#define MODULE_INIT_PERIPHERY_IF_MPU6050() {}
|
180 |
#endif /* (BOARD_MPU6050_CONNECTED == true) */ |
181 |
|
182 |
/**
|
183 |
* @brief Periphery communication interface deinitialization hook.
|
184 |
*/
|
185 |
#define MODULE_SHUTDOWN_PERIPHERY_IF() { \
|
186 |
/* don't stop the serial driver so messages can still be printed */ \
|
187 |
} |
188 |
|
189 |
/**
|
190 |
* @brief HOOK to toggle the LEDs when the user button is pressed.
|
191 |
*/
|
192 |
#define MODULE_MAIN_LOOP_GPIOEVENT(eventflags) { \
|
193 |
if (eventflags & MODULE_OS_GPIOEVENTFLAG_USERBUTTON) { \
|
194 |
button_lld_state_t buttonstate; \ |
195 |
button_lld_get(&moduleLldUserButton, &buttonstate); \ |
196 |
led_lld_set(&moduleLldLed, (buttonstate == BUTTON_LLD_STATE_PRESSED) ? LED_LLD_STATE_ON : LED_LLD_STATE_OFF); \ |
197 |
} \ |
198 |
} |
199 |
|
200 |
/** @} */
|
201 |
|
202 |
/*===========================================================================*/
|
203 |
/**
|
204 |
* @name Startup Shutdown Synchronization Protocol (SSSP)
|
205 |
* @{
|
206 |
*/
|
207 |
/*===========================================================================*/
|
208 |
|
209 |
#if (AMIROOS_CFG_SSSP_ENABLE == true) || defined(__DOXYGEN__) |
210 |
#error "SSSP is not supported on this module." |
211 |
#endif /* (AMIROOS_CFG_SSSP_ENABLE == true) */ |
212 |
|
213 |
/** @} */
|
214 |
|
215 |
/*===========================================================================*/
|
216 |
/**
|
217 |
* @name Low-level drivers
|
218 |
* @{
|
219 |
*/
|
220 |
/*===========================================================================*/
|
221 |
#include <alld_LED.h> |
222 |
#include <alld_button.h> |
223 |
|
224 |
/**
|
225 |
* @brief LED driver.
|
226 |
*/
|
227 |
extern LEDDriver moduleLldLed;
|
228 |
|
229 |
/**
|
230 |
* @brief Button driver.
|
231 |
*/
|
232 |
extern ButtonDriver moduleLldUserButton;
|
233 |
|
234 |
#if (BOARD_MPU6050_CONNECTED == true) || defined(__DOXYGEN__) |
235 |
|
236 |
#include <alld_MPU6050.h> |
237 |
|
238 |
/**
|
239 |
* @brief Accelerometer (MPU6050) driver.
|
240 |
*/
|
241 |
extern MPU6050Driver moduleLldMpu6050;
|
242 |
|
243 |
#endif /* (BOARD_MPU6050_CONNECTED == true) */ |
244 |
|
245 |
/** @} */
|
246 |
|
247 |
/*===========================================================================*/
|
248 |
/**
|
249 |
* @name Tests
|
250 |
* @{
|
251 |
*/
|
252 |
/*===========================================================================*/
|
253 |
#if (AMIROOS_CFG_TESTS_ENABLE == true) || defined(__DOXYGEN__) |
254 |
|
255 |
/**
|
256 |
* @brief LED test command.
|
257 |
*/
|
258 |
extern aos_shellcommand_t moduleTestLedShellCmd;
|
259 |
|
260 |
/**
|
261 |
* @brief User button test command.
|
262 |
*/
|
263 |
extern aos_shellcommand_t moduleTestButtonShellCmd;
|
264 |
|
265 |
#if (BOARD_MPU6050_CONNECTED == true) || defined(__DOXYGEN__) |
266 |
|
267 |
/**
|
268 |
* @brief MPU6050 (Accelerometer & Gyroscope) test command.
|
269 |
*/
|
270 |
extern aos_shellcommand_t moduleTestMpu6050ShellCmd;
|
271 |
|
272 |
#endif /* (BOARD_MPU6050_CONNECTED == true) */ |
273 |
|
274 |
/**
|
275 |
* @brief Entire module test command.
|
276 |
*/
|
277 |
extern aos_shellcommand_t moduleTestAllShellCmd;
|
278 |
|
279 |
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) */ |
280 |
|
281 |
/** @} */
|
282 |
|
283 |
#endif /* AMIROOS_MODULE_H */ |
284 |
|
285 |
/** @} */
|