Second DFU Overlay Screen with Receiver Info (#1204)

* 2nd DFU overlay with receiver info for debug
This commit is contained in:
Mark Thompson 2023-06-28 12:04:16 -05:00 committed by GitHub
parent 4e985420d4
commit 5c1f5a7d2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 112 additions and 15 deletions

View file

@ -328,11 +328,12 @@ class SystemView : public View {
void paint_overlay();
private:
bool overlay_active{false};
uint8_t overlay_active{0};
SystemStatusView status_view{navigation_view};
InformationView info_view{navigation_view};
DfuMenu overlay{navigation_view};
DfuMenu2 overlay2{navigation_view};
NavigationView navigation_view{};
Context& context_;
};