This repository has been archived by the owner on Aug 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 161
/
sd.h
126 lines (116 loc) · 3.46 KB
/
sd.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
bool sdcardMounted = false;
#if defined(SDCARD)
#include <FS.h>
#include <SD.h>
#include <SPI.h>
#if defined(CARDPUTER)
SPIClass* sdcardSPI = NULL;
#else
SPIClass sdcardSPI;
#endif
SemaphoreHandle_t sdcardSemaphore;
void appendToFile(fs::FS& fs, const char* path, const char* text) {
if (xSemaphoreTake(sdcardSemaphore, portMAX_DELAY) == pdTRUE) {
File file = fs.open(path, FILE_APPEND);
if (!file) {
Serial.println("Failed to open file for appending");
xSemaphoreGive(sdcardSemaphore);
return;
}
Serial.printf("Appending text '%s' to file: %s\n", text, path);
if (file.println(text)) {
Serial.println("Text appended");
} else {
Serial.println("Append failed");
}
file.close();
xSemaphoreGive(sdcardSemaphore);
}
}
#endif
bool setupSdCard() {
#if defined(SDCARD)
sdcardSemaphore = xSemaphoreCreateMutex();
#if defined (CARDPUTER)
sdcardSPI = new SPIClass(FSPI);
sdcardSPI->begin(SD_CLK_PIN, SD_MISO_PIN, SD_MOSI_PIN, SD_CS_PIN);
#else
sdcardSPI.begin(SD_CLK_PIN, SD_MISO_PIN, SD_MOSI_PIN, SD_CS_PIN); // start SPI communications
#endif
delay(10);
#if defined (CARDPUTER)
if (!SD.begin(SD_CS_PIN, *sdcardSPI)) {
sdcardSPI->end();
#else
if (!SD.begin(SD_CS_PIN, sdcardSPI)) { //excluded * -> poiter indicator -
sdcardSPI.end(); // Closes SPI connections and release pin header.
#endif
Serial.println("Failed to mount SDCARD");
return false;
} else {
Serial.println("SDCARD mounted successfully");
sdcardMounted = true;
return true;
}
#else
return false;
#endif
}
#if defined(SDCARD)
#ifndef CARDPUTER
void ToggleSDCard()
{
rstOverride = true;
isSwitching = true;
uint8_t cardType = NULL;
uint64_t cardSize = NULL;
current_proc=1;
DISP.fillScreen(BGCOLOR);
DISP.setCursor(5, 1);
if (sdcardMounted == true) {
sdcardMounted = false;
uint8_t cardType = 0;
uint64_t cardSize = 0;
SD.end();
sdcardSPI.end(); // Closes SPI connections and release pins.
DISP.println("SD Card Unmouted..");
DISP.println("pin header released.");
Serial.println("SD Card Unmounted...");
} else {
sdcardSPI.begin(SD_CLK_PIN, SD_MISO_PIN, SD_MOSI_PIN, SD_CS_PIN);
delay(10);
if (!SD.begin(SD_CS_PIN, sdcardSPI)) {
Serial.println("Card Mount Failed");
DISP.println("Card Mount Failed");
sdcardSPI.end();
} else {
//
sdcardMounted = true;
uint8_t cardType = SD.cardType();
if (cardType == CARD_NONE) {
DISP.println("None SD Card");
Serial.println("None SD Card");
}
DISP.print("SD Card Type: ");
if (cardType == CARD_MMC) {
DISP.println("MMC");
Serial.println("MMC");
} else if (cardType == CARD_SD) {
DISP.println("SDSC");
Serial.println("SDSC");
} else if (cardType == CARD_SDHC) {
DISP.println("SDHC");
Serial.println("SDHC");
} else {
DISP.println("UNKNOWN");
Serial.println("UNKNOWN");
}
uint64_t cardSize = SD.cardSize() / (1024 * 1024);
DISP.printf("SD Card Size: %lluMB\n", cardSize);
Serial.printf("SD Card Size: %lluMB\n", cardSize);
}
}
delay(1500);
}
#endif
#endif