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

boards/stm32l476g-disco: add initial PWM config

This commit is contained in:
krzysztof-cabaj 2024-08-05 16:07:04 +02:00
parent 340caa83af
commit b2ef0c67d7
2 changed files with 10 additions and 0 deletions

View File

@ -3,6 +3,7 @@ CPU_MODEL = stm32l476vg
# Put defined MCU peripherals here (in alphabetical order)
FEATURES_PROVIDED += periph_adc
FEATURES_PROVIDED += periph_pwm
FEATURES_PROVIDED += periph_rtc
FEATURES_PROVIDED += periph_rtt
FEATURES_PROVIDED += periph_timer

View File

@ -129,6 +129,15 @@ static const adc_conf_t adc_config[] = {
#define ADC_NUMOF ARRAY_SIZE(adc_config)
/** @} */
/**
* @name PWM configuration
* @{
*/
static const pwm_conf_t pwm_config[] = {{}};
#define PWM_NUMOF ARRAY_SIZE(pwm_config)
/** @} */
#ifdef __cplusplus
}
#endif