mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
0b1b7e8408
The `tinyusb_device` feature introduced with PR #18689 has to be moved from `common/arduino-zero` definition to the `arduino-zero` definition because the common `arduino-zero` features are also used by `wemos-zero` which uses `highlevel_stdio` feature via the `stdio_cdc_acm` module.
30 lines
750 B
Plaintext
30 lines
750 B
Plaintext
# Copyright (c) 2020 HAW Hamburg
|
|
#
|
|
# 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_COMMON_ARDUINO_ZERO
|
|
bool
|
|
select CPU_MODEL_SAMD21G18A
|
|
select HAS_PERIPH_ADC
|
|
select HAS_PERIPH_I2C
|
|
select HAS_PERIPH_PWM
|
|
select HAS_PERIPH_RTC
|
|
select HAS_PERIPH_RTT
|
|
select HAS_PERIPH_SPI
|
|
select HAS_PERIPH_TIMER
|
|
select HAS_PERIPH_UART
|
|
select HAS_PERIPH_USBDEV
|
|
select HAS_ARDUINO
|
|
select HAS_ARDUINO_PWM
|
|
|
|
select HAVE_SAUL_GPIO
|
|
|
|
config MODULE_BOARDS_COMMON_ARDUINO_ZERO
|
|
bool
|
|
depends on TEST_KCONFIG
|
|
default y
|
|
help
|
|
Common code for arduino-zero type of boards.
|