HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the source code of this file.
Functions | |
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. More... | |
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 More... | |
void | buffer_ungetc (buffer_t *p, int c) |
buffered ungetc More... | |
int | buffer_getc (buffer_t *p) |
buffered getc More... | |
uint8_t * | buffer_gets (uint8_t *str, int size, buffer_t *p) |
buffered getc More... | |
int buffer_getc | ( | buffer_t * | p | ) |
buffered getc
[in] | p | buffer structure ppointer |
Definition at line 98 of file buffer.c.
Referenced by buffer_gets().
uint8_t* buffer_gets | ( | uint8_t * | str, |
int | size, | ||
buffer_t * | p | ||
) |
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
[in] | p | buffer structure ppointer |
Definition at line 72 of file buffer.c.
Referenced by buffer_read_open().
buffer_t* buffer_read_open | ( | char * | name, |
uint8_t * | buf, | ||
int | size | ||
) |
void buffer_ungetc | ( | buffer_t * | p, |
int | c | ||
) |
buffered ungetc
[in] | p | buffer structure ppointer |
[in] | c | character to unget |
Definition at line 88 of file buffer.c.
Referenced by buffer_gets().