This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push: new 78dffd72f8 arch/arm/stm32f7: Add missing RCC include 78dffd72f8 is described below commit 78dffd72f89b96bc57d0dde589a284ce29308c54 Author: Alessio Tudisco <apb...@gmail.com> AuthorDate: Thu Jun 12 00:16:42 2025 +0200 arch/arm/stm32f7: Add missing RCC include Adds "stm32_rcc.h" include into "stm32_capture.c" to fix the compile error related to undeclared RCC stuff. --- arch/arm/src/stm32f7/stm32_capture.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/src/stm32f7/stm32_capture.c b/arch/arm/src/stm32f7/stm32_capture.c index ea3784ff85..4609c84fbf 100644 --- a/arch/arm/src/stm32f7/stm32_capture.c +++ b/arch/arm/src/stm32f7/stm32_capture.c @@ -41,6 +41,7 @@ #include "arm_internal.h" #include "stm32_gpio.h" #include "stm32_capture.h" +#include "stm32_rcc.h" /**************************************************************************** * Private Types