Home
last modified time | relevance | path

Searched refs:BYTE (Results 1 – 6 of 6) sorted by relevance

/fatfs-2.7.6/include/
Dff.h50 typedef unsigned char BYTE; /* char must be 8-bit */
60 typedef unsigned char BYTE; /* char must be 8-bit */
117 BYTE pd; /* Physical drive number */
118 BYTE pt; /* Partition: 0:Auto detect, 1-4:Forced partition) */
134 BYTE fs_type; /* Filesystem type (0:not mounted) */
135 BYTE pdrv; /* Associated physical drive */
136 BYTE n_fats; /* Number of FATs (1 or 2) */
137 BYTE wflag; /* win[] flag (b0:dirty) */
138 BYTE fsi_flag; /* FSINFO flags (b7:disabled, b0:dirty) */
149 BYTE* dirbuf; /* Directory entry block scratchpad buffer for exFAT */
[all …]
Ddiskio.h13 typedef BYTE DSTATUS;
29 DSTATUS disk_initialize (BYTE pdrv);
30 DSTATUS disk_status (BYTE pdrv);
31 DRESULT disk_read (BYTE pdrv, BYTE* buff, LBA_t sector, UINT count);
32 DRESULT disk_write (BYTE pdrv, const BYTE* buff, LBA_t sector, UINT count);
33 DRESULT disk_ioctl (BYTE pdrv, BYTE cmd, void* buff);
/fatfs-2.7.6/
Dff.c234 #define ABORT(fs, res) { fp->err = (BYTE)(res); LEAVE_FF(fs, res); }
253 #define LD2PD(vol) (BYTE)(vol) /* Each logical drive is associated with the same physical drive num…
468 static BYTE CurrVol; /* Current drive */
485 static const BYTE GUID_MS_Basic[16] = {0xA2,0xA0,0xD0,0xEB,0xE5,0xB9,0x33,0x44,0x87,0xC0,0x68,0xB6,…
513 static const BYTE LfnOfs[] = {1,3,5,7,9,14,16,18,20,22,24,28,30}; /* FAT: Offset of LFN characters …
518 static BYTE DirBuf[MAXDIRB(FF_MAX_LFN)]; /* Directory entry block scratchpad buffer */
528 #define DEF_NAMBUF WCHAR lbuf[FF_MAX_LFN+1]; BYTE dbuf[MAXDIRB(FF_MAX_LFN)]; /* LFN working buffer…
541 …fn) LEAVE_FF(fs, FR_NOT_ENOUGH_CORE); (fs)->lfnbuf = lfn; (fs)->dirbuf = (BYTE*)(lfn+FF_MAX_LFN+1)…
566 static const BYTE *ExCvt, *DbcTbl; /* Pointer to current SBCS up-case table and DBCS code range tab…
568 static const BYTE Ct437[] = TBL_CT437;
[all …]
Dzfs_diskio.c39 DSTATUS disk_status(BYTE pdrv) in disk_status()
54 DSTATUS disk_initialize(BYTE pdrv) in disk_initialize()
69 DRESULT disk_read(BYTE pdrv, BYTE *buff, DWORD sector, UINT count) in disk_read()
84 DRESULT disk_write(BYTE pdrv, const BYTE *buff, DWORD sector, UINT count) in disk_write()
99 DRESULT disk_ioctl(BYTE pdrv, BYTE cmd, void *buff) in disk_ioctl()
Ddiskio.c24 BYTE pdrv /* Physical drive nmuber to identify the drive */ in disk_status()
62 BYTE pdrv /* Physical drive nmuber to identify the drive */ in disk_initialize()
100 BYTE pdrv, /* Physical drive nmuber to identify the drive */ in disk_read()
101 BYTE *buff, /* Data buffer to store read data */ in disk_read()
150 BYTE pdrv, /* Physical drive nmuber to identify the drive */ in disk_write()
151 const BYTE *buff, /* Data to be written */ in disk_write()
199 BYTE pdrv, /* Physical drive nmuber (0..) */ in disk_ioctl()
200 BYTE cmd, /* Control code */ in disk_ioctl()
/fatfs-2.7.6/option/
Dffsystem.c53 BYTE vol, /* Corresponding volume (logical drive number) */ in ff_cre_syncobj()