SDInterface.h 309 B

123456789101112131415161718192021222324
  1. #ifndef SDInterface_h
  2. #define SDInterface_h
  3. #include "SD.h"
  4. #define SD_CS 12
  5. class SDInterface {
  6. private:
  7. public:
  8. uint8_t cardType;
  9. uint64_t cardSizeBT;
  10. uint64_t cardSizeKB;
  11. uint64_t cardSizeMB;
  12. uint64_t cardSizeGB;
  13. bool supported = false;
  14. bool initSD();
  15. };
  16. #endif