diff options
author | Donggeun Kim | 2011-10-24 21:15:28 +0000 |
---|---|---|
committer | Wolfgang Denk | 2011-10-26 21:40:44 +0200 |
commit | c30a15e590c7e5bfd27e4704c81648071f11d51f (patch) | |
tree | 3dfb06047dccb50fbf1555ff48a5396ea5317488 /include | |
parent | eea63e05d0b7f54e7aa39725015483972c71cb3c (diff) |
FAT: Add FAT write feature
In some cases, saving data in RAM as a file with FAT format is required.
This patch allows the file to be written in FAT formatted partition.
The usage is similar with reading a file.
First, fat_register_device function is called before file_fat_write function
in order to set target partition.
Then, file_fat_write function is invoked with desired file name,
start ram address for writing data, and file size.
Signed-off-by: Donggeun Kim <dg77.kim@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/fat.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/fat.h b/include/fat.h index 15dbf1094c3..4c92442fd34 100644 --- a/include/fat.h +++ b/include/fat.h @@ -99,6 +99,8 @@ #endif #define TOLOWER(c) if((c) >= 'A' && (c) <= 'Z'){(c)+=('a' - 'A');} +#define TOUPPER(c) if ((c) >= 'a' && (c) <= 'z') \ + (c) -= ('a' - 'A'); #define START(dent) (FAT2CPU16((dent)->start) \ + (mydata->fatsize != 32 ? 0 : \ (FAT2CPU16((dent)->starthi) << 16))) @@ -210,4 +212,5 @@ long file_fat_read(const char *filename, void *buffer, unsigned long maxsize); const char *file_getfsname(int idx); int fat_register_device(block_dev_desc_t *dev_desc, int part_no); +int file_fat_write(const char *filename, void *buffer, unsigned long maxsize); #endif /* _FAT_H_ */ |