We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1869835 commit 1faff22Copy full SHA for 1faff22
system/STM32WBxx/stm32wbxx_hal_conf_default.h
@@ -151,7 +151,11 @@ extern "C" {
151
* This value is used by the UART, RTC HAL module to compute the system frequency
152
*/
153
#if !defined (LSE_VALUE)
154
-#define LSE_VALUE (32768UL) /*!< Value of the External oscillator in Hz*/
+#if defined(STM32WB5Mxx)
155
+#define LSE_VALUE (32774UL) /*!< Value of the LSE oscillator in Hz */
156
+#else
157
+#define LSE_VALUE (32768UL) /*!< Value of the LSE oscillator in Hz */
158
+#endif /* STM32WB5Mxx */
159
#endif /* LSE_VALUE */
160
161
/**
0 commit comments