This is code is part of a Technion course project in advanced IoT, implementing a device to receive and present sensors data from a Formula racing car built by students at Technion - Israel Institute of Technology.

Dependencies:   mbed Buffer

Fork of DISCO-L072CZ-LRWAN1_LoRa_PingPong by ST

This is code is part of a Technion course project in advanced IoT, implementing a device to receive sensors data from another L072CZ-LRWAN1 installed on a Formula racing car (built by students at Technion - Israel Institute of Technology), and sends it to a GUI presenting the data (GUI project: github.com/ward-mattar/TechnionFormulaGUI).

How to install

  • Create an account on Mbed: https://os.mbed.com/account/signup/
  • Import project into Compiler
  • In the Program Workspace select "Formula_Nucleo_Receiver"
  • Select a Platform like so:
  1. Click button at top-left
  2. Add Board
  3. Search "NUCLEO F103RB" and then "Add to your Mbed Compiler"
  • Finally click "Compile", if the build was successful, the binary would download automatically
  • To install it on device simply plug it in to a PC, open device drive and drag then drop binary file in it
Committer:
wardm
Date:
Sat May 19 15:42:38 2018 +0000
Revision:
12:046346a16ff4
V1.0.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
wardm 12:046346a16ff4 1 /*---------------------------------------------------------------------------/
wardm 12:046346a16ff4 2 / FatFs - FAT file system module include R0.11a (C)ChaN, 2015
wardm 12:046346a16ff4 3 /----------------------------------------------------------------------------/
wardm 12:046346a16ff4 4 / FatFs module is a free software that opened under license policy of
wardm 12:046346a16ff4 5 / following conditions.
wardm 12:046346a16ff4 6 /
wardm 12:046346a16ff4 7 / Copyright (C) 2015, ChaN, all right reserved.
wardm 12:046346a16ff4 8 /
wardm 12:046346a16ff4 9 / 1. Redistributions of source code must retain the above copyright notice,
wardm 12:046346a16ff4 10 / this condition and the following disclaimer.
wardm 12:046346a16ff4 11 /
wardm 12:046346a16ff4 12 / This software is provided by the copyright holder and contributors "AS IS"
wardm 12:046346a16ff4 13 / and any warranties related to this software are DISCLAIMED.
wardm 12:046346a16ff4 14 / The copyright owner or contributors be NOT LIABLE for any damages caused
wardm 12:046346a16ff4 15 / by use of this software.
wardm 12:046346a16ff4 16 /---------------------------------------------------------------------------*/
wardm 12:046346a16ff4 17
wardm 12:046346a16ff4 18
wardm 12:046346a16ff4 19 #ifndef _FATFS
wardm 12:046346a16ff4 20 #define _FATFS 64180 /* Revision ID */
wardm 12:046346a16ff4 21
wardm 12:046346a16ff4 22 #ifdef __cplusplus
wardm 12:046346a16ff4 23 extern "C" {
wardm 12:046346a16ff4 24 #endif
wardm 12:046346a16ff4 25
wardm 12:046346a16ff4 26 #include "integer.h" /* Basic integer types */
wardm 12:046346a16ff4 27 #include "ffconf.h" /* FatFs configuration options */
wardm 12:046346a16ff4 28 #if _FATFS != _FFCONF
wardm 12:046346a16ff4 29 #error Wrong configuration file (ffconf.h).
wardm 12:046346a16ff4 30 #endif
wardm 12:046346a16ff4 31
wardm 12:046346a16ff4 32
wardm 12:046346a16ff4 33
wardm 12:046346a16ff4 34 /* Definitions of volume management */
wardm 12:046346a16ff4 35
wardm 12:046346a16ff4 36 #if _MULTI_PARTITION /* Multiple partition configuration */
wardm 12:046346a16ff4 37 typedef struct {
wardm 12:046346a16ff4 38 BYTE pd; /* Physical drive number */
wardm 12:046346a16ff4 39 BYTE pt; /* Partition: 0:Auto detect, 1-4:Forced partition) */
wardm 12:046346a16ff4 40 } PARTITION;
wardm 12:046346a16ff4 41 extern PARTITION VolToPart[]; /* Volume - Partition resolution table */
wardm 12:046346a16ff4 42 #define LD2PD(vol) (VolToPart[vol].pd) /* Get physical drive number */
wardm 12:046346a16ff4 43 #define LD2PT(vol) (VolToPart[vol].pt) /* Get partition index */
wardm 12:046346a16ff4 44
wardm 12:046346a16ff4 45 #else /* Single partition configuration */
wardm 12:046346a16ff4 46 #define LD2PD(vol) (BYTE)(vol) /* Each logical drive is bound to the same physical drive number */
wardm 12:046346a16ff4 47 #define LD2PT(vol) 0 /* Find first valid partition or in SFD */
wardm 12:046346a16ff4 48
wardm 12:046346a16ff4 49 #endif
wardm 12:046346a16ff4 50
wardm 12:046346a16ff4 51
wardm 12:046346a16ff4 52
wardm 12:046346a16ff4 53 /* Type of path name strings on FatFs API */
wardm 12:046346a16ff4 54
wardm 12:046346a16ff4 55 #if _LFN_UNICODE /* Unicode string */
wardm 12:046346a16ff4 56 #if !_USE_LFN
wardm 12:046346a16ff4 57 #error _LFN_UNICODE must be 0 at non-LFN cfg.
wardm 12:046346a16ff4 58 #endif
wardm 12:046346a16ff4 59 #ifndef _INC_TCHAR
wardm 12:046346a16ff4 60 typedef WCHAR TCHAR;
wardm 12:046346a16ff4 61 #define _T(x) L ## x
wardm 12:046346a16ff4 62 #define _TEXT(x) L ## x
wardm 12:046346a16ff4 63 #endif
wardm 12:046346a16ff4 64
wardm 12:046346a16ff4 65 #else /* ANSI/OEM string */
wardm 12:046346a16ff4 66 #ifndef _INC_TCHAR
wardm 12:046346a16ff4 67 typedef char TCHAR;
wardm 12:046346a16ff4 68 #define _T(x) x
wardm 12:046346a16ff4 69 #define _TEXT(x) x
wardm 12:046346a16ff4 70 #endif
wardm 12:046346a16ff4 71
wardm 12:046346a16ff4 72 #endif
wardm 12:046346a16ff4 73
wardm 12:046346a16ff4 74
wardm 12:046346a16ff4 75
wardm 12:046346a16ff4 76 /* File system object structure (FATFS) */
wardm 12:046346a16ff4 77
wardm 12:046346a16ff4 78 typedef struct {
wardm 12:046346a16ff4 79 BYTE fs_type; /* FAT sub-type (0:Not mounted) */
wardm 12:046346a16ff4 80 BYTE drv; /* Physical drive number */
wardm 12:046346a16ff4 81 BYTE csize; /* Sectors per cluster (1,2,4...128) */
wardm 12:046346a16ff4 82 BYTE n_fats; /* Number of FAT copies (1 or 2) */
wardm 12:046346a16ff4 83 BYTE wflag; /* win[] flag (b0:dirty) */
wardm 12:046346a16ff4 84 BYTE fsi_flag; /* FSINFO flags (b7:disabled, b0:dirty) */
wardm 12:046346a16ff4 85 WORD id; /* File system mount ID */
wardm 12:046346a16ff4 86 WORD n_rootdir; /* Number of root directory entries (FAT12/16) */
wardm 12:046346a16ff4 87 #if _MAX_SS != _MIN_SS
wardm 12:046346a16ff4 88 WORD ssize; /* Bytes per sector (512, 1024, 2048 or 4096) */
wardm 12:046346a16ff4 89 #endif
wardm 12:046346a16ff4 90 #if _FS_REENTRANT
wardm 12:046346a16ff4 91 _SYNC_t sobj; /* Identifier of sync object */
wardm 12:046346a16ff4 92 #endif
wardm 12:046346a16ff4 93 #if !_FS_READONLY
wardm 12:046346a16ff4 94 DWORD last_clust; /* Last allocated cluster */
wardm 12:046346a16ff4 95 DWORD free_clust; /* Number of free clusters */
wardm 12:046346a16ff4 96 #endif
wardm 12:046346a16ff4 97 #if _FS_RPATH
wardm 12:046346a16ff4 98 DWORD cdir; /* Current directory start cluster (0:root) */
wardm 12:046346a16ff4 99 #endif
wardm 12:046346a16ff4 100 DWORD n_fatent; /* Number of FAT entries, = number of clusters + 2 */
wardm 12:046346a16ff4 101 DWORD fsize; /* Sectors per FAT */
wardm 12:046346a16ff4 102 DWORD volbase; /* Volume start sector */
wardm 12:046346a16ff4 103 DWORD fatbase; /* FAT start sector */
wardm 12:046346a16ff4 104 DWORD dirbase; /* Root directory start sector (FAT32:Cluster#) */
wardm 12:046346a16ff4 105 DWORD database; /* Data start sector */
wardm 12:046346a16ff4 106 DWORD winsect; /* Current sector appearing in the win[] */
wardm 12:046346a16ff4 107 BYTE win[_MAX_SS]; /* Disk access window for Directory, FAT (and file data at tiny cfg) */
wardm 12:046346a16ff4 108 } FATFS;
wardm 12:046346a16ff4 109
wardm 12:046346a16ff4 110
wardm 12:046346a16ff4 111
wardm 12:046346a16ff4 112 /* File object structure (FIL) */
wardm 12:046346a16ff4 113
wardm 12:046346a16ff4 114 typedef struct {
wardm 12:046346a16ff4 115 FATFS* fs; /* Pointer to the related file system object (**do not change order**) */
wardm 12:046346a16ff4 116 WORD id; /* Owner file system mount ID (**do not change order**) */
wardm 12:046346a16ff4 117 BYTE flag; /* Status flags */
wardm 12:046346a16ff4 118 BYTE err; /* Abort flag (error code) */
wardm 12:046346a16ff4 119 DWORD fptr; /* File read/write pointer (Zeroed on file open) */
wardm 12:046346a16ff4 120 DWORD fsize; /* File size */
wardm 12:046346a16ff4 121 DWORD sclust; /* File start cluster (0:no cluster chain, always 0 when fsize is 0) */
wardm 12:046346a16ff4 122 DWORD clust; /* Current cluster of fpter (not valid when fprt is 0) */
wardm 12:046346a16ff4 123 DWORD dsect; /* Sector number appearing in buf[] (0:invalid) */
wardm 12:046346a16ff4 124 #if !_FS_READONLY
wardm 12:046346a16ff4 125 DWORD dir_sect; /* Sector number containing the directory entry */
wardm 12:046346a16ff4 126 BYTE* dir_ptr; /* Pointer to the directory entry in the win[] */
wardm 12:046346a16ff4 127 #endif
wardm 12:046346a16ff4 128 #if _USE_FASTSEEK
wardm 12:046346a16ff4 129 DWORD* cltbl; /* Pointer to the cluster link map table (Nulled on file open) */
wardm 12:046346a16ff4 130 #endif
wardm 12:046346a16ff4 131 #if _FS_LOCK
wardm 12:046346a16ff4 132 UINT lockid; /* File lock ID origin from 1 (index of file semaphore table Files[]) */
wardm 12:046346a16ff4 133 #endif
wardm 12:046346a16ff4 134 #if !_FS_TINY
wardm 12:046346a16ff4 135 BYTE buf[_MAX_SS]; /* File private data read/write window */
wardm 12:046346a16ff4 136 #endif
wardm 12:046346a16ff4 137 } FIL;
wardm 12:046346a16ff4 138
wardm 12:046346a16ff4 139
wardm 12:046346a16ff4 140
wardm 12:046346a16ff4 141 /* Directory object structure (FATFS_DIR) */
wardm 12:046346a16ff4 142
wardm 12:046346a16ff4 143 typedef struct {
wardm 12:046346a16ff4 144 FATFS* fs; /* Pointer to the owner file system object (**do not change order**) */
wardm 12:046346a16ff4 145 WORD id; /* Owner file system mount ID (**do not change order**) */
wardm 12:046346a16ff4 146 WORD index; /* Current read/write index number */
wardm 12:046346a16ff4 147 DWORD sclust; /* Table start cluster (0:Root dir) */
wardm 12:046346a16ff4 148 DWORD clust; /* Current cluster */
wardm 12:046346a16ff4 149 DWORD sect; /* Current sector */
wardm 12:046346a16ff4 150 BYTE* dir; /* Pointer to the current SFN entry in the win[] */
wardm 12:046346a16ff4 151 BYTE* fn; /* Pointer to the SFN (in/out) {file[8],ext[3],status[1]} */
wardm 12:046346a16ff4 152 #if _FS_LOCK
wardm 12:046346a16ff4 153 UINT lockid; /* File lock ID (index of file semaphore table Files[]) */
wardm 12:046346a16ff4 154 #endif
wardm 12:046346a16ff4 155 #if _USE_LFN
wardm 12:046346a16ff4 156 WCHAR* lfn; /* Pointer to the LFN working buffer */
wardm 12:046346a16ff4 157 WORD lfn_idx; /* Last matched LFN index number (0xFFFF:No LFN) */
wardm 12:046346a16ff4 158 #endif
wardm 12:046346a16ff4 159 #if _USE_FIND
wardm 12:046346a16ff4 160 const TCHAR* pat; /* Pointer to the name matching pattern */
wardm 12:046346a16ff4 161 #endif
wardm 12:046346a16ff4 162 } FATFS_DIR;
wardm 12:046346a16ff4 163
wardm 12:046346a16ff4 164
wardm 12:046346a16ff4 165
wardm 12:046346a16ff4 166 /* File information structure (FILINFO) */
wardm 12:046346a16ff4 167
wardm 12:046346a16ff4 168 typedef struct {
wardm 12:046346a16ff4 169 DWORD fsize; /* File size */
wardm 12:046346a16ff4 170 WORD fdate; /* Last modified date */
wardm 12:046346a16ff4 171 WORD ftime; /* Last modified time */
wardm 12:046346a16ff4 172 BYTE fattrib; /* Attribute */
wardm 12:046346a16ff4 173 TCHAR fname[13]; /* Short file name (8.3 format) */
wardm 12:046346a16ff4 174 #if _USE_LFN
wardm 12:046346a16ff4 175 TCHAR* lfname; /* Pointer to the LFN buffer */
wardm 12:046346a16ff4 176 UINT lfsize; /* Size of LFN buffer in TCHAR */
wardm 12:046346a16ff4 177 #endif
wardm 12:046346a16ff4 178 } FILINFO;
wardm 12:046346a16ff4 179
wardm 12:046346a16ff4 180
wardm 12:046346a16ff4 181
wardm 12:046346a16ff4 182 /* File function return code (FRESULT) */
wardm 12:046346a16ff4 183
wardm 12:046346a16ff4 184 typedef enum {
wardm 12:046346a16ff4 185 FR_OK = 0, /* (0) Succeeded */
wardm 12:046346a16ff4 186 FR_DISK_ERR, /* (1) A hard error occurred in the low level disk I/O layer */
wardm 12:046346a16ff4 187 FR_INT_ERR, /* (2) Assertion failed */
wardm 12:046346a16ff4 188 FR_NOT_READY, /* (3) The physical drive cannot work */
wardm 12:046346a16ff4 189 FR_NO_FILE, /* (4) Could not find the file */
wardm 12:046346a16ff4 190 FR_NO_PATH, /* (5) Could not find the path */
wardm 12:046346a16ff4 191 FR_INVALID_NAME, /* (6) The path name format is invalid */
wardm 12:046346a16ff4 192 FR_DENIED, /* (7) Access denied due to prohibited access or directory full */
wardm 12:046346a16ff4 193 FR_EXIST, /* (8) Access denied due to prohibited access */
wardm 12:046346a16ff4 194 FR_INVALID_OBJECT, /* (9) The file/directory object is invalid */
wardm 12:046346a16ff4 195 FR_WRITE_PROTECTED, /* (10) The physical drive is write protected */
wardm 12:046346a16ff4 196 FR_INVALID_DRIVE, /* (11) The logical drive number is invalid */
wardm 12:046346a16ff4 197 FR_NOT_ENABLED, /* (12) The volume has no work area */
wardm 12:046346a16ff4 198 FR_NO_FILESYSTEM, /* (13) There is no valid FAT volume */
wardm 12:046346a16ff4 199 FR_MKFS_ABORTED, /* (14) The f_mkfs() aborted due to any parameter error */
wardm 12:046346a16ff4 200 FR_TIMEOUT, /* (15) Could not get a grant to access the volume within defined period */
wardm 12:046346a16ff4 201 FR_LOCKED, /* (16) The operation is rejected according to the file sharing policy */
wardm 12:046346a16ff4 202 FR_NOT_ENOUGH_CORE, /* (17) LFN working buffer could not be allocated */
wardm 12:046346a16ff4 203 FR_TOO_MANY_OPEN_FILES, /* (18) Number of open files > _FS_LOCK */
wardm 12:046346a16ff4 204 FR_INVALID_PARAMETER /* (19) Given parameter is invalid */
wardm 12:046346a16ff4 205 } FRESULT;
wardm 12:046346a16ff4 206
wardm 12:046346a16ff4 207
wardm 12:046346a16ff4 208
wardm 12:046346a16ff4 209 /*--------------------------------------------------------------*/
wardm 12:046346a16ff4 210 /* FatFs module application interface */
wardm 12:046346a16ff4 211
wardm 12:046346a16ff4 212 FRESULT f_open (FIL* fp, const TCHAR* path, BYTE mode); /* Open or create a file */
wardm 12:046346a16ff4 213 FRESULT f_close (FIL* fp); /* Close an open file object */
wardm 12:046346a16ff4 214 FRESULT f_read (FIL* fp, void* buff, UINT btr, UINT* br); /* Read data from a file */
wardm 12:046346a16ff4 215 FRESULT f_write (FIL* fp, const void* buff, UINT btw, UINT* bw); /* Write data to a file */
wardm 12:046346a16ff4 216 FRESULT f_forward (FIL* fp, UINT(*func)(const BYTE*,UINT), UINT btf, UINT* bf); /* Forward data to the stream */
wardm 12:046346a16ff4 217 FRESULT f_lseek (FIL* fp, DWORD ofs); /* Move file pointer of a file object */
wardm 12:046346a16ff4 218 FRESULT f_truncate (FIL* fp); /* Truncate file */
wardm 12:046346a16ff4 219 FRESULT f_sync (FIL* fp); /* Flush cached data of a writing file */
wardm 12:046346a16ff4 220 FRESULT f_opendir (FATFS_DIR* dp, const TCHAR* path); /* Open a directory */
wardm 12:046346a16ff4 221 FRESULT f_closedir (FATFS_DIR* dp); /* Close an open directory */
wardm 12:046346a16ff4 222 FRESULT f_readdir (FATFS_DIR* dp, FILINFO* fno); /* Read a directory item */
wardm 12:046346a16ff4 223 FRESULT f_findfirst (FATFS_DIR* dp, FILINFO* fno, const TCHAR* path, const TCHAR* pattern); /* Find first file */
wardm 12:046346a16ff4 224 FRESULT f_findnext (FATFS_DIR* dp, FILINFO* fno); /* Find next file */
wardm 12:046346a16ff4 225 FRESULT f_mkdir (const TCHAR* path); /* Create a sub directory */
wardm 12:046346a16ff4 226 FRESULT f_unlink (const TCHAR* path); /* Delete an existing file or directory */
wardm 12:046346a16ff4 227 FRESULT f_rename (const TCHAR* path_old, const TCHAR* path_new); /* Rename/Move a file or directory */
wardm 12:046346a16ff4 228 FRESULT f_stat (const TCHAR* path, FILINFO* fno); /* Get file status */
wardm 12:046346a16ff4 229 FRESULT f_chmod (const TCHAR* path, BYTE attr, BYTE mask); /* Change attribute of the file/dir */
wardm 12:046346a16ff4 230 FRESULT f_utime (const TCHAR* path, const FILINFO* fno); /* Change times-tamp of the file/dir */
wardm 12:046346a16ff4 231 FRESULT f_chdir (const TCHAR* path); /* Change current directory */
wardm 12:046346a16ff4 232 FRESULT f_chdrive (const TCHAR* path); /* Change current drive */
wardm 12:046346a16ff4 233 FRESULT f_getcwd (TCHAR* buff, UINT len); /* Get current directory */
wardm 12:046346a16ff4 234 FRESULT f_getfree (const TCHAR* path, DWORD* nclst, FATFS** fatfs); /* Get number of free clusters on the drive */
wardm 12:046346a16ff4 235 FRESULT f_getlabel (const TCHAR* path, TCHAR* label, DWORD* vsn); /* Get volume label */
wardm 12:046346a16ff4 236 FRESULT f_setlabel (const TCHAR* label); /* Set volume label */
wardm 12:046346a16ff4 237 FRESULT f_mount (FATFS* fs, const TCHAR* path, BYTE opt); /* Mount/Unmount a logical drive */
wardm 12:046346a16ff4 238 FRESULT f_mkfs (const TCHAR* path, BYTE sfd, UINT au); /* Create a file system on the volume */
wardm 12:046346a16ff4 239 FRESULT f_fdisk (BYTE pdrv, const DWORD szt[], void* work); /* Divide a physical drive into some partitions */
wardm 12:046346a16ff4 240 int f_putc (TCHAR c, FIL* fp); /* Put a character to the file */
wardm 12:046346a16ff4 241 int f_puts (const TCHAR* str, FIL* cp); /* Put a string to the file */
wardm 12:046346a16ff4 242 int f_printf (FIL* fp, const TCHAR* str, ...); /* Put a formatted string to the file */
wardm 12:046346a16ff4 243 TCHAR* f_gets (TCHAR* buff, int len, FIL* fp); /* Get a string from the file */
wardm 12:046346a16ff4 244
wardm 12:046346a16ff4 245 #define f_eof(fp) ((int)((fp)->fptr == (fp)->fsize))
wardm 12:046346a16ff4 246 #define f_error(fp) ((fp)->err)
wardm 12:046346a16ff4 247 #define f_tell(fp) ((fp)->fptr)
wardm 12:046346a16ff4 248 #define f_size(fp) ((fp)->fsize)
wardm 12:046346a16ff4 249 #define f_rewind(fp) f_lseek((fp), 0)
wardm 12:046346a16ff4 250 #define f_rewinddir(dp) f_readdir((dp), 0)
wardm 12:046346a16ff4 251
wardm 12:046346a16ff4 252 #ifndef EOF
wardm 12:046346a16ff4 253 #define EOF (-1)
wardm 12:046346a16ff4 254 #endif
wardm 12:046346a16ff4 255
wardm 12:046346a16ff4 256
wardm 12:046346a16ff4 257
wardm 12:046346a16ff4 258
wardm 12:046346a16ff4 259 /*--------------------------------------------------------------*/
wardm 12:046346a16ff4 260 /* Additional user defined functions */
wardm 12:046346a16ff4 261
wardm 12:046346a16ff4 262 /* RTC function */
wardm 12:046346a16ff4 263 #if !_FS_READONLY && !_FS_NORTC
wardm 12:046346a16ff4 264 DWORD get_fattime (void);
wardm 12:046346a16ff4 265 #endif
wardm 12:046346a16ff4 266
wardm 12:046346a16ff4 267 /* Unicode support functions */
wardm 12:046346a16ff4 268 #if _USE_LFN /* Unicode - OEM code conversion */
wardm 12:046346a16ff4 269 WCHAR ff_convert (WCHAR chr, UINT dir); /* OEM-Unicode bidirectional conversion */
wardm 12:046346a16ff4 270 WCHAR ff_wtoupper (WCHAR chr); /* Unicode upper-case conversion */
wardm 12:046346a16ff4 271 #if _USE_LFN == 3 /* Memory functions */
wardm 12:046346a16ff4 272 void* ff_memalloc (UINT msize); /* Allocate memory block */
wardm 12:046346a16ff4 273 void ff_memfree (void* mblock); /* Free memory block */
wardm 12:046346a16ff4 274 #endif
wardm 12:046346a16ff4 275 #endif
wardm 12:046346a16ff4 276
wardm 12:046346a16ff4 277 /* Sync functions */
wardm 12:046346a16ff4 278 #if _FS_REENTRANT
wardm 12:046346a16ff4 279 int ff_cre_syncobj (BYTE vol, _SYNC_t* sobj); /* Create a sync object */
wardm 12:046346a16ff4 280 int ff_req_grant (_SYNC_t sobj); /* Lock sync object */
wardm 12:046346a16ff4 281 void ff_rel_grant (_SYNC_t sobj); /* Unlock sync object */
wardm 12:046346a16ff4 282 int ff_del_syncobj (_SYNC_t sobj); /* Delete a sync object */
wardm 12:046346a16ff4 283 #endif
wardm 12:046346a16ff4 284
wardm 12:046346a16ff4 285
wardm 12:046346a16ff4 286
wardm 12:046346a16ff4 287
wardm 12:046346a16ff4 288 /*--------------------------------------------------------------*/
wardm 12:046346a16ff4 289 /* Flags and offset address */
wardm 12:046346a16ff4 290
wardm 12:046346a16ff4 291
wardm 12:046346a16ff4 292 /* File access control and file status flags (FIL.flag) */
wardm 12:046346a16ff4 293
wardm 12:046346a16ff4 294 #define FA_READ 0x01
wardm 12:046346a16ff4 295 #define FA_OPEN_EXISTING 0x00
wardm 12:046346a16ff4 296
wardm 12:046346a16ff4 297 #if !_FS_READONLY
wardm 12:046346a16ff4 298 #define FA_WRITE 0x02
wardm 12:046346a16ff4 299 #define FA_CREATE_NEW 0x04
wardm 12:046346a16ff4 300 #define FA_CREATE_ALWAYS 0x08
wardm 12:046346a16ff4 301 #define FA_OPEN_ALWAYS 0x10
wardm 12:046346a16ff4 302 #define FA__WRITTEN 0x20
wardm 12:046346a16ff4 303 #define FA__DIRTY 0x40
wardm 12:046346a16ff4 304 #endif
wardm 12:046346a16ff4 305
wardm 12:046346a16ff4 306
wardm 12:046346a16ff4 307 /* FAT sub type (FATFS.fs_type) */
wardm 12:046346a16ff4 308
wardm 12:046346a16ff4 309 #define FS_FAT12 1
wardm 12:046346a16ff4 310 #define FS_FAT16 2
wardm 12:046346a16ff4 311 #define FS_FAT32 3
wardm 12:046346a16ff4 312
wardm 12:046346a16ff4 313
wardm 12:046346a16ff4 314 /* File attribute bits for directory entry */
wardm 12:046346a16ff4 315
wardm 12:046346a16ff4 316 #define AM_RDO 0x01 /* Read only */
wardm 12:046346a16ff4 317 #define AM_HID 0x02 /* Hidden */
wardm 12:046346a16ff4 318 #define AM_SYS 0x04 /* System */
wardm 12:046346a16ff4 319 #define AM_VOL 0x08 /* Volume label */
wardm 12:046346a16ff4 320 #define AM_LFN 0x0F /* LFN entry */
wardm 12:046346a16ff4 321 #define AM_DIR 0x10 /* Directory */
wardm 12:046346a16ff4 322 #define AM_ARC 0x20 /* Archive */
wardm 12:046346a16ff4 323 #define AM_MASK 0x3F /* Mask of defined bits */
wardm 12:046346a16ff4 324
wardm 12:046346a16ff4 325
wardm 12:046346a16ff4 326 /* Fast seek feature */
wardm 12:046346a16ff4 327 #define CREATE_LINKMAP 0xFFFFFFFF
wardm 12:046346a16ff4 328
wardm 12:046346a16ff4 329
wardm 12:046346a16ff4 330
wardm 12:046346a16ff4 331 /*--------------------------------*/
wardm 12:046346a16ff4 332 /* Multi-byte word access macros */
wardm 12:046346a16ff4 333
wardm 12:046346a16ff4 334 #if _WORD_ACCESS == 1 /* Enable word access to the FAT structure */
wardm 12:046346a16ff4 335 #define LD_WORD(ptr) (WORD)(*(WORD*)(BYTE*)(ptr))
wardm 12:046346a16ff4 336 #define LD_DWORD(ptr) (DWORD)(*(DWORD*)(BYTE*)(ptr))
wardm 12:046346a16ff4 337 #define ST_WORD(ptr,val) *(WORD*)(BYTE*)(ptr)=(WORD)(val)
wardm 12:046346a16ff4 338 #define ST_DWORD(ptr,val) *(DWORD*)(BYTE*)(ptr)=(DWORD)(val)
wardm 12:046346a16ff4 339 #else /* Use byte-by-byte access to the FAT structure */
wardm 12:046346a16ff4 340 #define LD_WORD(ptr) (WORD)(((WORD)*((BYTE*)(ptr)+1)<<8)|(WORD)*(BYTE*)(ptr))
wardm 12:046346a16ff4 341 #define LD_DWORD(ptr) (DWORD)(((DWORD)*((BYTE*)(ptr)+3)<<24)|((DWORD)*((BYTE*)(ptr)+2)<<16)|((WORD)*((BYTE*)(ptr)+1)<<8)|*(BYTE*)(ptr))
wardm 12:046346a16ff4 342 #define ST_WORD(ptr,val) *(BYTE*)(ptr)=(BYTE)(val); *((BYTE*)(ptr)+1)=(BYTE)((WORD)(val)>>8)
wardm 12:046346a16ff4 343 #define ST_DWORD(ptr,val) *(BYTE*)(ptr)=(BYTE)(val); *((BYTE*)(ptr)+1)=(BYTE)((WORD)(val)>>8); *((BYTE*)(ptr)+2)=(BYTE)((DWORD)(val)>>16); *((BYTE*)(ptr)+3)=(BYTE)((DWORD)(val)>>24)
wardm 12:046346a16ff4 344 #endif
wardm 12:046346a16ff4 345
wardm 12:046346a16ff4 346 #ifdef __cplusplus
wardm 12:046346a16ff4 347 }
wardm 12:046346a16ff4 348 #endif
wardm 12:046346a16ff4 349
wardm 12:046346a16ff4 350 #endif /* _FATFS */