mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
97b91b4f8f
This fixes a race in `LED<NUM>_TOGGLE`, which is a read-copy-write operation. Any access to a GPIO pin on the same GPIO port that happens concurrently could result in data corruption. Using the GPIO LL API, which is thread-safe, fixes the issue. Note: The used GPIO LL functions will work even in when the GPIO LL module is not used.
95 lines
2.2 KiB
C
95 lines
2.2 KiB
C
/*
|
|
* Copyright (C) 2021 Freie Universität Berlin
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup boards_nucleo-wl55jc
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Pin definitions and board configuration options
|
|
*
|
|
* @author Akshai M <akshai.m@fu-berlin.de>
|
|
* @author Hauke Petersen <devel@haukepetersen.de>
|
|
*/
|
|
|
|
#ifndef BOARD_H
|
|
#define BOARD_H
|
|
|
|
#include "board_nucleo.h"
|
|
|
|
/* Required for `nucleo_wl55jc_sx126x_set_rf_mode` */
|
|
#if IS_USED(MODULE_SX126X_STM32WL)
|
|
#include "sx126x.h"
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @name Sub-GHz radio (LoRa) configuration
|
|
* @{
|
|
*/
|
|
#define SX126X_PARAM_SPI (SPI_DEV(0))
|
|
|
|
#if IS_USED(MODULE_SX126X_STM32WL)
|
|
extern void nucleo_wl55jc_sx126x_set_rf_mode(sx126x_t *dev, sx126x_rf_mode_t rf_mode);
|
|
#define SX126X_PARAM_SET_RF_MODE_CB nucleo_wl55jc_sx126x_set_rf_mode
|
|
#define SX126X_PARAM_TYPE SX126X_TYPE_STM32WL
|
|
#endif
|
|
/** @} */
|
|
|
|
/**
|
|
* @name LED pin definitions and handlers
|
|
* @{
|
|
*/
|
|
#define LED0_PIN_NUM 15
|
|
#define LED0_PORT GPIO_PORT_B /**< GPIO port of LED 0 */
|
|
#define LED0_PORT_NUM PORT_B
|
|
|
|
#define LED1_PIN_NUM 9
|
|
#define LED1_PORT GPIO_PORT_B /**< GPIO port of LED 1 */
|
|
#define LED1_PORT_NUM PORT_B
|
|
|
|
#define LED2_PIN_NUM 11
|
|
#define LED2_PORT GPIO_PORT_B /**< GPIO port of LED 2 */
|
|
#define LED2_PORT_NUM PORT_B
|
|
/** @} */
|
|
|
|
/**
|
|
* @name User button
|
|
* @{
|
|
*/
|
|
#define BTN0_PIN GPIO_PIN(PORT_A, 0)
|
|
#define BTN0_MODE GPIO_IN_PU
|
|
#define BTN1_PIN GPIO_PIN(PORT_A, 1)
|
|
#define BTN1_MODE GPIO_IN_PU
|
|
#define BTN2_PIN GPIO_PIN(PORT_C, 6)
|
|
#define BTN2_MODE GPIO_IN_PU
|
|
/** @} */
|
|
|
|
/**
|
|
* @name RF 3-port switch (SP3T) control
|
|
*
|
|
* Refer Section 6.6.3 RF Overview in User Manual (UM2592)
|
|
* @{
|
|
*/
|
|
#define FE_CTRL1 GPIO_PIN(PORT_C, 4)
|
|
#define FE_CTRL2 GPIO_PIN(PORT_C, 5)
|
|
#define FE_CTRL3 GPIO_PIN(PORT_C, 3)
|
|
/** @} */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#include "stm32_leds.h"
|
|
|
|
#endif /* BOARD_H */
|
|
/** @} */
|