Merge pull request #13336 from arendst/revert-13335-esp32_nopsram

Revert "ESP32 restore GPIO16/17 if no PSRAM was found"
This commit is contained in:
s-hadinger 2021-10-11 22:34:22 +02:00 committed by GitHub
commit 71b5e8c999
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 8 deletions

View File

@ -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

View File

@ -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();