2014-07-15 12:09:50 +02:00
|
|
|
# tell the build system that the CPU depends on the atmega common files
|
2015-07-15 16:05:28 +02:00
|
|
|
USEMODULE += atmega_common
|
2015-06-09 13:09:28 +02:00
|
|
|
|
2018-08-15 13:20:44 +02:00
|
|
|
RAM_LEN = 8K
|
|
|
|
ROM_LEN = 256K
|
|
|
|
|
2019-08-01 09:25:10 +02:00
|
|
|
# expand atmega_pcint with additional PCINTs for atmega2560
|
|
|
|
ifneq (,$(filter atmega_pcint,$(USEMODULE)))
|
|
|
|
USEMODULE += atmega_pcint1 atmega_pcint2
|
|
|
|
endif
|
|
|
|
|
2014-07-15 12:09:50 +02:00
|
|
|
# CPU depends on the atmega common module, so include it
|
2018-05-15 02:38:49 +02:00
|
|
|
include $(RIOTCPU)/atmega_common/Makefile.include
|