Get boot section info from avrdude.conf and not from avrintel.c
This commit is contained in:
parent
d774e87a59
commit
0e0a0ba0eb
|
@ -318,12 +318,8 @@ static int guessBootStart(const PROGRAMMER *pgm, const AVRPART *p) {
|
||||||
int bootstart = 0;
|
int bootstart = 0;
|
||||||
const AVR_Cache *cp = pgm->cp_flash;
|
const AVR_Cache *cp = pgm->cp_flash;
|
||||||
|
|
||||||
for(size_t i = 0; i < sizeof uP_table/sizeof*uP_table; i++)
|
if(p->n_boot_sections > 0 && p->boot_section_size > 0)
|
||||||
if(p->mcuid == uP_table[i].mcuid) {
|
bootstart = cp->size - (p->boot_section_size<<(p->n_boot_sections-1));
|
||||||
if(uP_table[i].nboots > 0 && uP_table[i].bootsize > 0 && uP_table[i].flashsize == cp->size)
|
|
||||||
bootstart = cp->size - uP_table[i].nboots * uP_table[i].bootsize;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if(bootstart <= cp->size/2 || bootstart >= cp->size)
|
if(bootstart <= cp->size/2 || bootstart >= cp->size)
|
||||||
bootstart = cp->size > 32768? cp->size - 16384: cp->size*3/4;
|
bootstart = cp->size > 32768? cp->size - 16384: cp->size*3/4;
|
||||||
|
|
Loading…
Reference in New Issue