Commit Graph

9265 Commits

Author SHA1 Message Date
Shawn Lin 11277014a3 [Components] sdio: try bus width depends on host's capability
It makes no sense to try bus width if not supported by drivers or BSP,
since we know it must be failed. It saves a lot for booting in time
critical environment.

Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
2020-03-12 09:00:41 +08:00
Shawn Lin a33bc0f321 [component] sdio: Fix mmc mount function if the whole device is a partition
If the whole sd card was formatted as a partition, current
code break out the loop mistakenly, so it skips dfs_mount_device
later. Simply remove the broken 'break' to solve this problem.

Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
2020-03-12 09:00:33 +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 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
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
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
Bernard Xiong 9c02a7c308 Merge pull request #3408 from xiangxistu/master
[update] disable "--specs=nano.specs" parameter
2020-02-26 17:28:32 +08:00
luhuadong 3994ebbfd4 [Sensor] Add vendor info and sensor types for cmd 2020-02-26 17:20:41 +08:00
bigmagic 53211b3c6e replace space to tab 2020-02-26 15:43:23 +08:00
bigmagic 773f7cdf52 [bsp/raspi3-64]add core timer driver 2020-02-26 15:35:07 +08:00
bigmagic b6031497b9 fix execption printf err 2020-02-26 15:35:07 +08:00
armink 5dffac8483 [bsp/stm32] Add cpp lib path for eclipse project. 2020-02-26 15:22:52 +08:00