mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-09 10:12: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>
15 lines
318 B
Plaintext
15 lines
318 B
Plaintext
# Copyright (c) 2019 Antony Pavlov <antonynpavlov@gmail.com>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SOC_STM32F030X4
|
|
|
|
# STM32F0 Cube package advises to use 'stm32f030x6' code
|
|
# for both STM32F030x4 and STM32F030x6 SoC variants.
|
|
config SOC
|
|
default "stm32f030x6"
|
|
|
|
config NUM_IRQS
|
|
default 29
|
|
|
|
endif # SOC_STM32F030X4
|