diff --git a/bsp/stm32/stm32f469-st-disco/applications/lcd_init.c b/bsp/stm32/stm32f469-st-disco/applications/lcd_init.c deleted file mode 100644 index 2660e6ef7cf99440f8b64acd334d5ff29254fd5d..0000000000000000000000000000000000000000 --- a/bsp/stm32/stm32f469-st-disco/applications/lcd_init.c +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) 2006-2021, RT-Thread Development Team - * - * SPDX-License-Identifier: Apache-2.0 - * - * Change Logs: - * Date Author Notes - * 2018-06-12 Tanek first version - */ - -#include - -#if defined(PKG_USING_GUIENGINE) - -#include -int lcd_init(void) -{ - struct rt_device *device; - device = rt_device_find("lcd"); - if (device) - { - rtgui_graphic_set_device(device); - } - - return 0; -} -INIT_ENV_EXPORT(lcd_init); -#endif