diff --git a/SConscript b/SConscript new file mode 100644 index 0000000000..841579ed8f --- /dev/null +++ b/SConscript @@ -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') diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index c94c3a82a3..c73ebfbb87 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -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 diff --git a/rt-thread/SConscript b/rt-thread/SConscript new file mode 100644 index 0000000000..4c815c49b8 --- /dev/null +++ b/rt-thread/SConscript @@ -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')