mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-16 11:21:18 +03:00
Removing O_SYNC from FILE_WRITE mode for the SD File class.
This commit is contained in:
@ -21,7 +21,7 @@
|
|||||||
#include <utility/SdFatUtil.h>
|
#include <utility/SdFatUtil.h>
|
||||||
|
|
||||||
#define FILE_READ O_READ
|
#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 {
|
class File : public Stream {
|
||||||
public:
|
public:
|
||||||
|
Reference in New Issue
Block a user