From 12ebacf1a7e84ed0473673636ac04e9c0b1fe1b5 Mon Sep 17 00:00:00 2001 From: proddy Date: Sun, 23 Nov 2025 14:13:29 +0100 Subject: [PATCH] typo --- src/core/system.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/system.cpp b/src/core/system.cpp index c5668450a..6c84befcd 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -2317,11 +2317,11 @@ void System::set_valid_system_gpios() { // get free gpios based on board/platform type #if CONFIG_IDF_TARGET_ESP32C3 // https://www.wemos.cc/en/latest/c3/c3_mini.html - valid_gpios_ = string_range_to_vector("0-10"); + valid_system_gpios_ = string_range_to_vector("0-10"); #elif CONFIG_IDF_TARGET_ESP32S2 - valid_gpios_ = string_range_to_vector("0-14, 19, 20, 21, 33-38, 45, 46"); + valid_system_gpios_ = string_range_to_vector("0-14, 19, 20, 21, 33-38, 45, 46"); #elif CONFIG_IDF_TARGET_ESP32S3 - valid_gpios_ = string_range_to_vector("0-14, 17, 18, 21, 33-38, 45, 46"); + valid_system_gpios_ = string_range_to_vector("0-14, 17, 18, 21, 33-38, 45, 46"); #elif CONFIG_IDF_TARGET_ESP32 || defined(EMSESP_STANDALONE) valid_system_gpios_ = string_range_to_vector("0-2, 4, 5, 12-19, 23, 25-27, 32-39"); #else