You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
195 B
C
10 lines
195 B
C
7 years ago
|
#ifndef DISPLAY_DRAW_H_
|
||
|
#define DISPLAY_DRAW_H_
|
||
|
|
||
|
void dsp_rect(int x, int y, int w, int h, uint16_t color);
|
||
|
|
||
|
void dsp_cpos(int x, int y);
|
||
|
void dsp_puts(const char *s);
|
||
|
|
||
|
#endif // DISPLAY_DRAW_H_
|