Prepare for Arduino PR #6569

This commit is contained in:
Stephan Hadinger 2022-04-13 19:15:20 +02:00
parent 942c2e9806
commit 2c12266b1b

View File

@ -171,6 +171,9 @@ public:
operator bool() {
return (bool) _f;
}
bool setBufferSize(size_t size) {
return true;
}
protected:
File _f;
@ -226,6 +229,10 @@ public:
// do nothing
}
bool setBufferSize(size_t size) {
return true;
}
bool seek(uint32_t pos, SeekMode mode) {
// AddLog(LOG_LEVEL_DEBUG, "ZIP: seek pos=%i mode=%i", pos, mode);
if (SeekSet == mode) {