mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
31 lines
859 B
Plaintext
31 lines
859 B
Plaintext
# Copyright (c) 2020 Inria
|
|
#
|
|
# This file is subject to the terms and conditions of the GNU Lesser
|
|
# General Public License v2.1. See the file LICENSE in the top level
|
|
# directory for more details.
|
|
#
|
|
|
|
config BOARD
|
|
default "blackpill-stm32f103cb" if BOARD_BLACKPILL_STM32F103CB
|
|
|
|
config BOARD_BLACKPILL_STM32F103CB
|
|
bool
|
|
default y
|
|
select BOARD_COMMON_BLXXXPILL
|
|
select CPU_MODEL_STM32F103CB
|
|
select MODULE_BOARDS_COMMON_BLXXXPILL if TEST_KCONFIG
|
|
|
|
select HAS_HIGHLEVEL_STDIO
|
|
|
|
config FORCE_USB_STDIO
|
|
default y
|
|
|
|
# HACK: This is added due to the make resolution
|
|
# make will select timer backend, probably due to the USBUS
|
|
# and kconfig cannot select if something is already selected like make
|
|
choice ZTIMER_MSEC_BACKEND
|
|
default ZTIMER_MSEC_BACKEND_TIMER if MODULE_PERIPH_RTC
|
|
endchoice
|
|
|
|
source "$(RIOTBOARD)/common/blxxxpill/Kconfig"
|