Merge pull request #1820 from stefanrueger/bootrow-elf

Extend elf format for bootrow
This commit is contained in:
Stefan Rueger
2024-06-15 12:14:04 +00:00
committed by GitHub

View File

@@ -860,6 +860,10 @@ static int elf_mem_limits(const AVRMEM *mem, const AVRPART *p,
*lowbound = 0x850000;
*highbound = 0x85ffff;
*fileoff = 0;
} else if (mem_is_bootrow(mem)) {
*lowbound = 0x860000;
*highbound = 0x86ffff;
*fileoff = 0;
} else {
rv = -1;
}