1 /**
2  * @file lv_port_fs_templ.h
3  *
4  */
5 
6 /*Copy this file as "lv_port_fs.h" and set this value to "1" to enable content*/
7 #if 0
8 
9 #ifndef LV_PORT_FS_TEMPL_H
10 #define LV_PORT_FS_TEMPL_H
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 /*********************
17  *      INCLUDES
18  *********************/
19 #include "lvgl/lvgl.h"
20 
21 /*********************
22  *      DEFINES
23  *********************/
24 
25 /**********************
26  *      TYPEDEFS
27  **********************/
28 
29 /**********************
30  * GLOBAL PROTOTYPES
31  **********************/
32 void lv_port_fs_init(void);
33 
34 /**********************
35  *      MACROS
36  **********************/
37 
38 #ifdef __cplusplus
39 } /*extern "C"*/
40 #endif
41 
42 #endif /*LV_PORT_FS_TEMPL_H*/
43 
44 #endif /*Disable/Enable content*/
45