Remove function from EEPROM dumper

There is currently nothing to execute once dumping is done.
Removed definitions for bool and function.
This commit is contained in:
team-orangeBlue 2024-09-04 23:36:00 +03:00
parent 8cd08509f9
commit cb02ef1040
2 changed files with 0 additions and 9 deletions

View File

@ -112,8 +112,3 @@ bool EepromScreen::Update(VPADStatus& input) // This is the core logic part
return true;
}
void EepromScreen::OnDumpCompleted()
{
mDumpComplete = true;
}

View File

@ -13,8 +13,6 @@ public:
bool Update(VPADStatus& input);
void OnDumpCompleted();
private:
enum State {
STATE_DUMP,
@ -23,7 +21,5 @@ private:
} mState = STATE_DUMP;
std::string mErrorString;
bool mDumpComplete;
};