37 lines
654 B
Plaintext
37 lines
654 B
Plaintext
menu "Hardware Drivers Config"
|
|
|
|
config SOC_LPC824
|
|
bool
|
|
select SOC_LPC824_SERIES
|
|
select RT_USING_COMPONENTS_INIT
|
|
select RT_USING_USER_MAIN
|
|
default y
|
|
|
|
menu "On-chip Peripheral Drivers"
|
|
|
|
menuconfig BSP_USING_UART
|
|
bool "Enable UART"
|
|
default n
|
|
select RT_USING_SERIAL
|
|
if BSP_USING_UART
|
|
config BSP_USING_UART0
|
|
bool "Enable UART0"
|
|
default n
|
|
|
|
config BSP_USING_UART1
|
|
bool "Enable UART1"
|
|
default n
|
|
|
|
endif
|
|
|
|
endmenu
|
|
|
|
menu "Onboard Peripheral Drivers"
|
|
|
|
endmenu
|
|
|
|
menu "Board extended module Drivers"
|
|
|
|
endmenu
|
|
|
|
endmenu |