SDInterface.h 329 B

12345678910111213141516171819202122232425
  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. String card_sz;
  15. bool initSD();
  16. };
  17. #endif