Skip to content

Commit e031022

Browse files
committed
Removing O_SYNC from FILE_WRITE mode for the SD File class.
1 parent 13e3ba8 commit e031022

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/SD/SD.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include <utility/SdFatUtil.h>
2222

2323
#define FILE_READ O_READ
24-
#define FILE_WRITE (O_READ | O_WRITE | O_CREAT | O_SYNC)
24+
#define FILE_WRITE (O_READ | O_WRITE | O_CREAT)
2525

2626
class File : public Stream {
2727
public:

0 commit comments

Comments
 (0)