feat add support for rt-thread RTOS (#2660)

This commit is contained in:
Jianting (Meco) Man
2021-10-12 10:35:37 -05:00
committed by GitHub
parent 7a95fa9e2d
commit 8debe10cd2
3 changed files with 28 additions and 1 deletions

11
SConscript Normal file
View File

@@ -0,0 +1,11 @@
# RT-Thread building script for bridge
import os
from building import *
objs = []
cwd = GetCurrentDir()
objs = objs + SConscript(cwd + '/rt-thread/SConscript')
Return('objs')

View File

@@ -42,6 +42,7 @@
- feat(event) add add LV_EVENT_CHILD_CREATED/DELETED
- feat(disp): Enable rendering to display subsection
- feat(keyboard): add user-defined modes
- Add support for RT-Thread RTOS
## v8.0.2 (16.07.2021)
- fix(theme) improve button focus of keyboard
@@ -269,7 +270,7 @@ v8 is a major change and therefore it's not backward compatible with v7.
- feat(img_cache) allow disabling image caching
- calendar: make get_day_of_week() public
- Added support for Zephyr integration
### Bugfixes
- fix(draw_rect) free buffer used for arabic processing
- fix(win) arabic process the title of the window

15
rt-thread/SConscript Normal file
View File

@@ -0,0 +1,15 @@
# RT-Thread building script for bridge
import os
from building import *
cwd = GetCurrentDir()
objs = []
list = os.listdir(cwd)
for d in list:
path = os.path.join(cwd, d)
if os.path.isfile(os.path.join(path, 'SConscript')):
objs = objs + SConscript(os.path.join(d, 'SConscript'))
Return('objs')