Kconfig.simplelink 722 B

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