We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b51ef07 commit fee9640Copy full SHA for fee9640
src/ESP32FS.java
@@ -409,15 +409,15 @@ private void createAndUpload(){
409
410
public void run() {
411
String sketchName = editor.getSketch().getName();
412
- Object[] options = { "SPIFFS", "LittleFS", "FatFS" };
+ Object[] options = { "LittleFS", "SPIFFS", "FatFS" };
413
typefs = (String)JOptionPane.showInputDialog(editor,
414
"Select FS for " + sketchName +
415
" /data folder",
416
"Filesystem",
417
JOptionPane.PLAIN_MESSAGE,
418
null,
419
options,
420
- "SPIFFS");
+ "LittleFS");
421
if ((typefs != null) && (typefs.length() > 0)) {
422
createAndUpload();
423
} else {
0 commit comments