zephyr/modules/Kconfig.simplelink
Ulf Magnusson bd6e04411e kconfig: Clean up header comments and make them consistent
Use this short header style in all Kconfig files:

    # <description>

    # <copyright>
    # <license>

    ...

Also change all <description>s from

    # Kconfig[.extension] - Foo-related options

to just

    # Foo-related options

It's clear enough that it's about Kconfig.

The <description> cleanup was done with this command, along with some
manual cleanup (big letter at the start, etc.)

    git ls-files '*Kconfig*' | \
        xargs sed -i -E '1 s/#\s*Kconfig[\w.-]*\s*-\s*/# /'

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2019-11-04 17:31:27 -05:00

32 lines
722 B
Plaintext

# CC3220/CC32XX SDK HAL configuration
config HAS_CC3220SDK
bool
# Notes:
# SimpleLink drivers require types (stdint.h) from c library which is not
# provided by minimal lbc
# Selecting ERRNO lets host driver use Zephyr's __errno
# Selecting PTHREAD_IPC and POSIX_API are needed to build the host driver
config SIMPLELINK_HOST_DRIVER
bool "Build the SimpleLink WiFi Host Driver"
depends on HAS_CC3220SDK
depends on MULTITHREADING
select REQUIRES_FULL_LIBC
select ERRNO
select PTHREAD_IPC
select POSIX_CLOCK
help
Build the SimpleLink host driver
# MSP432 SDK HAL configuration
config HAS_MSP432P4XXSDK
bool
select HAS_CMSIS_CORE
# CC13X2 / CC26X2 SDK HAL configuration
config HAS_CC13X2_CC26X2_SDK
bool