mirror of
https://github.com/lvgl/lvgl.git
synced 2025-02-04 07:13:00 +08:00
18 lines
269 B
C
18 lines
269 B
C
|
#ifndef DEJAVU_40_H
|
||
|
#define DEJAVU_40_H
|
||
|
|
||
|
/*Use UTF-8 encoding in the IDE*/
|
||
|
|
||
|
#include "misc_conf.h"
|
||
|
|
||
|
#if USE_FONT_DEJAVU_40 != 0
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include "../lv_font.h"
|
||
|
|
||
|
extern font_t font_dejavu_40;
|
||
|
|
||
|
#endif /*USE_FONT_DEJAVU_40 != 0*/
|
||
|
|
||
|
#endif /*DEJAVU_40_H*/
|