纠正 新增stm32f427-robomaster-a板BSP包编写错误

更改stm32f427-robomaster-a板BSP包board.png图片
This commit is contained in:
a1012112796 2019-09-03 18:28:55 +08:00
parent b77a1fdea1
commit c14bb274dc
4 changed files with 13 additions and 14 deletions

View File

@ -22,7 +22,7 @@ RoboMaster开发板套件是一款面向机器人DIY的开源主控套件。开
该开发板常用 **板载资源** 如下:
- MCUSTM32f427IIH6主频 180MHz128KB FLASH 2048KB RAM
- MCUSTM32f427IIH6主频 180MHz2048KB FLASH 128KB RAM
- 常用外设
- LED2个D10红色PE11D9绿色PE14
- 按键1个KEYPB2
@ -86,8 +86,8 @@ RoboMaster开发板套件是一款面向机器人DIY的开源主控套件。开
```bash
\ | /
- RT - Thread Operating System
/ | \ 3.1.1 build Nov 19 2018
2006 - 2018 Copyright by rt-thread team
/ | \ 4.0.2 build Sep 1 2019
2006 - 2019 Copyright by rt-thread team
msh >
```
### 进阶使用
@ -111,4 +111,4 @@ msh >
## 联系人信息
维护人:
- [a1012112796](https://github.com/a1012112796)

View File

@ -2,7 +2,7 @@ import rtconfig
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd, str(Dir('#'))]
CPPPATH = [cwd]
src = Split("""
main.c
""")

View File

@ -28,18 +28,18 @@ menu "On-chip Peripheral Drivers"
bool "Enable UART6 RX DMA"
depends on BSP_USING_UART6 && RT_SERIAL_USING_DMA
default n
config BSP_USING_UART3
config BSP_USING_UART3
bool "Enable UART3"
default y
default n
config BSP_UART3_RX_USING_DMA
bool "Enable UART3 RX DMA"
depends on BSP_USING_UART3 && RT_SERIAL_USING_DMA
default n
endif
menuconfig BSP_USING_CAN
menuconfig BSP_USING_CAN
bool "Enable CAN"
default n
select RT_USING_CAN
@ -47,17 +47,16 @@ menu "On-chip Peripheral Drivers"
config BSP_USING_CAN1
bool "using CAN1"
default n
config BSP_USING_CAN2
config BSP_USING_CAN2
bool "using CAN2"
default n
endif
source "../libraries/HAL_Drivers/Kconfig"
endmenu
menu "Board extended module Drivers"
endmenu
endmenu

Binary file not shown.

Before

Width:  |  Height:  |  Size: 287 KiB

After

Width:  |  Height:  |  Size: 695 KiB