ryancw
b2e8300b6f
MAINTAINERS: add Ryan-CW as owner of at
2025-07-08 17:43:19 +08:00
CYFS
59a4b6b337
[bsp][wch]修复scons --dist ( #10473 )
...
fix wch scons --dist
2025-07-08 17:38:57 +08:00
Damoshed_Xu
1a6942b3ce
[MAINTAINERS] add more MAINTAINERS lists ( #10467 )
...
* [MAINTAINERS] add more MAINTAINERS lists
2025-07-08 17:11:01 +08:00
Yulong Wang
136ef85ba3
[signal]: fix spinlock leak in rt_thread_handle_sig()
2025-07-08 14:14:54 +08:00
wdfk-prog
dc225f3f83
[stm32] Fix Assertion Failure in HAL Library Due to Period=0 During PWM Initialization
...
Co-authored-by: wdfk-prog <1425075683@qq.com>
2025-07-08 14:12:50 +08:00
GUI
3d72290b38
[aarch64]Fixup linker warning #10466
2025-07-08 14:10:04 +08:00
Chasel
749d9cf84c
[MAINTAINERS] add more MAINTAINERS lists #10468
2025-07-08 14:08:32 +08:00
sakumisu
61a5710664
update(cherryusb): update framework and bugfix
...
* update cdc_acm device framework
* add host serial device framework
* fix dfs read write return type
* fix webusb desc len
* fix dwc2 h7rs gccfg
Signed-off-by: sakumisu <1203593632@qq.com>
2025-07-08 09:32:30 +08:00
bernard
e57605fa95
[tools] Optimize the file opening method.
2025-07-08 09:29:13 +08:00
bernard
0f478b6496
[tools] Add workspace generation for RT-Thread root directory.
2025-07-08 09:29:13 +08:00
bernard
1a07d6926b
[tools] add vsc_workspace target in scons.
2025-07-08 09:29:13 +08:00
Yaochenger
935e1b1db1
[bsp][gd32] 添加GD32F527I BSP ( #10454 )
...
Co-authored-by: guozhanxin <guozhanxin@rt-thread.com>
2025-07-08 09:21:57 +08:00
Erik
ed5d877054
[bsp/renesas]: add ra4e2-eco
2025-07-07 19:23:06 +08:00
qianjiuyuan
207915ab24
[bsp]stm32f429-armfly-v6 添加yml配置 ( #10459 )
2025-07-07 11:11:23 +08:00
GuEe-GUI
d698bb487e
Fixup the boot EL check
...
The boot EL will save in x0, when current EL is EL3,
kernel will jump to the EL2 after EL3.
But the x0 value is **3**, The init for EL2 will not work.
To fix it: the EL3 should jump to the EL2 init branch with not check,
and when SoC boot in EL2, kernel will jump to the EL2 test branch.
Link: https://club.rt-thread.org/ask/question/ec320a6765389f67.html
Signed-off-by: wusongjie <wusongjie@rt-thread.com>
2025-07-07 10:58:52 +08:00
bernard
e00143904f
[smart] Optimize error handling after command execution
2025-07-07 09:44:37 +08:00
bernard
172676e115
[smart] rename the Group name to 'lwProcess' and optimize the error handling for vDSO building.
2025-07-07 09:44:37 +08:00
CYFS
492e33dd3c
fix:buding_keil_CPPDEFINES
2025-07-04 21:00:22 +08:00
flyingcys
f4168669a7
Fix the crash of the SPI driver under the smart mode
...
Signed-off-by: flyingcys flyingcys@163.com
2025-07-04 20:51:04 +08:00
GuEe-GUI
a894796566
[CPU/AARCH64] Fixup MMU
...
1. Configure the kernel default vaddr by RAM and TEXT offset.
2. Check the p_addr 2M align when set the stride in `rt_hw_mmu_map`.
Signed-off-by: GuEe-GUI <2991707448@qq.com>
2025-07-04 16:37:29 +08:00
kurisaw
fcd0b1e679
bsp/renesas: fix the problem of abnormal timer count
2025-07-03 10:10:36 +08:00
unnamed2
a1e865171b
fix stm32 CAN的SCE中断中只在ACK错误检查发送完成导致小概率出错的问题 #10354
2025-07-02 14:50:24 +08:00
zhangshuxun
251910aa0e
bsp: update hc32 and nuvoton .config
2025-07-01 09:43:14 +08:00
zhangshuxun
f05dac9644
bsp/gd32: Separate gd32 std drivers
2025-07-01 09:43:14 +08:00
Zhao Puhan
1afed1b782
Update drv_uart.c
2025-06-30 10:46:52 +08:00
bernard
cb1a58cf37
[vdso] fix the arch/abi flag issue.
2025-06-30 09:52:09 +08:00
BernardXiong
a5359b7223
[vdso] use the default arch/abi flags in risc-v vDSO building.
2025-06-30 09:52:09 +08:00
bernard
9a8dec35c1
[BSP][K230] Add soft-fpu option for k230
2025-06-30 09:52:09 +08:00
GuEe-GUI
ad2de6e477
[TOOLS] Add DTC (Devicetree Compiler) tools
...
Signed-off-by: GuEe-GUI <2991707448@qq.com>
2025-06-30 09:42:39 +08:00
ricky
3e4f0ec015
bsp:<bsp/gd32/arm/libraries/gd32_drivers/drv_pwm.c>[Support for non-complementary PWM output with advanced timers] ( #10426 )
...
bsp:<bsp/gd32/arm/libraries/gd32_drivers/drv_pwm.c>
[Support for non-complementary PWM output with advanced timers]
1.当前结构体 TIMER_PORT_CHANNEL_MAP_Srt_int16_t 的成员channel为u16
为增加对非互补输出的支持 将uint16_t 改为int16_t
/* timer channel: -2 is ch_1n, -1 is ch_0n, 0 is ch0, 1 is ch1 */
2.对函数 channel_output_config 以及 drv_pwm_enable 进行修改,增加对非互补输出的支持
Signed-off-by: Yucai Liu <1486344514@qq.com>
2025-06-28 10:55:51 +08:00
Yaochenger
d62f1e46b8
[bsp/xuantie] 修复bsp的dist功能
2025-06-27 16:53:50 +08:00
Yulong Wang
b2ce955126
Remove extra semicolon in src/memheap.c
2025-06-27 16:52:33 +08:00
沐攸
c3125df8fa
bsp: Separate nuvoton drivers ( #10435 )
...
* bsp: Separate nuvoton drivers
* bsp: update nuvoton series project.uvprojx
2025-06-26 17:07:51 +08:00
Bernard Xiong
5a2352eb64
[scons] code cleanup for scons script. ( #10429 )
...
* [scons] move project_generation to targets; code clean for building.py.
2025-06-25 15:06:45 +08:00
Chen Wang
8e9872a554
doxygen: group name all in lowcase
...
This patch only updated the groups defined in documentation/0.doxygen.
Other groups will be moved into documentation/0.doxygen and updated at
that time.
Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
2025-06-25 14:02:28 +08:00
沐攸
29ab5334af
bsp:Separate HC32F4 series library ( #10427 )
...
* bsp:Separate HC32F4 series library
2025-06-25 10:02:43 +08:00
qianjiuyuan
1fe2a0bbb6
[bsp]stm32 attach配置整理为yml(f0-f4、g、l系列) ( #10417 )
...
* f0-f405 attach整理为yml
* f4系列yml整理
* g系列整理yml
* l系列yml整理
* l475 f429 yml关闭strict检测
* revert stm32l475-atk-pandora的修改
* revert stm32f723-st-disco的修改
* revert stm32f429-armfly-v6的修改
2025-06-25 00:09:47 +08:00
CXSforHPU
3fe62df87c
[MAINTAINERS] add more MAINTAINERS lists
2025-06-24 12:00:24 +08:00
kurisaw
4f903298a2
libcpu/bsp: fix the M33 assembly syntax errors and fix the compilation error of bsp
2025-06-24 11:04:01 +08:00
godmial
593ac8dbd6
1.更改armcc编译器为armclang 2.修改sconstruct代码为通用模式 3.删除SPI flash 在使用DFS时自动挂载逻辑
2025-06-22 17:13:00 +08:00
Chasel
bf75b6665c
[bsp][stm32] 1.Fixed the problem that the watchdog device was not registered, because the macro RT_USING_WDT was not introduced due to the missing header file.
2025-06-22 17:11:35 +08:00
Chen Wang
e8b6d4e3fd
bsp: k230: imprvove README
...
Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
2025-06-22 17:10:11 +08:00
rcitach
7178c933f4
Modify reference document link
2025-06-22 10:40:58 +08:00
rcitach
2e1f2eb5b1
add xuantie bsp to utest_auto_run
2025-06-22 10:40:58 +08:00
rcitach
c9c1b9c8d0
Improve c906 smart qemu support
2025-06-22 10:40:58 +08:00
LittleGreyG
8dc000e5b3
[MAINTAINERS] add bsp_stm32h7xx MAINTAINERS lists
...
* [MAINTAINERS] add bsp_stm32h7xx MAINTAINERS lists
2025-06-22 10:15:28 +08:00
sakumisu
2ac969b4ca
update(cherryusb): update to v1.5.0 ( #10409 )
2025-06-20 16:19:38 +08:00
zhangshuxun
c3da935369
bsp: Add a reminder when dependency packages fail to fetch
2025-06-18 18:03:54 +08:00
Chen Wang
c050c8e642
doxygen: use layout to control the html display
...
Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
2025-06-18 08:45:40 +08:00
沐攸
5f9f522285
format: update all series of BSP configuration items ( #10406 )
2025-06-17 15:42:49 +08:00