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 8a7b472 commit 4abf3d5Copy full SHA for 4abf3d5
include/zephyr/dt-bindings/clock/stm32c0_clock.h
@@ -23,9 +23,13 @@
23
/** System clock */
24
/* defined in stm32_common_clocks.h */
25
/** Fixed clocks */
26
-/* Low speed clocks defined in stm32_common_clocks.h */
+/* Low speed clocks defined in stm32_common_clocks.h
27
+ * STM32_SRC_HSI relates to HSI48 clock mentioned in RM0490 Reference Manual
28
+ * STM32_SRC_HSI48 relates to HSIUSB48 mentioned in RM0490 Reference Manual
29
+ */
30
#define STM32_SRC_HSI (STM32_SRC_LSI + 1)
-#define STM32_SRC_HSE (STM32_SRC_HSI + 1)
31
+#define STM32_SRC_HSI48 (STM32_SRC_HSI + 1)
32
+#define STM32_SRC_HSE (STM32_SRC_HSI48 + 1)
33
/** Peripheral bus clock */
34
#define STM32_SRC_PCLK (STM32_SRC_HSE + 1)
35
0 commit comments