Few improvements in ui_transmitter (#332)

* ui_transmitter : Added rf_amp field
* ui_transmitter : Added color grading depending on gain settings
* Removed TransmitterModel::set_rf_amp(bool) call from every apps loading ui_transmit
* transmitter_model : RF_amp disabled by default
* APRS Tx app : Fixed frequency keypad not showing up
* Morse Tx app : Removed TransmitterModel::set_lna() and TransmitterModel::set_vga() calls
This commit is contained in:
Aurélien Hernandez
2020-04-16 23:58:06 +02:00
committed by GitHub
parent d65a8929bc
commit 3dfbdc844c
15 changed files with 93 additions and 43 deletions

View File

@@ -66,7 +66,7 @@ public:
private:
bool enabled_ { false };
bool rf_amp_ { true };
bool rf_amp_ { false };
int32_t lna_gain_db_ { 0 };
uint32_t channel_bandwidth_ { 1 };
uint32_t baseband_bandwidth_ { max2837::filter::bandwidth_minimum };