1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-26 23:11:19 +01:00

cpu/atmega_common: renames periph module

This commit is contained in:
Robert Hartung 2017-11-06 11:38:26 +01:00
parent ff86015a60
commit 491f420651
2 changed files with 2 additions and 3 deletions

View File

@ -11,7 +11,7 @@ export ASFLAGS += $(CFLAGS_CPU) $(CFLAGS_DBG)
export LINKFLAGS += $(CFLAGS_CPU) $(CFLAGS_DBG) $(CFLAGS_OPT) -static -lgcc -e reset_handler -Wl,--gc-sections
# export the peripheral drivers to be linked into the final binary
export USEMODULE += periph
export USEMODULE += atmega_common_periph
export USEMODULE += periph_common
# the atmel port uses uart_stdio

View File

@ -1,3 +1,2 @@
MODULE = periph
MODULE = atmega_common_periph
include $(RIOTBASE)/Makefile.base