To write the last page

This commit is contained in:
Aleksandr Vyhovanec 2016-11-01 23:34:30 +03:00
parent cfcc7edded
commit 20a1642552

View File

@ -313,7 +313,7 @@ ssize_t up_progmem_write(size_t addr, const void *buf, size_t count)
addr -= STM32_FLASH_BASE;
}
if ((addr+count) >= STM32_FLASH_SIZE)
if ((addr+count) > STM32_FLASH_SIZE)
{
return -EFAULT;
}