8.2.5 boot_page_erase Macro
Erase the flash page that contains address.
Include
<avr/boot.h>
Prototype
void boot_page_erase(unsigned int address);
Remarks
Erase the flash page that contains byte address specified.
Example
#include <avr/boot.h>
int main(void)
{
boot_page_erase(0x100);
}