FatFS
f_read()
is only used within FatFS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
FatFS
f_read()
f_read() function
Syntax
Show:
Summary
Declaration
Definition
from
ff.h:314
FRESULT
f_read
(
FIL
*
fp
,
void
*
buff
,
UINT
btr
,
UINT
*
br
)
;
Implemented in
ff.c:3951
Arguments
Argument
fp
buff
btr
br
Related Functions
Found 14 other functions taking a
FIL
argument:
Function
f_lseek()
f_close()
f_open()
f_write()
f_truncate()
f_sync()
f_expand()
f_write_zero_mem()
test_contiguous_file()
f_forward()
f_putc()
f_puts()
f_printf()
f_gets()
Examples
References
from
examples
Code
Location
Referrer
FRESULT
f_read
(
ff.c:3951
FRESULT
f_read
(
FIL
*
fp
,
void
*
buff
,
UINT
btr
,
UINT
*
br
)
;
/* Read data from the file */
ff.h:314
FRESULT
res
=
f_read
(
file
,
dst
,
size
,
&
read
)
;
vfs_fat.c:487
vfs_fat_read()
f_res
=
f_read
(
file
,
dst
,
size
,
&
read
)
;
vfs_fat.c:515
vfs_fat_pread()
res
=
f_read
(
pf1
,
buf
,
will_copy
,
&
read
)
;
vfs_fat.c:828
vfs_fat_link()
Call Tree
from
examples
f_read()
is called by 3 functions and calls 6 functions:
vfs_fat_read()
vfs_fat_pread()
vfs_fat_link()
All items filtered out
f_read()
ff_disk_read()
ff_disk_write()
validate()
clst2sect()
get_fat()
unlock_volume()
All items filtered out
Data Use
from
examples
f_read()
reads 17 variables and writes 5 variables:
FFOBJID::objsize
FIL::obj
FIL::flag
FIL::err
FIL::fptr
FIL::clust
FIL::sect
FIL::buf
FRESULT::FR_OK
FRESULT::FR_DISK_ERR
FRESULT::FR_INT_ERR
FRESULT::FR_DENIED
FATFS::pdrv
FATFS::csize
FATFS::ssize
FFOBJID::sclust
DRESULT::RES_OK
All items filtered out
f_read()
FIL::flag
FIL::err
FIL::fptr
FIL::clust
FIL::sect
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