MAV'RIC
test_fat_fs.h
Go to the documentation of this file.
1 
19 #ifndef TEST_FAT_FS_H__
20 #define TEST_FAT_FS_H__
21 
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25 
26 #include "integer.h"
27 #include "ff.h"
28 
32 void test_fat_fs_low_layer(void);
33 
43 FRESULT test_fat_fs_open_append (FIL* fp, const char* path, BYTE opening_opt);
44 
45 #ifdef __cplusplus
46 }
47 #endif
48 
49 #endif // TEST_FAT_FS_H__
void test_fat_fs_low_layer(void)
A function to test the low layer (read/write bytes to the SD card)
Definition: test_fat_fs.c:611
File object structure (FIL)
Definition: ff.h:119
FRESULT test_fat_fs_open_append(FIL *fp, const char *path, BYTE opening_opt)
Open the file path and seek the end to append.
Definition: test_fat_fs.c:629