2020-07-15 11:54:24 +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 "nucleo-f303ze" if BOARD_NUCLEO_F303ZE
|
|
|
|
|
|
|
|
config BOARD_NUCLEO_F303ZE
|
|
|
|
bool
|
|
|
|
default y
|
2021-01-21 16:20:56 +01:00
|
|
|
select BOARD_COMMON_NUCLEO144
|
2020-07-15 11:54:24 +02:00
|
|
|
select CPU_MODEL_STM32F303ZE
|
|
|
|
|
|
|
|
# Put defined MCU peripherals here (in alphabetical order)
|
2020-09-06 19:31:37 +02:00
|
|
|
select HAS_PERIPH_ADC
|
2020-07-15 11:54:24 +02:00
|
|
|
select HAS_PERIPH_PWM
|
|
|
|
select HAS_PERIPH_RTC
|
|
|
|
select HAS_PERIPH_SPI
|
|
|
|
select HAS_PERIPH_TIMER
|
|
|
|
select HAS_PERIPH_UART
|
2022-10-03 07:04:41 +02:00
|
|
|
select HAS_PERIPH_USBDEV
|
2020-07-15 11:54:24 +02:00
|
|
|
|
|
|
|
# Put other features for this board (in alphabetical order)
|
|
|
|
select HAS_RIOTBOOT
|
2022-10-20 18:27:17 +02:00
|
|
|
select HAS_TINYUSB_DEVICE
|
2020-07-15 11:54:24 +02:00
|
|
|
|
2020-12-15 12:23:41 +01:00
|
|
|
source "$(RIOTBOARD)/common/nucleo144/Kconfig"
|