This commit is contained in:
2026-02-12 21:00:02 -08:00
parent 77f8236347
commit 8bdbf227ca
1141 changed files with 1010880 additions and 2 deletions

View File

@@ -0,0 +1,83 @@
#define AUDIOBOARD_SD
#include "AudioTools.h"
#include "AudioTools/Disk/VFS_SDSPI.h"
#include "AudioTools/Disk/VFSFile.h"
#define PIN_AUDIO_KIT_SD_CARD_CS 13
#define PIN_AUDIO_KIT_SD_CARD_MISO 2
#define PIN_AUDIO_KIT_SD_CARD_MOSI 15
#define PIN_AUDIO_KIT_SD_CARD_CLK 14
const size_t max_len = 1024 * 100;
uint8_t *data = nullptr;
int len[] = { 1, 5, 10, 25, 100, 256, 512, 1024, 1024 * 10, 1024 * 100 };
size_t totalSize = 1024 * 1024 * 1;
const char* test_file = "/test.txt";
void testWrite(Stream& file, int writeSize, int totalSize) {
memset(data, 0, max_len);
int32_t start = millis();
while (totalSize > 0) {
int written = file.write(data, min(writeSize, totalSize));
//Serial.println(written);
//assert(written > 0);
totalSize -= written;
}
}
void testRead(Stream& file, int readSize, int totalSize) {
memset(data, 0, max_len);
while (totalSize > 0) {
int read = file.readBytes(data, min(readSize, totalSize));
//assert(read>0);
totalSize -= read;
}
}
void logTime(uint32_t start, int i, const char* name, const char* op) {
int32_t time = millis() - start;
float thru = (float)totalSize / (float)time / 1000.0;
Serial.printf("%s, %s, %d, %d, %f\n", op, name, i, time, thru);
}
template<typename SD, typename Open>
void testFS(const char* name, SD& sd, Open write, Open read) {
while (!sd.begin()) {
Serial.print(name);
Serial.println(" error");
delay(1000);
}
for (int i : len) {
int32_t start = millis();
auto file = sd.open(test_file, write);
file.seek(0);
assert(file);
testWrite(file, i, totalSize);
file.close();
logTime(start, i, name, "Write");
}
for (int i : len) {
int32_t start = millis();
auto file = sd.open(test_file, read);
assert(file);
testRead(file, i, totalSize);
file.close();
logTime(start, i, name, "Read");
}
sd.end();
}
void setup() {
Serial.begin(115200);
VFS_SDSPI sd;
data = new uint8_t[max_len];
assert(data!=nullptr);
testFS<VFS_SDSPI, FileMode>("VFS_SDSPI", sd, VFS_FILE_WRITE, VFS_FILE_READ);
//testFS<VFS_SDMMC, FileMode>("VFS_SDMMC", sdmmc, VFS_FILE_WRITE, VFS_FILE_READ);
}
void loop() {}

View File

@@ -0,0 +1,22 @@
Write, VFS_SDSPI, 1, 3046, 0.344247
Write, VFS_SDSPI, 5, 2949, 0.355570
Write, VFS_SDSPI, 10, 2931, 0.357754
Write, VFS_SDSPI, 25, 2926, 0.358365
Write, VFS_SDSPI, 100, 2920, 0.359101
Write, VFS_SDSPI, 256, 2925, 0.358488
Write, VFS_SDSPI, 512, 2912, 0.360088
Write, VFS_SDSPI, 1024, 2925, 0.358488
Write, VFS_SDSPI, 10240, 2925, 0.358488
Write, VFS_SDSPI, 102400, 2928, 0.358120
Read, VFS_SDSPI, 1, 2500, 0.419430
Read, VFS_SDSPI, 5, 1521, 0.689399
Read, VFS_SDSPI, 10, 1398, 0.750054
Read, VFS_SDSPI, 25, 1324, 0.791976
Read, VFS_SDSPI, 100, 1287, 0.814744
Read, VFS_SDSPI, 256, 1169, 0.896985
Read, VFS_SDSPI, 512, 1127, 0.930413
Read, VFS_SDSPI, 1024, 936, 1.120274
Read, VFS_SDSPI, 10240, 665, 1.576806
Read, VFS_SDSPI, 102400, 639, 1.640964