mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
c9fa4ef0fc
* feat(porting): add flushing control to the template * Update examples/porting/lv_port_disp_template.c Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com> * Update examples/porting/lv_port_disp_template.c Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com> * Update examples/porting/lv_port_disp_template.c Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com> * Update lv_port_disp_template.h * use consistent comment Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
54 lines
1021 B
C
54 lines
1021 B
C
/**
|
|
* @file lv_port_disp_templ.h
|
|
*
|
|
*/
|
|
|
|
/*Copy this file as "lv_port_disp.h" and set this value to "1" to enable content*/
|
|
#if 0
|
|
|
|
#ifndef LV_PORT_DISP_TEMPL_H
|
|
#define LV_PORT_DISP_TEMPL_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*********************
|
|
* INCLUDES
|
|
*********************/
|
|
#include "lvgl/lvgl.h"
|
|
|
|
/*********************
|
|
* 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*/
|