Statistics
| Branch: | Tag: | Revision:

amiro-os / modules / PowerManagement_1-1 / module.h @ 1a8fb642

History | View | Annotate | Download (30.539 KB)

1 e545e620 Thomas Schöpping
/*
2
AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform.
3 84f0ce9e Thomas Schöpping
Copyright (C) 2016..2019  Thomas Schöpping et al.
4 e545e620 Thomas Schöpping

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 53710ca3 Marc Rothmann
/**
20 acc97cbf Thomas Schöpping
 * @file
21 53710ca3 Marc Rothmann
 * @brief   Structures and constant for the PowerManagement module.
22
 *
23
 * @addtogroup powermanagement_module
24
 * @{
25
 */
26
27 6ff06bbf Thomas Schöpping
#ifndef AMIROOS_MODULE_H
28
#define AMIROOS_MODULE_H
29 e545e620 Thomas Schöpping
30 e2d7143f Thomas Schöpping
#include <amiroos.h>
31
32 e545e620 Thomas Schöpping
/*===========================================================================*/
33
/**
34
 * @name Module specific functions
35
 * @{
36
 */
37
/*===========================================================================*/
38
39 1c1b3372 Thomas Schöpping
/**
40 e545e620 Thomas Schöpping
 * @brief Makro to store data in the core coupled memory (ccm).
41
 *        Example:
42
 *        int compute_buffer[128] CCM_RAM;
43
 *
44
 * @note The ccm is not connected to any bus system.
45
 */
46 1c1b3372 Thomas Schöpping
#define CCM_RAM(...)                            __attribute__((section(".ram4"), ##__VA_ARGS__))
47 e545e620 Thomas Schöpping
48 1c1b3372 Thomas Schöpping
/**
49 e545e620 Thomas Schöpping
 * @brief Makro to store data in the ethernet memory (eth).
50
 *        Example:
51
 *        int dma_buffer[128] ETH_RAM;
52
 *
53
 * @note The eth is a dedicated memory block with its own DMA controller.
54
 */
55 1c1b3372 Thomas Schöpping
#define ETH_RAM(...)                            __attribute__((section(".ram2"), ##__VA_ARGS__))
56 e545e620 Thomas Schöpping
57 1c1b3372 Thomas Schöpping
/**
58 e545e620 Thomas Schöpping
 * @brief Makro to store data in the backup memory (bckp).
59
 *        Example:
60
 *        int backup_buffer[128] BCKP_RAM;
61
 *
62
 * @note The eth is a dedicated memory block with its own DMA controller.
63
 */
64 1c1b3372 Thomas Schöpping
#define BCKP_RAM(...)                           __attribute__((section(".ram5"), ##__VA_ARGS__))
65 e545e620 Thomas Schöpping
66
/** @} */
67
68
/*===========================================================================*/
69
/**
70
 * @name ChibiOS/HAL configuration
71
 * @{
72
 */
73
/*===========================================================================*/
74
75
/**
76
 * @brief   ADC driver for reading the system voltage.
77
 */
78
#define MODULE_HAL_ADC_VSYS                     ADCD1
79
80
/**
81
 * @brief   Configuration for the ADC.
82
 */
83
extern ADCConversionGroup moduleHalAdcVsysConversionGroup;
84
85
/**
86
 * @brief   CAN driver to use.
87
 */
88
#define MODULE_HAL_CAN                          CAND1
89
90
/**
91
 * @brief   Configuration for the CAN driver.
92
 */
93
extern CANConfig moduleHalCanConfig;
94
95
/**
96 8be006e0 Thomas Schöpping
 * @brief   I2C driver to access the sensor ring, power monitors for VIO1.8 and VIO3.3, and fuel gauge (rear battery).
97
 * @details Depending on the attached sensor ring, the devices connected to this bus vary:
98
 *          ProximitySensor:
99
 *            - I2C multiplexer (PCA9544A)
100
 *            - proximity sensors (VCNL4020) #1 - #4
101
 *          DistanceSensor (VL53L0X):
102
 *            TODO
103
 *          DistanceSensor (VL53L1X):
104
 *            TODO
105
 */
106
#define MODULE_HAL_I2C_SR_PM18_PM33_GAUGEREAR   I2CD1
107
108
/**
109
 * @brief   Configuration for the sensor ring, power monitors for VIO1.8 and VIO3.3, and fuel gauge (rear battery) I2C driver.
110
 * @details Depending on the attached sensor ring, the devices connected to this bus vary:
111
 *          ProximitySensor:
112
 *            - I2C multiplexer (PCA9544A)
113
 *            - proximity sensors (VCNL4020) #1 - #4
114
 *          DistanceSensor (VL53L0X):
115
 *            TODO
116
 *          DistanceSensor (VL53L1X):
117
 *            TODO
118
 */
119
extern I2CConfig moduleHalI2cSrPm18Pm33GaugeRearConfig;
120
121
/**
122
 * @brief   I2C driver to access the sensor ring, power monitors for VSYS4.2, VIO5.0 and VDD, EEPROM, and fuel gauge (front battery).
123
 * @details Depending on the attached sensor ring, the devices connected to this bus vary:
124
 *          ProximitySensor:
125
 *            - I2C multiplexer (PCA9544A)
126
 *            - proximity sensors (VCNL4020) #1 - #4
127
 *            - touch sensor (MPR121)
128
 *          DistanceSensor (VL53L0X):
129
 *            TODO
130
 *          DistanceSensor (VL53L1X):
131
 *            TODO
132
 */
133
#define MODULE_HAL_I2C_SR_PM42_PM50_PMVDD_EEPROM_GAUGEFRONT I2CD2
134
135
/**
136
 * @brief   Configuration for the sensor ring, power monitors for VSYS4.2, VIO5.0 and VDD, EEPROM, and fuel gauge (front battery) I2C driver.
137
 * @details Depending on the attached sensor ring, the devices connected to this bus vary:
138
 *          ProximitySensor:
139
 *            - I2C multiplexer (PCA9544A)
140
 *            - proximity sensors (VCNL4020) #1 - #4
141
 *            - touch sensor (MPR121)
142
 *          DistanceSensor (VL53L0X):
143
 *            TODO
144
 *          DistanceSensor (VL53L1X):
145
 *            TODO
146
 */
147
extern I2CConfig moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig;
148 e545e620 Thomas Schöpping
149
/**
150
 * @brief   PWM driver for the buzzer.
151
 */
152
#define MODULE_HAL_PWM_BUZZER                   PWMD3
153
154
/**
155
 * @brief   Configuration of the PWM driver.
156
 */
