// SD:// - Secure Digital Card File System // https://en.wikipedia.org/wiki/SD_card // https://github.com/arduino-libraries/SD // #ifndef TEST_NATIVE #ifndef MEATLOAF_DEVICE_SD #define MEATLOAF_DEVICE_SD #include "meat_io.h" #include "flash.h" #include "fnFsSD.h" #include "peoples_url_parser.h" #include #include #define _filesystem fnSDFAT /******************************************************** * MFileSystem ********************************************************/ class SDFileSystem: public MFileSystem { private: MFile* getFile(std::string path) override { PeoplesUrlParser *url = PeoplesUrlParser::parseURL( path ); std::string basepath = fnSDFAT.basepath(); basepath += std::string("/"); //Debug_printv("basepath[%s] url.path[%s]", basepath.c_str(), url.path.c_str()); return new FlashFile( url->path ); } bool handles(std::string name) { std::string pattern = "sd:"; return mstr::equals(name, pattern, false); } public: SDFileSystem(): MFileSystem("sd") {}; }; #endif // MEATLOAF_DEVICE_SD #endif // TEST_NATIVE