mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-07 22:46:08 +01:00
67 lines
1.8 KiB
Plaintext
67 lines
1.8 KiB
Plaintext
/*
|
|
* Truncate Example
|
|
*
|
|
* This sketch shows how to use truncate() to remove the last
|
|
* half of the file created by the SdFatAppend.pde example.
|
|
*/
|
|
#include <SdFat.h>
|
|
#include <SdFatUtil.h> // use functions to print strings from flash memory
|
|
|
|
Sd2Card card;
|
|
SdVolume volume;
|
|
SdFile root;
|
|
SdFile file;
|
|
|
|
// store error strings in flash to save RAM
|
|
#define error(s) error_P(PSTR(s))
|
|
|
|
void error_P(const char* str) {
|
|
PgmPrint("error: ");
|
|
SerialPrintln_P(str);
|
|
if (card.errorCode()) {
|
|
PgmPrint("SD error: ");
|
|
Serial.print(card.errorCode(), HEX);
|
|
Serial.print(',');
|
|
Serial.println(card.errorData(), HEX);
|
|
}
|
|
while(1);
|
|
}
|
|
|
|
void setup(void) {
|
|
Serial.begin(9600);
|
|
Serial.println();
|
|
PgmPrintln("Type any character to start");
|
|
while (!Serial.available());
|
|
|
|
// initialize the SD card at SPI_HALF_SPEED to avoid bus errors with
|
|
// breadboards. use SPI_FULL_SPEED for better performance.
|
|
if (!card.init(SPI_HALF_SPEED)) error("card.init failed");
|
|
|
|
// initialize a FAT volume
|
|
if (!volume.init(&card)) error("volume.init failed");
|
|
|
|
// open the root directory
|
|
if (!root.openRoot(&volume)) error("openRoot failed");
|
|
|
|
char name[] = "APPEND.TXT";
|
|
// open for read and write
|
|
if (!file.open(&root, name, O_RDWR)) {
|
|
PgmPrint("Can't open ");
|
|
Serial.println(name);
|
|
PgmPrintln("Run the append example to create the file.");
|
|
error("file.open failed");
|
|
}
|
|
// seek to middle of file
|
|
if (!file.seekSet(file.fileSize()/2)) error("file.seekSet failed");
|
|
// find end of line
|
|
int16_t c;
|
|
while ((c = file.read()) > 0 && c != '\n');
|
|
if (c < 0) error("file.read failed");
|
|
// truncate at current position
|
|
if (!file.truncate(file.curPosition())) error("file.truncate failed");
|
|
Serial.print(name);
|
|
PgmPrintln(" truncated.");
|
|
}
|
|
|
|
void loop(void) {}
|