mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-20 20:13:50 +01:00
16 lines
332 B
Plaintext
16 lines
332 B
Plaintext
# SPDX-FileCopyrightText: 2020 Inria
|
|
# SPDX-License-Identifier: LGPL-2.1-only
|
|
|
|
config BOARD
|
|
default "stm32f0discovery" if BOARD_STM32F0DISCOVERY
|
|
|
|
config BOARD_STM32F0DISCOVERY
|
|
bool
|
|
default y
|
|
select CPU_MODEL_STM32F051R8
|
|
|
|
# Clock configuration
|
|
select BOARD_HAS_HSE
|
|
|
|
source "$(RIOTBOARD)/common/stm32/Kconfig"
|