157
extern PWMConfig moduleHalPwmBuzzerConfig;
158
159
/**
160 243fb4e2 Thomas Schöpping
 * @brief   PWM channel for the buzzer.
161 e545e620 Thomas Schöpping
 */
162
#define MODULE_HAL_PWM_BUZZER_CHANNEL           1
163
164
/**
165
 * @brief   Serial driver of the programmer interface.
166
 */
167
#define MODULE_HAL_PROGIF                       SD1
168
169
/**
170
 * @brief   Configuration for the programmer serial interface driver.
171
 */
172
extern SerialConfig moduleHalProgIfConfig;
173
174 8399aeae Thomas Schöpping
/**
175
 * @brief   Real-Time Clock driver.
176
 */
177
#define MODULE_HAL_RTC                          RTCD1
178
179 e545e620 Thomas Schöpping
/** @} */
180
181
/*===========================================================================*/
182
/**
183
 * @name GPIO definitions
184
 * @{
185
 */
186
/*===========================================================================*/
187
188
/**
189
 * @brief   SYS_REG_EN output signal GPIO.
190
 */
191 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioSysRegEn;
192 e545e620 Thomas Schöpping
193
/**
194
 * @brief   IR_INT1 input signal GPIO.
195
 */
196 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioIrInt1;
197 e545e620 Thomas Schöpping
198
/**
199
 * @brief   POWER_EN output signal GPIO.
200
 */
201 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioPowerEn;
202 e545e620 Thomas Schöpping
203
/**
204
 * @brief   SYS_UART_DN bidirectional signal GPIO.
205
 */
206 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioSysUartDn;
207 e545e620 Thomas Schöpping
208
/**
209
 * @brief   CHARGE_STAT2A input signal GPIO.
210
 */
211 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioChargeStat2A;
212 e545e620 Thomas Schöpping
213
/**
214
 * @brief   GAUGE_BATLOW2 input signal GPIO.
215
 */
216 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioGaugeBatLow2;
217 e545e620 Thomas Schöpping
218
/**
219
 * @brief   GAUGE_BATGD2 input signal GPIO.
220
 */
221 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioGaugeBatGd2;
222 e545e620 Thomas Schöpping
223
/**
224
 * @brief   LED output signal GPIO.
225
 */
226 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioLed;
227 e545e620 Thomas Schöpping
228
/**
229
 * @brief   SYS_UART_UP bidirectional signal GPIO.
230
 */
231 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioSysUartUp;
232 e545e620 Thomas Schöpping
233
/**
234
 * @brief   CHARGE_STAT1A input signal GPIO.
235
 */
236 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioChargeStat1A;
237 e545e620 Thomas Schöpping
238
/**
239
 * @brief   GAUGE_BATLOW1 input signal GPIO.
240
 */
241 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioGaugeBatLow1;
242 e545e620 Thomas Schöpping
243
/**
244
 * @brief   GAUGE_BATGD1 input signal GPIO.
245
 */
246 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioGaugeBatGd1;
247 e545e620 Thomas Schöpping
248
/**
249 340f2bdf Thomas Schöpping
 * @brief   CHARGE_EN1 output signal GPIO.
250 e545e620 Thomas Schöpping
 */
251 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioChargeEn1;
252 e545e620 Thomas Schöpping
253
/**
254
 * @brief   IR_INT2 input signal GPIO.
255
 */
256 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioIrInt2;
257 e545e620 Thomas Schöpping
258
/**
259
 * @brief   TOUCH_INT input signal GPIO.
260
 */
261 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioTouchInt;
262 e545e620 Thomas Schöpping
263
/**
264
 * @brief   SYS_DONE input signal GPIO.
265
 */
266 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioSysDone;
267 e545e620 Thomas Schöpping
268
/**
269
 * @brief   SYS_PROG output signal GPIO.
270
 */
271 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioSysProg;
272 e545e620 Thomas Schöpping
273
/**
274
 * @brief   PATH_DC input signal GPIO.
275
 */
276 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioPathDc;
277 e545e620 Thomas Schöpping
278
/**
279
 * @brief   SYS_SPI_DIR bidirectional signal GPIO.
280
 */
281 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioSysSpiDir;
282 e545e620 Thomas Schöpping
283
/**
284
 * @brief   SYS_SYNC bidirectional signal GPIO.
285
 */
286 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioSysSync;
287 e545e620 Thomas Schöpping
288
/**
289
 * @brief   SYS_PD bidirectional signal GPIO.
290
 */
291 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioSysPd;
292 e545e620 Thomas Schöpping
293
/**
294
 * @brief   SYS_WARMRST bidirectional signal GPIO.
295
 */
296 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioSysWarmrst;
297 e545e620 Thomas Schöpping
298
/**
299
 * @brief   BT_RST output signal GPIO.
300
 */
301 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioBtRst;
302 e545e620 Thomas Schöpping
303
/**
304
 * @brief   CHARGE_EN2 output signal GPIO.
305
 */
306 acc97cbf Thomas Schöpping
extern ROMCONST apalControlGpio_t moduleGpioChargeEn2;
307 e545e620 Thomas Schöpping
308
/** @} */
309
310
/*===========================================================================*/
311
/**
312
 * @name AMiRo-OS core configurations
313
 * @{
314
 */
315
/*===========================================================================*/
316
317
/**
318
 * @brief   Event flag to be set on a IR_INT1 / CHARGE_STAT1A interrupt.
319
 */
320 1a8fb642 Thomas Schöpping
#define MODULE_OS_GPIOEVENTFLAG_IRINT1          AOS_GPIOEVENT_FLAG(PAL_PAD(LINE_IR_INT1_N))
321 e545e620 Thomas Schöpping
322
/**
323
 * @brief   Event flag to be set on a GAUGE_BATLOW1 interrupt.
324
 */
325 1a8fb642 Thomas Schöpping
#define MODULE_OS_GPIOEVENTFLAG_GAUGEBATLOW1    AOS_GPIOEVENT_FLAG(PAL_PAD(LINE_GAUGE_BATLOW1))
326 e545e620 Thomas Schöpping
327
/**
328
 * @brief   Event flag to be set on a GAUGE_BATGD1 interrupt.
329
 */
330 1a8fb642 Thomas Schöpping
#define MODULE_OS_GPIOEVENTFLAG_GAUGEBATGD1     AOS_GPIOEVENT_FLAG(PAL_PAD(LINE_GAUGE_BATGD1_N))
331 e545e620 Thomas Schöpping
332
/**
333
 * @brief   Event flag to be set on a SYS_UART_DN interrupt.
334
 */
