mirror of
https://github.com/zephyrproject-rtos/zephyr.git
synced 2024-12-04 10:18:24 +08:00
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>
65 lines
1.1 KiB
Plaintext
65 lines
1.1 KiB
Plaintext
# MCUXpresso SDK pinmux
|
|
|
|
# Copyright (c) 2016, Freescale Semiconductor, Inc.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig PINMUX_MCUX
|
|
bool "MCUX pinmux driver"
|
|
depends on HAS_MCUX
|
|
help
|
|
Enable the MCUX pinmux driver.
|
|
|
|
if PINMUX_MCUX
|
|
|
|
config PINMUX_MCUX_PORTA
|
|
bool "Port A"
|
|
help
|
|
Enable Port A.
|
|
|
|
config PINMUX_MCUX_PORTA_NAME
|
|
string "Pinmux Port A driver name"
|
|
depends on PINMUX_MCUX_PORTA
|
|
default "porta"
|
|
|
|
config PINMUX_MCUX_PORTB
|
|
bool "Port B"
|
|
help
|
|
Enable Port B.
|
|
|
|
config PINMUX_MCUX_PORTB_NAME
|
|
string "Pinmux Port B driver name"
|
|
depends on PINMUX_MCUX_PORTB
|
|
default "portb"
|
|
|
|
config PINMUX_MCUX_PORTC
|
|
bool "Port C"
|
|
help
|
|
Enable Port C.
|
|
|
|
config PINMUX_MCUX_PORTC_NAME
|
|
string "Pinmux Port C driver name"
|
|
depends on PINMUX_MCUX_PORTC
|
|
default "portc"
|
|
|
|
config PINMUX_MCUX_PORTD
|
|
bool "Port D"
|
|
help
|
|
Enable Port D.
|
|
|
|
config PINMUX_MCUX_PORTD_NAME
|
|
string "Pinmux Port D driver name"
|
|
depends on PINMUX_MCUX_PORTD
|
|
default "portd"
|
|
|
|
config PINMUX_MCUX_PORTE
|
|
bool "Port E"
|
|
help
|
|
Enable Port E.
|
|
|
|
config PINMUX_MCUX_PORTE_NAME
|
|
string "Pinmux Port E driver name"
|
|
depends on PINMUX_MCUX_PORTE
|
|
default "porte"
|
|
|
|
endif # PINMUX_MCUX
|