FatFS
FR_MKFS_ABORTED
is only used within FatFS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (2/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
FatFS
FR_MKFS_ABORTED
FR_MKFS_ABORTED value
Syntax
Show:
Summary
Declaration
from
ff.h:297
FR_MKFS_ABORTED
;
Examples
References
from
examples
Code
Location
Referrer
FR_MKFS_ABORTED
,
/* (14) The f_mkfs() aborted due to any problem */
ff.h:297
if
(
ld_word
(
buf
+
BS_55AA
)
!=
0xAA55
)
LEAVE_MKFS
(
FR_MKFS_ABORTED
)
;
/* Check if MBR is valid */
ff.c:5992
f_mkfs()
if
(
ipart
>
4
||
pte
[
PTE_System
]
==
0
)
LEAVE_MKFS
(
FR_MKFS_ABORTED
)
;
/* No partition? */
ff.c:6019
f_mkfs()
if
(
sz_vol
<
MIN_FAT12_SEC_VOL
)
LEAVE_MKFS
(
FR_MKFS_ABORTED
)
;
/* Check if volume size is >= MIN_FAT12_SEC_VOLs */
ff.c:6041
f_mkfs()
if
(
sz_vol
<
(
MIN_FAT12_SEC_VOL
+
1
)
)
LEAVE_MKFS
(
FR_MKFS_ABORTED
)
;
/* Check if volume size is >= (MIN_FAT12_SEC_VOL+1)s */
ff.c:6043
f_mkfs()
if
(
n_clst
<=
MAX_FAT16
||
n_clst
>
MAX_FAT32
)
LEAVE_MKFS
(
FR_MKFS_ABORTED
)
;
ff.c:6243
f_mkfs()
if
(
sz_vol
<
b_data
+
pau
*
MIN_FAT12_DATA_SEC
-
b_vol
)
LEAVE_MKFS
(
FR_MKFS_ABORTED
)
;
/* Too small volume? */
ff.c:6275
f_mkfs()
LEAVE_MKFS
(
FR_MKFS_ABORTED
)
;
ff.c:6280
f_mkfs()
LEAVE_MKFS
(
FR_MKFS_ABORTED
)
;
ff.c:6292
f_mkfs()
LEAVE_MKFS
(
FR_MKFS_ABORTED
)
;
ff.c:6296
f_mkfs()
if
(
fsty
==
FS_FAT12
&&
n_clst
>
MAX_FAT12
)
LEAVE_MKFS
(
FR_MKFS_ABORTED
)
;
/* Too many clusters for FAT12 */
ff.c:6299
f_mkfs()
case
FR_MKFS_ABORTED
:
return
EINTR
;
vfs_fat.c:334
fresult_to_errno()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
FR_MKFS_ABORTED
is read by 2 functions:
All items filtered out
FR_MKFS_ABORTED
f_mkfs()
fresult_to_errno()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out