335 1a8fb642 Thomas Schöpping
#define MODULE_OS_GPIOEVENTFLAG_SYSUARTDN       AOS_GPIOEVENT_FLAG(PAL_PAD(LINE_SYS_UART_DN))
336 e545e620 Thomas Schöpping
337
/**
338
 * @brief   Event flag to be set on a IR_INT2 / CHARGE_STAT2A interrupt.
339
 */
340 1a8fb642 Thomas Schöpping
#define MODULE_OS_GPIOEVENTFLAG_IRINT2          AOS_GPIOEVENT_FLAG(PAL_PAD(LINE_IR_INT2_N))
341 e545e620 Thomas Schöpping
342
/**
343
 * @brief   Event flag to be set on a TOUCH_INT interrupt.
344
 */
345 1a8fb642 Thomas Schöpping
#define MODULE_OS_GPIOEVENTFLAG_TOUCHINT        AOS_GPIOEVENT_FLAG(PAL_PAD(LINE_TOUCH_INT_N))
346 e545e620 Thomas Schöpping
347
/**
348
 * @brief   Event flag to be set on a GAUGE_BATLOW2 interrupt.
349
 */
350 1a8fb642 Thomas Schöpping
#define MODULE_OS_GPIOEVENTFLAG_GAUGEBATLOW2    AOS_GPIOEVENT_FLAG(PAL_PAD(LINE_GAUGE_BATLOW2))
351 e545e620 Thomas Schöpping
352
/**
353
 * @brief   Event flag to be set on a GAUGE_BATGD2 interrupt.
354
 */
355 1a8fb642 Thomas Schöpping
#define MODULE_OS_GPIOEVENTFLAG_GAUGEBATGD2     AOS_GPIOEVENT_FLAG(PAL_PAD(LINE_GAUGE_BATGD2_N))
356 e545e620 Thomas Schöpping
357
/**
358
 * @brief   Event flag to be set on a PATH_DC interrupt.
359
 */
360 1a8fb642 Thomas Schöpping
#define MODULE_OS_GPIOEVENTFLAG_PATHDC          AOS_GPIOEVENT_FLAG(PAL_PAD(LINE_PATH_DC))
361 e545e620 Thomas Schöpping
362
/**
363
 * @brief   Event flag to be set on a SYS_SPI_DIR interrupt.
364
 */
365 1a8fb642 Thomas Schöpping
#define MODULE_OS_GPIOEVENTFLAG_SYSSPIDIR       AOS_GPIOEVENT_FLAG(PAL_PAD(LINE_SYS_SPI_DIR))
366 e545e620 Thomas Schöpping
367
/**
368
 * @brief   Event flag to be set on a SYS_SYNC interrupt.
369
 */
370 1a8fb642 Thomas Schöpping
#define MODULE_OS_GPIOEVENTFLAG_SYSSYNC         AOS_GPIOEVENT_FLAG(PAL_PAD(LINE_SYS_INT_N))
371 e545e620 Thomas Schöpping
372
/**
373
 * @brief   Event flag to be set on a SYS_PD interrupt.
374
 */
375 1a8fb642 Thomas Schöpping
#define MODULE_OS_GPIOEVENTFLAG_SYSPD           AOS_GPIOEVENT_FLAG(PAL_PAD(LINE_SYS_PD_N))
376 e545e620 Thomas Schöpping
377
/**
378
 * @brief   Event flag to be set on a SYS_WARMRST interrupt.
379
 */
380 1a8fb642 Thomas Schöpping
#define MODULE_OS_GPIOEVENTFLAG_SYSWARMRST      AOS_GPIOEVENT_FLAG(PAL_PAD(LINE_SYS_WARMRST_N))
381 e545e620 Thomas Schöpping
382
/**
383
 * @brief   Event flag to be set on a SYS_UART_UP interrupt.
384
 */
385 1a8fb642 Thomas Schöpping
#define MODULE_OS_GPIOEVENTFLAG_SYSUARTUP       AOS_GPIOEVENT_FLAG(PAL_PAD(LINE_SYS_UART_UP))
386 e545e620 Thomas Schöpping
387 47e89ebf Thomas Schöpping
#if (AMIROOS_CFG_SHELL_ENABLE == true) || defined(__DOXYGEN__)
388 e545e620 Thomas Schöpping
/**
389
 * @brief   Shell prompt text.
390
 */
391 acc97cbf Thomas Schöpping
extern ROMCONST char* moduleShellPrompt;
392 47e89ebf Thomas Schöpping
#endif /* (AMIROOS_CFG_SHELL_ENABLE == true) */
393 e545e620 Thomas Schöpping
394
/**
395 1e5f7648 Thomas Schöpping
 * @brief   Interrupt initialization macro.
396
 * @note    SSSP related interrupt signals are already initialized in 'aos_system.c'.
397
 */
398
#define MODULE_INIT_INTERRUPTS() {                                            \
399
  /* IR_INT1 */                                                               \
400 1a8fb642 Thomas Schöpping
  palSetLineCallback(moduleGpioIrInt1.gpio->line, aosSysGetStdGpioCallback(), &moduleGpioIrInt1.gpio->line);  \
401 56dc4779 Thomas Schöpping
  palEnableLineEvent(moduleGpioIrInt1.gpio->line, APAL2CH_EDGE(moduleGpioIrInt1.meta.edge));                  \
402 1e5f7648 Thomas Schöpping
  /* GAUGE_BATLOW2 */                                                         \
403 1a8fb642 Thomas Schöpping
  palSetLineCallback(moduleGpioGaugeBatLow2.gpio->line, aosSysGetStdGpioCallback(), &moduleGpioGaugeBatLow2.gpio->line);  \
404 56dc4779 Thomas Schöpping
  palEnableLineEvent(moduleGpioGaugeBatLow2.gpio->line, APAL2CH_EDGE(moduleGpioGaugeBatLow2.meta.edge));                  \
405 1e5f7648 Thomas Schöpping
  /* GAUGE_BATGD2 */                                                          \
406 1a8fb642 Thomas Schöpping
  palSetLineCallback(moduleGpioGaugeBatGd2.gpio->line, aosSysGetStdGpioCallback(), &moduleGpioGaugeBatGd2.gpio->line);  \
407 56dc4779 Thomas Schöpping
  palEnableLineEvent(moduleGpioGaugeBatGd2.gpio->line, APAL2CH_EDGE(moduleGpioGaugeBatGd2.meta.edge));                  \
