forked from springcute/rt-thread
[qemu][lvgl]移除无用的定义和对外声明
This commit is contained in:
parent
874f6c84f1
commit
a8796abdc2
|
@ -5,7 +5,6 @@ cwd = GetCurrentDir()
|
|||
group = []
|
||||
src = Glob('*.c')
|
||||
CPPPATH = [cwd]
|
||||
CPPDEFINES = ['STM32F4']
|
||||
|
||||
list = os.listdir(cwd)
|
||||
for d in list:
|
||||
|
@ -13,6 +12,6 @@ for d in list:
|
|||
if os.path.isfile(os.path.join(path, 'SConscript')):
|
||||
group = group + SConscript(os.path.join(d, 'SConscript'))
|
||||
|
||||
group += DefineGroup('LVGL-port', src, depend = ['BSP_USING_LVGL'], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
|
||||
group += DefineGroup('LVGL-port', src, depend = ['BSP_USING_LVGL'], CPPPATH = CPPPATH)
|
||||
|
||||
Return('group')
|
||||
|
|
|
@ -14,12 +14,7 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <lv_hal_indev.h>
|
||||
|
||||
extern lv_indev_t * button_indev;
|
||||
|
||||
void lv_port_indev_init(void);
|
||||
void lv_port_indev_input(rt_int16_t x, rt_int16_t y, lv_indev_state_t state);
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /*extern "C"*/
|
||||
|
|
Loading…
Reference in New Issue