From f6ebb9a5a7e1acbcffedbf8a22cf227483cd8802 Mon Sep 17 00:00:00 2001 From: Gabriel Wang Date: Fri, 28 Jan 2022 16:58:41 +0000 Subject: [PATCH] fix(porting): add missing function prototypes (#3054) --- examples/porting/lv_port_disp_template.h | 1 + examples/porting/lv_port_fs_template.h | 1 + examples/porting/lv_port_indev_template.h | 1 + 3 files changed, 3 insertions(+) diff --git a/examples/porting/lv_port_disp_template.h b/examples/porting/lv_port_disp_template.h index 403b5d22f..bf1e08d0e 100644 --- a/examples/porting/lv_port_disp_template.h +++ b/examples/porting/lv_port_disp_template.h @@ -29,6 +29,7 @@ extern "C" { /********************** * GLOBAL PROTOTYPES **********************/ +void lv_port_disp_init(void); /********************** * MACROS diff --git a/examples/porting/lv_port_fs_template.h b/examples/porting/lv_port_fs_template.h index 4e60f1e52..ef39d4f51 100644 --- a/examples/porting/lv_port_fs_template.h +++ b/examples/porting/lv_port_fs_template.h @@ -29,6 +29,7 @@ extern "C" { /********************** * GLOBAL PROTOTYPES **********************/ + void lv_port_fs_init(void); /********************** * MACROS diff --git a/examples/porting/lv_port_indev_template.h b/examples/porting/lv_port_indev_template.h index 009a7bce7..00eac2559 100644 --- a/examples/porting/lv_port_indev_template.h +++ b/examples/porting/lv_port_indev_template.h @@ -30,6 +30,7 @@ extern "C" { /********************** * GLOBAL PROTOTYPES **********************/ +void lv_port_indev_init(void); /********************** * MACROS