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
+8-3Lines changed: 8 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -247,12 +247,17 @@ public Esp32DeviceInfo GetDeviceDetails(
247
247
// these series doesn't have PSRAM
248
248
psramIsAvailable=PSRamAvailability.No;
249
249
}
250
+
elseif(_chipType=="esp32s3")
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.
0 commit comments