mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-29 05:57:55 +00:00
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>
28 lines
368 B
Plaintext
28 lines
368 B
Plaintext
# ST Microelectronics STM32L151X8-A MCU
|
|
|
|
# Copyright (c) 2019 eTactica ehf
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SOC_STM32L151X8A
|
|
|
|
config SOC
|
|
default "stm32l151x8a"
|
|
|
|
config NUM_IRQS
|
|
default 45
|
|
|
|
if GPIO_STM32
|
|
|
|
config GPIO_STM32_PORTD
|
|
default y
|
|
|
|
config GPIO_STM32_PORTE
|
|
default y
|
|
|
|
config GPIO_STM32_PORTH
|
|
default y
|
|
|
|
endif # GPIO_STM32
|
|
|
|
endif # SOC_STM32L151X8A
|