浏览代码

[更新]:更新kconfig,去除不必要的配置项。

SummerGift 7 年之前
父节点
当前提交
a43f1f48ed
共有 1 个文件被更改,包括 52 次插入0 次删除
  1. 52 0
      bsp/stm32f429-apollo/KConfig

+ 52 - 0
bsp/stm32f429-apollo/KConfig

@@ -0,0 +1,52 @@
+mainmenu "RT-Thread Configuration"
+
+config $BSP_DIR
+    string
+    option env="BSP_ROOT"
+    default "."
+
+config $RTT_DIR
+    string
+    option env="RTT_ROOT"
+    default "../.."
+
+config $PKGS_DIR
+    string
+    option env="PKGS_ROOT"
+    default "packages"
+
+source "$RTT_DIR/KConfig"
+source "$PKGS_DIR/KConfig"
+
+menu "BSP_SPECIAL CONFIG"
+  
+config RT_RTC_NAME
+    string "RT_RTC_NAME"
+    default rtc
+    
+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     
+          
+endmenu
+
+
+
+    
+