4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-22 23:37:24 +08:00

9375 Commits

Author SHA1 Message Date
Huaqi Fang
b432308b20 [BSP][Nuclei] Format source code of drivers of gd32vf103
Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-15 11:58:28 +08:00
Huaqi Fang
7366173d74 [LIBCPU][NUCLEI] Optimize nuclei cpu portable code
Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-15 11:54:02 +08:00
Huaqi Fang
8c2cd4745b nuclei: Update README.md
Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-14 15:45:42 +08:00
Huaqi Fang
fa8a2f24ea nuclei: Add gpio driver not tested
Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-14 14:06:54 +08:00
Huaqi Fang
1be40bc50b Nuclei: Update README.md
Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-09 14:55:22 +08:00
Huaqi Fang
4c8beb204b Nuclei: Change idle stack size from 256 to 396 bytes
If changed to 396 bytes, then debug optimization level changed
from O2 to O0, and the application can run successfully without
stack overflow issue of tidle0 task
warning: tidle0 stack is close to end of stack address.

Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-09 10:21:26 +08:00
Huaqi Fang
da2bcf5c56 nuclei: Remove unused kconfig
Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-09 10:11:40 +08:00
Huaqi Fang
0b932c677a nuclei: optimize drivers support
Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-09 09:32:22 +08:00
Huaqi Fang
0431f6f01f tools: Update mkdist.py for nuclei bsp
Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-08 19:28:02 +08:00
Huaqi Fang
0e1f502edf nuclei: optimize rvstar support directory
Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-08 18:46:58 +08:00
Huaqi Fang
1131f6e648 nuclei: update kconfig
Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-08 18:37:24 +08:00
Huaqi Fang
ad81c1d3bf nuclei: Rename board name
Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-08 15:43:00 +08:00
Huaqi Fang
d780138a1a libcpu: Add Nuclei arch option in KConfig
Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-07 09:36:19 +08:00
Huaqi Fang
60320d34b1 nuclei: Update nuclei sdk of rt-thread support
Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-03 16:51:01 +08:00
Huaqi Fang
a042b806ef nuclei: modify application for not print anything
Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-03 11:34:09 +08:00
Huaqi Fang
2a9603adcb nuclei: Add .gitignore for nuclei bsp
Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-03 11:31:01 +08:00
Huaqi Fang
34aaf6aeba nuclei_sdk: update link script of rvstar to contain rt-thread needed sections
/* section information for finsh shell */
        . = ALIGN(4);
        __fsymtab_start = .;
        KEEP(*(FSymTab))
        __fsymtab_end = .;

        . = ALIGN(4);
        __vsymtab_start = .;
        KEEP(*(VSymTab))
        __vsymtab_end = .;

        /* section information for initial. */
        . = ALIGN(4);
        __rt_init_start = .;
        KEEP(*(SORT(.rti_fn*)))
        __rt_init_end = .;

