mirror of
https://github.com/m5stack/StackChan.git
synced 2026-05-20 11:49:45 -07:00
24 lines
356 B
C
24 lines
356 B
C
/*
|
|
* SPDX-FileCopyrightText: 2026 M5Stack Technology CO LTD
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
#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
|