File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
nanoFirmwareFlasher.Library Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -246,10 +246,19 @@ public Esp32DeviceInfo GetDeviceDetails(
246246 // FEATHER_S2's have PSRAM, so don't even bother
247247 psramIsAvailable = PSRamAvailability . Yes ;
248248 }
249+ else if ( name . Contains ( "ESP32-C3" )
250+ || name . Contains ( "ESP32-S3" ) )
251+ {
252+ // all ESP32-C3/S3 SDK config have support for PSRAM, so don't even bother
253+ psramIsAvailable = PSRamAvailability . Undetermined ;
254+ }
249255 else
250256 {
251257 // if a target name wasn't provided, check for PSRAM
252- if ( targetName == null )
258+ // except for ESP32_C3 and S3
259+ if ( targetName == null
260+ && ! name . Contains ( "ESP32-C3" )
261+ && ! name . Contains ( "ESP32-S3" ) )
253262 {
254263 psramIsAvailable = FindPSRamAvailable ( ) ;
255264 }
You can’t perform that action at this time.
0 commit comments