1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-22 21:23:07 +03:00
Earle F. Philhower, III b5560759ec
Re-add original SD FAT info access methods (#6092)
Fixes #6081

The SD rewrite blanked out some of the internal FAT info.. Restore the
function calls and return proper values.

Because size() is used in many printf()s, we can't just change its
return type to uint64.  Instead, when size is > size-max warn.

Add SD.size64 which can be used by new apps who care about >4GB cards.
Prints a warning if debugging enabled
2019-05-19 08:43:23 -07:00
..

Arduino "class SD" shim wrapper

This is a simple wrapper class to replace the ancient Arduino SD.h access method for SD cards. It calls the underlying SDFS and the latest SdFat lib to do all the work, and is now compatible with the rest of the ESP8266 filesystem things.

-Earle F. Philhower, III earlephilhower@yahoo.com