408 1e5f7648 Thomas Schöpping
  /* GAUGE_BATLOW1 */                                                         \
409 1a8fb642 Thomas Schöpping
  palSetLineCallback(moduleGpioGaugeBatLow1.gpio->line, aosSysGetStdGpioCallback(), &moduleGpioGaugeBatLow1.gpio->line);  \
410 56dc4779 Thomas Schöpping
  palEnableLineEvent(moduleGpioGaugeBatLow1.gpio->line, APAL2CH_EDGE(moduleGpioGaugeBatLow1.meta.edge));                  \
411 1e5f7648 Thomas Schöpping
  /* GAUGE_BATGD1 */                                                          \
412 1a8fb642 Thomas Schöpping
  palSetLineCallback(moduleGpioGaugeBatGd1.gpio->line, aosSysGetStdGpioCallback(), &moduleGpioGaugeBatGd1.gpio->line);  \
413 56dc4779 Thomas Schöpping
  palEnableLineEvent(moduleGpioGaugeBatGd1.gpio->line, APAL2CH_EDGE(moduleGpioGaugeBatGd1.meta.edge));                  \
414 05b882c0 Thomas Schöpping
  /* IR_INT2 */                                                               \
415 1a8fb642 Thomas Schöpping
  palSetLineCallback(moduleGpioIrInt2.gpio->line, aosSysGetStdGpioCallback(), &moduleGpioIrInt2.gpio->line);  \
416 56dc4779 Thomas Schöpping
  palEnableLineEvent(moduleGpioIrInt2.gpio->line, APAL2CH_EDGE(moduleGpioIrInt2.meta.edge));                  \
417 1e5f7648 Thomas Schöpping
  /* TOUCH_INT */                                                             \
418 1a8fb642 Thomas Schöpping
  palSetLineCallback(moduleGpioTouchInt.gpio->line, aosSysGetStdGpioCallback(), &moduleGpioTouchInt.gpio->line);  \
419 56dc4779 Thomas Schöpping
  palEnableLineEvent(moduleGpioTouchInt.gpio->line, APAL2CH_EDGE(moduleGpioTouchInt.meta.edge));                  \
420 1e5f7648 Thomas Schöpping
  /* PATH_DC */                                                               \
421 1a8fb642 Thomas Schöpping
  palSetLineCallback(moduleGpioPathDc.gpio->line, aosSysGetStdGpioCallback(), &moduleGpioPathDc.gpio->line);  \
422 56dc4779 Thomas Schöpping
  palEnableLineEvent(moduleGpioPathDc.gpio->line, APAL2CH_EDGE(moduleGpioPathDc.meta.edge));                  \
423 1e5f7648 Thomas Schöpping
  /* SYS_SPI_DIR */                                                           \
424 1a8fb642 Thomas Schöpping
  palSetLineCallback(moduleGpioSysSpiDir.gpio->line, aosSysGetStdGpioCallback(), &moduleGpioSysSpiDir.gpio->line);  \
425 56dc4779 Thomas Schöpping
  palEnableLineEvent(moduleGpioSysSpiDir.gpio->line, APAL2CH_EDGE(moduleGpioSysSpiDir.meta.edge));                  \
426 1e5f7648 Thomas Schöpping
  /* SYS_WARMRST */                                                           \
427 1a8fb642 Thomas Schöpping
  palSetLineCallback(moduleGpioSysWarmrst.gpio->line, aosSysGetStdGpioCallback(), &moduleGpioSysWarmrst.gpio->line);  \
428 56dc4779 Thomas Schöpping
  palEnableLineEvent(moduleGpioSysWarmrst.gpio->line, APAL2CH_EDGE(moduleGpioSysWarmrst.meta.edge));                  \
429 1e5f7648 Thomas Schöpping
}
430
431
/**
432 4c72a54c Thomas Schöpping
 * @brief   Test initialization hook.
433 e545e620 Thomas Schöpping
 */
434
#define MODULE_INIT_TESTS() {                                                 \
435 1a8fb642 Thomas Schöpping
  /* add test commands to shell */                                            \
436 4c72a54c Thomas Schöpping
  aosShellAddCommand(&aos.shell, &moduleTestAdcShellCmd);                     \
437
  aosShellAddCommand(&aos.shell, &moduleTestAt24c01bShellCmd);                \
438
  aosShellAddCommand(&aos.shell, &moduleTestBq241xxShellCmd);                 \
439
  aosShellAddCommand(&aos.shell, &moduleTestBq27500ShellCmd);                 \
440
  aosShellAddCommand(&aos.shell, &moduleTestBq27500Bq241xxShellCmd);          \
441
  aosShellAddCommand(&aos.shell, &moduleTestIna219ShellCmd);                  \
442
  aosShellAddCommand(&aos.shell, &moduleTestLedShellCmd);                     \
443
  aosShellAddCommand(&aos.shell, &moduleTestPkxxxexxxShellCmd);               \
444
  aosShellAddCommand(&aos.shell, &moduleTestTps6211xShellCmd);                \
445
  aosShellAddCommand(&aos.shell, &moduleTestTps6211xIna219ShellCmd);          \
446 8be006e0 Thomas Schöpping
  MODULE_INIT_TEST_SENSORRING();                                              \
447 4c72a54c Thomas Schöpping
  aosShellAddCommand(&aos.shell, &moduleTestAllShellCmd);                     \
448 e545e620 Thomas Schöpping
}
449 8be006e0 Thomas Schöpping
#if (BOARD_SENSORRING == BOARD_PROXIMITYSENSOR) || defined(__DOXYGEN__)
450
  #define MODULE_INIT_TEST_SENSORRING() {                                     \
451 4c72a54c Thomas Schöpping
    aosShellAddCommand(&aos.shell, &moduleTestPca9544aShellCmd);              \
452
    aosShellAddCommand(&aos.shell, &moduleTestMpr121ShellCmd);                \
453
    aosShellAddCommand(&aos.shell, &moduleTestVcnl4020ShellCmd);              \
454 8be006e0 Thomas Schöpping
  }
455
#elif (BOARD_SENSORRING == BOARD_DISTANCESENSOR_VL53L0X) || defined(__DOXYGEN__)
456
  #define MODULE_INIT_TEST_SENSORRING() {                                     \
457 4c72a54c Thomas Schöpping
    aosShellAddCommand(&aos.shell, &moduleTestPcal6524ShellCmd);              \
458
    aosShellAddCommand(&aos.shell, &moduleTestAt42qt1050ShellCmd);            \
