This is an automated email from the ASF dual-hosted git repository.

raiden00 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git

commit fa80408a06f94b6062a9c4126d6681bedc1ca6b0
Author: Daniel P. Carvalho <[email protected]>
AuthorDate: Wed Jun 26 10:30:08 2024 -0300

    arch/stm32: PLL clock is not available for HRTIM clock source on STM32G47XX 
devices (STM32F3XXX only).
---
 arch/arm/src/stm32/Kconfig | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/arm/src/stm32/Kconfig b/arch/arm/src/stm32/Kconfig
index acd4bcbce3..d467ed69c3 100644
--- a/arch/arm/src/stm32/Kconfig
+++ b/arch/arm/src/stm32/Kconfig
@@ -1536,6 +1536,7 @@ config STM32_STM32F33XX
        select ARCH_CORTEXM4
        select ARCH_HAVE_FPU
        select STM32_HAVE_HRTIM1
+       select STM32_HAVE_HRTIM1_PLLCLK
        select STM32_HAVE_COMP2
        select STM32_HAVE_COMP4
        select STM32_HAVE_COMP6
@@ -8104,9 +8105,14 @@ config STM32_HRTIM_FAULT4
 
 endif # STM32_HRTIM_FAULTS
 
+config STM32_HAVE_HRTIM1_PLLCLK
+       bool
+       default n
+
 config STM32_HRTIM_CLK_FROM_PLL
        bool "HRTIM Clock from PLL"
        default n
+       depends on STM32_HAVE_HRTIM1_PLLCLK
        ---help---
                Set PLL as the clock source for HRTIM.
                This configuration requires the following conditions:

Reply via email to