Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
4556403
Add a FAT filesystem for SD cards to Arduino FS
earlephilhower Dec 19, 2018
1b95e5d
Add a FSConfig and SDFSConfig param to FS.begin()
Jan 2, 2019
241d0ff
Add FS::setConfig to set FS-specific options
Jan 3, 2019
2b49e7a
Merge branch 'master' into SDFS
earlephilhower Jan 9, 2019
7fcbfdc
Fix platformio.sh test skipping merge error
Jan 9, 2019
a4dadb2
Merge branch 'master' into SDFS
earlephilhower Jan 16, 2019
edd9476
Fix merge error with SPIFFS_MOCK
earlephilhower Jan 17, 2019
9a82f00
Merge branch 'master' into SDFS
earlephilhower Jan 18, 2019
dc977b0
Merge branch 'master' into SDFS
earlephilhower Jan 28, 2019
ef2374c
Update to fix SPI transferBytes issue
earlephilhower Jan 28, 2019
c8acb84
Add ::truncate to File interface
earlephilhower Jan 28, 2019
d215b66
Merge branch 'master' into SDFS
earlephilhower Feb 1, 2019
ce148dd
Merge branch 'master' of https://github.com/esp8266/Arduino into SDFS
earlephilhower Feb 8, 2019
0a0bbc4
Merge branch 'master' into SDFS
earlephilhower Feb 8, 2019
652415d
Merge branch 'master' into SDFS
d-a-v Feb 18, 2019
85946ee
Merge branch 'master' into SDFS
d-a-v Feb 21, 2019
6b0a3f4
Update comments and MAX_PATH to 260
earlephilhower Feb 25, 2019
69bebd7
Merge branch 'master' into SDFS
earlephilhower Feb 25, 2019
1bc7377
Use polledTimeout for formatting yields, cleanup
earlephilhower Feb 27, 2019
cc3cc70
Add assert on illegal file open mode
earlephilhower Feb 27, 2019
e0c26bd
Merge branch 'master' into SDFS
earlephilhower Feb 27, 2019
35ec9ec
Make setConfig take const& ref, cleaner code
earlephilhower Feb 27, 2019
e53f26c
Merge branch 'master' into SDFS
devyte Mar 6, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into SDFS
  • Loading branch information
earlephilhower authored Jan 16, 2019
commit a4dadb23cb2c09bf210589fb4ea4df3b4ee19ce7
2 changes: 1 addition & 1 deletion tests/host/fs/test_fs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ TEST_CASE("SDFS checks the config object passed in", "[fs]")

TEST_CASE("FS can begin","[fs]")
{
SPIFFS_MOCK_DECLARE(64, 8, 512, false);
SPIFFS_MOCK_DECLARE(64, 8, 512, "");
SPIFFSConfig cfg;
cfg.setAutoFormat(false);
SPIFFS.setConfig(&cfg);
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.