Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ALL_BSP_COMPILE.json
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@
"gd32/arm/gd32h759i-start",
"gd32/arm/gd32e503v-eval",
"gd32/arm/gd32527I-eval",
"gd32/arm/gd32e230-lckfb",
"n32/n32g43xcl-stb",
"n32/n32g45xcl-stb",
"n32/n32g45xml-stb",
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,6 @@ vdso.lds
# stm32cubemx
**/CubeMX_Config/Drivers/
**/CubeMX_Config/MDK-ARM/

# mac
.DS_Store
2 changes: 2 additions & 0 deletions bsp/gd32/arm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ GD32 ARM 系列 BSP 目前支持情况如下表所示:
| [gd32470z-lckfb](gd32470z-lckfb) | 立创梁山派 GD32F470ZGT6 开发板 |
| **E5 系列** | |
| [gd32e503v-eval](gd32e503v-eval) | 兆易创新 官方 GD32E503V-EVAL 开发板 |
| **E23 系列** | |
| [gd32e230-lckfb](gd32e230-lckfb) | 立创·GD32E230C8T6开发板 |

可以通过阅读相应 BSP 下的 README 来快速上手,如果想要使用 BSP 更多功能可参考 docs 文件夹下提供的说明文档,如下表所示:

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
kernel.tick:
kconfig:
- CONFIG_RT_TICK_PER_SECOND=100
kernel.console_name:
kconfig:
- CONFIG_RT_CONSOLE_DEVICE_NAME="uart0"
component.dev_drv.ipc.sys_workqueue:
kconfig:
- CONFIG_RT_USING_SYSTEM_WORKQUEUE=y
hw_drv_onchip.uart0:
kconfig:
- CONFIG_BSP_USING_UART0=y
hw_drv_onchip.adc0:
kconfig:
- CONFIG_BSP_USING_ADC=y
- CONFIG_BSP_USING_ADC0=y
hw_drv_onchip.spi0:
kconfig:
- CONFIG_BSP_USING_SPI=y
- CONFIG_BSP_USING_SPI0=y
hw_drv_onchip.i2c0:
kconfig:
- CONFIG_BSP_USING_I2C0=y
- CONFIG_BSP_I2C0_SCL_PIN=22
- CONFIG_BSP_I2C0_SDA_PIN=23
Loading