Merge pull request #7862 from roberthartung/atmega_common_fix_periph

atmega_common: renames periph for atmega_common_periph
This commit is contained in:
Martine Lenders 2017-11-06 11:55:59 +01:00 committed by GitHub
commit 60d543ab3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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