Closed KurtE closed 2 years ago
We do not use SDFat, bur FATFS from ESP-IDF: https://github.com/espressif/esp-idf/tree/master/components/fatfs
Thanks @me-no-dev
Understand personally wish that you actually had the stuff as part of your FS.h such as we have done for the Teensy boards. where our File and FileImpl classes have new added methods:
virtual bool getCreateTime(DateTimeFields &tm) { return false; }
virtual bool getModifyTime(DateTimeFields &tm) { return false; }
virtual bool setCreateTime(const DateTimeFields &tm) { return false; }
virtual bool setModifyTime(const DateTimeFields &tm) { return false; }
And our SD library as well as our LittleFS were updated to support these...
Now back to playing
Related area
SD
Hardware specification
no - but playing with Sparkfun ESP32 Micromod and Thing Plus
Is your feature request related to a problem?
I am playing around with porting some code from a Teensy 4.x that uses their SD library support and noticed that the ESP32 code does not have the newer date and time methods that were added to the SDFat github project. Which include:
And likewise the method to update them
Describe the solution you'd like
Add in the newer mthods
Describe alternatives you've considered
No response
Additional context
No response
I have checked existing list of Feature requests and the Contribution Guide