459 8be006e0 Thomas Schöpping
  }
460
#elif (BOARD_SENSORRING == BOARD_DISTANCESENSOR_VL53L1X) || defined(__DOXYGEN__)
461
  #define MODULE_INIT_TEST_SENSORRING() {                                     \
462 4c72a54c Thomas Schöpping
    aosShellAddCommand(&aos.shell, &moduleTestPcal6524ShellCmd);              \
463
    aosShellAddCommand(&aos.shell, &moduleTestAt42qt1050ShellCmd);            \
464 8be006e0 Thomas Schöpping
  }
465 7de0cc90 Thomas Schöpping
#else /* (BOARD_SENSORRING == ?) */
466 8be006e0 Thomas Schöpping
  #define MODULE_INIT_TEST_SENSORRING()         {}
467 7de0cc90 Thomas Schöpping
#endif /* (BOARD_SENSORRING == ?) */
468 e545e620 Thomas Schöpping
469
/**
470
 * @brief   Periphery communication interfaces initialization hook.
471
 */
472 4c72a54c Thomas Schöpping
#define MODULE_INIT_PERIPHERY_IF() {                                          \
473
  MODULE_INIT_PERIPHERY_IF_SENSORRING();                                      \
474 e545e620 Thomas Schöpping
  /* serial driver */                                                         \
475
  sdStart(&MODULE_HAL_PROGIF, &moduleHalProgIfConfig);                        \
476
  /* I2C */                                                                   \
477 8be006e0 Thomas Schöpping
  moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed = (INA219_LLD_I2C_MAXFREQUENCY < moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed) ? INA219_LLD_I2C_MAXFREQUENCY : moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed;  \
478
  moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed = (BQ27500_LLD_I2C_MAXFREQUENCY < moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed) ? BQ27500_LLD_I2C_MAXFREQUENCY : moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed;  \
479
  moduleHalI2cSrPm18Pm33GaugeRearConfig.duty_cycle = (moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed <= 100000) ? STD_DUTY_CYCLE : FAST_DUTY_CYCLE_2;  \
480
  i2cStart(&MODULE_HAL_I2C_SR_PM18_PM33_GAUGEREAR, &moduleHalI2cSrPm18Pm33GaugeRearConfig); \
481
  moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed = (INA219_LLD_I2C_MAXFREQUENCY < moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed) ? INA219_LLD_I2C_MAXFREQUENCY : moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed; \
482 ddf34c3d Thomas Schöpping
  moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed = (AT24C01B_LLD_I2C_MAXFREQUENCY < moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed) ? AT24C01B_LLD_I2C_MAXFREQUENCY : moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed; \
483 8be006e0 Thomas Schöpping
  moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed = (BQ27500_LLD_I2C_MAXFREQUENCY < moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed) ? BQ27500_LLD_I2C_MAXFREQUENCY : moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed; \
484
  moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.duty_cycle = (moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed <= 100000) ? STD_DUTY_CYCLE : FAST_DUTY_CYCLE_2;  \
485
  i2cStart(&MODULE_HAL_I2C_SR_PM42_PM50_PMVDD_EEPROM_GAUGEFRONT, &moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig);  \
486 e545e620 Thomas Schöpping
  /* ADC */                                                                   \
487
  adcStart(&MODULE_HAL_ADC_VSYS, NULL);                                       \
488
  /* PWM */                                                                   \
489
  pwmStart(&MODULE_HAL_PWM_BUZZER, &moduleHalPwmBuzzerConfig);                \
490
  moduleHalPwmBuzzerConfig.frequency = MODULE_HAL_PWM_BUZZER.clock;           \
491
  pwmStop(&MODULE_HAL_PWM_BUZZER);                                            \
492 ddf34c3d Thomas Schöpping
  moduleHalPwmBuzzerConfig.period = moduleHalPwmBuzzerConfig.frequency / PKxxxExxx_LLD_FREQUENCY_SPEC; \
493 e545e620 Thomas Schöpping
  pwmStart(&MODULE_HAL_PWM_BUZZER, &moduleHalPwmBuzzerConfig);                \
494
}
495 8be006e0 Thomas Schöpping
#if (BOARD_SENSORRING == BOARD_PROXIMITYSENSOR) || defined(__DOXYGEN__)
496 4c72a54c Thomas Schöpping
  #define MODULE_INIT_PERIPHERY_IF_SENSORRING() {                             \
497 8be006e0 Thomas Schöpping
    moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed = (PCA9544A_LLD_I2C_MAXFREQUENCY < moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed) ? PCA9544A_LLD_I2C_MAXFREQUENCY : moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed;  \
498
    moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed = (VCNL4020_LLD_I2C_MAXFREQUENCY < moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed) ? VCNL4020_LLD_I2C_MAXFREQUENCY : moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed;  \
499
    moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed = (PCA9544A_LLD_I2C_MAXFREQUENCY < moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed) ? PCA9544A_LLD_I2C_MAXFREQUENCY : moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed; \
500
    moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed = (VCNL4020_LLD_I2C_MAXFREQUENCY < moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed) ? VCNL4020_LLD_I2C_MAXFREQUENCY : moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed; \
501
    moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed = (MPR121_LLD_I2C_MAXFREQUENCY < moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed) ? MPR121_LLD_I2C_MAXFREQUENCY : moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed; \
502
  }
503
#elif (BOARD_SENSORRING == BOARD_DISTANCESENSOR_VL53L0X) || defined(__DOXYGEN__)
504 4c72a54c Thomas Schöpping
  #define MODULE_INIT_PERIPHERY_IF_SENSORRING() {                             \
505 bffb3465 Thomas Schöpping
    moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed = (PCAL6524_LLD_I2C_MAXFREQUENCY < moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed) ? PCAL6524_LLD_I2C_MAXFREQUENCY : moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed;  \
506
    moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed = (PCAL6524_LLD_I2C_MAXFREQUENCY < moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed) ? PCAL6524_LLD_I2C_MAXFREQUENCY : moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed;  \
507
    moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed = (AT42QT1050_LLD_I2C_MAXFREQUENCY < moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed) ? AT42QT1050_LLD_I2C_MAXFREQUENCY : moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed;  \
508 8be006e0 Thomas Schöpping
  }
