Skip to content
Snippets Groups Projects
Commit 80d96b08 authored by Jared Boone's avatar Jared Boone
Browse files

CPLD: Temporarily remove HackRF bitstream check UI.

It was poorly implemented and was confusing the hell out of people when their CPLD was showing "BAD", even though it was fine...
parent e9895c1b
No related branches found
No related tags found
No related merge requests found
...@@ -175,18 +175,19 @@ AboutView::AboutView(NavigationView& nav) { ...@@ -175,18 +175,19 @@ AboutView::AboutView(NavigationView& nav) {
add_children({ add_children({
&text_title, &text_title,
&text_firmware, &text_firmware,
&text_cpld_hackrf, // &text_cpld_hackrf,
&text_cpld_hackrf_status, // &text_cpld_hackrf_status,
&button_ok, &button_ok,
}); });
button_ok.on_select = [&nav](Button&){ nav.pop(); }; button_ok.on_select = [&nav](Button&){ nav.pop(); };
/*
if( hackrf::cpld::verify_eeprom() ) { if( hackrf::cpld::verify_eeprom() ) {
text_cpld_hackrf_status.set(" OK"); text_cpld_hackrf_status.set(" OK");
} else { } else {
text_cpld_hackrf_status.set("BAD"); text_cpld_hackrf_status.set("BAD");
} }
*/
} }
void AboutView::focus() { void AboutView::focus() {
......
...@@ -233,7 +233,7 @@ private: ...@@ -233,7 +233,7 @@ private:
{ 0, 128, 240, 16 }, { 0, 128, 240, 16 },
"Git Commit Hash " GIT_REVISION, "Git Commit Hash " GIT_REVISION,
}; };
/*
Text text_cpld_hackrf { Text text_cpld_hackrf {
{ 0, 144, 11*8, 16 }, { 0, 144, 11*8, 16 },
"HackRF CPLD", "HackRF CPLD",
...@@ -243,7 +243,7 @@ private: ...@@ -243,7 +243,7 @@ private:
{ 240 - 3*8, 144, 3*8, 16 }, { 240 - 3*8, 144, 3*8, 16 },
"???" "???"
}; };
*/
Button button_ok { Button button_ok {
{ 72, 192, 96, 24 }, { 72, 192, 96, 24 },
"OK" "OK"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment