Implemented page erase operation for SerialUPDI

This commit is contained in:
Dawid Buchwald 2022-10-23 15:06:06 +02:00
parent 2230c05871
commit fa1c081a94
1 changed files with 1 additions and 2 deletions

View File

@ -881,8 +881,7 @@ static int serialupdi_chip_erase(const PROGRAMMER *pgm, const AVRPART *p) {
static int serialupdi_page_erase(const PROGRAMMER *pgm, const AVRPART *p, const AVRMEM *m,
unsigned int baseaddr)
{
pmsg_error("page erase not implemented yet\n");
return -1;
return updi_nvm_erase_flash_page(pgm, p, m->offset + baseaddr);
}
static int serialupdi_read_signature(const PROGRAMMER *pgm, const AVRPART *p, const AVRMEM *m) {