mirror of
https://github.com/stasenso/rp_pico_display_engine.git
synced 2026-06-26 21:32:41 +03:00
13 lines
267 B
C
13 lines
267 B
C
#ifndef IMAGE_DATA_H
|
|
#define IMAGE_DATA_H
|
|
|
|
#include <stdint.h>
|
|
|
|
extern const uint16_t image_linear_width;
|
|
extern const uint8_t char_width;
|
|
extern const uint8_t char_height;
|
|
extern const uint16_t total_chars;
|
|
extern const uint8_t image_data[];
|
|
|
|
#endif // IMAGE_DATA_H
|