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 97b8cb4a5fdbdc9707195132a257a2710530e822 Author: Matteo Golin <[email protected]> AuthorDate: Fri Jan 16 14:37:39 2026 -0500 boards/nucleo-g474re: 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/stm32/nucleo-g474re/configs/lpuartnsh/defconfig | 1 + boards/arm/stm32/nucleo-g474re/configs/nsh/defconfig | 1 + boards/arm/stm32/nucleo-g474re/configs/usbserial/defconfig | 1 + 3 files changed, 3 insertions(+) diff --git a/boards/arm/stm32/nucleo-g474re/configs/lpuartnsh/defconfig b/boards/arm/stm32/nucleo-g474re/configs/lpuartnsh/defconfig index 84c67bf02da..47b0057c2a0 100644 --- a/boards/arm/stm32/nucleo-g474re/configs/lpuartnsh/defconfig +++ b/boards/arm/stm32/nucleo-g474re/configs/lpuartnsh/defconfig @@ -19,6 +19,7 @@ CONFIG_ARCH_RAMVECTORS=y CONFIG_ARCH_STACKDUMP=y CONFIG_ARMV7M_LIBM=y CONFIG_ARMV7M_MEMCPY=y +CONFIG_BOARD_LOOPSPERMSEC=0 CONFIG_DEBUG_FEATURES=y CONFIG_DEBUG_SYMBOLS=y CONFIG_INIT_ENTRYPOINT="nsh_main" diff --git a/boards/arm/stm32/nucleo-g474re/configs/nsh/defconfig b/boards/arm/stm32/nucleo-g474re/configs/nsh/defconfig index a2a5586682c..6eb718bf7b8 100644 --- a/boards/arm/stm32/nucleo-g474re/configs/nsh/defconfig +++ b/boards/arm/stm32/nucleo-g474re/configs/nsh/defconfig @@ -19,6 +19,7 @@ CONFIG_ARCH_RAMVECTORS=y CONFIG_ARCH_STACKDUMP=y CONFIG_ARMV7M_LIBM=y CONFIG_ARMV7M_MEMCPY=y +CONFIG_BOARD_LOOPSPERMSEC=0 CONFIG_DEBUG_FEATURES=y CONFIG_DEBUG_SYMBOLS=y CONFIG_INIT_ENTRYPOINT="nsh_main" diff --git a/boards/arm/stm32/nucleo-g474re/configs/usbserial/defconfig b/boards/arm/stm32/nucleo-g474re/configs/usbserial/defconfig index c3227e4c57b..aaeffaccab3 100644 --- a/boards/arm/stm32/nucleo-g474re/configs/usbserial/defconfig +++ b/boards/arm/stm32/nucleo-g474re/configs/usbserial/defconfig @@ -19,6 +19,7 @@ CONFIG_ARCH_RAMVECTORS=y CONFIG_ARCH_STACKDUMP=y CONFIG_ARMV7M_LIBM=y CONFIG_ARMV7M_MEMCPY=y +CONFIG_BOARD_LOOPSPERMSEC=0 CONFIG_CDCACM=y CONFIG_DEBUG_FEATURES=y CONFIG_DEBUG_HARDFAULT_INFO=y
