mirror of
https://github.com/m5stack/StackChan.git
synced 2026-04-27 11:02:40 +00:00
0cb413697b
Co-authored-by: jyy <jiangyeying@m5stack.com>
19 lines
256 B
C
19 lines
256 B
C
#ifndef LVGL_PORT_H
|
|
#define LVGL_PORT_H
|
|
|
|
#include "lvgl.h"
|
|
#include "esp_log.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void lvgl_port_init(void);
|
|
bool lvgl_port_lock(void);
|
|
void lvgl_port_unlock(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // LVGL_PORT_H
|