1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/nucleo-l4r5zi:PWM config: Kconfig, Makefile.features, periph_conf.h

This commit is contained in:
krzysztof-cabaj 2023-10-31 21:04:27 +01:00
parent c05200d779
commit b88b53b1f3
3 changed files with 7 additions and 0 deletions

View File

@ -18,6 +18,7 @@ config BOARD_NUCLEO_L4R5ZI
select HAS_PERIPH_ADC
select HAS_PERIPH_I2C
select HAS_PERIPH_LPUART
select HAS_PERIPH_PWM
select HAS_PERIPH_RTC
select HAS_PERIPH_RTT
select HAS_PERIPH_SPI

View File

@ -5,6 +5,7 @@ CPU_MODEL = stm32l4r5zi
FEATURES_PROVIDED += periph_adc
FEATURES_PROVIDED += periph_i2c
FEATURES_PROVIDED += periph_lpuart
FEATURES_PROVIDED += periph_pwm
FEATURES_PROVIDED += periph_rtc
FEATURES_PROVIDED += periph_rtt
FEATURES_PROVIDED += periph_spi

View File

@ -167,6 +167,11 @@ static const adc_conf_t adc_config[] = {
/** @} */
static const pwm_conf_t pwm_config[] = {{},};
#define PWM_NUMOF ARRAY_SIZE(pwm_config)
#ifdef __cplusplus
}
#endif