bd6e04411e
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>
24 lines
596 B
Plaintext
24 lines
596 B
Plaintext
# Cypress UART configuration
|
|
|
|
# Copyright (c) 2018 Cypress
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig UART_PSOC6
|
|
bool "PSoC6 MCU serial driver"
|
|
select SERIAL_HAS_DRIVER
|
|
depends on SOC_FAMILY_PSOC6
|
|
help
|
|
This option enables the UART driver for PSoC6 family of processors.
|
|
|
|
config UART_PSOC6_UART_5
|
|
bool "Enable PSOC6 SCB6 as UART_5 on Port 5"
|
|
depends on UART_PSOC6
|
|
help
|
|
Enable support for UART_5 on port 5 in the driver.
|
|
|
|
config UART_PSOC6_UART_6
|
|
bool "Enable PSOC6 SCB6 as UART_6 on Port 12"
|
|
depends on UART_PSOC6
|
|
help
|
|
Enable support for UART_6 on port 12 in the driver.
|