KConfig 816 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 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