ESP8266 ILI9341 display support code with printf sources, wire-frame viewer and custom fonts
1.0
ESP8266ILI9341DisplayProject
|
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 100 of file buffer.c.
Referenced by buffer_gets().
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 75 of file buffer.c.
Referenced by buffer_read_open().
void buffer_ungetc | ( | buffer_t * | p, |
int | c | ||
) |
buffered ungetc
[in] | p | buffer structure ppointer |
[in] | c | character to unget |
Definition at line 90 of file buffer.c.
Referenced by buffer_gets().