In preparation for introducing a warning. Unquoted string defaults work through a quirk of Kconfig (undefined symbols get their name as their string value), but look confusing. It's done inconsistently now too. Suggested by Kumar Gala. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
16 lines
211 B
Text
16 lines
211 B
Text
# Kconfig - TI CC3220SF LaunchXL board configuration
|
|
#
|
|
|
|
if BOARD_CC3220SF_LAUNCHXL
|
|
|
|
config BOARD
|
|
default "cc3220sf_launchxl"
|
|
|
|
if I2C
|
|
|
|
config I2C_CC32XX
|
|
def_bool y
|
|
|
|
endif # I2C
|
|
|
|
endif # BOARD_CC3220SF_LAUNCHXL
|