24 lines
363 B
Plaintext
24 lines
363 B
Plaintext
# Kconfig.soc - Texas Instruments CC32XX
|
|
#
|
|
|
|
choice
|
|
prompt "TI SimpleLink MCU Selection"
|
|
depends on SOC_SERIES_CC32XX
|
|
|
|
config SOC_CC3220SF
|
|
bool "CC3220SF"
|
|
select HAS_CC3220SDK
|
|
|
|
endchoice
|
|
|
|
|
|
if SOC_CC3220SF
|
|
|
|
config CC3220SF_DEBUG
|
|
bool "Prepend debug header, disabling flash verification"
|
|
depends on XIP
|
|
default y if XIP
|
|
default n if !XIP
|
|
|
|
endif # SOC_CC3220SF
|