Skip to content

Commit 37d4abb

Browse files
authored
Merge branch 'master' into libc_stdio
2 parents 8e287cf + 94bd9f9 commit 37d4abb

File tree

147 files changed

+12668
-3196
lines changed

Some content is hidden

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

147 files changed

+12668
-3196
lines changed

.github/workflows/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ jobs:
5959
- {RTT_BSP: "lpc54114-lite", RTT_TOOL_CHAIN: "sourcery-arm"}
6060
- {RTT_BSP: "ls1bdev", RTT_TOOL_CHAIN: "sourcery-mips"}
6161
- {RTT_BSP: "ls1cdev", RTT_TOOL_CHAIN: "sourcery-mips"}
62+
- {RTT_BSP: "ls2kdev", RTT_TOOL_CHAIN: "sourcery-mips"}
6263
- {RTT_BSP: "mb9bf500r", RTT_TOOL_CHAIN: "sourcery-arm"}
6364
- {RTT_BSP: "mb9bf506r", RTT_TOOL_CHAIN: "sourcery-arm"}
6465
- {RTT_BSP: "mb9bf618s", RTT_TOOL_CHAIN: "sourcery-arm"}

.ignore_format.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

bsp/fm33lc026/.ignore_format.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# files format check exclude path, please follow the instructions below to modify;
2+
# If you need to exclude an entire folder, add the folder path in dir_path;
3+
# If you need to exclude a file, add the path to the file in file_path.
4+
5+
dir_path:
6+
- libraries

bsp/hc32f4a0/SConstruct

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ import os
22
import sys
33
import rtconfig
44

5-
print "############sconstruct##############"
5+
print("############sconstruct##############")
66
if os.getenv('RTT_ROOT'):
77
RTT_ROOT = os.getenv('RTT_ROOT')
88
else:
99
RTT_ROOT = os.path.normpath(os.getcwd() + '/../..')
1010

11-
print "RTT_ROOT: " + RTT_ROOT
11+
print("RTT_ROOT: " + RTT_ROOT)
1212

1313
sys.path = sys.path + [os.path.join(RTT_ROOT, 'tools')]
1414
try:
@@ -37,8 +37,8 @@ Export('RTT_ROOT')
3737
Export('rtconfig')
3838

3939
# prepare building environment
40-
print "######################env:"
41-
print env
40+
print("######################env:")
41+
print(env)
4242
objs = PrepareBuilding(env, RTT_ROOT, has_libcpu=False)
4343

4444
# make a building

bsp/hc32f4a0/rtconfig.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
CPU='cortex-m4'
66
CROSS_TOOL='iar'
77

8-
print "############rtconfig##############"
8+
print("############rtconfig##############")
99

1010
if os.getenv('RTT_CC'):
1111
CROSS_TOOL = os.getenv('RTT_CC')
1212

13-
print "CROSS_TOOL: " + CROSS_TOOL
13+
print("CROSS_TOOL: " + CROSS_TOOL)
1414

1515
# cross_tool provides the cross compiler
1616
# EXEC_PATH is the compiler execute path, for example, CodeSourcery, Keil MDK, IAR

0 commit comments

Comments
 (0)