Added tabs to BHT TX and Jammer

Updated firmware binary
This commit is contained in:
furrtek
2017-08-12 00:27:05 +01:00
25 changed files with 751 additions and 646 deletions
+1 -11
View File
@@ -132,11 +132,7 @@ AboutView::AboutView(
NavigationView& nav
)
{
add_children({
&text_cpld_hackrf,
&text_cpld_hackrf_status,
&button_ok,
});
add_child(&button_ok);
for (auto& text : text_line) {
text.set("");
@@ -148,12 +144,6 @@ AboutView::AboutView(
add_child(&text);
}
if( hackrf::cpld::verify_eeprom() ) {
text_cpld_hackrf_status.set(" OK");
} else {
text_cpld_hackrf_status.set("BAD");
}
button_ok.on_select = [&nav](Button&){
nav.pop();
};