Skip to content

Commit d178ef1

Browse files
committed
Merge branch 'master' of https://github.com/MuChenger/rt-thread
2 parents eae7402 + 9150317 commit d178ef1

File tree

271 files changed

+29518
-5494
lines changed

Some content is hidden

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

271 files changed

+29518
-5494
lines changed

.github/ALL_BSP_COMPILE.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@
160160
"stm32/stm32f407-atk-explorer",
161161
"stm32/stm32f407-robomaster-c",
162162
"stm32/stm32f407-st-discovery",
163+
"stm32/stm32f407-micu",
163164
"stm32/stm32f410-st-nucleo",
164165
"stm32/stm32f411-st-nucleo",
165166
"stm32/stm32f411-atk-nano",
@@ -195,6 +196,7 @@
195196
"stm32/stm32h563-st-nucleo",
196197
"stm32/stm32h503-st-nucleo",
197198
"stm32/stm32h723-st-nucleo",
199+
"stm32/stm32h723-lxb-disco",
198200
"stm32/stm32h730-esphosted-evb",
199201
"stm32/stm32h743-armfly-v7",
200202
"stm32/stm32h743-atk-apollo",

MAINTAINERS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,10 @@ tag: bsp_stm32f429-atk-apollo
147147
path: bsp/stm32/stm32f429-atk-apollo
148148
owners: lizhen9880(lizhen9880)<[email protected]>
149149

150+
tag: bsp_stm32f407-micu
151+
path: bsp/stm32/stm32f407-micu
152+
owners: DaiLingxiang(Dailingxiang1)<[email protected]>
153+
150154
tag: bsp_stm32h723-st-nucleo
151155
path: bsp/stm32/stm32h723-st-nucleo
152156
owners: 下里巴人(hywing)<[email protected]>

bsp/README.md

Lines changed: 952 additions & 158 deletions
Large diffs are not rendered by default.

bsp/Vango/.clang-format-ignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
# files format check exclude path, please follow the instructions below to modify;
3+
# If you need to exclude an entire folder, add the folder path in dir_path;
4+
# If you need to exclude a file, add the path to the file in file_path.
5+
6+
# 从 .ignore_format.yml 迁移的规则
7+
8+
/v85xx*/Libraries/CMSIS/
9+
/v85xx*/Libraries/VangoV85xx*_standard_peripheral/

bsp/airm2m/air105/board/board.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,5 @@ extern int __bss_end;
2828
#define HEAP_END (void*)(0x20000000 + 0xA0000)
2929

3030
void rt_hw_board_init(void);
31-
int rt_vbus_do_init(void);
3231

3332
#endif

bsp/gd32/arm/gd32527I-eval/board/Kconfig

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ menu "On-chip Peripheral Drivers"
5656

5757
config BSP_UART0_TX_BUFSIZE
5858
int "Set UART0 TX buffer size"
59-
range 64 65535
59+
range 0 65535
6060
depends on BSP_USING_UART0 && RT_USING_SERIAL_V2
6161
default 128
6262

@@ -88,7 +88,7 @@ menu "On-chip Peripheral Drivers"
8888

8989
config BSP_UART1_TX_BUFSIZE
9090
int "Set UART1 TX buffer size"
91-
range 64 65535
91+
range 0 65535
9292
depends on BSP_USING_UART1 && RT_USING_SERIAL_V2
9393
default 128
9494

@@ -120,7 +120,7 @@ menu "On-chip Peripheral Drivers"
120120

121121
config BSP_UART2_TX_BUFSIZE
122122
int "Set UART2 TX buffer size"
123-
range 64 65535
123+
range 0 65535
124124
depends on BSP_USING_UART2 && RT_USING_SERIAL_V2
125125
default 128
126126

@@ -152,7 +152,7 @@ menu "On-chip Peripheral Drivers"
152152

153153
config BSP_UART3_TX_BUFSIZE
154154
int "Set UART3 TX buffer size"
155-
range 64 65535
155+
range 0 65535
156156
depends on BSP_USING_UART3 && RT_USING_SERIAL_V2
157157
default 128
158158

@@ -184,7 +184,7 @@ menu "On-chip Peripheral Drivers"
184184

185185
config BSP_UART4_TX_BUFSIZE
186186
int "Set UART4 TX buffer size"
187-
range 64 65535
187+
range 0 65535
188188
depends on BSP_USING_UART4 && RT_USING_SERIAL_V2
189189
default 128
190190

@@ -216,7 +216,7 @@ menu "On-chip Peripheral Drivers"
216216

217217
config BSP_UART5_TX_BUFSIZE
218218
int "Set UART5 TX buffer size"
219-
range 64 65535
219+
range 0 65535
220220
depends on BSP_USING_UART5 && RT_USING_SERIAL_V2
221221
default 128
222222

@@ -248,7 +248,7 @@ menu "On-chip Peripheral Drivers"
248248

249249
config BSP_UART6_TX_BUFSIZE
250250
int "Set UART6 TX buffer size"
251-
range 64 65535
251+
range 0 65535
252252
depends on BSP_USING_UART6 && RT_USING_SERIAL_V2
253253
default 128
254254

@@ -280,7 +280,7 @@ menu "On-chip Peripheral Drivers"
280280

281281
config BSP_UART7_TX_BUFSIZE
282282
int "Set UART7 TX buffer size"
283-
range 64 65535
283+
range 0 65535
284284
depends on BSP_USING_UART7 && RT_USING_SERIAL_V2
285285
default 128
286286
endif

bsp/Vango/v85xx/Libraries/.ignore_format.yml renamed to bsp/microchip/.clang-format-ignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
# If you need to exclude an entire folder, add the folder path in dir_path;
33
# If you need to exclude a file, add the path to the file in file_path.
44

5-
dir_path:
6-
- CMSIS
7-
- VangoV85xx_standard_peripheral
5+
# 从 .ignore_format.yml 迁移的规则
6+
/sam*/bsp/

bsp/microchip/samd51-seeed-wio-terminal/.ignore_format.yml

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

bsp/microchip/same54/.ignore_format.yml

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

bsp/microchip/same70/.ignore_format.yml

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

0 commit comments

Comments
 (0)