8.2.9 boot_page_write Macro

Write the bootloader temporary buffer to the flash page.

Include

<avr/boot.h>

Prototype

void boot_page_write(unsigned int address);

Remarks

This macro writes the bootloader temporary buffer to the flash page that corresponding to the specified address. The address is a byte address.

Example

#include <avr/boot.h>
int main(void)
{
  boot_page_write(0x55);
}