1 38ec6d229d 1.修改代码规范和许可
2.删除没用的文件
2021-08-27 15:19:21 +08:00

39 lines
813 B
Plaintext

menu "Hardware Drivers Config"
config SOC_FM33LC0XX
bool
select SOC_SERIES_FM33LC0XX
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 y
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 y
config BSP_USING_UART4
bool "Enable UART4"
default n
config BSP_USING_UART5
bool "Enable UART5"
default y
endif
source "libraries/HAL_Drivers/Kconfig"
endmenu
endmenu