Scanner features (#55) - Added freq description to scanner display.

This commit is contained in:
Jonathan Elder 2020-06-07 03:03:45 -07:00 committed by eried
parent 7ca0d1eb3d
commit 086f3098c4
2 changed files with 15 additions and 0 deletions

View file

@ -66,6 +66,7 @@ private:
void handle_retune(uint32_t i);
std::vector<rf::Frequency> frequency_list { };
std::vector<string> description_list { };
int32_t trigger { 0 };
int32_t squelch { 0 };
uint32_t timer { 0 };
@ -136,6 +137,10 @@ private:
{ 0, 5 * 16, 240, 16 },
"--/--"
};
Text desc_cycle {
{0, 6 * 16, 240, 16 },
" "
};
std::unique_ptr<ScannerThread> scan_thread { };