Set back to programming mode on quit
Otherwise it can't read the fuses and the safe fuse code complains.
This commit is contained in:
parent
e3338c428f
commit
112b6edd1c
|
@ -541,6 +541,10 @@ static int cmd_sig(PROGRAMMER * pgm, struct avrpart * p,
|
||||||
static int cmd_quit(PROGRAMMER * pgm, struct avrpart * p,
|
static int cmd_quit(PROGRAMMER * pgm, struct avrpart * p,
|
||||||
int argc, char * argv[])
|
int argc, char * argv[])
|
||||||
{
|
{
|
||||||
|
/* FUSE bit verify will fail if left in SPI mode */
|
||||||
|
if (spi_mode) {
|
||||||
|
cmd_pgm(pgm, p, 0, NULL);
|
||||||
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue