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: cores/esp8266/spiffs/README.md
+13-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
# SPIFFS (SPI Flash File System)
2
-
**V0.3.4**
2
+
**V0.3.5**
3
3
4
4
Copyright (c) 2013-2016 Peter Andersson (pelleplutt1976 at gmail.com)
5
5
@@ -37,6 +37,7 @@ What spiffs does not:
37
37
- It is not a realtime stack. One write operation might take much longer than another.
38
38
- Poor scalability. Spiffs is intended for small memory devices - the normal sizes for SPI flashes. Going beyond ~128MB is probably a bad idea. This is a side effect of the design goal to use as little ram as possible.
39
39
- Presently, it does not detect or handle bad blocks.
40
+
- One configuration, one binary. There's no generic spiffs binary that handles all types of configurations.
40
41
41
42
42
43
## MORE INFO
@@ -49,6 +50,17 @@ For a generic spi flash driver, see [this](https://github.com/pellepl/spiflash_d
49
50
50
51
## HISTORY
51
52
53
+
### 0.3.5
54
+
- Fixed a bug in fs check
55
+
- API returns actual error codes #84) (thanks @Nails)
56
+
- Fix compiler warnings for non-gcc #83#81 (thanks @Nails)
57
+
- Unable to recover from full fs #82 (thanks @rojer)
58
+
- Define SPIFFS_O_* flags #80
59
+
- Problem with long filenames #79 (thanks @psjg)
60
+
- Duplicate file name bug fix #74 (thanks @igrr)
61
+
- SPIFFS_eof and SPIFFS_tell return wrong value #72 (thanks @ArtemPisarenko)
62
+
- Bunch of testframe updates #77#78#86 (thanks @dpreussner, @psjg a.o)
0 commit comments