Incread default read size to 256 bytes

This commit is contained in:
MCUdude 2022-02-28 20:39:55 +01:00
parent 07ea8f5e09
commit d89f695c31
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ static int cmd_dump(PROGRAMMER * pgm, struct avrpart * p,
if (strncmp(prevmem, memtype, strlen(memtype)) != 0) {
addr = 0;
len = 64;
len = 256;
strncpy(prevmem, memtype, sizeof(prevmem)-1);
prevmem[sizeof(prevmem)-1] = 0;
}