mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-20 21:01:25 +03:00
Removed unused constants
This commit is contained in:
@ -21,9 +21,6 @@
|
|||||||
|
|
||||||
#include <Process.h>
|
#include <Process.h>
|
||||||
|
|
||||||
//#define FILE_READ O_READ
|
|
||||||
//#define FILE_WRITE (O_READ | O_WRITE | O_CREAT)
|
|
||||||
|
|
||||||
#define FILE_READ 0
|
#define FILE_READ 0
|
||||||
#define FILE_WRITE 1
|
#define FILE_WRITE 1
|
||||||
#define FILE_APPEND 2
|
#define FILE_APPEND 2
|
||||||
@ -50,10 +47,10 @@ public:
|
|||||||
const char * name();
|
const char * name();
|
||||||
|
|
||||||
boolean isDirectory(void);
|
boolean isDirectory(void);
|
||||||
//File openNextFile(uint8_t mode = O_RDONLY);
|
File openNextFile(uint8_t mode = FILE_READ);
|
||||||
void rewindDirectory(void);
|
void rewindDirectory(void);
|
||||||
|
|
||||||
using Print::write;
|
//using Print::write;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void doBuffer();
|
void doBuffer();
|
||||||
|
Reference in New Issue
Block a user