5
0
mirror of https://github.com/ArduPilot/ardupilot synced 2025-01-09 09:28:31 -04:00

HAL_SITL: fixed bitmask error on storage erase

This commit is contained in:
Andrew Tridgell 2020-01-30 17:09:29 +11:00
parent cbbf61af93
commit ae9e8c3dbc

View File

@ -72,7 +72,10 @@ void Storage::_storage_open(void)
*/
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 (uint16_t line=loc>>STORAGE_LINE_SHIFT;
line <= end>>STORAGE_LINE_SHIFT;
line++) {