mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-27 18:02:17 +03:00
Make FILE_WRITE append in SD.h wrapper (#6106)
* Make FILE_WRITE append in SD.h wrapper Fixes #6105 * Update host tests
This commit is contained in:
committed by
GitHub
parent
25c95ac185
commit
968d6fcb0a
@ -27,7 +27,7 @@
|
||||
#undef FILE_READ
|
||||
#define FILE_READ sdfat::O_READ
|
||||
#undef FILE_WRITE
|
||||
#define FILE_WRITE (sdfat::O_READ | sdfat::O_WRITE | sdfat::O_CREAT)
|
||||
#define FILE_WRITE (sdfat::O_READ | sdfat::O_WRITE | sdfat::O_CREAT | sdfat::O_APPEND)
|
||||
|
||||
class SDClass {
|
||||
public:
|
||||
|
Reference in New Issue
Block a user