Ulf Magnusson | bd6e044 | 2019-11-01 13:45:29 +0100 | [diff] [blame] | 1 | # CC3220/CC32XX SDK HAL configuration |
Gil Pitney | b4ec662 | 2017-03-30 11:10:17 -0700 | [diff] [blame] | 2 | |
| 3 | config HAS_CC3220SDK |
| 4 | bool |
| 5 | |
Gil Pitney | e1f0abd | 2017-07-13 16:30:31 -0700 | [diff] [blame] | 6 | # Notes: |
Jan Van Winkel | 9555f82 | 2019-09-27 21:41:39 +0200 | [diff] [blame] | 7 | # SimpleLink drivers require types (stdint.h) from c library which is not |
| 8 | # provided by minimal lbc |
Gil Pitney | e1f0abd | 2017-07-13 16:30:31 -0700 | [diff] [blame] | 9 | # Selecting ERRNO lets host driver use Zephyr's __errno |
Vincent Wan | 5bce9cb | 2019-02-19 16:57:28 -0800 | [diff] [blame] | 10 | # Selecting PTHREAD_IPC and POSIX_API are needed to build the host driver |
Gil Pitney | e1f0abd | 2017-07-13 16:30:31 -0700 | [diff] [blame] | 11 | config SIMPLELINK_HOST_DRIVER |
| 12 | bool "Build the SimpleLink WiFi Host Driver" |
Gil Pitney | b4ec662 | 2017-03-30 11:10:17 -0700 | [diff] [blame] | 13 | depends on HAS_CC3220SDK |
Gil Pitney | e1f0abd | 2017-07-13 16:30:31 -0700 | [diff] [blame] | 14 | depends on MULTITHREADING |
Jan Van Winkel | 9555f82 | 2019-09-27 21:41:39 +0200 | [diff] [blame] | 15 | select REQUIRES_FULL_LIBC |
Gil Pitney | e1f0abd | 2017-07-13 16:30:31 -0700 | [diff] [blame] | 16 | select ERRNO |
Ulf Magnusson | 270d535 | 2019-09-06 17:05:46 +0200 | [diff] [blame] | 17 | select PTHREAD_IPC |
Vincent Wan | 17d0d8e | 2019-08-30 13:56:32 -0700 | [diff] [blame] | 18 | select POSIX_CLOCK |
Gil Pitney | b4ec662 | 2017-03-30 11:10:17 -0700 | [diff] [blame] | 19 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 20 | Build the SimpleLink host driver |
Manivannan Sadhasivam | 49fd036 | 2017-08-15 07:30:22 +0530 | [diff] [blame] | 21 | |
Ulf Magnusson | bd6e044 | 2019-11-01 13:45:29 +0100 | [diff] [blame] | 22 | # MSP432 SDK HAL configuration |
Manivannan Sadhasivam | 49fd036 | 2017-08-15 07:30:22 +0530 | [diff] [blame] | 23 | |
| 24 | config HAS_MSP432P4XXSDK |
Ulf Magnusson | 270d535 | 2019-09-06 17:05:46 +0200 | [diff] [blame] | 25 | bool |
Stephanos Ioannidis | bb14d8c | 2019-10-17 09:42:35 +0900 | [diff] [blame] | 26 | select HAS_CMSIS_CORE |
Brett Witherspoon | faa941e | 2019-04-09 10:20:05 -0500 | [diff] [blame] | 27 | |
Ulf Magnusson | bd6e044 | 2019-11-01 13:45:29 +0100 | [diff] [blame] | 28 | # CC13X2 / CC26X2 SDK HAL configuration |
Brett Witherspoon | faa941e | 2019-04-09 10:20:05 -0500 | [diff] [blame] | 29 | |
| 30 | config HAS_CC13X2_CC26X2_SDK |
| 31 | bool |