|
- /*
- * This sketch is a simple Print benchmark.
- */
- #include <SPI.h>
- #include <SdFat.h>
- #include <SdFatUtil.h>
-
- // SD chip select pin
- const uint8_t chipSelect = SS;
-
- // number of lines to print
- const uint16_t N_PRINT = 20000;
-
- // file system
- SdFat sd;
-
- // test file
- SdFile file;
-
- // Serial output stream
- ArduinoOutStream cout(Serial);
- //------------------------------------------------------------------------------
- // store error strings in flash to save RAM
- #define error(s) sd.errorHalt(F(s))
- //------------------------------------------------------------------------------
- void setup() {
- Serial.begin(9600);
- while (!Serial) {
- // wait for Leonardo
- }
- }
- //------------------------------------------------------------------------------
- void loop() {
- uint32_t maxLatency;
- uint32_t minLatency;
- uint32_t totalLatency;
-
- while (Serial.read() >= 0) {
- }
- // pstr stores strings in flash to save RAM
- cout << pstr("Type any character to start\n");
- while (Serial.read() <= 0) {
- }
- delay(400); // catch Due reset problem
-
- cout << pstr("Free RAM: ") << FreeRam() << endl;
-
- // initialize the SD card at SPI_FULL_SPEED for best performance.
- // try SPI_HALF_SPEED if bus errors occur.
- if (!sd.begin(chipSelect, SPI_FULL_SPEED)) sd.initErrorHalt();
-
- cout << pstr("Type is FAT") << int(sd.vol()->fatType()) << endl;
-
- cout << pstr("Starting print test. Please wait.\n\n");
-
- // do write test
- for (int test = 0; test < 6; test++) {
- char fileName[13] = "BENCH0.TXT";
- fileName[5] = '0' + test;
- // open or create file - truncate existing file.
- if (!file.open(fileName, O_CREAT | O_TRUNC | O_RDWR)) {
- error("open failed");
- }
- maxLatency = 0;
- minLatency = 999999;
- totalLatency = 0;
- switch(test) {
- case 0:
- cout << pstr("Test of println(uint16_t)\n");
- break;
-
- case 1:
- cout << pstr("Test of printField(uint16_t, char)\n");
- break;
-
- case 2:
- cout << pstr("Test of println(uint32_t)\n");
- break;
-
- case 3:
- cout << pstr("Test of printField(uint32_t, char)\n");
- break;
- case 4:
- cout << pstr("Test of println(float)\n");
- break;
-
- case 5:
- cout << pstr("Test of printField(float, char)\n");
- break;
- }
-
- uint32_t t = millis();
- for (uint16_t i = 0; i < N_PRINT; i++) {
- uint32_t m = micros();
-
- switch(test) {
- case 0:
- file.println(i);
- break;
-
- case 1:
- file.printField(i, '\n');
- break;
-
- case 2:
- file.println(12345678UL + i);
- break;
-
- case 3:
- file.printField(12345678UL + i, '\n');
- break;
-
- case 4:
- file.println((float)0.01*i);
- break;
-
- case 5:
- file.printField((float)0.01*i, '\n');
- break;
- }
- if (file.getWriteError()) {
- error("write failed");
- }
- m = micros() - m;
- if (maxLatency < m) maxLatency = m;
- if (minLatency > m) minLatency = m;
- totalLatency += m;
- }
- file.close();
- t = millis() - t;
- double s = file.fileSize();
- cout << pstr("Time ") << 0.001*t << pstr(" sec\n");
- cout << pstr("File size ") << 0.001*s << pstr(" KB\n");
- cout << pstr("Write ") << s/t << pstr(" KB/sec\n");
- cout << pstr("Maximum latency: ") << maxLatency;
- cout << pstr(" usec, Minimum Latency: ") << minLatency;
- cout << pstr(" usec, Avg Latency: ");
- cout << totalLatency/N_PRINT << pstr(" usec\n\n");
- }
- cout << pstr("Done!\n\n");
- }
|