mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
Koen Zandberg
3d470b0c12
This adds support for the gd32v class devices from Gigadevice. The gd32vf103 contains an 108 MHz RISC-V core with similar peripherals as the stm32f1 devices Co-authored-by: Benjamin Valentin <benjamin.valentin@ml-pa.com>
16 lines
361 B
Makefile
16 lines
361 B
Makefile
FEATURES_REQUIRED += periph_clic
|
|
FEATURES_REQUIRED_ANY += newlib|picolibc
|
|
ifneq (,$(filter newlib,$(USEMODULE)))
|
|
USEMODULE += newlib_nano
|
|
USEMODULE += newlib_syscalls_default
|
|
endif
|
|
|
|
USEMODULE += periph
|
|
USEMODULE += riscv_common
|
|
|
|
ifneq (,$(filter periph_pm,$(USEMODULE)))
|
|
FEATURES_REQUIRED += periph_wdt
|
|
endif
|
|
|
|
include $(RIOTCPU)/riscv_common/Makefile.dep
|