The above code placed in rodata section

Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-03 11:28:06 +08:00
Huaqi Fang
3451466e9d bsp: Add initial commit of nuclei rvstar board bsp
Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-03 10:04:42 +08:00
Bernard Xiong
0f57faa591
Merge pull request #3484 from qz721/master
修复USB不能正常识别composite设备的bug
2020-03-30 21:20:02 +08:00
Bernard Xiong
0930683a3f
Merge pull request #3489 from greed-island/mem
fix bug in rt_realloc of mem.c,  which may cause memory leak
2020-03-30 20:45:39 +08:00
greed-island
b082876c9b
Update mem.c
rt_realloc may cause <lfree> change, if we don't change <lfree> timely, it may cause memory leakage
2020-03-27 18:57:29 +08:00
Bernard Xiong
7f6755c622
Merge pull request #3472 from DavidLin1577/patch-2
[components/usb]Fixed a stack overflow bug
2020-03-26 22:06:23 +08:00
Bernard Xiong
c1a3de7b8a
Merge pull request #3478 from SummerLife/optimize_uart
[stm32/driver] optimize uart driver
2020-03-26 22:04:45 +08:00
qz721
a49ddaef96
修复USB不能正常识别composite设备的bug 2020-03-26 16:24:10 +08:00
Bernard Xiong
130550d5a6
Merge pull request #3480 from leeehui/master
fix return type error of rt_strcasecmp: rt_uint32_t to rt_int32_t
2020-03-26 13:56:23 +08:00
lihui
d0ebdc54d4 fix return type error of rt_strcasecmp: rt_uint32_t to rt_int32_t
Signed-off-by: lihui <leehui_hrbeu71102@163.com>
2020-03-24 18:59:31 +08:00
SummerGift
e5c1183350 [optimize] stm32 uart driver 2020-03-23 15:44:54 +08:00
Bernard Xiong
5ddb0d51c0
Merge pull request #3475 from armink/fix_eclipse
[tools] update eclipse tools version number.
2020-03-23 09:32:44 +08:00
armink
32b4c0f293 [tools] update eclipse tools version number. 2020-03-23 08:50:08 +08:00
Bernard Xiong
f91b9e7670
Merge pull request #3431 from tanglj86/master
[bsp/stm32] add support for NUCLEO-F410RB board;
2020-03-22 21:27:48 +08:00
Bernard Xiong
9388434043
Merge pull request #3452 from supperthomas/aa
[bsp/stm32] add the bsp of stm32l496zg-nucleo board
2020-03-22 21:27:36 +08:00
Bernard Xiong
a8cd463347
Merge pull request #3470 from Sunwancn/fix-adc-channel-bug
[drv_adc.c]Fixed ADC channel configuration bug for SMT32F0/L0/H7
2020-03-22 21:25:56 +08:00
Bernard Xiong
2e42ad8279
Merge pull request #3442 from redocCheng/master
drv_flash_f1.c support stm32f103vg
2020-03-22 21:24:47 +08:00
Bernard Xiong
88eafe77e9
Merge pull request #3466 from gyd0317/dev
add STM32L1 HAL DRIVER
2020-03-22 21:24:11 +08:00
Bernard Xiong
d1ba07a47b
Merge pull request #3474 from Guozhanxin/rtt_master
修复 scons --target=eclipse 时,部分带值宏出错的问题
2020-03-22 21:23:39 +08:00
guozhanxin
c1b35a48a5 修复 scons --target=eclipse 时,部分带值宏出错的问题 2020-03-22 09:13:50 +08:00
David Lin
985a70ab15
Update hub.c 2020-03-21 20:56:31 +08:00
David Lin
10e0f28754
Update cdc_vcom.c 2020-03-21 20:54:13 +08:00
David Lin
3679dfa07e
Update ecm.c 2020-03-21 20:42:55 +08:00
Bernard Xiong
30a9ef64c1
Merge pull request #3427 from DavidLin1577/patch-2
Fixed typos in Kconfig
2020-03-21 11:45:40 +08:00
tanglj86
9554792275 [bsp/stm32] add bsp stm32f410-st-nucleo in travis file. 2020-03-21 08:51:18 +08:00
Sunwancn
d211a27aff [drv_adc.c]Fix ADC channel Configuration bug for SMT32F0/L0/H7 2020-03-20 09:05:45 +08:00
Bernard Xiong
9c544e069c
Merge pull request #3468 from bigmagic123/aarch64_cache_api
Aarch64 cache api
2020-03-19 02:11:34 +08:00
supperthomas
b094cf14df Merge branch 'aa' of github.com:supperthomas/rt-thread into aa 2020-03-18 22:49:28 +08:00
supperthomas
bd85518665 Merge branch 'master' of github.com:supperthomas/rt-thread into back 2020-03-18 22:43:04 +08:00
gyd0317
588bda5553 change gcc statup files 2020-03-18 21:42:13 +08:00
Bernard Xiong
f70d14ef93
Merge pull request #3467 from luhuadong/develop
fixed a typo
2020-03-18 20:36:26 +08:00
tanglj86
816a714de1 fix some format issues; 2020-03-18 18:51:22 +08:00
redoc
4b46aafa75
Update drv_flash_f1.c
1、【修改】返回值。
2020-03-18 15:38:10 +08:00
redoc
5a5f262649
Update drv_flash_f1.c
调整stm32_flash_erase的返回值
2020-03-18 15:31:20 +08:00