HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Functions
fatfs_tests.h File Reference

Go to the source code of this file.

Functions

MEMSPACE void fatfs_help (int full)
 Display FatFs test diagnostics help menu. More...
 
MEMSPACE int fatfs_tests (int argc, char *argv[])
 FatFs test parser. More...
 
MEMSPACE void mmc_test (void)
 
MEMSPACE int fatfs_ls (char *name)
 
MEMSPACE long fatfs_cat (char *name)
 
MEMSPACE long fatfs_copy (char *from, char *to)
 
MEMSPACE int fatfs_create (char *name, char *str)
 
MEMSPACE int fatfs_cd (char *name)
 
MEMSPACE int fatfs_mkdir (char *name)
 
MEMSPACE int fatfs_pwd (void)
 
MEMSPACE int fatfs_rename (const char *oldpath, const char *newpath)
 
MEMSPACE int fatfs_rm (char *name)
 
MEMSPACE int fatfs_rmdir (char *name)
 
MEMSPACE int fatfs_stat (char *name)
 

Function Documentation

◆ fatfs_cat()

MEMSPACE long fatfs_cat ( char *  name)

Referenced by fatfs_tests().

◆ fatfs_cd()

MEMSPACE int fatfs_cd ( char *  name)

Referenced by fatfs_tests().

◆ fatfs_copy()

MEMSPACE long fatfs_copy ( char *  from,
char *  to 
)

Referenced by fatfs_tests().

◆ fatfs_create()

MEMSPACE int fatfs_create ( char *  name,
char *  str 
)

Referenced by fatfs_tests().

◆ fatfs_help()

MEMSPACE void fatfs_help ( int  full)

Display FatFs test diagnostics help menu.

Returns
void

Definition at line 45 of file fatfs_tests.c.

Referenced by fatfs_tests(), and help().

◆ fatfs_ls()

MEMSPACE int fatfs_ls ( char *  name)
  • Credit: part of FatFs avr example project (C)ChaN, 2013.
Parameters
[in]ptrpathname of directory to list
See also
fatfs_filinfo_list().
Returns
1 on success or 0 on error

Definition at line 373 of file fatfs_tests.c.

Referenced by fatfs_tests(), and user_task().

◆ fatfs_mkdir()

MEMSPACE int fatfs_mkdir ( char *  name)

Referenced by fatfs_tests().

◆ fatfs_pwd()

MEMSPACE int fatfs_pwd ( void  )

Referenced by fatfs_tests().

◆ fatfs_rename()

MEMSPACE int fatfs_rename ( const char *  oldpath,
const char *  newpath 
)

Referenced by fatfs_tests().

◆ fatfs_rm()

MEMSPACE int fatfs_rm ( char *  name)

Referenced by fatfs_tests().

◆ fatfs_rmdir()

MEMSPACE int fatfs_rmdir ( char *  name)

Referenced by fatfs_tests().

◆ fatfs_stat()

MEMSPACE int fatfs_stat ( char *  name)

Referenced by fatfs_tests().

◆ fatfs_tests()

MEMSPACE int fatfs_tests ( int  argc,
char *  argv[] 
)

FatFs test parser.

  • Keywords and arguments are matched against fatfs test functions If ther are matched the function along with its argements are called.
Parameters
[in]strUser supplied command line with FatFs test and arguments.
Returns
1 The ruturn code indicates a command matched.
0 if no rules matched

Definition at line 103 of file fatfs_tests.c.

Referenced by user_task().

◆ mmc_test()

MEMSPACE void mmc_test ( void  )

Referenced by fatfs_tests().