mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-29 10:24:12 +01:00
Removing O_SYNC from FILE_WRITE mode for the SD File class.
This commit is contained in:
parent
8c0fdf1e43
commit
cc954c3570
@ -21,7 +21,7 @@
|
||||
#include <utility/SdFatUtil.h>
|
||||
|
||||
#define FILE_READ O_READ
|
||||
#define FILE_WRITE (O_READ | O_WRITE | O_CREAT | O_SYNC)
|
||||
#define FILE_WRITE (O_READ | O_WRITE | O_CREAT)
|
||||
|
||||
class File : public Stream {
|
||||
private:
|
||||
|
Loading…
Reference in New Issue
Block a user