2020-07-16 10:53:03 +02:00
|
|
|
# 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 "msbiot" if BOARD_MSBIOT
|
|
|
|
|
|
|
|
config BOARD_MSBIOT
|
|
|
|
bool
|
|
|
|
default y
|
|
|
|
select CPU_MODEL_STM32F415RG
|
|
|
|
|
2020-09-06 21:59:51 +02:00
|
|
|
# Clock configuration
|
|
|
|
select BOARD_HAS_HSE
|
|
|
|
select BOARD_HAS_LSE
|
|
|
|
|
2022-10-26 11:57:02 +02:00
|
|
|
config CLOCK_HSE
|
|
|
|
default 16000000
|
2022-10-26 11:43:40 +02:00
|
|
|
|
2022-02-03 11:16:38 +01:00
|
|
|
config CLOCK_PLL_M
|
|
|
|
default 16
|
|
|
|
|
|
|
|
config CLOCK_PLL_N
|
2024-03-26 10:41:15 +01:00
|
|
|
default 336 if USEMODULE_PERIPH_USBDEV
|
2022-02-03 11:16:38 +01:00
|
|
|
default 360
|
|
|
|
|
|
|
|
|
2020-09-06 21:59:51 +02:00
|
|
|
source "$(RIOTBOARD)/common/stm32/Kconfig"
|