Break out BasebandStatsView, add main, RSSI threads.

This commit is contained in:
Jared Boone 2015-10-14 10:59:32 -07:00
parent 7f46f0d071
commit 8f7e26b5c1
5 changed files with 122 additions and 58 deletions

View file

@ -32,27 +32,6 @@
namespace ui {
class BasebandStatsView : public View {
public:
BasebandStatsView();
void on_show() override;
void on_hide() override;
private:
Text text_used {
{ 0, 0, 7 * 8, 1 * 16 },
"",
};
Text text_idle {
{ 8 * 8, 0, 7 * 8, 1 * 16 },
"",
};
void on_statistics_update(const BasebandStatistics& statistics);
};
class DebugMemoryView : public View {
public:
DebugMemoryView(NavigationView& nav);