From 491f420651fecc70ff04d812b7d1be40c6f69e72 Mon Sep 17 00:00:00 2001 From: Robert Hartung <hartung@ibr.cs.tu-bs.de> Date: Mon, 6 Nov 2017 11:38:26 +0100 Subject: [PATCH] cpu/atmega_common: renames periph module --- cpu/atmega_common/Makefile.include | 2 +- cpu/atmega_common/periph/Makefile | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/cpu/atmega_common/Makefile.include b/cpu/atmega_common/Makefile.include index 5cbfe7ae76..23fc0413a1 100644 --- a/cpu/atmega_common/Makefile.include +++ b/cpu/atmega_common/Makefile.include @@ -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 diff --git a/cpu/atmega_common/periph/Makefile b/cpu/atmega_common/periph/Makefile index 6d1887b640..3d333133ab 100644 --- a/cpu/atmega_common/periph/Makefile +++ b/cpu/atmega_common/periph/Makefile @@ -1,3 +1,2 @@ -MODULE = periph - +MODULE = atmega_common_periph include $(RIOTBASE)/Makefile.base -- GitLab