Commit Graph

9254 Commits

Author SHA1 Message Date
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
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
armink 544a134f59 [tools] Fix the lib paths not found issue. 2020-02-26 15:19:18 +08:00
Bernard Xiong 7335fd389e
Merge pull request #3407 from armink/fix_eclipse
[rtdbg] Add for cpp support.
2020-02-26 13:31:17 +08:00
liuxinaliang b07a417a7c [update] disable "--specs=nano.specs" parameter
Signed-off-by: liuxinaliang <liuxianliang@rt-thread.com>
2020-02-26 11:59:35 +08:00
朱天龙 (Armink) 1dd4452df0
Merge pull request #3402 from SummerLife/add_stm32_h747_discovery
[bsp/stm32]  add STM32H747-DISCO BSP
2020-02-26 11:25:31 +08:00
SummerGift c225b0f745 [update] bsp/stm32/stm32h747-st-discovery/board/SConscript 2020-02-26 10:26:48 +08:00
armink c2f15ae1cc [rtdbg] Add for cpp support. 2020-02-26 10:01:49 +08:00
SummerGift abde5170dd [update] stm32/stm32f767-st-nucleo/SConstruct 2020-02-25 20:19:26 +08:00
SummerGift d9a9b90b33 [update] board/sconscript to fix compile error after dist 2020-02-25 16:30:12 +08:00
Bernard Xiong f35a6745de
Merge pull request #3405 from bigmagic123/fix_raspi_sdio
fix raspi3-32 sdio driver
2020-02-25 09:26:09 +08:00
bigmagic f3b9a9bdfa fix raspi3-32 sdio driver 2020-02-24 22:45:11 +08:00
Bernard Xiong 2c41f4f1c8
Merge pull request #3403 from DavidLin1577/patch-1
[bsp/hifive1]Fixed symbol error in interrupt.c
2020-02-24 22:32:36 +08:00