Skip to content

Commit e78f3ea

Browse files
authored
Merge pull request #1252 from RT-Thread/feature_noneui
[UIEngine] move UI engine as a package
2 parents 7438d18 + 8b36b57 commit e78f3ea

File tree

928 files changed

+395
-449880
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

928 files changed

+395
-449880
lines changed

bsp/allwinner_tina/.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ CONFIG_RT_USING_POSIX=y
166166
#
167167
# RT-Thread UI Engine
168168
#
169-
# CONFIG_RT_USING_GUIENGINE is not set
169+
# CONFIG_PKG_USING_GUIENGINE is not set
170170

171171
#
172172
# VBUS(Virtual Software BUS)

bsp/allwinner_tina/rtconfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150

151151
/* RT-Thread UI Engine */
152152

153-
/* RT_USING_GUIENGINE is not set */
153+
/* PKG_USING_GUIENGINE is not set */
154154

155155
/* VBUS(Virtual Software BUS) */
156156

bsp/apollo2/rtconfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138

139139
/* RT-Thread UI Engine */
140140

141-
/* RT_USING_GUIENGINE is not set */
141+
/* PKG_USING_GUIENGINE is not set */
142142

143143
/* VBUS(Virtual Software BUS) */
144144

bsp/asm9260t/.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ CONFIG_RT_USING_LIBC=y
120120
#
121121
# RT-Thread UI Engine
122122
#
123-
# CONFIG_RT_USING_GUIENGINE is not set
123+
# CONFIG_PKG_USING_GUIENGINE is not set
124124

125125
#
126126
# RT-Thread online packages

bsp/asm9260t/rtconfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106

107107
/* RT-Thread UI Engine */
108108

109-
/* RT_USING_GUIENGINE is not set */
109+
/* PKG_USING_GUIENGINE is not set */
110110

111111
/* RT-Thread online packages */
112112

bsp/gd32450z-eval/applications/application.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include <rtthread.h>
1818
#include <finsh.h>
1919

20-
#ifdef RT_USING_GUIENGINE
20+
#ifdef PKG_USING_GUIENGINE
2121
#include "rtgui_demo.h"
2222
#include <rtgui/driver.h>
2323
#endif
@@ -41,7 +41,7 @@ void rt_init_thread_entry(void* parameter)
4141
rt_components_init();
4242
#endif
4343

44-
#ifdef RT_USING_GUIENGINE
44+
#ifdef PKG_USING_GUIENGINE
4545
{
4646
rt_device_t device;
4747

bsp/gd32450z-eval/applications/rtgui_demo.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#define DEBUG_PRINTF(...)
2424
#endif
2525

26-
#ifdef RT_USING_GUIENGINE
26+
#ifdef PKG_USING_GUIENGINE
2727

2828
#include <rtgui/rtgui.h>
2929
#include <rtgui/rtgui_system.h>
@@ -122,4 +122,4 @@ int rt_gui_demo_init(void)
122122

123123
return 0;
124124
}
125-
#endif /* RT_USING_GUIENGINE */
125+
#endif /* PKG_USING_GUIENGINE */

bsp/gd32450z-eval/drivers/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if GetDepend('RT_USING_LWIP'):
1818
src += ['drv_enet.c', 'synopsys_emac.c']
1919

2020
# add lcd drivers.
21-
if GetDepend('RT_USING_GUIENGINE'):
21+
if GetDepend('PKG_USING_GUIENGINE'):
2222
src += ['drv_lcd.c', 'gd32f450z_lcd_eval.c']
2323

2424
# add spi flash drivers.

bsp/gd32450z-eval/drivers/drv_lcd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include <board.h>
1919
#include <finsh.h>
2020

21-
#ifdef RT_USING_GUIENGINE
21+
#ifdef PKG_USING_GUIENGINE
2222

2323

2424
#define RT_HW_LCD_WIDTH ((uint16_t)320) /* LCD PIXEL WIDTH */

bsp/gd32450z-eval/rtconfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767

6868
/* SECTION: RTGUI support */
6969
/* using RTGUI support */
70-
#define RT_USING_GUIENGINE
70+
// #define PKG_USING_GUIENGINE
7171

7272
/* name length of RTGUI object */
7373
#define RTGUI_NAME_MAX 16

0 commit comments

Comments
 (0)