We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent beab304 commit 6c9fa7fCopy full SHA for 6c9fa7f
src/utility/SdFat.h
@@ -40,6 +40,20 @@ class SdVolume;
40
//==============================================================================
41
// SdFile class
42
43
+#ifdef O_RDONLY //ARDUINO_ARCH_MBED
44
+#undef O_READ
45
+#undef O_RDONLY
46
+#undef O_WRITE
47
+#undef O_WRONLY
48
+#undef O_RDWR
49
+#undef O_ACCMODE
50
+#undef O_APPEND
51
+#undef O_SYNC
52
+#undef O_CREAT
53
+#undef O_EXCL
54
+#undef O_TRUNC
55
+#endif
56
+
57
// flags for ls()
58
/** ls() flag to print modify date */
59
uint8_t const LS_DATE = 1;
0 commit comments