509
#elif (BOARD_SENSORRING == BOARD_DISTANCESENSOR_VL53L1X) || defined(__DOXYGEN__)
510 4c72a54c Thomas Schöpping
  #define MODULE_INIT_PERIPHERY_IF_SENSORRING() {                             \
511 bffb3465 Thomas Schöpping
    moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed = (PCAL6524_LLD_I2C_MAXFREQUENCY < moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed) ? PCAL6524_LLD_I2C_MAXFREQUENCY : moduleHalI2cSrPm18Pm33GaugeRearConfig.clock_speed;  \
512
    moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed = (PCAL6524_LLD_I2C_MAXFREQUENCY < moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed) ? PCAL6524_LLD_I2C_MAXFREQUENCY : moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed;  \
513
    moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed = (AT42QT1050_LLD_I2C_MAXFREQUENCY < moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed) ? AT42QT1050_LLD_I2C_MAXFREQUENCY : moduleHalI2cSrPm42Pm50PmVddEepromGaugeFrontConfig.clock_speed;  \
514 8be006e0 Thomas Schöpping
  }
515 7de0cc90 Thomas Schöpping
#else /* (BOARD_SENSORRING == ?) */
516 4c72a54c Thomas Schöpping
  #define MODULE_INIT_PERIPHERY_IF_SENSORRING() {}
517 7de0cc90 Thomas Schöpping
#endif /* (BOARD_SENSORRING == ?) */
518 e545e620 Thomas Schöpping
519
/**
520
 * @brief   Periphery communication interface deinitialization hook.
521
 */
522 4c72a54c Thomas Schöpping
#define MODULE_SHUTDOWN_PERIPHERY_IF() {                                      \
523 e545e620 Thomas Schöpping
  /* PWM */                                                                   \
524
  pwmStop(&MODULE_HAL_PWM_BUZZER);                                            \
525
  /* ADC */                                                                   \
526
  adcStop(&MODULE_HAL_ADC_VSYS);                                              \
527
  /* I2C */                                                                   \
528 8be006e0 Thomas Schöpping
  i2cStop(&MODULE_HAL_I2C_SR_PM18_PM33_GAUGEREAR);                            \
529
  i2cStop(&MODULE_HAL_I2C_SR_PM42_PM50_PMVDD_EEPROM_GAUGEFRONT);              \
530 e545e620 Thomas Schöpping
  /* don't stop the serial driver so messages can still be printed */         \
531
}
532
533
/** @} */
534
535
/*===========================================================================*/
536
/**
537 6b53f6bf Thomas Schöpping
 * @name Startup Shutdown Synchronization Protocol (SSSP)
538
 * @{
539
 */
540
/*===========================================================================*/
541
542
/**
543
 * @brief   PD signal GPIO.
544
 */
545 1a8fb642 Thomas Schöpping
#define moduleSsspGpioPD                        moduleGpioSysPd
546 6b53f6bf Thomas Schöpping
547
/**
548 1a8fb642 Thomas Schöpping
 * @brief   S signal GPIO.
549 6b53f6bf Thomas Schöpping
 */
550 1a8fb642 Thomas Schöpping
#define moduleSsspGpioS                         moduleGpioSysSync
551 6b53f6bf Thomas Schöpping
552
/**
553 933df08e Thomas Schöpping
 * @brief   DN signal GPIO.
554
 */
555 1a8fb642 Thomas Schöpping
#define moduleSsspGpioDN                        moduleGpioSysUartDn
556 933df08e Thomas Schöpping
557
/**
558
 * @brief   UP signal GPIO.
559
 */
560 1a8fb642 Thomas Schöpping
#define moduleSsspGpioUP                        moduleGpioSysUartUp
561 933df08e Thomas Schöpping
562
/**
563 1a8fb642 Thomas Schöpping
 * @brief   Event flag for PD signal events.
564 6b53f6bf Thomas Schöpping
 */
565 1a8fb642 Thomas Schöpping
#define MODULE_SSSP_EVENTFLAG_PD                MODULE_OS_GPIOEVENTFLAG_SYSPD
566 6b53f6bf Thomas Schöpping
567
/**
568 1a8fb642 Thomas Schöpping
 * @brief   Event flag for S signal events.
569 6b53f6bf Thomas Schöpping
 */
570 1a8fb642 Thomas Schöpping
#define MODULE_SSSP_EVENTFLAG_S                 MODULE_OS_GPIOEVENTFLAG_SYSSYNC
571 6b53f6bf Thomas Schöpping
572
/**
573 1a8fb642 Thomas Schöpping
 * @brief   Event flag for UP signal events.
574 933df08e Thomas Schöpping
 */
575 1a8fb642 Thomas Schöpping
#define MODULE_SSSP_EVENTFLAG_UP                MODULE_OS_GPIOEVENTFLAG_SYSUARTUP
576 933df08e Thomas Schöpping
577
/**
578 1a8fb642 Thomas Schöpping
 * @brief   Event flag for DN signal events.
579 933df08e Thomas Schöpping
 */
580 1a8fb642 Thomas Schöpping
#define MODULE_SSSP_EVENTFLAG_DN                MODULE_OS_GPIOEVENTFLAG_SYSUARTDN
581 933df08e Thomas Schöpping
582 6b53f6bf Thomas Schöpping
/** @} */
583
584
/*===========================================================================*/
585
/**
586 e545e620 Thomas Schöpping
 * @name Low-level drivers
587
 * @{
588
 */
589
/*===========================================================================*/
590 ddf34c3d Thomas Schöpping
#include <alld_AT24C01B.h>
591
#include <alld_bq241xx.h>
592 e545e620 Thomas Schöpping
#include <alld_bq27500.h>
593 ddf34c3d Thomas Schöpping
#include <alld_INA219.h>
594
#include <alld_LED.h>
595
#include <alld_PKxxxExxx.h>
596
#include <alld_TPS6211x.h>
597 e545e620 Thomas Schöpping
598
/**
599
 * @brief   EEPROM driver.
600
 */
601 ddf34c3d Thomas Schöpping
extern AT24C01BDriver moduleLldEeprom;
602 e545e620 Thomas Schöpping
603
/**
604
 * @brief   Battery charger (front battery) driver.
605
 */
606 ddf34c3d Thomas Schöpping
extern BQ241xxDriver moduleLldBatteryChargerFront;
607 e545e620 Thomas Schöpping
608
/**
609
 * @brief   Battery charger (rear battery) driver.
610
 */
611 ddf34c3d Thomas Schöpping
extern BQ241xxDriver moduleLldBatteryChargerRear;
612 e545e620 Thomas Schöpping
613
/**
614
 * @brief   Fuel gauge (front battery) driver.
615
 */
