37 lines
834 B
Plaintext
37 lines
834 B
Plaintext
|
# Kconfig - CC3200 SDK HAL configuration
|
||
|
|
||
|
config HAS_CC3200SDK
|
||
|
bool
|
||
|
|
||
|
menuconfig CC3200SDK
|
||
|
bool "TI CC3200 SDK support"
|
||
|
default n
|
||
|
depends on HAS_CC3200SDK
|
||
|
help
|
||
|
Set when CC3200SDK_BUILTIN or CC3200SDK_LIBRARY
|
||
|
|
||
|
if HAS_CC3200SDK
|
||
|
|
||
|
config CC3200SDK_BUILTIN
|
||
|
bool "Enable building the CC3200 SDK files stored in the Zephyr tree"
|
||
|
default n
|
||
|
select CC3200SDK
|
||
|
help
|
||
|
Link with local CC3200 SDK driverlib sources.
|
||
|
|
||
|
config CC3200SDK_LIBRARY
|
||
|
bool "Link with CC3200 SDK static driver library"
|
||
|
default n
|
||
|
select CC3200SDK
|
||
|
help
|
||
|
The CC3200 SDK provides a static library (libdriver.a)
|
||
|
which implements peripheral APIs for the CC3200.
|
||
|
|
||
|
config CC3200SDK_INSTALL_PATH
|
||
|
depends on CC3200SDK_LIBRARY
|
||
|
string "CC3200 SDK install path"
|
||
|
help
|
||
|
This option holds the path where the CC3200 SDK is installed.
|
||
|
|
||
|
endif
|