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 6d092be2b13415ab3c9bc356bfa3d9f54e137168 Author: Matteo Golin <[email protected]> AuthorDate: Fri Jan 16 14:39:56 2026 -0500 boards/tms570ls31x-usb-kit: 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/tms570/tms570ls31x-usb-kit/configs/nsh/defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/boards/arm/tms570/tms570ls31x-usb-kit/configs/nsh/defconfig b/boards/arm/tms570/tms570ls31x-usb-kit/configs/nsh/defconfig index 0bb37c363e5..41b021a1ab0 100644 --- a/boards/arm/tms570/tms570ls31x-usb-kit/configs/nsh/defconfig +++ b/boards/arm/tms570/tms570ls31x-usb-kit/configs/nsh/defconfig @@ -17,6 +17,7 @@ CONFIG_ARCH_INTERRUPTSTACK=2048 CONFIG_ARCH_IRQBUTTONS=y CONFIG_ARCH_LOWVECTORS=y CONFIG_ARCH_STACKDUMP=y +CONFIG_BOARD_LOOPSPERMSEC=0 CONFIG_BUILTIN=y CONFIG_ELF=y CONFIG_FAT_LCNAMES=y
