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 40e5379c88d902b85d96cfeda91c9488f76d9dd3 Author: Matteo Golin <[email protected]> AuthorDate: Fri Jan 16 14:36:47 2026 -0500 boards/phy6222: 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/phy62xx/phy6222/configs/nsh/defconfig | 1 + boards/arm/phy62xx/phy6222/configs/phy_sbp/defconfig | 1 + 2 files changed, 2 insertions(+) diff --git a/boards/arm/phy62xx/phy6222/configs/nsh/defconfig b/boards/arm/phy62xx/phy6222/configs/nsh/defconfig index 111813de55a..db3518b2947 100644 --- a/boards/arm/phy62xx/phy6222/configs/nsh/defconfig +++ b/boards/arm/phy62xx/phy6222/configs/nsh/defconfig @@ -19,6 +19,7 @@ CONFIG_ARCH_CHIP="phy62xx" CONFIG_ARCH_CHIP_PHY6222=y CONFIG_ARCH_CHIP_PHY62XX=y CONFIG_BOARD_LATE_INITIALIZE=y +CONFIG_BOARD_LOOPSPERMSEC=0 CONFIG_DEBUG_FULLOPT=y CONFIG_DEBUG_SYMBOLS=y CONFIG_DEFAULT_SMALL=y diff --git a/boards/arm/phy62xx/phy6222/configs/phy_sbp/defconfig b/boards/arm/phy62xx/phy6222/configs/phy_sbp/defconfig index f8cdce8113f..1924502479e 100644 --- a/boards/arm/phy62xx/phy6222/configs/phy_sbp/defconfig +++ b/boards/arm/phy62xx/phy6222/configs/phy_sbp/defconfig @@ -40,6 +40,7 @@ CONFIG_ARCH_CHIP="phy62xx" CONFIG_ARCH_CHIP_PHY6222=y CONFIG_ARCH_CHIP_PHY62XX=y CONFIG_BOARD_LATE_INITIALIZE=y +CONFIG_BOARD_LOOPSPERMSEC=0 CONFIG_BUILTIN=y CONFIG_DEBUG_FULLOPT=y CONFIG_DEBUG_SYMBOLS=y
