8000 Make FILE_WRITE append in SD.h wrapper by earlephilhower · Pull Request #6106 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Make FILE_WRITE append in SD.h wrapper #6106

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 17, 2019
Merged
Changes from 1 commit
Commits
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
Next Next commit
Make FILE_WRITE append in SD.h wrapper
Fixes #6105
  • Loading branch information
earlephilhower committed May 16, 2019
commit 356f4083d4f7159c6d47d8206fb1e3c0efea60e0
2 changes: 1 addition & 1 deletion libraries/SD/src/SD.h
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
0