ST-Oldie
Results
2
comments of
ST-Oldie
I have additional informations. I took a look in the code and found condition compilation. ``` #if defined(ARDUINO_ARCH_ESP32) && !defined(PREFER_SDFAT_LIBRARY) size_t bytesRead = file.readBytes(buffer, len); #else size_t bytesRead = file.read(buffer,...
One additional question: Is the check for the architectuer really needed? I got the feeling, fs:File::read has on all platforms a uint8_t * as first parameter. So i thought, using...