HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
114 #include "user_config.h"
146 "Operation not permitted",
147 "No such file or directory",
149 "Interrupted system call",
151 "No such device or address",
152 "Argument list too long",
155 "No child processes",
160 "Block device required",
161 "Device or resource busy",
168 "File table overflow",
169 "Too many open files",
173 "No space left on device",
175 "Read-only file system",
178 "Math argument out of domain of func",
179 "Math result not representable",
227 optimistic_yield(1000);
238 return stream->
unget;
258 printf(
"fgetc stream->get NULL\n");
262 c = stream->
get(stream);
299 optimistic_yield(1000);
315 if (stream->
len < stream->
size)
324 printf(
"fputc stream->put NULL\n");
327 ret = stream->
put(c, stream);
416 return(
fputc(c, stream));
536 long offset =
ftell(stream);
566 ret =
lseek(fn, offset, whence);
656 position += fh->
fptr;
664 if(position !=
f_tell(fh) )
823 size_t fread(
void *ptr,
size_t size,
size_t nmemb,
FILE *stream)
825 size_t count = size * nmemb;
830 ret =
read(fn, ptr, count);
834 return((
size_t) ret);
890 size_t fwrite(
const void *ptr,
size_t size,
size_t nmemb,
FILE *stream)
892 size_t count = size * nmemb;
897 ret =
write(fn, ptr, count);
902 return((
size_t) ret);
916 int open(
const char *pathname,
int flags)
971 res =
f_open(fh, pathname, (
BYTE) (fatfs_modes & 0xff));
1047 char *ptr = (
char *) buf;
1053 ret =
fgetc(stream);
1075 res =
f_read(fh, (
void *) buf, bytes, &size);
1215 char *ptr = (
char *) buf;
1221 ret =
fputc(c, stream);
1242 res =
f_write(fh, buf, bytes, &size);
1267 return(
close(fn) );
1322 int fstat(
int fd,
struct stat *buf)
1349 char *ptr = (
char *)
ctime_gm(&timev);
1352 if(len && ptr[len-1] ==
'\n')
1389 res =
f_stat(name, &info);
1436 uint16_t fdate,ftime;
1607 int fchmod(
int fd,
mode_t mode)
1653 if(
chmod(pathname, mode))
1677 int rename(
const char *oldpath,
const char *newpath)
1852 const char *ptr =
NULL;
1860 printf(
"%s: %s\n", s, ptr);
1916 if (put == 0 && get == 0)
1974 len =
MATCH(name,
"/dev/sd");
1977 printf(
"mkfs expected /dev/sda .. /dev/sdj\n");
1984 if(c >=
'a' && c <= (
'a' + 9))
1992 printf(
"mkfs f_mount failed\n");
2000 printf(
"mkfs calloc failed\n");
2006 res =
f_mkfs(dev, opt, mem, 1024);
2009 printf(
"mkfs f_mkfs failed\n");
2055 if( res !=
FR_OK || size != 1)
2091 if(res !=
FR_OK || size != 1)
2143 if( res !=
FR_OK || size != 1)
2281 memset(&tp, 0,
sizeof(
struct tm));
2287 tp.
tm_mon = ((date >> 5) & 0x0f) - 1;
2288 tp.
tm_year = ((date >> 9) & 0x7f) + 80;
2307 *date = ((uint16_t)(t->
tm_year - 80) << 9)
2308 | (((uint16_t)t->
tm_mon+1) << 5)
2312 | ((uint16_t)t->
tm_min << 5)
2313 | ((uint16_t)t->
tm_sec >> 1);
2340 if( stream ==
NULL )
2542 va_start(va, format);
2546 return ((
int)fn.
sent);
MEMSPACE FILE * fopen(const char *path, const char *mode)
POSIX Open a file with path name and ascii file mode string.
static MEMSPACE void _fprintf_putc(struct _printf_t *p, char ch)
fprintf character write function
MEMSPACE int chdir(const char *pathname)
POSIX change directory.
MEMSPACE int putc(int c, FILE *stream)
Put a character to a stream See fdevopen() sets stream->put get for TTY devices.
MEMSPACE int printf(const char *format,...)
#define FATFS_R
FATFS open modes.
int errno
Note: fdevopen assigns stdin,stdout,stderr.
#define stdin
define stdin, stdout and stderr
#define modecmp(str, pat)
used in posix.c to compare to ascii file modes
MEMSPACE void dump_stat(struct stat *sp)
Display struct stat, from POSIX stat(0 or fstat(), in ASCII. NOT POSIX.
MEMSPACE int isatty(int fileno)
Test POSIX fileno if it is a Serial Console/TTY.
MEMSPACE time_t fat_time_to_unix(uint16_t date, uint16_t time)
Convert FatFs file date and time to POSIX epoch seconds. NOT POSIX.
int(* put)(char, struct __file *)
MEMSPACE char * mctime(time_t timev)
Display Ascii formatted time from timev seconds NOT POSIX.
FRESULT f_write(FIL *fp, const void *buff, UINT btw, UINT *bw)
MEMSPACE int MATCH(char *str, char *pat)
Compare two strings.
MEMSPACE int open(const char *pathname, int flags)
POSIX Open a file with integer mode flags.
FRESULT f_stat(const TCHAR *path, FILINFO *fno)
void(* put)(struct _printf_t *, char)
FRESULT f_rename(const TCHAR *path_old, const TCHAR *path_new)
MEMSPACE void sync(void)
POSIX Sync all pending file changes and metadata on ALL files.
int mkfs(char *name)
Formt SD card.
MEMSPACE int WEAK_ATR tolower(int c)
Convert character to lower case, only if it is upper case.
MEMSPACE int fatfs_putc(char c, FILE *stream)
Private FatFs function called by fputc() to put a byte from file stream NOT POSIX open() assigns stre...
MEMSPACE ssize_t write(int fd, const void *buf, size_t count)
POSIX Write count bytes from *buf to fileno fd.
MEMSPACE time_t timegm(tm_t *t)
Convert tm_t structure as GMT time into GMT seconds since 1900. All calculactions are in GMT regardle...
FRESULT f_utime(const TCHAR *path, const FILINFO *fno)
void * safecalloc(int size, int elements)
Safe Alloc - Display Error message if Calloc fails.
MEMSPACE char * fgets(char *str, int size, FILE *stream)
get a string from stdin See fdevopen() sets stream->put get for TTY devices
MEMSPACE int new_file_descriptor(void)
Allocate a POSIX FILE descriptor. NOT POSIX.
MEMSPACE int fputc(int c, FILE *stream)
Put a byte to TTY device or FatFs file stream open() or fopen() sets stream->put = fatfs_outc() for F...
int closedir(DIR *dirp)
POSIX closedir.
MEMSPACE int fprintf(FILE *fp, const char *format,...)
fprintf function Example user defined printf function using fputc for I/O This method allows I/O to d...
FRESULT f_open(FIL *fp, const TCHAR *path, BYTE mode)
MEMSPACE void clrerror(FILE *stream)
clrerror resets stream EOF and error flags
static DIR _dp
POSIX opendir.
MEMSPACE tm_t * gmtime(time_t *tp)
Convert epoch GMT time_t *tp into POSIX static tm_t *t.
MEMSPACE int chmod(const char *pathname, mode_t mode)
POSIX chmod function - change file access permission Unfortunately file f_open modes and f_chmod mode...
MEMSPACE char * ctime_gm(time_t *tp)
GMT version of POSIX ctime().
Various string and character functions.
FRESULT f_mkfs(const TCHAR *path, const MKFS_PARM *opt, void *work, UINT len)
MEMSPACE int free_file_descriptor(int fileno)
Free POSIX fileno FILE descriptor. NOT POSIX.
MEMSPACE int close(int fileno)
POSIX Close a file with fileno handel.
MEMSPACE int fatfs_to_fileno(FIL *fh)
Convert FatFS file handle to POSIX fileno. NOT POSIX.
MEMSPACE int rename(const char *oldpath, const char *newpath)
POSIX rename a file by name.
MEMSPACE size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream)
POSIX write nmemb elements from buf, size bytes each, to the stream fd.
void safefree(void *p)
Safe free - Only free a pointer if it is in malloc memory range.
MEMSPACE char WEAK_ATR * strerror(int errnum)
POSIX strerror() - convert POSIX errno to text with user message.
MEMSPACE int ungetc(int c, FILE *stream)
Un-Get byte from a TTY device or FatFs file stream.
undefine any potential macro version of these functions
#define _FDEV_SETUP_WRITE
#define fdev_set_udata(stream, u)
device IO udata
const char * sys_errlist[]
POSIX error messages for each errno value.
MEMSPACE int rmdir(const char *pathname)
POSIX delete a directory.
FRESULT f_unlink(const TCHAR *path)
MEMSPACE void unix_time_to_fat(time_t epoch, uint16_t *date, uint16_t *time)
Convert Linux POSIX time_t to FAT32 date and time. NOT POSIX.
int(* get)(struct __file *)
MEMSPACE int stat(char *name, struct stat *buf)
POSIX stat - get file status of named file.
MEMSPACE char * baseext(char *str)
File extention of a file name. NOT POSIX.
MEMSPACE int getchar()
functions normally defined as macros
static dirent_t _de
POSIX opendir.
dirent_t * readdir(DIR *dirp)
void * safemalloc(size_t size)
Safe Malloc - Display Error message if Malloc fails.
char d_name[MAX_NAME_LEN]
MEMSPACE int posix_fopen_modes_to_open(const char *mode)
Convert POSIX fopen mode to POSIX open mode flags. NOT POSIX.
MEMSPACE int fatfs_getc(FILE *stream)
Private FatFs function called by fgetc() to get a byte from file stream FIXME buffer this function ca...
MEMSPACE int fputs(const char *str, FILE *stream)
put a string to stdout See fdevopen() sets stream->put get for TTY devices
MEMSPACE FILE * fileno_to_stream(int fileno)
Convert POSIX fileno to POSIX FILE stream pointer. NOT POSIX.
MEMSPACE size_t WEAK_ATR strlen(const char *str)
String Length.
MEMSPACE int syncfs(int fd)
POSIX Sync pending file changes and metadata for specified fileno.
MEMSPACE char * basename(char *str)
POSIX Basename of filename.
FRESULT f_getcwd(TCHAR *buff, UINT len)
MEMSPACE void perror(const char *s)
POSIX perror() - convert POSIX errno to text with user message.
MEMSPACE ssize_t read(int fd, const void *buf, size_t count)
POSIX read count bytes from *buf to fileno fd.
FRESULT f_opendir(DIR *dp, const TCHAR *path)
MEMSPACE int ftruncate(int fd, off_t length)
POSIX truncate open file to length.
FILE * __iob[MAX_FILES]
POSIX fileno to POSIX FILE stream table.
DIR * opendir(const char *pathdir)
MEMSPACE int fclose(FILE *stream)
POSIX close a file stream.
MEMSPACE long ftell(FILE *stream)
POSIX file position of open stream.
#define fdev_get_udata(stream)
FRESULT f_lseek(FIL *fp, FSIZE_t ofs)
MEMSPACE int mkdir(const char *pathname, mode_t mode)
POSIX make a directory.
MEMSPACE int ferror(FILE *stream)
ferror reports if the stream has an error flag set
MEMSPACE int fseek(FILE *stream, long offset, int whence)
POSIX seek to file possition.
MEMSPACE time_t time(time_t *t)
Return second from epoch - POSIX function.
MEMSPACE int putchar(int c)
put a character to stdout See fdevopen() sets stream->put get for TTY devices
FRESULT f_chdir(const TCHAR *path)
#define SEEK_SET
Seek offset macros.
MEMSPACE void rewind(FILE *stream)
POSIX rewind file to the beginning.
MEMSPACE int truncate(const char *path, off_t length)
POSIX truncate named file to length.
MEMSPACE int fatfs_to_errno(FRESULT Result)
Convert FafFs error result to POSIX errno. NOT POSIX.
MEMSPACE char * getcwd(char *pathname, int len)
POSIX get current working directory.
MEMSPACE int fgetpos(FILE *stream, size_t *pos)
POSIX get position of file stream.
MEMSPACE int mmc_init(int verbose)
Initialize MMC and FatFs interface, display diagnostics.
MEMSPACE char * strerror_r(int errnum, char *buf, size_t buflen)
POSIX strerror_r() - convert POSIX errno to text with user message.
MEMSPACE int fileno(FILE *stream)
Convert POSIX stream pointer to POSIX fileno (index of __iob[])
#define O_ACCMODE
POSIX open modes - no other combination are allowed.
TCHAR fname[FF_LFN_BUF+1]
FRESULT f_mount(FATFS *fs, const TCHAR *path, BYTE opt)
MEMSPACE off_t lseek(int fileno, off_t position, int whence)
POSIX seek to file position.
FRESULT f_truncate(FIL *fp)
MEMSPACE FILE * fdevopen(int(*put)(char, FILE *), int(*get)(FILE *))
Device open functions.
MEMSPACE FIL * fileno_to_fatfs(int fileno)
Convert POSIX fileno to FatFS handle NOT POSIX.
uint32_t time_t
type of EPOCH result.
MEMSPACE int unlink(const char *pathname)
POSIX delete a file.
#define MAX_FILES
Maximum number of POSIX file handles.
MEMSPACE WEAK_ATR char * strncpy(char *dest, const char *src, size_t size)
copy a string of at most N characters
FRESULT f_closedir(DIR *dp)
MEMSPACE int feof(FILE *stream)
feof reports if the stream is at EOF
MEMSPACE int utime(const char *filename, const struct utimbuf *times)
Set Modification and Access time of a file.
MEMSPACE size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream)
POSIX read nmemb elements from buf, size bytes each, to the stream fd.
MEMSPACE int dirname(char *str)
POSIX directory name of a filename. Return the index of the last '/' character.
FRESULT f_chmod(const TCHAR *path, BYTE attr, BYTE mask)
MEMSPACE int fgetc(FILE *stream)
Get byte from a TTY device or FatFs file stream open() or fopen() sets stream->get = fatfs_getc() for...
MEMSPACE int puts(const char *str)
put a string to stdout See fdevopen() sets stream->put get for TTY devices
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 void _printf_fn(printf_t *fn, __memx const char *fmt, va_list va)
vsnprintf function
MEMSPACE int fsetpos(FILE *stream, size_t *pos)
POSIX set position of file stream.