1
0
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:
David A. Mellis 2011-02-25 18:44:43 -05:00
parent 8c0fdf1e43
commit cc954c3570

View File

@ -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: