a58cb05f2c
Also, more clean-up
87 lines
1.6 KiB
C
87 lines
1.6 KiB
C
/*
|
|
* fs.c
|
|
*/
|
|
|
|
#include <stddef.h>
|
|
#include "fs.h"
|
|
#include "fatfs/ff.h"
|
|
|
|
static FATFS fs;
|
|
|
|
int mountSD()
|
|
{
|
|
if (f_mount(&fs, "0:", 1) != FR_OK) {
|
|
//printF("Failed to mount SD card!");
|
|
return 1;
|
|
}
|
|
//printF("Mounted SD card");
|
|
return 0;
|
|
}
|
|
|
|
int fileReadOffset(u8 *dest, const char *path, u32 size, u32 offset){
|
|
FRESULT fr;
|
|
FIL fp;
|
|
unsigned int br = 0;
|
|
|
|
fr = f_open(&fp, path, FA_READ);
|
|
if (fr != FR_OK)goto error;
|
|
|
|
if (!size) size = f_size(&fp);
|
|
if (offset) {
|
|
fr = f_lseek(&fp, offset);
|
|
if (fr != FR_OK) goto error;
|
|
}
|
|
|
|
fr = f_read(&fp, dest, size, &br);
|
|
if (fr != FR_OK) goto error;
|
|
|
|
fr = f_close(&fp);
|
|
if (fr != FR_OK) goto error;
|
|
return 0;
|
|
|
|
error:
|
|
f_close(&fp);
|
|
return fr;
|
|
}
|
|
|
|
int fileRead(u8 *dest, const char *path, u32 size){
|
|
return fileReadOffset(dest, path, size, 0);
|
|
}
|
|
|
|
int fileWrite(const u8 *buffer, const char *path, u32 size){
|
|
FRESULT fr = 1;
|
|
FIL fp;
|
|
unsigned int br = 0;
|
|
|
|
f_unlink(path);
|
|
if(f_open(&fp, path, FA_WRITE | FA_OPEN_ALWAYS) == FR_OK){
|
|
fr = f_write(&fp, buffer, size, &br);
|
|
f_close(&fp);
|
|
if (fr == FR_OK && br == size) return 0;
|
|
}
|
|
return fr;
|
|
}
|
|
|
|
int fileSize(const char* path){
|
|
FRESULT fr;
|
|
FIL fp;
|
|
int size = 0;
|
|
|
|
fr = f_open(&fp, path, FA_READ);
|
|
if (fr != FR_OK)goto error;
|
|
|
|
size = f_size(&fp);
|
|
error:
|
|
f_close(&fp);
|
|
return size;
|
|
}
|
|
|
|
int fileExists(const char* path){
|
|
FRESULT fr;
|
|
FIL fp;
|
|
int exists = 1;
|
|
fr = f_open(&fp, path, FA_READ);
|
|
if (fr != FR_OK)exists = 0;
|
|
f_close(&fp);
|
|
return exists;
|
|
} |