2012-04-06 17:49:35 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:08:57 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 17:49:35 +02:00
|
|
|
#
|
2012-04-17 15:48:39 +02:00
|
|
|
|
|
|
|
if ARCH_HC
|
2014-03-06 00:27:58 +01:00
|
|
|
|
2012-04-17 15:48:39 +02:00
|
|
|
choice
|
|
|
|
prompt "HC chip selection"
|
|
|
|
default ARCH_CHIP_MCS92S12NEC64
|
|
|
|
|
|
|
|
config ARCH_CHIP_MCS92S12NEC64
|
|
|
|
bool "MCS92S12NEC64"
|
2014-03-06 00:27:58 +01:00
|
|
|
select ARCH_HSC12
|
2015-11-23 19:16:35 +01:00
|
|
|
select MM_SMALL
|
2012-04-17 15:48:39 +02:00
|
|
|
---help---
|
|
|
|
Motorola/Freescale MCS92S12NEC64 (M9S12)
|
|
|
|
|
2020-10-15 05:29:59 +02:00
|
|
|
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/.
|
|
|
|
|
2012-04-17 15:48:39 +02:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
config ARCH_HSC12
|
|
|
|
bool
|
2014-03-06 00:27:58 +01:00
|
|
|
default n
|
2012-04-17 15:48:39 +02:00
|
|
|
|
|
|
|
config ARCH_CHIP
|
|
|
|
string
|
|
|
|
default "m9s12" if ARCH_CHIP_MCS92S12NEC64
|
|
|
|
|
2021-07-20 13:10:10 +02:00
|
|
|
source "arch/hc/src/m9s12/Kconfig"
|
2012-04-18 00:54:31 +02:00
|
|
|
|
2014-03-06 00:27:58 +01:00
|
|
|
endif # ARCH_HC
|