You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
831 B
56 lines
831 B
2 years ago
|
/**
|
||
11 months ago
|
* @file lv_init.h
|
||
2 years ago
|
*
|
||
|
*/
|
||
|
|
||
11 months ago
|
#ifndef LV_INIT_H
|
||
|
#define LV_INIT_H
|
||
2 years ago
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/*********************
|
||
|
* INCLUDES
|
||
|
*********************/
|
||
11 months ago
|
#include <stdbool.h>
|
||
|
#include "lv_conf_internal.h"
|
||
2 years ago
|
|
||
|
/*********************
|
||
|
* DEFINES
|
||
|
*********************/
|
||
|
|
||
|
/**********************
|
||
|
* TYPEDEFS
|
||
|
**********************/
|
||
|
|
||
|
/**********************
|
||
|
* GLOBAL PROTOTYPES
|
||
|
**********************/
|
||
|
|
||
|
/**
|
||
11 months ago
|
* Initialize LVGL library.
|
||
|
* Should be called before any other LVGL related function.
|
||
|
*/
|
||
|
void lv_init(void);
|
||
|
|
||
|
/**
|
||
|
* Deinit the 'lv' library
|
||
|
*/
|
||
|
void lv_deinit(void);
|
||
|
|
||
|
/**
|
||
|
* Returns whether the 'lv' library is currently initialized
|
||
2 years ago
|
*/
|
||
11 months ago
|
bool lv_is_initialized(void);
|
||
2 years ago
|
|
||
|
/**********************
|
||
|
* MACROS
|
||
|
**********************/
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} /*extern "C"*/
|
||
|
#endif
|
||
|
|
||
11 months ago
|
#endif /*LV_INIT_H*/
|