Fix tasmota32-zbbrdgpro compile with core 2.0.6 (#17496)

* Fix tasmota32-zbbrdgpro compile with core 2.0.6

* only ESP32
This commit is contained in:
Jason2866 2022-12-23 20:03:58 +01:00 committed by GitHub
parent 1832c4b2f0
commit 9f23151f78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 1 deletions

View File

@ -27,7 +27,7 @@
/********************************************************************
** Subfile implementation
**
**
** Takes a string point in Flash and turn it to a read-only file
********************************************************************/
@ -107,6 +107,18 @@ public:
return "";
}
#ifdef ESP32
#if ESP_ARDUINO_VERSION > ESP_ARDUINO_VERSION_VAL(2, 0, 5)
bool seekDir(long position){
// ignore
}
String getNextFileName(void)
{
// ignore
}
#endif
#endif // ESP32
const char* name() const {
return "<internal>";
}