mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-13 17:51:57 +00:00
Replace the existing Apache 2.0 boilerplate header with an SPDX tag throughout the zephyr code tree. This patch was generated via a script run over the master branch. Also updated doc/porting/application.rst that had a dependency on line numbers in a literal include. Manually updated subsys/logging/sys_log.c that had a malformed header in the original file. Also cleanup several cases that already had a SPDX tag and we either got a duplicate or missed updating. Jira: ZEP-1457 Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c Signed-off-by: David B. Kinder <david.b.kinder@intel.com> Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
50 lines
890 B
Plaintext
50 lines
890 B
Plaintext
# Kconfig - STM32 GPIO configuration
|
|
#
|
|
# Copyright (c) 2016 Open-RnD Sp. z o.o.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig GPIO_STM32
|
|
bool "GPIO Driver for STM32 family of MCUs"
|
|
depends on GPIO && SOC_FAMILY_STM32
|
|
default n
|
|
help
|
|
Enable GPIO driver for STM32 line of MCUs
|
|
|
|
if GPIO_STM32
|
|
|
|
config GPIO_STM32_PORTA
|
|
bool "Enable GPIO port A support"
|
|
default n
|
|
|
|
config GPIO_STM32_PORTB
|
|
bool "Enable GPIO port B support"
|
|
default n
|
|
|
|
config GPIO_STM32_PORTC
|
|
bool "Enable GPIO port C support"
|
|
default n
|
|
|
|
config GPIO_STM32_PORTD
|
|
bool "Enable GPIO port D support"
|
|
default n
|
|
|
|
config GPIO_STM32_PORTE
|
|
bool "Enable GPIO port E support"
|
|
default n
|
|
|
|
config GPIO_STM32_PORTF
|
|
bool "Enable GPIO port F support"
|
|
default n
|
|
|
|
config GPIO_STM32_PORTG
|
|
bool "Enable GPIO port G support"
|
|
default n
|
|
|
|
config GPIO_STM32_PORTH
|
|
bool "Enable GPIO port H support"
|
|
default n
|
|
|
|
endif # GPIO_STM32
|