nuttx/arch/hc/Kconfig
jordi f3af6edf93 Kconfig: add quotes in source to clean warnings from setconfig
To avoid the setconfig warning "style: quotes recommended around xxx in
source xxx"
2021-07-23 02:32:19 -07:00

38 lines
697 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
if ARCH_HC
choice
prompt "HC chip selection"
default ARCH_CHIP_MCS92S12NEC64
config ARCH_CHIP_MCS92S12NEC64
bool "MCS92S12NEC64"
select ARCH_HSC12
select MM_SMALL
---help---
Motorola/Freescale MCS92S12NEC64 (M9S12)
config ARCH_CHIP_HC_CUSTOM
bool "Custom HC chip"
select ARCH_CHIP_CUSTOM
---help---
Select this option if there is no directory for the chip under arch/hc/src/.
endchoice
config ARCH_HSC12
bool
default n
config ARCH_CHIP
string
default "m9s12" if ARCH_CHIP_MCS92S12NEC64
source "arch/hc/src/m9s12/Kconfig"
endif # ARCH_HC