fx_file is only used within Fx_uSD_File_Edit.
 
Symbols
loading...
Files
loading...

fx_file variable

Syntax

FX_FILE fx_file;

References

LocationReferrerText
app_filex.c:51
FX_FILE fx_file;
app_filex.c:134fx_thread_entry()
status = fx_file_open(&sdio_disk, &fx_file, "STM32.TXT", FX_OPEN_FOR_WRITE);
app_filex.c:144fx_thread_entry()
status = fx_file_seek(&fx_file, 0);
app_filex.c:154fx_thread_entry()
status = fx_file_write(&fx_file, data, sizeof(data));
app_filex.c:164fx_thread_entry()
status = fx_file_close(&fx_file);
app_filex.c:183fx_thread_entry()
status = fx_file_open(&sdio_disk, &fx_file, "STM32.TXT", FX_OPEN_FOR_READ);
app_filex.c:193fx_thread_entry()
status = fx_file_seek(&fx_file, 0);
app_filex.c:203fx_thread_entry()
status = fx_file_read(&fx_file, read_buffer, sizeof(data), &bytes_read);
app_filex.c:213fx_thread_entry()
status = fx_file_close(&fx_file);

Type Use

Type of fx_file
fx_file
all items filtered out