1# CC3220/CC32XX SDK HAL configuration 2 3config HAS_CC3220SDK 4 bool 5 6# Notes: 7# SimpleLink drivers require types (stdint.h) from c library which is not 8# provided by minimal lbc 9# Selecting ERRNO lets host driver use Zephyr's __errno 10# Selecting PTHREAD_IPC and POSIX_API are needed to build the host driver 11config SIMPLELINK_HOST_DRIVER 12 bool "Build the SimpleLink WiFi Host Driver" 13 depends on HAS_CC3220SDK 14 depends on MULTITHREADING 15 select REQUIRES_FULL_LIBC 16 select ERRNO 17 select PTHREAD_IPC 18 select POSIX_CLOCK 19 help 20 Build the SimpleLink host driver 21 22# MSP432 SDK HAL configuration 23 24config HAS_MSP432P4XXSDK 25 bool 26 select HAS_CMSIS_CORE 27 28# CC13X2 / CC26X2 SDK HAL configuration 29 30config HAS_CC13X2_CC26X2_SDK 31 bool 32