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>
22 lines
714 B
Plaintext
22 lines
714 B
Plaintext
# Configuration for STM32 pinmux
|
|
|
|
# Copyright (c) 2016 Open-RnD Sp. z o.o.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config PINMUX_STM32
|
|
bool "Pinmux driver for STM32 MCUs"
|
|
depends on SOC_FAMILY_STM32
|
|
help
|
|
Enable pin multiplexer for STM32 MCUs
|
|
|
|
config PINMUX_STM32_DEVICE_INITIALIZATION_PRIORITY
|
|
int "Device initialization priority STM32 pinmux"
|
|
depends on PINMUX_STM32
|
|
default 2
|
|
help
|
|
This option controls the priority of pinmux device initialization.
|
|
Higher priority ensures that the device is initialized earlier in
|
|
the startup cycle. Note that the pinmux device needs to be initialized
|
|
after clock control device, but possibly before all other devices.
|
|
If unsure, leave at default value 2
|