Skip to content

Commit

Permalink
update to FILE-WRITE flags
Browse files Browse the repository at this point in the history
  • Loading branch information
newdigate committed Oct 5, 2024
1 parent a676740 commit 21bdbe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SD.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#define BUILTIN_SDCARD 254

#define FILE_READ O_READ
#define FILE_WRITE ( O_WRITE | O_CREAT)
#define FILE_WRITE (O_READ | O_WRITE | O_CREAT | O_APPEND)
namespace SDLib {
class File;
class SDClass;
Expand Down

0 comments on commit 21bdbe8

Please sign in to comment.