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: README.md
+7-2
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,20 @@
1
1
# Arduino ESP32 filesystem uploader
2
2
3
-
Arduino plugin which packs sketch data folder into SPIFFS filesystem image,
3
+
Arduino plugin which packs sketch data folder into SPIFFS or LittleFS filesystem image,
4
4
and uploads the image to ESP32 flash memory.
5
+
</br> You can use either LITTLEFS or SPIFFS but not both simultaneously on given Arduino project.
5
6
6
7
## Installation
7
8
8
9
- Make sure you use one of the supported versions of Arduino IDE and have ESP32 core installed.
9
10
- Download the tool archive from [releases page](https://github.com/me-no-dev/arduino-esp32fs-plugin/releases/latest).
10
11
- In your Arduino sketchbook directory, create tools directory if it doesn't exist yet.
11
12
- Unpack the tool into tools directory (the path will look like ```<home_dir>/Arduino/tools/ESP32FS/tool/esp32fs.jar```).
13
+
- If not already installed, for LITTLEFS you need an additional [mklittlefs tool](https://github.com/earlephilhower/mklittlefs) Download the [release](https://github.com/earlephilhower/mklittlefs/releases) and copy it to
14
+
packages\esp32\tools\mkspiffs\<mklittlefs rev. x.x.x>\ or on checkout (dev) environment to: packages\esp32\hardware\esp32\<release>\tools\mklittlefs\
12
15
- Restart Arduino IDE.
13
16
17
+
14
18
On the OS X create the tools directory in ~/Documents/Arduino/ and unpack the files there
15
19
16
20
## Usage
@@ -20,8 +24,9 @@ On the OS X create the tools directory in ~/Documents/Arduino/ and unpack the fi
20
24
- Create a directory named `data` and any files you want in the file system there.
21
25
- Make sure you have selected a board, port, and closed Serial Monitor.
22
26
- Select *Tools > ESP32 Sketch Data Upload* menu item. This should start uploading the files into ESP32 flash file system.
27
+
- When prompted, select SPIFFS or LITTLEFS image you want to make from your data folder.
23
28
24
-
When done, IDE status bar will display SPIFFS Image Uploaded message. Might take a few minutes for large file system sizes.
29
+
When done, IDE status bar will display SPIFFS or LITTLEFS Image Uploaded message. Might take a few minutes for large file system sizes.
0 commit comments