mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-30 00:35:20 +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>
17 lines
447 B
Plaintext
17 lines
447 B
Plaintext
# STMicroelectronics STM32G0 MCU series
|
|
|
|
# Copyright (c) 2019 Philippe Retornaz <philippe@shapescale.com>
|
|
# Copyright (c) 2019 STMicroelectronics
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config SOC_SERIES_STM32G0X
|
|
bool "STM32G0x Series MCU"
|
|
select CPU_CORTEX_M0PLUS
|
|
select CPU_CORTEX_M_HAS_VTOR
|
|
select CPU_HAS_ARM_MPU
|
|
select SOC_FAMILY_STM32
|
|
select HAS_STM32CUBE
|
|
select CPU_CORTEX_M_HAS_SYSTICK
|
|
help
|
|
Enable support for STM32G0 MCU series
|