HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
30 #include "user_config.h"
44 #if FF_MULTI_PARTITION != 0
45 const PARTITION Drives[] =
59 static const char *err_msg[] =
82 "TOO_MANY_OPEN_FILES",
114 fat = ((uint32_t)(t->
tm_year - 80) << 25)
115 | (((uint32_t)t->
tm_mon+1) << 21)
116 | (((uint32_t)t->
tm_mday) << 16)
118 | ((uint32_t)t->
tm_min << 5)
119 | ((uint32_t)t->
tm_sec >> 1);
150 ptr =
"INVALID ERROR MESSAGE";
152 ptr = (
char *) err_msg[(
int)rc];
153 printf(
"rc=%u FR_%s\n", rc, ptr);
198 if (fr !=
FR_OK)
break;
207 optimistic_yield(1000);
268 memset(buff,0,
sizeof(buff)-1);
269 while(*name ==
' ' || *name ==
'\t')
283 printf(
"fatfs status:%s\n",buff);
287 printf(
"fatfs_status f_getfree failed\n");
304 printf(
"fatfs_status f_getlabel failed\n");
307 printf(
"Volume name = %s\n", label[0] ? label :
"<blank>");
315 printf(
"fatfs_status fatfs_scan_files failed\n");
318 printf(
"%u files, %lu bytes.\n%u folders.\n"
319 "%lu KB total disk space.\n%lu KB available.\n",
343 if(info->
fname[0] == 0)
345 printf(
"fatfs_filinfo_list: empty\n");
354 printf(
"%s %u/%02u/%02u %02u:%02u %9lu %s",
MEMSPACE int printf(const char *format,...)
MEMSPACE DWORD get_fattime(void)
Read time and convert to FAT32 time.
MEMSPACE char * fatfs_fstype(int type)
return a string with the file system type
MEMSPACE void fatfs_filinfo_list(FILINFO *info)
Display FILINFO structure in a readable format.
MEMSPACE WEAK_ATR char * strcpy(char *dest, const char *src)
copy a string
MEMSPACE void put_rc(int rc)
display FatFs return code as ascii string
MEMSPACE size_t WEAK_ATR strlen(const char *str)
String Length.
Common Linux/POSIX time functions.
FRESULT f_opendir(DIR *dp, const TCHAR *path)
MEMSPACE int fatfs_status(char *name)
Compute space used, number of directories and files contained used by a drive.
MEMSPACE time_t time(time_t *t)
Return second from epoch - POSIX function.
DWORD AccSize
Total file space used.
MEMSPACE tm_t * localtime(time_t *tp)
Convert POSIX epoch time_t *tp into POSIX tm_t *result.
TCHAR fname[FF_LFN_BUF+1]
uint32_t time_t
type of EPOCH result.
FATFS Fatfs[FF_VOLUMES]
FatFs Drive Volumes.
WORD AccFiles
Total number or Files and Directories.
FRESULT f_getlabel(const TCHAR *path, TCHAR *label, DWORD *vsn)
Math IO functions, and verious conversion code with floating point support.
MEMSPACE uint32_t tm_to_fat(tm_t *t)
FAT time structer reference.
FRESULT f_readdir(DIR *dp, FILINFO *fno)
FRESULT f_getfree(const TCHAR *path, DWORD *nclst, FATFS **fatfs)
static MEMSPACE int fatfs_scan_files(char *path)
Compute space used, number of directories and files contained under a specified directory.