616
extern BQ27500Driver moduleLldFuelGaugeFront;
617
618
/**
619
 * @brief   Fuel gauge (rear battery) driver.
620
 */
621
extern BQ27500Driver moduleLldFuelGaugeRear;
622
623
/**
624
 * @brief   Power monitor (VDD) driver.
625
 */
626
extern INA219Driver moduleLldPowerMonitorVdd;
627
628
/**
629
 * @brief   Power monitor (VIO 1.8) driver.
630
 */
631
extern INA219Driver moduleLldPowerMonitorVio18;
632
633
/**
634
 * @brief   Power monitor (VIO 3.3) driver.
635
 */
636
extern INA219Driver moduleLldPowerMonitorVio33;
637
638
/**
639
 * @brief   Power monitor (VSYS 4.2) driver.
640
 */
641
extern INA219Driver moduleLldPowerMonitorVsys42;
642
643
/**
644
 * @brief   Power monitor (VIO 5.0) driver.
645
 */
646
extern INA219Driver moduleLldPowerMonitorVio50;
647
648
/**
649
 * @brief   Status LED driver.
650
 */
651
extern LEDDriver moduleLldStatusLed;
652
653
/**
654 8be006e0 Thomas Schöpping
 * @brief   Step down converter driver.
655 ddf34c3d Thomas Schöpping
 * @note    Although there multiple TPS6211x, those are completely identical from driver few (share the same signals).
656 8be006e0 Thomas Schöpping
 */
657 ddf34c3d Thomas Schöpping
extern TPS6211xDriver moduleLldStepDownConverter;
658 8be006e0 Thomas Schöpping
659
#if (BOARD_SENSORRING == BOARD_PROXIMITYSENSOR) || defined(__DOXYGEN__)
660
661 ddf34c3d Thomas Schöpping
#include <alld_MPR121.h>
662
#include <alld_PCA9544A.h>
663
#include <alld_VCNL4020.h>
664 8be006e0 Thomas Schöpping
665
/**
666 e545e620 Thomas Schöpping
 * @brief   Touch sensor driver.
667
 */
668
extern MPR121Driver moduleLldTouch;
669
670
/**
671 8be006e0 Thomas Schöpping
 * @brief   I2C multiplexer (I2C #1) driver.
672 e545e620 Thomas Schöpping
 */
673
extern PCA9544ADriver moduleLldI2cMultiplexer1;
674
675
/**
676 8be006e0 Thomas Schöpping
 * @brief   I2C multiplexer (I2C #2) driver.
677 e545e620 Thomas Schöpping
 */
678
extern PCA9544ADriver moduleLldI2cMultiplexer2;
679
680
/**
681 8be006e0 Thomas Schöpping
 * @brief   Proximity sensor (I2C #1) driver.
682 e545e620 Thomas Schöpping
 */
683
extern VCNL4020Driver moduleLldProximity1;
684
685
/**
686 8be006e0 Thomas Schöpping
 * @brief   Proximity sensor (I2C #2) driver.
687 e545e620 Thomas Schöpping
 */
688
extern VCNL4020Driver moduleLldProximity2;
689
690 7de0cc90 Thomas Schöpping
#endif /* (BOARD_SENSORRING == BOARD_PROXIMITYSENSOR) */
691 8be006e0 Thomas Schöpping
692
#if (BOARD_SENSORRING == BOARD_DISTANCESENSOR_VL53L0X) || defined(__DOXYGEN__)
693 bffb3465 Thomas Schöpping
694 ddf34c3d Thomas Schöpping
#include <alld_PCAL6524.h>
695
#include <alld_AT42QT1050.h>
696 bffb3465 Thomas Schöpping
697
/**
698
 * @brief   GPIO extender (I2C #1) driver.
699
 */
700
extern PCAL6524Driver moduleLldGpioExtender1;
701
702
/**
703
 * @brief   GPIO extender (I2C #2) driver.
704
 */
705
extern PCAL6524Driver moduleLldGpioExtender2;
706
707
/**
708
 * @brief   Touch sensor driver.
709
 */
710
extern AT42QT1050Driver moduleLldTouch;
711
712 7de0cc90 Thomas Schöpping
#endif /* (BOARD_SENSORRING == BOARD_DISTANCESENSOR_VL53L0X) */
713 8be006e0 Thomas Schöpping
714
#if (BOARD_SENSORRING == BOARD_DISTANCESENSOR_VL53L1X) || defined(__DOXYGEN__)
715 bffb3465 Thomas Schöpping
716 ddf34c3d Thomas Schöpping
#include <alld_PCAL6524.h>
717
#include <alld_AT42QT1050.h>
718 bffb3465 Thomas Schöpping
719
/**
720
 * @brief   GPIO extender (I2C #1) driver.
721
 */
722
extern PCAL6524Driver moduleLldGpioExtender1;
723
724
/**
725
 * @brief   GPIO extender (I2C #2) driver.
726
 */
727
extern PCAL6524Driver moduleLldGpioExtender2;
728
729
/**
730
 * @brief   Touch sensor driver.
731
 */
732
extern AT42QT1050Driver moduleLldTouch;
733
734 7de0cc90 Thomas Schöpping
#endif /* (BOARD_SENSORRING == BOARD_DISTANCESENSOR_VL53L1X) */
735 8be006e0 Thomas Schöpping
736 e545e620 Thomas Schöpping
/** @} */
737
738
/*===========================================================================*/
739
/**
740 4c72a54c Thomas Schöpping
 * @name Tests
741 e545e620 Thomas Schöpping
 * @{
742
 */
743
/*===========================================================================*/
744
#if (AMIROOS_CFG_TESTS_ENABLE == true) || defined(__DOXYGEN__)
745
746
/**
747 4c72a54c Thomas Schöpping
 * @brief   ADC test command.
748 e545e620 Thomas Schöpping
 */
749 4c72a54c Thomas Schöpping
extern aos_shellcommand_t moduleTestAdcShellCmd;
750 e545e620 Thomas Schöpping
751
/**
752 4c72a54c Thomas Schöpping
 * @brief   AT24C01BN-SH-B (EEPROM) test command.
753 e545e620 Thomas Schöpping
 */
754 4c72a54c Thomas Schöpping
extern aos_shellcommand_t moduleTestAt24c01bShellCmd;
755 e545e620 Thomas Schöpping
756
/**
757 4c72a54c Thomas Schöpping
 * @brief   bq24103a (battery charger) test command.
758 e545e620 Thomas Schöpping
 */
