| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- mainmenu "RT-Thread Configuration"
- BSP_DIR := .
- RTT_DIR := ../../..
- # you can change the RTT_ROOT default: "rt-thread"
- # example : default "F:/git_repositories/rt-thread"
- PKGS_DIR := packages
- source "$(RTT_DIR)/Kconfig"
- osource "$PKGS_DIR/Kconfig"
- config SOC_SERIES_V85XXP
- bool
- default y
- config SOC_V85XXP
- bool
- select RT_USING_COMPONENTS_INIT
- select RT_USING_USER_MAIN
- select SOC_SERIES_V85XXP
- default y
- menu "On-chip Peripheral Drivers"
- menuconfig BSP_USING_UART
- bool "Enable UART"
- default y
- select RT_USING_SERIAL
- if BSP_USING_UART
- config BSP_USING_UART0
- bool "using uart0"
- default n
- config BSP_USING_UART1
- bool "using uart1"
- default n
- config BSP_USING_UART2
- bool "using uart2"
- default y
- config BSP_USING_UART3
- bool "using uart3"
- default n
- config BSP_USING_UART4
- bool "using uart4"
- default n
- config BSP_USING_UART5
- bool "using uart5"
- default n
- endif
- menuconfig BSP_USING_ADC
- bool "Enable ADC"
- default n
- select RT_USING_ADC
- if BSP_USING_ADC
- config BSP_USING_ADC0
- bool "using adc0"
- default n
- endif
- menuconfig BSP_USING_CLOCK_TIMER
- bool "Enable clock_timer"
- default n
- select RT_USING_CLOCK_TIME
- if BSP_USING_CLOCK_TIMER
- config BSP_USING_CLOCK_TIMER0
- bool "using clock_timer0"
- default n
- config BSP_USING_CLOCK_TIMER1
- bool "using clock_timer1"
- default n
- config BSP_USING_CLOCK_TIMER2
- bool "using clock_timer2"
- default n
- config BSP_USING_CLOCK_TIMER3
- bool "using clock_timer3"
- default n
- endif
- config BSP_USING_WDT
- bool "Enable Watchdog Timer"
- select RT_USING_WDT
- default n
- config BSP_USING_RTC
- bool "using internal rtc"
- default n
- select RT_USING_RTC
- endmenu
|