48 lines
874 B
C
48 lines
874 B
C
|
#if 1
|
||
|
|
||
|
#ifndef LV_PORT_DISP_TEMPL_H
|
||
|
#define LV_PORT_DISP_TEMPL_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/*********************
|
||
|
* INCLUDES
|
||
|
*********************/
|
||
|
|
||
|
|
||
|
/*********************
|
||
|
* DEFINES
|
||
|
*********************/
|
||
|
|
||
|
/**********************
|
||
|
* TYPEDEFS
|
||
|
**********************/
|
||
|
|
||
|
/**********************
|
||
|
* GLOBAL PROTOTYPES
|
||
|
**********************/
|
||
|
/* Initialize low level display driver */
|
||
|
void lv_port_disp_init(void);
|
||
|
|
||
|
/* Enable updating the screen (the flushing process) when disp_flush() is called by LVGL
|
||
|
*/
|
||
|
void disp_enable_update(void);
|
||
|
|
||
|
/* Disable updating the screen (the flushing process) when disp_flush() is called by LVGL
|
||
|
*/
|
||
|
void disp_disable_update(void);
|
||
|
|
||
|
/**********************
|
||
|
* MACROS
|
||
|
**********************/
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} /*extern "C"*/
|
||
|
#endif
|
||
|
|
||
|
#endif /*LV_PORT_DISP_TEMPL_H*/
|
||
|
|
||
|
#endif /*Disable/Enable content*/
|