74 lines
1.8 KiB
C++
74 lines
1.8 KiB
C++
/*
|
|
SD card file dump
|
|
|
|
This example shows how to read a file from the SD card using the
|
|
SD library and send it over the serial port.
|
|
|
|
The circuit:
|
|
SD card attached to SPI bus as follows:
|
|
** MISO - pin 4
|
|
** MOSI - pin 7
|
|
** CS - pin 5
|
|
** SCK - pin 6
|
|
|
|
created 22 December 2010
|
|
by Limor Fried
|
|
modified 9 Apr 2012
|
|
by Tom Igoe
|
|
|
|
This example code is in the public domain.
|
|
|
|
*/
|
|
|
|
// This are GP pins for SPI0 on the Raspberry Pi Pico board, and connect
|
|
// to different *board* level pinouts. Check the PCB while wiring.
|
|
// Only certain pins can be used by the SPI hardware, so if you change
|
|
// these be sure they are legal or the program will crash.
|
|
// See: https://datasheets.raspberrypi.com/picow/PicoW-A4-Pinout.pdf
|
|
const int _MISO = 4;
|
|
const int _MOSI = 7;
|
|
const int _CS = 5;
|
|
const int _SCK = 6;
|
|
|
|
#include <SPI.h>
|
|
#include <SD.h>
|
|
|
|
void setup() {
|
|
// Open serial communications and wait for port to open:
|
|
Serial.begin(115200);
|
|
|
|
Serial.print("Initializing SD card...");
|
|
|
|
// Ensure the SPI pinout the SD card is connected to is configured properly
|
|
SPI.setRX(_MISO);
|
|
SPI.setTX(_MOSI);
|
|
SPI.setSCK(_SCK);
|
|
|
|
// see if the card is present and can be initialized:
|
|
if (!SD.begin(_CS)) {
|
|
Serial.println("Card failed, or not present");
|
|
// don't do anything more:
|
|
return;
|
|
}
|
|
Serial.println("card initialized.");
|
|
|
|
// open the file. note that only one file can be open at a time,
|
|
// so you have to close this one before opening another.
|
|
File dataFile = SD.open("datalog.txt");
|
|
|
|
// if the file is available, write to it:
|
|
if (dataFile) {
|
|
while (dataFile.available()) {
|
|
Serial.write(dataFile.read());
|
|
}
|
|
dataFile.close();
|
|
}
|
|
// if the file isn't open, pop up an error:
|
|
else {
|
|
Serial.println("error opening datalog.txt");
|
|
}
|
|
}
|
|
|
|
void loop() {
|
|
}
|
|
|