Merge pull request #14445 from jeromecoutant/PR_WB_WATCHDOG

STM32WB/STM32WL: watchdog LSI frequency
pull/14495/head
Anna Bridge 2021-03-29 11:23:42 +01:00 committed by GitHub
commit 616f0b7387
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -137,9 +137,9 @@ watchdog_features_t hal_watchdog_get_platform_features(void)
features.clock_max_frequency = 47000;
#elif defined(STM32F0) || defined(STM32F3)
features.clock_max_frequency = 50000;
#elif defined(STM32H7) || defined(STM32L4) || defined(STM32WB) || defined(STM32WL)
#elif defined(STM32H7) || defined(STM32L4)
features.clock_max_frequency = 33600;
#elif defined(STM32G0) || defined(STM32L5) || defined(STM32G4)
#elif defined(STM32G0) || defined(STM32L5) || defined(STM32G4) || defined(STM32WB) || defined(STM32WL)
features.clock_max_frequency = 34000;
#else
#error "unsupported target"