mirror of https://github.com/arendst/Tasmota.git
Merge pull request #15366 from s-hadinger/zip_fs_prep_arduino
Prepare for Arduino PR #6569
This commit is contained in:
commit
be18aaae18
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue