4192f0d651
* [bsp][art-pi] add spi lcd ili9488 driver * [bsp][art-pi] support LVGL display * [bsp][artpi] support LVGL indev * [bsp][artpi] debug LVGL indev with ft6236 * [bsp][artpi] swap and invert touchpad coordinate * [bsp][artpi] redundant declarations * [bsp][artpi] indent BSP_USING_LVGL config * [bsp][artpi] default build debug version * [bsp][artpi] fix BSP_USING_LVGL Kconfig
25 lines
379 B
C
25 lines
379 B
C
/*
|
|
* Copyright (c) 2006-2022, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2022-02-01 Rudy Lo The first version
|
|
*/
|
|
|
|
#ifndef LV_PORT_DISP_H
|
|
#define LV_PORT_DISP_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void lv_port_disp_init(void);
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C"*/
|
|
#endif
|
|
|
|
#endif
|