Skip to content

Commit f78b698

Browse files
committed
Added message to show found espota, esptool and mklittlefs binaries path.
1 parent c45492b commit f78b698

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/ESP32LittleFS.java

+6
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,8 @@ private void createAndUpload(){
265265
}
266266
}
267267
}
268+
System.out.println("mklittlefs : " + tool.getAbsolutePath());
269+
System.out.println();
268270

269271
//make sure the serial port or IP is defined
270272
if (serialPort == null || serialPort.isEmpty()) {
@@ -282,6 +284,8 @@ private void createAndUpload(){
282284
editor.statusError("LITTLEFS Error: espota not found!");
283285
return;
284286
}
287+
System.out.println("espota : "+espota.getAbsolutePath());
288+
System.out.println();
285289
} else {
286290
String esptoolCmd = "esptool"+toolExtension;
287291
esptool = new File(platform.getFolder()+"/tools", esptoolCmd);
@@ -296,6 +300,8 @@ private void createAndUpload(){
296300
}
297301
}
298302
}
303+
System.out.println("esptool : "+esptool.getAbsolutePath());
304+
System.out.println();
299305
}
300306

301307
//load a list of all files

src/bin/esp32littlefs.jar

62 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)