@@ -269,6 +269,8 @@ private void createAndUpload(){
269
269
}
270
270
}
271
271
}
272
+ System .out .println ("mk" + typefs .toLowerCase () + " : " + tool .getAbsolutePath ());
273
+ System .out .println ();
272
274
273
275
//make sure the serial port or IP is defined
274
276
if (serialPort == null || serialPort .isEmpty ()) {
@@ -286,6 +288,8 @@ private void createAndUpload(){
286
288
editor .statusError (typefs + " Error: espota not found!" );
287
289
return ;
288
290
}
291
+ System .out .println ("espota : " +espota .getAbsolutePath ());
292
+ System .out .println ();
289
293
} else {
290
294
String esptoolCmd = "esptool" +toolExtension ;
291
295
esptool = new File (platform .getFolder ()+"/tools" , esptoolCmd );
@@ -300,8 +304,10 @@ private void createAndUpload(){
300
304
}
301
305
}
302
306
}
307
+ System .out .println ("esptool : " +esptool .getAbsolutePath ());
308
+ System .out .println ();
303
309
}
304
-
310
+
305
311
//load a list of all files
306
312
int fileCount = 0 ;
307
313
File dataFolder = new File (editor .getSketch ().getFolder (), "data" );
@@ -380,7 +386,7 @@ private void createAndUpload(){
380
386
381
387
public void run () {
382
388
String sketchName = editor .getSketch ().getName ();
383
- Object [] options = { "LITTLEFS " , "SPIFFS" , };
389
+ Object [] options = { "LittleFS " , "SPIFFS" , };
384
390
int result = JOptionPane .showOptionDialog (editor ,
385
391
"What FS you want for " + sketchName +
386
392
" data folder?" ,
0 commit comments