HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
30 #include "user_config.h"
51 "Note: fatfs tests MUST start with \"fatfs\" keyword\n"
53 "Note: fatfs prefix is optional\n"
56 #ifdef FATFS_UTILS_FULL
57 "fatfs attrib file p1 p2\n"
60 "fatfs copy file1 file2\n"
61 "fatfs create file str\n"
65 "fatfs ls directory\n"
67 #ifdef FATFS_UTILS_FULL
74 #ifdef FATFS_UTILS_FULL
78 "fatfs rename old new\n"
119 if ( !ptr ||
MATCHI(ptr,
"help") )
137 for(i=ind+1;i<argc;++i)
154 else if (
MATCHARGS(ptr,
"status", (ind + 1), argc))
163 #ifdef FATFS_UTILS_FULL
164 else if (
MATCHARGS(ptr,
"mmc_test",(ind+0),argc ))
170 else if (
MATCHARGS(ptr,
"mmc_init",(ind+0),argc))
176 else if (
MATCHARGS(ptr,
"attrib",(ind+3),argc))
182 printf(
"fatfs attribute failed\n");
188 else if (
MATCHARGS(ptr,
"cat", (ind + 1), argc))
198 else if (
MATCHARGS(ptr,
"cd", (ind + 1), argc))
202 printf(
"fatfs cd %s failed\n", argv[ind]);
209 else if (
MATCHARGS(ptr,
"copy", (ind + 2), argc))
213 printf(
"fatfs copy failed\n");
219 else if (
MATCHARGS(ptr,
"create", (ind + 2), argc))
223 printf(
"fatfs create failed\n");
229 else if (
MATCHARGS(ptr,
"mkdir", (ind + 1), argc))
233 printf(
"fatfs mkdir %s failed\n", argv[ind]);
239 else if (
MATCHARGS(ptr,
"mkfs", (ind + 0), argc))
248 printf(
"fatfs mkfs f_mount failed\n");
257 printf(
"fatfs mkfs f_mkfs failed\n");
265 else if (
MATCHARGS(ptr,
"pwd", (ind + 0), argc))
269 printf(
"fatfs pwd failed\n");
274 #endif // #if FF_FS_RPATH >= 2
275 #endif // #if FF_FS_RPATH
277 else if (
MATCHARGS(ptr,
"rename", (ind + 2), argc))
281 printf(
"fatfs mkdir %s failed\n", argv[ind]);
287 else if (
MATCHARGS(ptr,
"rmdir", (ind + 1), argc))
291 printf(
"fatfs rmdir %s failed\n", argv[ind]);
297 else if (
MATCHARGS(ptr,
"rm", (ind + 1), argc))
301 printf(
"fatfs rm %s failed\n", argv[ind]);
307 else if (
MATCHARGS(ptr,
"stat", (ind + 1), argc))
311 printf(
"fatfs stat %s failed\n", argv[ind]);
316 #endif // FATFS_UTILS_FULL
322 #ifdef FATFS_UTILS_FULL
333 printf(
"START MMC TEST\n");
335 printf(
"MMC Directory List\n");
338 #ifdef FATFS_UTILS_FULL
383 memset(buff,0,
sizeof(buff)-1);
393 printf(
"Listing:[%s]\n",buff);
414 s1++; p1 += fno.
fsize;
418 optimistic_yield(1000);
423 printf(
"%4u File(s),%10lu bytes total\n%4u Dir(s)", s1, p1, s2);
425 printf(
", %10luK bytes free\n", p1 * fs->
csize / 2);
432 #ifdef FATFS_UTILS_FULL
452 printf(
"Reading[%s]\n", name);
465 res =
f_read(&fp, buff, 512, &s1);
468 printf(
"cat read error\n");
487 optimistic_yield(1000);
493 printf(
"%lu bytes\n", size);
520 printf(
"Opening %s\n", from);
524 printf(
"f_open %s failed\n", from);
527 printf(
"Creating %s\n", to);
531 printf(
"f_open %s failed\n", to);
538 printf(
"f_open calloc failed!\n");
547 res =
f_read(&file1, ptr, MSIZE, &s1);
550 printf(
"fatfs copy read %s error\n",from);
555 res =
f_write(&file2, ptr, s1, &s2);
558 printf(
"fatfs copy %s write\n",to);
562 printf(
"Copied: %08ld\r", size);
571 printf(
"%lu bytes copied.\n", size);
593 printf(
"Creating [%s]\n", name);
594 printf(
"Text[%s]\n", str);
598 printf(
"fatfs_create f_open error\n");
608 printf(
"fatfs_create f_write error\n");
613 printf(
"fatfs_create f_write error - wanted(%d) got(%d)\n",s1,len);
634 printf(
"fatfs cd [%s]\n", name);
638 printf(
"fatfs_cd %s failed\n",name);
657 printf(
"fatfs mkdir [%s]\n", name);
661 printf(
"mkdir %s failed\n",name);
682 printf(
"fatfs pwd failed\n");
685 printf(
"fatfs pwd [%s]\n", str);
699 int fatfs_rename(
const char *oldpath,
const char *newpath)
703 printf(
"fatfs rename [%s] to [%s]\n", oldpath,newpath);
707 printf(
"fatfs rename failed\n");
726 printf(
"fatfs rm [%s]\n", name);
730 printf(
"fatfs_rm %s failed\n", name);
748 printf(
"fatfs rmdir [%s]\n", name);
752 printf(
"fatfs rmdir %s failed\n", name);
773 printf(
"fatfs stat [%s]\n", name);
774 res =
f_stat(name, &info);
777 printf(
"fatfs f_stat %s failed\n",name);
MEMSPACE long fatfs_cat(char *name)
MEMSPACE long fatfs_copy(char *from, char *to)
MEMSPACE void mmc_test(void)
MEMSPACE int fatfs_mkdir(char *name)
MEMSPACE int printf(const char *format,...)
MEMSPACE int fatfs_pwd(void)
FRESULT f_write(FIL *fp, const void *buff, UINT btw, UINT *bw)
MEMSPACE long atol(const char *str)
Convert ASCII string to number in base 10.
FRESULT f_stat(const TCHAR *path, FILINFO *fno)
MEMSPACE int MATCHI(char *str, char *pat)
Compare two strings without case.
FRESULT f_rename(const TCHAR *path_old, const TCHAR *path_new)
void * safecalloc(int size, int elements)
Safe Alloc - Display Error message if Calloc fails.
int putchar(int c)
put a character to stdout See fdevopen() sets stream->put get for TTY devices
FRESULT f_open(FIL *fp, const TCHAR *path, BYTE mode)
MEMSPACE int fatfs_rename(const char *oldpath, const char *newpath)
Various string and character functions.
FRESULT f_mkfs(const TCHAR *path, const MKFS_PARM *opt, void *work, UINT len)
void safefree(void *p)
Safe free - Only free a pointer if it is in malloc memory range.
MEMSPACE int fatfs_rm(char *name)
FRESULT f_unlink(const TCHAR *path)
MEMSPACE int fatfs_tests(int argc, char *argv[])
FatFs test parser.
MEMSPACE void fatfs_filinfo_list(FILINFO *info)
Display FILINFO structure in a readable format.
void * safemalloc(size_t size)
Safe Malloc - Display Error message if Malloc fails.
MEMSPACE WEAK_ATR char * strcpy(char *dest, const char *src)
copy a string
MEMSPACE size_t WEAK_ATR strlen(const char *str)
String Length.
Common Linux/POSIX time functions.
FRESULT f_getcwd(TCHAR *buff, UINT len)
FRESULT f_opendir(DIR *dp, const TCHAR *path)
MEMSPACE void sep()
print seperator
MEMSPACE int fatfs_status(char *name)
Compute space used, number of directories and files contained used by a drive.
MEMSPACE int MATCHARGS(char *str, char *pat, int min, int argc)
Match two strings and compare argument index Display message if the number of arguments is too few.
MEMSPACE int fatfs_cd(char *name)
FRESULT f_chdir(const TCHAR *path)
MEMSPACE int mmc_init(int verbose)
Initialize MMC and FatFs interface, display diagnostics.
TCHAR fname[FF_LFN_BUF+1]
FRESULT f_mount(FATFS *fs, const TCHAR *path, BYTE opt)
MEMSPACE void fatfs_help(int full)
Display FatFs test diagnostics help menu.
FRESULT f_closedir(DIR *dp)
MEMSPACE int fatfs_rmdir(char *name)
FRESULT f_chmod(const TCHAR *path, BYTE attr, BYTE mask)
MEMSPACE int fatfs_create(char *name, char *str)
MEMSPACE int fatfs_stat(char *name)
FRESULT f_mkdir(const TCHAR *path)
FRESULT f_readdir(DIR *dp, FILINFO *fno)
FRESULT f_read(FIL *fp, void *buff, UINT btr, UINT *br)
MEMSPACE int fatfs_ls(char *name)
FRESULT f_getfree(const TCHAR *path, DWORD *nclst, FATFS **fatfs)