We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b10c8b commit 8fe0efeCopy full SHA for 8fe0efe
cores/esp32/esp32-hal-psram.c
@@ -67,8 +67,10 @@ bool psramInit(){
67
spiramFailed = true;
68
log_w("PSRAM init failed!");
69
#if CONFIG_IDF_TARGET_ESP32
70
- pinMatrixOutDetach(16, false, false);
71
- pinMatrixOutDetach(17, false, false);
+ if (pkg_ver != EFUSE_RD_CHIP_VER_PKG_ESP32PICOD4) {
+ pinMatrixOutDetach(16, false, false);
72
+ pinMatrixOutDetach(17, false, false);
73
+ }
74
#endif
75
return false;
76
}
0 commit comments