Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
rt-thread
提交
4074a3f2
R
rt-thread
项目概览
BaiXuePrincess
/
rt-thread
与 Fork 源项目一致
Fork自
RT-Thread / rt-thread
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
rt-thread
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
4074a3f2
编写于
10月 28, 2017
作者:
B
bernard
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[BSP] Update stm32f429-apollo Kconfig.
上级
f66e8594
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
41 addition
and
31 deletion
+41
-31
bsp/stm32f429-apollo/KConfig
bsp/stm32f429-apollo/KConfig
+1
-26
bsp/stm32f429-apollo/drivers/Kconfig
bsp/stm32f429-apollo/drivers/Kconfig
+30
-0
bsp/stm32f429-apollo/drivers/SConscript
bsp/stm32f429-apollo/drivers/SConscript
+3
-1
bsp/stm32f429-apollo/rtconfig.h
bsp/stm32f429-apollo/rtconfig.h
+7
-4
未找到文件。
bsp/stm32f429-apollo/KConfig
浏览文件 @
4074a3f2
...
...
@@ -17,30 +17,5 @@ config $PKGS_DIR
source "$RTT_DIR/KConfig"
source "$PKGS_DIR/KConfig"
config RT_USING_EXT_SDRAM
bool "Using RT_USING_EXT_SDRAM"
default y
config RT_USING_UART1
bool "Using RT_USING_UART1"
default y
config RT_USING_UART2
bool "Using RT_USING_UART2"
default y
config RT_USING_UART3
bool "Using RT_USING_UART3"
default y
config RT_USING_SPI5
bool "Using RT_USING_SPI5"
default y
config RT_RTC_NAME
string "RT_RTC_NAME"
default rtc
\ No newline at end of file
source "$BSP_DIR/drivers/Kconfig"
bsp/stm32f429-apollo/drivers/Kconfig
0 → 100644
浏览文件 @
4074a3f2
config RT_USING_EXT_SDRAM
bool "Enable SDRAM on the board"
default y
config RT_USING_UART1
bool "Enable UART1"
default y
config RT_USING_UART2
bool "Enable UART2"
default y
config RT_USING_UART3
bool "Enable UART3"
default y
config RT_USING_SPI5
bool "Enable SPI5"
default y
config RT_RTC_NAME
string "The name of RTC device"
default rtc
if RT_USING_LWIP
config CONFIG_PCF8574
bool
select RT_USING_I2C
select RT_USING_I2C_BITOPS
endif
bsp/stm32f429-apollo/drivers/SConscript
浏览文件 @
4074a3f2
...
...
@@ -9,7 +9,6 @@ stm32f4xx_it.c
usart.c
drv_sdram.c
drv_rtc.c
drv_nand.c
drv_mpu.c
"""
)
...
...
@@ -17,6 +16,9 @@ drv_mpu.c
if
GetDepend
(
'RT_USING_DFS'
):
src
+=
[
'drv_sdio_sd.c'
]
if
GetDepend
(
'RT_USING_MTD_NAND'
):
src
+=
[
'drv_nand.c'
]
# add Ethernet drivers.
if
GetDepend
(
'RT_USING_LWIP'
):
src
+=
[
'drv_eth.c'
,
'drv_iic.c'
,
'drv_pcf8574.c'
]
...
...
bsp/stm32f429-apollo/rtconfig.h
浏览文件 @
4074a3f2
...
...
@@ -71,6 +71,9 @@
#define DFS_FILESYSTEMS_MAX 2
#define DFS_FD_MAX 4
#define RT_USING_DFS_ELMFAT
/* elm-chan's FatFs, Generic FAT Filesystem Module */
#define RT_DFS_ELM_CODE_PAGE 437
#define RT_DFS_ELM_WORD_ACCESS
#define RT_DFS_ELM_USE_LFN_0
...
...
@@ -85,6 +88,9 @@
#define RT_DFS_ELM_REENTRANT
#define RT_USING_DFS_DEVFS
#define RT_USING_DFS_NET
/* RT_USING_DFS_ROMFS is not set */
/* RT_USING_DFS_RAMFS is not set */
/* RT_USING_DFS_UFFS is not set */
/* RT_USING_DFS_NFS is not set */
/* Device Drivers */
...
...
@@ -198,14 +204,11 @@
/* miscellaneous packages */
/* PKG_USING_HELLO is not set */
/* BSP_SPECIAL CONFIG */
#define RT_RTC_NAME "rtc"
#define RT_USING_EXT_SDRAM
#define RT_USING_UART1
#define RT_USING_UART2
#define RT_USING_UART3
#define RT_USING_SPI5
#define RT_RTC_NAME "rtc"
#endif
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录