Skip to content

Commit 590b6ae

Browse files
singular0770cfriedt
authored andcommitted
boards: st: nucleo_g431kb: fix lptim1 domain clock
The domain clock configuration for lptim1 node in nucleo_g431kb.dts has a conflict between the source and the peripheral. The source is specified as STM32_SRC_LSI - low speed internal, but `LPTIM1_SEL(3)` will actually configure the low speed external clock as the source, which the Nucleo G431KB does not have. Update this to actually use the LSI clock. See RM0440 Rev 9 page 322 - LPTIM1SEL[1:0] for more details. Signed-off-by: Michael Estes <[email protected]>
1 parent e9e6b81 commit 590b6ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

boards/st/nucleo_g431kb/nucleo_g431kb.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
stm32_lp_tick_source: &lptim1 {
5555
clocks = <&rcc STM32_CLOCK(APB1, 31)>,
56-
<&rcc STM32_SRC_LSI LPTIM1_SEL(3)>;
56+
<&rcc STM32_SRC_LSI LPTIM1_SEL(1)>;
5757
status = "okay";
5858
};
5959

0 commit comments

Comments
 (0)