759 4c72a54c Thomas Schöpping
extern aos_shellcommand_t moduleTestBq241xxShellCmd;
760 e545e620 Thomas Schöpping
761
/**
762 4c72a54c Thomas Schöpping
 * @brief   bq27500 (fuel gauge) test command.
763 e545e620 Thomas Schöpping
 */
764 4c72a54c Thomas Schöpping
extern aos_shellcommand_t moduleTestBq27500ShellCmd;
765 e545e620 Thomas Schöpping
766
/**
767 4c72a54c Thomas Schöpping
 * @brief   bq27500 (fuel gauge) in combination with bq24103a (battery charger) test command.
768 e545e620 Thomas Schöpping
 */
769 4c72a54c Thomas Schöpping
extern aos_shellcommand_t moduleTestBq27500Bq241xxShellCmd;
770 e545e620 Thomas Schöpping
771
/**
772 4c72a54c Thomas Schöpping
 * @brief   INA219 (power monitor) test command.
773 e545e620 Thomas Schöpping
 */
774 4c72a54c Thomas Schöpping
extern aos_shellcommand_t moduleTestIna219ShellCmd;
775 e545e620 Thomas Schöpping
776
/**
777 4c72a54c Thomas Schöpping
 * @brief   Status LED test command.
778 e545e620 Thomas Schöpping
 */
779 4c72a54c Thomas Schöpping
extern aos_shellcommand_t moduleTestLedShellCmd;
780 e545e620 Thomas Schöpping
781
/**
782 4c72a54c Thomas Schöpping
 * @brief   PKLCS1212E4001 (buzzer) test command.
783 e545e620 Thomas Schöpping
 */
784 4c72a54c Thomas Schöpping
extern aos_shellcommand_t moduleTestPkxxxexxxShellCmd;
785 e545e620 Thomas Schöpping
786
/**
787 4c72a54c Thomas Schöpping
 * @brief   TPS62113 (step-down converter) test command.
788 e545e620 Thomas Schöpping
 */
789 4c72a54c Thomas Schöpping
extern aos_shellcommand_t moduleTestTps6211xShellCmd;
790 e545e620 Thomas Schöpping
791
/**
792 4c72a54c Thomas Schöpping
 * @brief   TPS62113 (step-sown converter) in combination with INA219 (power monitor) test command.
793 e545e620 Thomas Schöpping
 */
794 4c72a54c Thomas Schöpping
extern aos_shellcommand_t moduleTestTps6211xIna219ShellCmd;
795 e545e620 Thomas Schöpping
796 8be006e0 Thomas Schöpping
#if (BOARD_SENSORRING == BOARD_PROXIMITYSENSOR) || defined(__DOXYGEN__)
797
798
/**
799 4c72a54c Thomas Schöpping
 * @brief   MPR121 (touch sensor) test command.
800 8be006e0 Thomas Schöpping
 */
801 4c72a54c Thomas Schöpping
extern aos_shellcommand_t moduleTestMpr121ShellCmd;
802 8be006e0 Thomas Schöpping
803
/**
804 4c72a54c Thomas Schöpping
 * @brief   PCA9544A (I2C multiplexer) test command.
805 8be006e0 Thomas Schöpping
 */
806 4c72a54c Thomas Schöpping
extern aos_shellcommand_t moduleTestPca9544aShellCmd;
807 8be006e0 Thomas Schöpping
808 e545e620 Thomas Schöpping
/**
809 4c72a54c Thomas Schöpping
 * @brief   VCNL4020 (proximity sensor) test command.
810 e545e620 Thomas Schöpping
 */
811 4c72a54c Thomas Schöpping
extern aos_shellcommand_t moduleTestVcnl4020ShellCmd;
812 e545e620 Thomas Schöpping
813 7de0cc90 Thomas Schöpping
#endif /* (BOARD_SENSORRING == BOARD_PROXIMITYSENSOR) */
814 8be006e0 Thomas Schöpping
815
#if (BOARD_SENSORRING == BOARD_DISTANCESENSOR_VL53L0X) || defined(__DOXYGEN__)
816 bffb3465 Thomas Schöpping
817
/**
818 4c72a54c Thomas Schöpping
 * @brief   PCAL6524 (GPIO extender) test command.
819 bffb3465 Thomas Schöpping
 */
820 4c72a54c Thomas Schöpping
extern aos_shellcommand_t moduleTestPcal6524ShellCmd;
821 bffb3465 Thomas Schöpping
822
/**
823 4c72a54c Thomas Schöpping
 * @brief   AT42QT1050 (touch sensor) test command.
824 bffb3465 Thomas Schöpping
 */
825 4c72a54c Thomas Schöpping
extern aos_shellcommand_t moduleTestAt42qt1050ShellCmd;
826 bffb3465 Thomas Schöpping
827 7de0cc90 Thomas Schöpping
#endif /* (BOARD_SENSORRING == BOARD_DISTANCESENSOR_VL53L0X) */
828 8be006e0 Thomas Schöpping
829
#if (BOARD_SENSORRING == BOARD_DISTANCESENSOR_VL53L1X) || defined(__DOXYGEN__)
830 bffb3465 Thomas Schöpping
831
/**
832 4c72a54c Thomas Schöpping
 * @brief   PCAL6524 (GPIO extender) test command.
833 bffb3465 Thomas Schöpping
 */
834 4c72a54c Thomas Schöpping
extern aos_shellcommand_t moduleTestPcal6524ShellCmd;
835 bffb3465 Thomas Schöpping
836
/**
837 4c72a54c Thomas Schöpping
 * @brief   AT42QT1050 (touch sensor) test command.
838 bffb3465 Thomas Schöpping
 */
839 4c72a54c Thomas Schöpping
extern aos_shellcommand_t moduleTestAt42qt1050ShellCmd;
840 bffb3465 Thomas Schöpping
841 7de0cc90 Thomas Schöpping
#endif /* (BOARD_SENSORRING == BOARD_DISTANCESENSOR_VL53L1X) */
842 8be006e0 Thomas Schöpping
843 4c72a54c Thomas Schöpping
/**
844
 * @brief   Entire module test command.
845
 */
846
extern aos_shellcommand_t moduleTestAllShellCmd;
847
848 7de0cc90 Thomas Schöpping
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) */
849 e545e620 Thomas Schöpping
850
/** @} */
851
852 6ff06bbf Thomas Schöpping
#endif /* AMIROOS_MODULE_H */
853 53710ca3 Marc Rothmann
854
/** @} */