Commit Graph

9527 Commits

Author SHA1 Message Date
Cathy Li 632c86ca07 update readme
Signed-off-by: Cathy Li <liyan@rt-thread.com>
2020-03-11 17:09:44 +08:00
Chinese66 2822ec377d
Update ry_sy.c
修改了读取不到文件大小,导致的文件传输的问题,问题说明在
https://www.rt-thread.org/qa/forum.php?mod=viewthread&tid=423781
2020-03-11 11:56:35 +08:00
Bernard Xiong 3e8c03e934
Merge pull request #3421 from ErnestChen1/master
[bsp] fix UART DMA TX
2020-03-10 16:24:38 +08:00
Bernard Xiong a189eb6c33
Merge pull request #3432 from DavidLin1577/patch-4
Fixed wrong output information in core.c
2020-03-10 16:21:41 +08:00
Bernard Xiong 817afbdf59
Merge pull request #3434 from tyustli/pm
[bsp/stm32] add pm support by cubemx tool
2020-03-10 13:05:30 +08:00
Bernard Xiong 86e91dc7df
Merge pull request #3435 from sheltonyu/develop
Upload at32 bsp first version.
2020-03-10 13:03:51 +08:00
sheltonyu f15aec01ed upload at32 bsp first version. 2020-03-09 15:10:16 +08:00
tyustli 6304ed3ad5 [bsp/stm32] add pm support by cubemx tool 2020-03-09 14:08:58 +08:00
David Lin b2d33e9147
Update pwm.c 2020-03-08 07:18:37 +08:00
David Lin c689c2c67f
Fixed a hidden stack overflow bug
'memset' should been next step after 'NULL' judge
2020-03-08 00:48:32 +08:00
David Lin eb5467bece
Fixed wrong output information in core.c
rt_kprintf("alloc memery failed\n"); -> rt_kprintf("alloc memory failed\n");
2020-03-08 00:20:31 +08:00
tanglj86 e8614639eb [bsp/stm32] add support for NUCLEO-F410RB board; 2020-03-07 19:11:49 +08:00
Bernard Xiong 9d9432eb93
Merge pull request #3430 from DavidLin1577/patch-3
Fixed typo 'rthread' in help infomation
2020-03-06 22:51:24 +08:00
David Lin 622e8cb0ca
Fixed typo 'rthread' in help infomation
rthread -> rtthread
2020-03-06 21:46:21 +08:00
David Lin 053ffb0527
Fixed typos in Kconfig
mesage -> message
memmory -> memory
2020-03-05 09:20:05 +08:00
David Lin 39538e036b
Fixed wrong output information
to ->too
2020-03-04 23:13:45 +08:00
David Lin f9ab9d5868
Fixed wrong output information
to -> too
2020-03-04 23:04:52 +08:00
Bernard Xiong 90e8b3664d
Merge pull request #3401 from thread-liu/master
[update] 修改了 stm32f407-atk-explorer mdk5 工程编译报错的bug
2020-03-04 11:45:26 +08:00
Bernard Xiong b3d196392c
Merge pull request #3413 from luhuadong/patch1
[Sensor] Add vendor info and sensor types for cmd
2020-03-04 11:44:25 +08:00
Bernard Xiong dc47a6fcdf
Merge pull request #3415 from greedyhao/f411-mini
[bsp][stm32] add stm32f411-mini-system bsp
2020-03-03 23:59:44 +08:00
Bernard Xiong 87a8585e36
Merge pull request #3423 from djndl1/cppthread
make clock_time.h available to C++
2020-03-03 23:59:14 +08:00
Bernard Xiong d81ab720d3
Merge pull request #3420 from Lawlieta/chenyong
[driver][wlan] add raw frame send interface and Management frame filter interface
2020-03-03 16:41:34 +08:00
Bernard Xiong 3d2b66a8fb
Merge pull request #3422 from bigmagic123/raspi_fix_driver
Raspi fix driver
2020-03-03 13:55:40 +08:00
greedyhao 5748ca3967 [bsp/stm32] rename 2020-03-03 09:03:41 +08:00
djndl1 48b9ab570f make clock_time.h available to C++ 2020-03-03 01:34:18 +08:00
greedyhao d96056a4f2 [bsp/stm32] update readme 2020-03-02 21:11:13 +08:00
bigmagic cc95025f05 fix build err 2020-03-02 20:49:27 +08:00
bigmagic 7d23d713ed fix raspi3 hdmi driver 2020-03-02 20:49:27 +08:00
bigmagic 3024571acb add mbox control act led 2020-03-02 20:49:27 +08:00
bigmagic 0279daeeee add raspi3 mbox driver 2020-03-02 20:49:27 +08:00
bigmagic d5f8397009 add raspi3-64 wdt driver 2020-03-02 20:49:27 +08:00
bigmagic 972f28476c [bsp/raspi3-64]use hw timer1 and hw timer3 2020-03-02 20:49:27 +08:00
bigmagic ff10eaed9c [bsp/raspi3-64]fix gpio drvier 2020-03-02 20:49:27 +08:00
greedyhao 10b4951760 [bsp/stm32] update .travis.yml 2020-03-02 11:07:51 +08:00
Bernard Xiong dc47abf44b
Merge pull request #3419 from DavidLin1577/patch-5
[finsh]Fixed minor bug in finsh_compiler.c
2020-02-29 22:52:27 +08:00
Ernest c1821b85a1 [bsp] fix UART DMA TX 2020-02-29 21:20:54 +08:00
chenyong 986b64cbe0 [driver][wlan] add raw frame send interface and Management frame filter interface
Signed-off-by: chenyong <1521761801@qq.com>
2020-02-29 17:12:48 +08:00
David Lin fac95192ea
[finsh]Minor optimization in finsh_compiler.c
The code just clean the first member of array 'finsh_vm_stack', but it works well in the past years, 
            memset(&finsh_vm_stack[0], 0, sizeof(finsh_vm_stack[0]));
    Is it better to re-code as below, it will be more readable and robust:
            memset(&finsh_vm_stack[0], 0, sizeof(finsh_vm_stack));
