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-apps.git
commit 82ee1ffbd63230fdec0f3e24c7410fc22eeaf0f7 Author: Eren Terzioglu <[email protected]> AuthorDate: Thu Dec 19 09:20:26 2024 +0100 system/nxdiag: Make espressif specific option appear when espressif devices selected --- system/nxdiag/Kconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/system/nxdiag/Kconfig b/system/nxdiag/Kconfig index e9d16d425..22f17e573 100644 --- a/system/nxdiag/Kconfig +++ b/system/nxdiag/Kconfig @@ -70,12 +70,14 @@ comment "Vendor specific information" config SYSTEM_NXDIAG_ESPRESSIF bool "Espressif" + depends on ARCH_CHIP_ESP32 || ARCH_CHIP_ESP32S2 || ARCH_CHIP_ESP32S3 || ARCH_CHIP_ESP32C3 || ARCH_CHIP_ESP32C6 || ARCH_CHIP_ESP32H2 default n ---help--- Enable Espressif-specific information and checks. config SYSTEM_NXDIAG_ESPRESSIF_CHIP bool "Espressif Chip" + depends on ARCH_CHIP_ESP32 || ARCH_CHIP_ESP32S2 || ARCH_CHIP_ESP32S3 || ARCH_CHIP_ESP32C3 || ARCH_CHIP_ESP32C6 || ARCH_CHIP_ESP32H2 default n ---help--- Enable Espressif-specific information about chip. Chip must be connected during build process.
