From bd1af716fc180ab012dee45e0ed71c0811d0f8a8 Mon Sep 17 00:00:00 2001 From: Alexey Gerenkov Date: Tue, 21 Sep 2021 23:43:12 +0300 Subject: [PATCH] example/gcov: Adds support for esp32s2, esp32s3, esp32c3 and esp32h2 --- examples/system/gcov/main/Kconfig.projbuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/system/gcov/main/Kconfig.projbuild b/examples/system/gcov/main/Kconfig.projbuild index 09f282c826..7fe6fb784e 100644 --- a/examples/system/gcov/main/Kconfig.projbuild +++ b/examples/system/gcov/main/Kconfig.projbuild @@ -2,13 +2,13 @@ menu "Example Configuration" config BLINK_GPIO int "Blink GPIO number" - range 0 34 + range 0 48 + default 8 if IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32H2 + default 18 if IDF_TARGET_ESP32S2 + default 48 if IDF_TARGET_ESP32S3 default 5 help - GPIO number (IOxx) to blink on and off. - + GPIO number (IOxx) to blink on and off or the RMT signal for the addressable LED. Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used to blink. - GPIOs 35-39 are input-only so cannot be used as outputs. - endmenu