From a43f1f48eda185f01455458de9f447c935d2d86a Mon Sep 17 00:00:00 2001 From: SummerGift Date: Mon, 9 Oct 2017 11:36:35 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=EF=BC=9A=E6=9B=B4=E6=96=B0?= =?UTF-8?q?kconfig,=E5=8E=BB=E9=99=A4=E4=B8=8D=E5=BF=85=E8=A6=81=E7=9A=84?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E9=A1=B9=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bsp/stm32f429-apollo/KConfig | 52 ++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 bsp/stm32f429-apollo/KConfig diff --git a/bsp/stm32f429-apollo/KConfig b/bsp/stm32f429-apollo/KConfig new file mode 100644 index 000000000..1ca578f6d --- /dev/null +++ b/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 + + + + + \ No newline at end of file -- GitLab