mirror of
https://github.com/stasenso/rp_pico_display_engine.git
synced 2026-06-27 05:42:41 +03:00
Font is displayed correctly
This commit is contained in:
+3
-3
@@ -2,11 +2,11 @@
|
||||
#define FONT_DATA_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include <wchar.h>
|
||||
extern const uint16_t font_width;
|
||||
extern const uint16_t font_height;
|
||||
extern const uint8_t font_data[];
|
||||
|
||||
void draw_string(uint16_t x, uint16_t y, const char *str);
|
||||
void draw_char(uint8_t x, uint8_t y, char c);
|
||||
void draw_string(uint16_t x, uint16_t y, const wchar_t *str);
|
||||
void draw_char(uint16_t x, uint16_t y, wchar_t c);
|
||||
#endif // FONT_DATA_H
|
||||
|
||||
Reference in New Issue
Block a user