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
|
@ -107,6 +107,18 @@ public:
|
||||||
return "";
|
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 {
|
const char* name() const {
|
||||||
return "<internal>";
|
return "<internal>";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue