Added back frequency display for CTCSS

Attempted to fix replay, just fixed StreamBuffer read() and added
waterfall display...
Updated binary
This commit is contained in:
furrtek 2017-12-06 13:20:51 +00:00
parent d77337dd77
commit 3221992ad1
18 changed files with 133 additions and 54 deletions

View file

@ -28,15 +28,14 @@
using namespace ui;
#define KEY_TONES_NB 56
namespace tonekey {
using tone_key_t = std::pair<std::string, float>;
using tone_key_t = std::vector<std::pair<std::string, float>>;
extern const tone_key_t tone_keys[];
extern const tone_key_t tone_keys;
void tone_keys_populate(OptionsField& field);
float tone_key_frequency(const uint32_t index);
}