HAL_Linux: fixed bitmask error on storage erase

This commit is contained in:
Andrew Tridgell 2020-01-30 17:09:29 +11:00 committed by Randy Mackay
parent aff77c86d6
commit f033e7dcb9

View File

@ -183,7 +183,10 @@ void Storage::init()
*/
void Storage::_mark_dirty(uint16_t loc, uint16_t length)
{
uint16_t end = loc + length;
if (length == 0) {
return;
}
uint16_t end = loc + length - 1;
for (uint8_t line=loc>>LINUX_STORAGE_LINE_SHIFT;
line <= end>>LINUX_STORAGE_LINE_SHIFT;
line++) {