Microphone tx is mostly working, Voice activation, PTT, CTCSS...

Transmit bandwidth bugfix
TX LED is now only lit when using rf amp
VU-meter widget
Added gain parameter for baseband audio TX
This commit is contained in:
furrtek 2017-03-13 04:09:21 +00:00
parent 71999f216f
commit 69b0ef9a40
32 changed files with 523 additions and 194 deletions

View file

@ -24,9 +24,14 @@
#define __CTCSS_H_
#include "ui.hpp"
#include "ui_widget.hpp"
using namespace ui;
#define CTCSS_TONES_NB 50
namespace ctcss {
struct ctcss_tone {
char PL_code[3];
uint16_t num_code;
@ -35,4 +40,8 @@ struct ctcss_tone {
extern const ctcss_tone ctcss_tones[CTCSS_TONES_NB];
void ctcss_populate(OptionsField& field);
}
#endif/*__CTCSS_H_*/