summaryrefslogtreecommitdiff
path: root/src/libs/lvgl/porting/lv_port_fs_template.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/lvgl/porting/lv_port_fs_template.h')
-rw-r--r--src/libs/lvgl/porting/lv_port_fs_template.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/libs/lvgl/porting/lv_port_fs_template.h b/src/libs/lvgl/porting/lv_port_fs_template.h
new file mode 100644
index 00000000..7db06f65
--- /dev/null
+++ b/src/libs/lvgl/porting/lv_port_fs_template.h
@@ -0,0 +1,44 @@
+/**
+ * @file lv_port_fs_templ.h
+ *
+ */
+
+ /*Copy this file as "lv_port_fs.h" and set this value to "1" to enable content*/
+#if 0
+
+#ifndef LV_PORT_FS_TEMPL_H
+#define LV_PORT_FS_TEMPL_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/*********************
+ * INCLUDES
+ *********************/
+#include "lvgl/lvgl.h"
+
+/*********************
+ * DEFINES
+ *********************/
+
+/**********************
+ * TYPEDEFS
+ **********************/
+
+/**********************
+ * GLOBAL PROTOTYPES
+ **********************/
+
+/**********************
+ * MACROS
+ **********************/
+
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif /*LV_PORT_FS_TEMPL_H*/
+
+#endif /*Disable/Enable content*/