2020-02-29 16:53:44 +08:00
greedyhao aee731fdf8 [bsp][stm32] add usbd support for stm32f411-mini-system 2020-02-29 09:39:50 +08:00
greedyhao 3ddf6c96f5 [bsp][stm32] stm32f411-mini-system edit kconfig 2020-02-28 19:37:06 +08:00
Bernard Xiong 02722864d6
Merge pull request #3418 from bigmagic123/raspi-64-sdio
fix raspi3-64 sdio driver
2020-02-28 17:48:47 +08:00
bigmagic e09c99fcfb fix raspi3-64 sdio driver 2020-02-28 14:56:56 +08:00
Bernard Xiong 7b71c0e4ad
Merge pull request #3417 from foss-for-synopsys-dwc-arc-processors/synopsys_fix
[bsp][synopsys] fix the PKG_EMBAC_BSP_PATH
2020-02-28 13:35:47 +08:00
Watson Zeng 7f2d559b75 [bsp][synopsys] fix the PKG_EMBAC_BSP_PATH
the embARC_BSP package in env packages is changed
frome system to peripheral folder, this change should also to be fixed in the config files correspondingly.

Signed-off-by: Watson Zeng <zhiwei@synopsys.com>
2020-02-28 10:53:06 +08:00
Bernard Xiong 60976bb168
Merge pull request #3416 from DavidLin1577/patch-4
[bsp] Fixed the wrong output infomation in Kconfig
2020-02-28 09:44:03 +08:00
David Lin c15ebec442
[bsp] Fixed the wrong output infomation in Kconfig
RT-Thrad -> RT-Thread
2020-02-27 23:10:40 +08:00
greedyhao 8498a19082 [bsp][stm32] add stm32f411-mini-system bsp 2020-02-27 21:36:04 +08:00
Bernard Xiong 93b006e734
Merge pull request #3412 from bigmagic123/raspi_add_coretimer
Raspi add coretimer
2020-02-26 17:32:21 +08:00
luhuadong ac6f133f86 [Sensor] fixed %% print 2020-02-26 17:31:26 +08:00
Bernard Xiong 05bd0c0797
Merge pull request #3411 from armink/fix_eclipse
Fix eclipse
2020-02-26 17:31:15 +08:00