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.
18 lines
436 B
Plaintext
18 lines
436 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
|
|
default "arduino-zero" if BOARD_ARDUINO_ZERO
|
|
|
|
config BOARD_ARDUINO_ZERO
|
|
bool
|
|
default y
|
|
select HAS_TINYUSB_DEVICE
|
|
select BOARD_COMMON_ARDUINO_ZERO
|
|
|
|
source "$(RIOTBOARD)/common/arduino-zero/Kconfig"
|