pdf-icon

Arduino 上手教程

CoreS3 SD卡

M5CoreS3 SDCard案例程序

案例程序

cpp
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 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
#include <M5CoreS3.h>
#include <SPI.h>
#include <SD.h>
#define SD_SPI_SCK_PIN 36
#define SD_SPI_MISO_PIN 35
#define SD_SPI_MOSI_PIN 37
#define SD_SPI_CS_PIN 4
void listDir(fs::FS &fs, const char *dirname, uint8_t levels);
void createDir(fs::FS &fs, const char *path);
void removeDir(fs::FS &fs, const char *path);
void readFile(fs::FS &fs, const char *path);
void writeFile(fs::FS &fs, const char *path, const char *message);
void appendFile(fs::FS &fs, const char *path, const char *message);
void renameFile(fs::FS &fs, const char *path1, const char *path2);
void deleteFile(fs::FS &fs, const char *path);
void testFileIO(fs::FS &fs, const char *path);
M5Canvas canvas(&CoreS3.Display);
void printf_log(const char *format, ...);
void println_log(const char *str);
void setup() {
CoreS3.begin();
canvas.setColorDepth(1); // mono color
canvas.createSprite(CoreS3.Display.width(), CoreS3.Display.height());
canvas.setPaletteColor(1, GREEN);
canvas.setTextSize((float)canvas.width() / 160);
canvas.setTextScroll(true);
// SD Card Initialization
SPI.begin(SD_SPI_SCK_PIN, SD_SPI_MISO_PIN, SD_SPI_MOSI_PIN, SD_SPI_CS_PIN);
if (!SD.begin(SD_SPI_CS_PIN, SPI, 25000000)) {
// Print a message if the SD card initialization
// fails orif the SD card does not exist.
// 如果SD卡初始化失败或者SD卡不存在,则打印消息.
println_log("Card failed, or not present");
while (1)
;
}
uint8_t cardType = SD.cardType();
if (cardType == CARD_NONE) {
println_log("No SD card attached");
return;
}
Serial.print("SD Card Type: ");
if (cardType == CARD_MMC) {
println_log("MMC");
} else if (cardType == CARD_SD) {
println_log("SDSC");
} else if (cardType == CARD_SDHC) {
println_log("SDHC");
} else {
println_log("UNKNOWN");
}
uint64_t cardSize = SD.cardSize() / (1024 * 1024);
printf_log("SD Card Size: %lluMB\n", cardSize);
listDir(SD, "/", 0);
createDir(SD, "/mydir");
listDir(SD, "/", 0);
removeDir(SD, "/mydir");
listDir(SD, "/", 2);
writeFile(SD, "/hello.txt", "Hello ");
appendFile(SD, "/hello.txt", "World!\n");
readFile(SD, "/hello.txt");
deleteFile(SD, "/foo.txt");
renameFile(SD, "/hello.txt", "/foo.txt");
readFile(SD, "/foo.txt");
testFileIO(SD, "/test.txt");
printf_log("Total space: %lluMB\n", SD.totalBytes() / (1024 * 1024));
printf_log("Used space: %lluMB\n", SD.usedBytes() / (1024 * 1024));
}
void loop() {
}
void listDir(fs::FS &fs, const char *dirname, uint8_t levels) {
printf_log("Listing directory: %s\n", dirname);
File root = fs.open(dirname);
if (!root) {
println_log("Failed to open directory");
return;
}
if (!root.isDirectory()) {
println_log("Not a directory");
return;
}
File file = root.openNextFile();
while (file) {
if (file.isDirectory()) {
Serial.print(" DIR : ");
println_log(file.name());
if (levels) {
listDir(fs, file.path(), levels - 1);
}
} else {
Serial.print(" FILE: ");
Serial.print(file.name());
Serial.print(" SIZE: ");
println_log(String(file.size()).c_str());
}
file = root.openNextFile();
}
}
void createDir(fs::FS &fs, const char *path) {
printf_log("Creating Dir: %s\n", path);
if (fs.mkdir(path)) {
println_log("Dir created");
} else {
println_log("mkdir failed");
}
}
void removeDir(fs::FS &fs, const char *path) {
printf_log("Removing Dir: %s\n", path);
if (fs.rmdir(path)) {
println_log("Dir removed");
} else {
println_log("rmdir failed");
}
}
void readFile(fs::FS &fs, const char *path) {
printf_log("Reading file: %s\n", path);
File file = fs.open(path);
if (!file) {
println_log("Failed to open file for reading");
return;
}
Serial.print("Read from file: ");
while (file.available()) {
Serial.write(file.read());
}
file.close();
}
void writeFile(fs::FS &fs, const char *path, const char *message) {
printf_log("Writing file: %s\n", path);
File file = fs.open(path, FILE_WRITE);
if (!file) {
println_log("Failed to open file for writing");
return;
}
if (file.print(message)) {
println_log("File written");
} else {
println_log("Write failed");
}
file.close();
}
void appendFile(fs::FS &fs, const char *path, const char *message) {
printf_log("Appending to file: %s\n", path);
File file = fs.open(path, FILE_APPEND);
if (!file) {
println_log("Failed to open file for appending");
return;
}
if (file.print(message)) {
println_log("Message appended");
} else {
println_log("Append failed");
}
file.close();
}
void renameFile(fs::FS &fs, const char *path1, const char *path2) {
printf_log("Renaming file %s to %s\n", path1, path2);
if (fs.rename(path1, path2)) {
println_log("File renamed");
} else {
println_log("Rename failed");
}
}
void deleteFile(fs::FS &fs, const char *path) {
printf_log("Deleting file: %s\n", path);
if (fs.remove(path)) {
println_log("File deleted");
} else {
println_log("Delete failed");
}
}
void testFileIO(fs::FS &fs, const char *path) {
File file = fs.open(path);
static uint8_t buf[512];
size_t len = 0;
uint32_t start = millis();
uint32_t end = start;
if (file) {
len = file.size();
size_t flen = len;
start = millis();
while (len) {
size_t toRead = len;
if (toRead > 512) {
toRead = 512;
}
file.read(buf, toRead);
len -= toRead;
}
end = millis() - start;
printf_log("%u bytes read for %lu ms\n", flen, end);
file.close();
} else {
println_log("Failed to open file for reading");
}
file = fs.open(path, FILE_WRITE);
if (!file) {
println_log("Failed to open file for writing");
return;
}
size_t i;
start = millis();
for (i = 0; i < 2048; i++) {
file.write(buf, 512);
}
end = millis() - start;
printf_log("%u bytes written for %lu ms\n", 2048 * 512, end);
file.close();
}
void printf_log(const char *format, ...) {
char buf[256];
va_list args;
va_start(args, format);
vsnprintf(buf, 256, format, args);
va_end(args);
Serial.print(buf);
canvas.printf(buf);
canvas.pushSprite(0, 0);
}
void println_log(const char *str) {
Serial.println(str);
canvas.println(str);
canvas.pushSprite(0, 0);
}
On This Page