We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e22ca6b commit 8c37252Copy full SHA for 8c37252
include/zephyr/dt-bindings/clock/stm32c0_clock.h
@@ -24,8 +24,11 @@
24
/* defined in stm32_common_clocks.h */
25
/** Fixed clocks */
26
/* Low speed clocks defined in stm32_common_clocks.h */
27
+/* STM32_SRC_HSI relates to HSI48 clock mentioned in RM0490 Reference Manual */
28
#define STM32_SRC_HSI (STM32_SRC_LSI + 1)
-#define STM32_SRC_HSE (STM32_SRC_HSI + 1)
29
+/* STM32_SRC_HSI48 relates to HSIUSB48 mentioned in RM0490 Reference Manual */
30
+#define STM32_SRC_HSI48 (STM32_SRC_HSI + 1)
31
+#define STM32_SRC_HSE (STM32_SRC_HSI48 + 1)
32
/** Peripheral bus clock */
33
#define STM32_SRC_PCLK (STM32_SRC_HSE + 1)
34
0 commit comments