Remove more commented code.

This commit is contained in:
Jared Boone 2016-01-27 14:25:08 -08:00
parent 3b7bec542c
commit ca3b1a2c5a
2 changed files with 0 additions and 53 deletions

View File

@ -98,25 +98,7 @@ bool FrequencyField::on_key(const ui::KeyEvent event) {
} }
return false; return false;
} }
/*
bool FrequencyField::on_key(const ui::KeyEvent event) override {
if( event == ui::KeyEvent::Select ) {
// NOTE: For testing sampling rate / decimation combinations
turbo = !turbo;
if( turbo ) {
clock_manager.set_sampling_frequency(18432000);
radio::set_baseband_decimation_by(6);
} else {
clock_manager.set_sampling_frequency(12288000);
radio::set_baseband_decimation_by(4);
}
return true;
}
return false;
}
*/
bool FrequencyField::on_encoder(const EncoderEvent delta) { bool FrequencyField::on_encoder(const EncoderEvent delta) {
set_value(value() + (delta * step)); set_value(value() + (delta * step));
return true; return true;
@ -310,19 +292,11 @@ RadioGainOptionsView::RadioGainOptionsView(
add_children({ { add_children({ {
&label_rf_amp, &label_rf_amp,
&field_rf_amp, &field_rf_amp,
//&label_agc,
//&field_agc
} }); } });
field_rf_amp.on_change = [this](int32_t v) { field_rf_amp.on_change = [this](int32_t v) {
this->on_rf_amp_changed(v); this->on_rf_amp_changed(v);
}; };
/*
field_agc.set_value(receiver_model.agc());
field_agc.on_change = [this](int32_t v) {
this->on_agc_changed(v);
};
*/
} }
void RadioGainOptionsView::set_rf_amp(int32_t v_db) { void RadioGainOptionsView::set_rf_amp(int32_t v_db) {
@ -334,11 +308,6 @@ void RadioGainOptionsView::on_rf_amp_changed(bool enable) {
on_change_rf_amp(enable); on_change_rf_amp(enable);
} }
} }
/*
void RadioGainOptionsView::on_agc_changed(bool v) {
receiver_model.set_agc(v);
}
*/
/* LNAGainField **********************************************************/ /* LNAGainField **********************************************************/

View File

@ -72,8 +72,6 @@ private:
rf::Frequency value_; rf::Frequency value_;
rf::Frequency step { 25000 }; rf::Frequency step { 25000 };
//bool turbo { false };
rf::Frequency clamp_value(rf::Frequency value); rf::Frequency clamp_value(rf::Frequency value);
}; };
@ -113,13 +111,6 @@ public:
} }
void add_digit(const char c) { void add_digit(const char c) {
/*
if( justify == Justify::Right ) {
push_right(c);
} else {
insert_right(c);
}
*/
insert_right(c); insert_right(c);
} }
@ -212,7 +203,6 @@ private:
static constexpr int mhz_mod = pow(10, mhz_digits); static constexpr int mhz_mod = pow(10, mhz_digits);
static constexpr int submhz_base = pow(10, 6 - submhz_digits); static constexpr int submhz_base = pow(10, 6 - submhz_digits);
//static constexpr int submhz_mod = pow(10, submhz_digits);
static constexpr int text_digits = mhz_digits + 1 + submhz_digits; static constexpr int text_digits = mhz_digits + 1 + submhz_digits;
Text text_value { Text text_value {
@ -321,18 +311,6 @@ private:
1, 1,
' ', ' ',
}; };
/*
Text label_agc {
{ 6 * 8, 0 * 16, 3 * 8, 1 * 16 },
"AGC"
};
NumberField field_agc {
{ 10 * 8, 0 * 16},
1,
{ 0, 1 }
};
*/
void on_rf_amp_changed(bool enable); void on_rf_amp_changed(bool enable);
}; };