HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
28 #include "user_config.h"
54 printf(
"buffer_read_open: Can not open:[%s]\n", name);
MEMSPACE FILE * fopen(const char *path, const char *mode)
POSIX Open a file with path name and ascii file mode string.
MEMSPACE int printf(const char *format,...)
uint8_t * buffer_gets(uint8_t *str, int size, buffer_t *p)
buffered getc
int buffer_getc(buffer_t *p)
buffered getc
MEMSPACE int fclose(FILE *stream)
POSIX close a file stream.
buffer_t * buffer_read_open(char *name, uint8_t *buf, int size)
FatFS does not have a f_fgetc() function Using f_read() of just 1 byte is VERY VERY SLOW.
character read buffering wrappers for FatFS WHY? Character at a time operation is in FatFS are VERY s...
void buffer_ungetc(buffer_t *p, int c)
buffered ungetc
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.
void buffer_read_close(buffer_t *p)
buffered read close FatFS does not have a f_fgetc() and using f_read() of just 1 byte is VERY SLOW