Spell-check latest trunk source code.
This commit is contained in:
parent
8d8e5c06b9
commit
1cb60c1214
10 changed files with 57 additions and 57 deletions
|
@ -130,7 +130,7 @@
|
|||
#define ABORT(fs, res) { fp->flag |= FA__ERROR; LEAVE_FF(fs, res); }
|
||||
|
||||
|
||||
/* File shareing feature */
|
||||
/* File sharing feature */
|
||||
#if _FS_SHARE
|
||||
#if _FS_READONLY
|
||||
#error _FS_SHARE must be 0 on read-only cfg.
|
||||
|
@ -417,7 +417,7 @@ typedef struct {
|
|||
#define BPB_FSVer 42 /* File system version (2) */
|
||||
#define BPB_RootClus 44 /* Root dir first cluster (4) */
|
||||
#define BPB_FSInfo 48 /* Offset of FSInfo sector (2) */
|
||||
#define BPB_BkBootSec 50 /* Offset of backup boot sectot (2) */
|
||||
#define BPB_BkBootSec 50 /* Offset of backup boot sector (2) */
|
||||
#define BS_DrvNum32 64 /* Physical drive number (2) */
|
||||
#define BS_BootSig32 66 /* Extended boot signature (1) */
|
||||
#define BS_VolID32 67 /* Volume serial number (4) */
|
||||
|
@ -448,7 +448,7 @@ typedef struct {
|
|||
#define LDIR_FstClusLO 26 /* Filled by zero (0) */
|
||||
#define SZ_DIR 32 /* Size of a directory entry */
|
||||
#define LLE 0x40 /* Last long entry flag in LDIR_Ord */
|
||||
#define DDE 0xE5 /* Deleted directory enrty mark in DIR_Name[0] */
|
||||
#define DDE 0xE5 /* Deleted directory entry mark in DIR_Name[0] */
|
||||
#define NDDE 0x05 /* Replacement of a character collides with DDE */
|
||||
|
||||
|
||||
|
@ -2059,7 +2059,7 @@ FRESULT chk_mounted ( /* FR_OK(0): successful, !=0: any error occurred */
|
|||
if (chk_wp && (stat & STA_PROTECT)) /* Check disk write protection if needed */
|
||||
return FR_WRITE_PROTECTED;
|
||||
#endif
|
||||
/* Search FAT partition on the drive. Supports only generic partitionings, FDISK and SFD. */
|
||||
/* Search FAT partition on the drive. Supports only generic partitioning, FDISK and SFD. */
|
||||
fmt = check_fs(fs, bsect = 0); /* Check sector 0 if it is a VBR */
|
||||
if (fmt == 1) { /* Not an FAT-VBR, the disk may be partitioned */
|
||||
/* Check the partition listed in top of the partition table */
|
||||
|
@ -2950,7 +2950,7 @@ FRESULT f_lseek (
|
|||
|
||||
#if _FS_MINIMIZE <= 1
|
||||
/*-----------------------------------------------------------------------*/
|
||||
/* Create a Directroy Object */
|
||||
/* Create a Directory Object */
|
||||
/*-----------------------------------------------------------------------*/
|
||||
|
||||
FRESULT f_opendir (
|
||||
|
@ -2990,7 +2990,7 @@ FRESULT f_opendir (
|
|||
|
||||
|
||||
/*-----------------------------------------------------------------------*/
|
||||
/* Read Directory Entry in Sequense */
|
||||
/* Read Directory Entry in Sequence */
|
||||
/*-----------------------------------------------------------------------*/
|
||||
|
||||
FRESULT f_readdir (
|
||||
|
@ -3633,9 +3633,9 @@ FRESULT f_mkfs (
|
|||
return FR_MKFS_ABORTED;
|
||||
|
||||
/* Create partition table if required */
|
||||
if (sfd) { /* No patition table (SFD) */
|
||||
if (sfd) { /* No partition table (SFD) */
|
||||
md = 0xF0;
|
||||
} else { /* With patition table (FDISK) */
|
||||
} else { /* With partition table (FDISK) */
|
||||
DWORD n_disk = b_vol + n_vol;
|
||||
|
||||
mem_set(fs->win, 0, SS(fs));
|
||||
|
@ -3785,18 +3785,18 @@ TCHAR* f_gets (
|
|||
#if _LFN_UNICODE /* Read a character in UTF-8 encoding */
|
||||
if (c >= 0x80) {
|
||||
if (c < 0xC0) continue; /* Skip stray trailer */
|
||||
if (c < 0xE0) { /* Two-byte sequense */
|
||||
if (c < 0xE0) { /* Two-byte sequence */
|
||||
f_read(fil, s, 1, &rc);
|
||||
if (rc != 1) break;
|
||||
c = ((c & 0x1F) << 6) | (s[0] & 0x3F);
|
||||
if (c < 0x80) c = '?';
|
||||
} else {
|
||||
if (c < 0xF0) { /* Three-byte sequense */
|
||||
if (c < 0xF0) { /* Three-byte sequence */
|
||||
f_read(fil, s, 2, &rc);
|
||||
if (rc != 2) break;
|
||||
c = (c << 12) | ((s[0] & 0x3F) << 6) | (s[1] & 0x3F);
|
||||
if (c < 0x800) c = '?';
|
||||
} else { /* Reject four-byte sequense */
|
||||
} else { /* Reject four-byte sequence */
|
||||
c = '?';
|
||||
}
|
||||
}
|
||||
|
@ -3945,9 +3945,9 @@ int f_printf (
|
|||
case 'D' : /* Signed decimal */
|
||||
case 'U' : /* Unsigned decimal */
|
||||
r = 10; break;
|
||||
case 'X' : /* Hexdecimal */
|
||||
case 'X' : /* Hexadecimal */
|
||||
r = 16; break;
|
||||
default: /* Unknown type (passthrough) */
|
||||
default: /* Unknown type (pass-through) */
|
||||
cc = f_putc(c, fil); continue;
|
||||
}
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
/----------------------------------------------------------------------------/
|
||||
/ FatFs module is a generic FAT file system module for small embedded systems.
|
||||
/ This is a free software that opened for education, research and commercial
|
||||
/ developments under license policy of following trems.
|
||||
/ developments under license policy of following terms.
|
||||
/
|
||||
/ Copyright (C) 2011, ChaN, all right reserved.
|
||||
/
|
||||
|
@ -191,7 +191,7 @@ typedef enum {
|
|||
FR_NO_FILESYSTEM, /* (13) There is no valid FAT volume on the physical drive */
|
||||
FR_MKFS_ABORTED, /* (14) The f_mkfs() aborted due to any parameter error */
|
||||
FR_TIMEOUT, /* (15) Could not get a grant to access the volume within defined period */
|
||||
FR_LOCKED, /* (16) The operation is rejected according to the file shareing policy */
|
||||
FR_LOCKED, /* (16) The operation is rejected according to the file sharing policy */
|
||||
FR_NOT_ENOUGH_CORE, /* (17) LFN working buffer could not be allocated */
|
||||
FR_TOO_MANY_OPEN_FILES /* (18) Number of open files > _FS_SHARE */
|
||||
} FRESULT;
|
||||
|
@ -215,8 +215,8 @@ FRESULT f_truncate (FIL*); /* Truncate file */
|
|||
FRESULT f_sync (FIL*); /* Flush cached data of a writing file */
|
||||
FRESULT f_unlink (const TCHAR*); /* Delete an existing file or directory */
|
||||
FRESULT f_mkdir (const TCHAR*); /* Create a new directory */
|
||||
FRESULT f_chmod (const TCHAR*, BYTE, BYTE); /* Change attriburte of the file/dir */
|
||||
FRESULT f_utime (const TCHAR*, const FILINFO*); /* Change timestamp of the file/dir */
|
||||
FRESULT f_chmod (const TCHAR*, BYTE, BYTE); /* Change attribute of the file/dir */
|
||||
FRESULT f_utime (const TCHAR*, const FILINFO*); /* Change time-stamp of the file/dir */
|
||||
FRESULT f_rename (const TCHAR*, const TCHAR*); /* Rename/Move a file or directory */
|
||||
FRESULT f_forward (FIL*, UINT(*)(const BYTE*,UINT), UINT, UINT*); /* Forward data to the stream */
|
||||
FRESULT f_mkfs (BYTE, BYTE, UINT); /* Create a file system on the drive */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue