You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: nanoFirmwareFlasher.Library/EspTool.cs
+15-4Lines changed: 15 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -249,10 +249,21 @@ public Esp32DeviceInfo GetDeviceDetails(
249
249
}
250
250
elseif(_chipType=="esp32s3")
251
251
{
252
-
// For now assuming all S3 have PSRAM.
253
-
// TODO: following https://github.com/espressif/esptool/issues/970
254
-
// The download mode register is not cleared so a reset/run command does not work on the S3. We should retest this after depending on what will be the fix for that issue.
255
-
psramIsAvailable=PSRamAvailability.Undetermined;
252
+
// check device features for PSRAM mention and size
253
+
// features should look like this: "Features WiFi, BLE, Embedded PSRAM 8MB (AP_3v3)"
0 commit comments