mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
1fd9913293
Let boards only define the port and pin number of each LEDs. The common definitions in `stm32_leds.h` will provide `LED<x>_ON`, `LED<x>_OFF`, `LED<x>_TOGGLE`, `LED<x>_PIN`, `LED<x>_MASK` and `LED<x>_PORT`. In addition to code de-duplication, this also makes it easier to use LEDs in GPIO LL, which can be beneficial for super low overhead debugging output - e.g. when a bug is timing sensitive and `DEBUG()` would spent to much time for stdio to reproduce a bug.
92 lines
2.0 KiB
C
92 lines
2.0 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_NUM PORT_B
|
|
|
|
#define LED1_PIN_NUM 9
|
|
#define LED1_PORT_NUM PORT_B
|
|
|
|
#define LED2_PIN_NUM 11
|
|
#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 */
|
|
/** @} */
|