Select one of the symbols to view example projects that use it.
 
Outline
#define LV_INIT_H
#include "lv_conf_internal.h"
#include "misc/lv_types.h"
lv_init();
lv_deinit();
lv_is_initialized();
Files
loading...
SourceVuESP-IDF Framework and Examplesi80_controller samplemanaged_components/lvgl__lvgl/src/lv_init.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** * @file lv_init.h * *//* ... */ #ifndef LV_INIT_H #define LV_INIT_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************//* ... */ #include "lv_conf_internal.h" #include "misc/lv_types.h" /********************* * DEFINES *********************//* ... */ /********************** * TYPEDEFS **********************//* ... */ /********************** * GLOBAL PROTOTYPES **********************//* ... */ /** * 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 *//* ... */ bool lv_is_initialized(void); /********************** * MACROS **********************//* ... */ #ifdef __cplusplus }{...} /*extern "C"*/ #endif /* ... */ #endif /*LV_INIT_H*/
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.