1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/atmega1281: configure RAM and ROM length

Info taken from https://www.microchip.com/wwwproducts/en/atmega1281

TODO: update "board not enough memory".
This commit is contained in:
cladmi 2018-08-15 13:20:44 +02:00
parent b22832b4cd
commit ef20b035bd
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B

View File

@ -8,5 +8,8 @@ export ATMEGA_COMMON = $(RIOTCPU)/atmega_common/
# Without this the interrupt vectors will not be linked correctly!
export UNDEF += $(BINDIR)/cpu/startup.o
RAM_LEN = 8K
ROM_LEN = 128K
# CPU depends on the atmega common module, so include it
include $(ATMEGA_COMMON)Makefile.include