This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 6e8016e6c611a20224d94ac3c40cfc59f8269b97 Author: Matteo Golin <[email protected]> AuthorDate: Fri Jan 16 14:38:50 2026 -0500 boards/nucleo-wl55jc: Set LOOPSPERMSEC=0 to avoid build errors This board does not have a calibrated LOOPSPERMSEC value despite needing one in order for correct operation. This commits sets the value to 0 so that CI builds may pass, but users who build this board will see a warning indicate the steps for calibrating a new value. Signed-off-by: Matteo Golin <[email protected]> --- boards/arm/stm32wl5/nucleo-wl55jc/configs/demo/defconfig | 1 + boards/arm/stm32wl5/nucleo-wl55jc/configs/fb/defconfig | 1 + boards/arm/stm32wl5/nucleo-wl55jc/configs/nsh/defconfig | 1 + 3 files changed, 3 insertions(+) diff --git a/boards/arm/stm32wl5/nucleo-wl55jc/configs/demo/defconfig b/boards/arm/stm32wl5/nucleo-wl55jc/configs/demo/defconfig index 38f878be55e..57b1b50fe7a 100644 --- a/boards/arm/stm32wl5/nucleo-wl55jc/configs/demo/defconfig +++ b/boards/arm/stm32wl5/nucleo-wl55jc/configs/demo/defconfig @@ -31,6 +31,7 @@ CONFIG_ARCH_CHIP="stm32wl5" CONFIG_ARCH_CHIP_STM32WL55JC_CPU1=y CONFIG_ARCH_CHIP_STM32WL5=y CONFIG_ARCH_IRQBUTTONS=y +CONFIG_BOARD_LOOPSPERMSEC=0 CONFIG_BUILTIN=y CONFIG_EXAMPLES_BUTTONS=y CONFIG_EXAMPLES_LEDS=y diff --git a/boards/arm/stm32wl5/nucleo-wl55jc/configs/fb/defconfig b/boards/arm/stm32wl5/nucleo-wl55jc/configs/fb/defconfig index ef22e3b6134..4e2a5ac5c54 100644 --- a/boards/arm/stm32wl5/nucleo-wl55jc/configs/fb/defconfig +++ b/boards/arm/stm32wl5/nucleo-wl55jc/configs/fb/defconfig @@ -15,6 +15,7 @@ CONFIG_ARCH_CHIP="stm32wl5" CONFIG_ARCH_CHIP_STM32WL55JC_CPU1=y CONFIG_ARCH_CHIP_STM32WL5=y CONFIG_BOARD_LATE_INITIALIZE=y +CONFIG_BOARD_LOOPSPERMSEC=0 CONFIG_BUILTIN=y CONFIG_DRIVERS_VIDEO=y CONFIG_EXAMPLES_FB=y diff --git a/boards/arm/stm32wl5/nucleo-wl55jc/configs/nsh/defconfig b/boards/arm/stm32wl5/nucleo-wl55jc/configs/nsh/defconfig index d991a697c8e..9318532b4a1 100644 --- a/boards/arm/stm32wl5/nucleo-wl55jc/configs/nsh/defconfig +++ b/boards/arm/stm32wl5/nucleo-wl55jc/configs/nsh/defconfig @@ -13,6 +13,7 @@ CONFIG_ARCH_BUTTONS=y CONFIG_ARCH_CHIP="stm32wl5" CONFIG_ARCH_CHIP_STM32WL55JC_CPU1=y CONFIG_ARCH_CHIP_STM32WL5=y +CONFIG_BOARD_LOOPSPERMSEC=0 CONFIG_INIT_ENTRYNAME="main" CONFIG_INIT_ENTRYPOINT="nsh_main" CONFIG_LPUART1_SERIAL_CONSOLE=y
