1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-26 09:45:21 +03:00

Fixes #1283 - EEPROM backup/restore - unexpectedShutdown set

This commit is contained in:
Damjan Adamic 2014-06-23 19:47:49 +02:00
parent 65f433438a
commit 317890c9f9

View file

@ -726,6 +726,9 @@ void backupEeprom()
lcd_rect(3, 6*FH+4, 204, 7);
lcdRefresh();
//reset unexpectedShutdown to prevent warning when user restores EEPROM backup
g_eeGeneral.unexpectedShutdown = 0;
eeDirty(EE_GENERAL);
eeCheck(true);
// create the directory if needed...
@ -760,6 +763,11 @@ void backupEeprom()
}
f_close(&file);
//set back unexpectedShutdown
g_eeGeneral.unexpectedShutdown = 1;
eeDirty(EE_GENERAL);
eeCheck(true);
}
#endif