mirror of https://github.com/arendst/Tasmota.git
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:
parent
1832c4b2f0
commit
9f23151f78
|
@ -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>";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue