| 54 | static SerialFlashFile open(const char *filename); |
| 55 | static bool create(const char *filename, uint32_t length, uint32_t align = 0); |
| 56 | static bool createErasable(const char *filename, uint32_t length) { |
| 57 | return create(filename, length, blockSize()); |
| 58 | } |
| 59 | static bool exists(const char *filename); |
| 60 | static bool remove(const char *filename); |
| 61 | static bool remove(SerialFlashFile &file); |
nothing calls this directly
no outgoing calls
no test coverage detected