Files
luban-lite-t3e-pro/packages/artinchip/lvgl-ui/lv_driver/lv_port_disp.h

28 lines
380 B
C
Raw Normal View History

2023-08-30 16:21:18 +08:00
/*
* Copyright (c) 2022-2023, ArtInChip Technology Co., Ltd
*
* SPDX-License-Identifier: Apache-2.0
*
*/
#ifndef LV_PORT_DISP_H
#define LV_PORT_DISP_H
#ifdef __cplusplus
extern "C" {
#endif
void lv_port_disp_init(void);
void lv_port_disp_exit(void);
int fbdev_draw_fps();
2024-01-27 08:47:24 +08:00
int disp_is_swap(void);
2023-08-30 16:21:18 +08:00
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /*LV_PORT_DISP_H*/