mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
37b64912d4
19256: pkg/tinyusb: add GD32VF103 support r=gschorcht a=gschorcht ### Contribution description This PR provides the tinyUSB support for GD32VF103 and enables the `tinyusb_device` feature as well as `stdio_tinyusb_cdc_acm` for GD32VF103 boards. ### Testing procedure ``` BOARD=sipeeed-longan-nano make -C tests/shell flash term ``` should work ### Issues/PRs references Co-authored-by: Gunar Schorcht <gunar@schorcht.net>
18 lines
535 B
Makefile
18 lines
535 B
Makefile
CPU_MODEL = gd32vf103cbt6
|
|
|
|
# Put defined MCU peripherals here (in alphabetical order)
|
|
FEATURES_PROVIDED += periph_adc
|
|
FEATURES_PROVIDED += periph_dac
|
|
FEATURES_PROVIDED += periph_i2c
|
|
FEATURES_PROVIDED += periph_pwm
|
|
FEATURES_PROVIDED += periph_spi
|
|
FEATURES_PROVIDED += periph_timer
|
|
FEATURES_PROVIDED += periph_uart
|
|
FEATURES_PROVIDED += sdcard_spi
|
|
|
|
# Other features provided by the board (in alphabetical order)
|
|
FEATURES_PROVIDED += highlevel_stdio
|
|
FEATURES_PROVIDED += tinyusb_device
|
|
|
|
include $(RIOTBOARD)/common/gd32v/Makefile.features
|