提交 c14bb274 编写于 作者: A a1012112796

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

更改stm32f427-robomaster-a板BSP包board.png图片
上级 b77a1fde
...@@ -22,7 +22,7 @@ RoboMaster开发板套件是一款面向机器人DIY的开源主控套件。开 ...@@ -22,7 +22,7 @@ RoboMaster开发板套件是一款面向机器人DIY的开源主控套件。开
该开发板常用 **板载资源** 如下: 该开发板常用 **板载资源** 如下:
- MCU:STM32f427IIH6,主频 180MHz,128KB FLASH ,2048KB RAM - MCU:STM32f427IIH6,主频 180MHz,2048KB FLASH ,128KB RAM
- 常用外设 - 常用外设
- LED:2个,D10(红色,PE11),D9(绿色,PE14) - LED:2个,D10(红色,PE11),D9(绿色,PE14)
- 按键:1个,KEY(PB2) - 按键:1个,KEY(PB2)
...@@ -86,8 +86,8 @@ RoboMaster开发板套件是一款面向机器人DIY的开源主控套件。开 ...@@ -86,8 +86,8 @@ RoboMaster开发板套件是一款面向机器人DIY的开源主控套件。开
```bash ```bash
\ | / \ | /
- RT - Thread Operating System - RT - Thread Operating System
/ | \ 3.1.1 build Nov 19 2018 / | \ 4.0.2 build Sep 1 2019
2006 - 2018 Copyright by rt-thread team 2006 - 2019 Copyright by rt-thread team
msh > msh >
``` ```
### 进阶使用 ### 进阶使用
...@@ -111,4 +111,4 @@ msh > ...@@ -111,4 +111,4 @@ msh >
## 联系人信息 ## 联系人信息
维护人: 维护人:
- [a1012112796](https://github.com/a1012112796)
\ No newline at end of file
...@@ -2,7 +2,7 @@ import rtconfig ...@@ -2,7 +2,7 @@ import rtconfig
from building import * from building import *
cwd = GetCurrentDir() cwd = GetCurrentDir()
CPPPATH = [cwd, str(Dir('#'))] CPPPATH = [cwd]
src = Split(""" src = Split("""
main.c main.c
""") """)
......
...@@ -28,18 +28,18 @@ menu "On-chip Peripheral Drivers" ...@@ -28,18 +28,18 @@ menu "On-chip Peripheral Drivers"
bool "Enable UART6 RX DMA" bool "Enable UART6 RX DMA"
depends on BSP_USING_UART6 && RT_SERIAL_USING_DMA depends on BSP_USING_UART6 && RT_SERIAL_USING_DMA
default n default n
config BSP_USING_UART3 config BSP_USING_UART3
bool "Enable UART3" bool "Enable UART3"
default y default n
config BSP_UART3_RX_USING_DMA config BSP_UART3_RX_USING_DMA
bool "Enable UART3 RX DMA" bool "Enable UART3 RX DMA"
depends on BSP_USING_UART3 && RT_SERIAL_USING_DMA depends on BSP_USING_UART3 && RT_SERIAL_USING_DMA
default n default n
endif endif
menuconfig BSP_USING_CAN menuconfig BSP_USING_CAN
bool "Enable CAN" bool "Enable CAN"
default n default n
select RT_USING_CAN select RT_USING_CAN
...@@ -47,17 +47,16 @@ menu "On-chip Peripheral Drivers" ...@@ -47,17 +47,16 @@ menu "On-chip Peripheral Drivers"
config BSP_USING_CAN1 config BSP_USING_CAN1
bool "using CAN1" bool "using CAN1"
default n default n
config BSP_USING_CAN2 config BSP_USING_CAN2
bool "using CAN2" bool "using CAN2"
default n default n
endif endif
source "../libraries/HAL_Drivers/Kconfig" source "../libraries/HAL_Drivers/Kconfig"
endmenu endmenu
menu "Board extended module Drivers" menu "Board extended module Drivers"
endmenu endmenu
endmenu endmenu
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册