25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
229 B

  1. #include "Config.h"
  2. #if BACKUP_ENABLE_SDCARD
  3. #include "SdCard.h"
  4. namespace hardware {
  5. namespace sdcard {
  6. SdFat filesystem;
  7. bool available = false;
  8. void setup() {
  9. available = filesystem.begin(SD_SS);
  10. }
  11. }
  12. }
  13. #endif