Add screen for configuring vehicle parameters

This commit is contained in:
2023-04-04 20:58:34 +02:00
parent 09f65fcf22
commit a5f10be4fd
35 changed files with 1976 additions and 104 deletions

View File

@ -126,4 +126,13 @@ void MissionSelectViewBase::handleKeyEvent(uint8_t key)
application().gotoDebugViewScreenNoTransition();
}
if(251 == key)
{
//DummyChangeConfigView
//When hardware button 251 clicked change screen to VehicleConfig
//Go to VehicleConfig with no screen transition
application().gotoVehicleConfigScreenNoTransition();
}
}