From c03884837c68bb41fad075a5bfded928f9c34117 Mon Sep 17 00:00:00 2001 From: s-hadinger <49731213+s-hadinger@users.noreply.github.com> Date: Mon, 11 Oct 2021 22:33:45 +0200 Subject: [PATCH] Revert "ESP32 restore GPIO16/17 if no PSRAM was found" --- CHANGELOG.md | 1 - tasmota/tasmota.ino | 7 ------- 2 files changed, 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b24ca3798..5045a43ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,6 @@ All notable changes to this project will be documented in this file. - Berry add module ``import persist`` - Support for BL0942 energy monitor (#13259) - Support for HM330X SeedStudio Grove Particule sensor (#13250) -- ESP32 restore GPIO16/17 if no PSRAM was found ### Breaking Changed - ESP32 LVGL updated to v8.0.2 diff --git a/tasmota/tasmota.ino b/tasmota/tasmota.ino index 95c707405..7a89ea689 100644 --- a/tasmota/tasmota.ino +++ b/tasmota/tasmota.ino @@ -222,13 +222,6 @@ void setup(void) { #endif #endif -#ifdef CONFIG_IDF_TARGET_ESP32 - // restore GPIO16/17 if no PSRAM is found - if (!FoundPSRAM()) { - gpio_reset_pin(GPIO_NUM_16); - gpio_reset_pin(GPIO_NUM_17); - } -#endif RtcPreInit(); SettingsInit();