mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
Merge pull request #359 from XxOinvizioNxX/next
Add FrequencyStepView field to the TransmitterView class
This commit is contained in:
commit
52376b12b2
@ -103,6 +103,7 @@ void TransmitterView::set_transmitting(const bool transmitting) {
|
|||||||
|
|
||||||
void TransmitterView::on_show() {
|
void TransmitterView::on_show() {
|
||||||
field_frequency.set_value(transmitter_model.tuning_frequency());
|
field_frequency.set_value(transmitter_model.tuning_frequency());
|
||||||
|
field_frequency_step.set_by_value(receiver_model.frequency_step());
|
||||||
|
|
||||||
field_gain.set_value(transmitter_model.tx_gain());
|
field_gain.set_value(transmitter_model.tx_gain());
|
||||||
field_amp.set_value(transmitter_model.rf_amp() ? 14 : 0);
|
field_amp.set_value(transmitter_model.rf_amp() ? 14 : 0);
|
||||||
@ -122,6 +123,7 @@ TransmitterView::TransmitterView(
|
|||||||
|
|
||||||
add_children({
|
add_children({
|
||||||
&field_frequency,
|
&field_frequency,
|
||||||
|
&field_frequency_step,
|
||||||
&text_gain,
|
&text_gain,
|
||||||
&field_gain,
|
&field_gain,
|
||||||
&button_start,
|
&button_start,
|
||||||
@ -158,6 +160,10 @@ TransmitterView::TransmitterView(
|
|||||||
on_edit_frequency();
|
on_edit_frequency();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
field_frequency_step.on_change = [this](size_t, OptionsField::value_t v) {
|
||||||
|
this->field_frequency.set_step(v);
|
||||||
|
};
|
||||||
|
|
||||||
field_gain.on_change = [this](uint32_t tx_gain) {
|
field_gain.on_change = [this](uint32_t tx_gain) {
|
||||||
on_tx_gain_changed(tx_gain);
|
on_tx_gain_changed(tx_gain);
|
||||||
};
|
};
|
||||||
|
@ -124,11 +124,11 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
Text text_bw {
|
Text text_bw {
|
||||||
{ 11 * 8, 1 * 8, 9 * 8, 1 * 16 },
|
{ 18 * 8, 1 * 8, 3 * 8, 1 * 16 },
|
||||||
"BW: kHz"
|
"kHz"
|
||||||
};
|
};
|
||||||
NumberField field_bw {
|
NumberField field_bw {
|
||||||
{ 14 * 8, 1 * 8 },
|
{ 15 * 8, 1 * 8 },
|
||||||
3,
|
3,
|
||||||
{ 1, 150 },
|
{ 1, 150 },
|
||||||
1,
|
1,
|
||||||
@ -153,6 +153,10 @@ private:
|
|||||||
"START"
|
"START"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
FrequencyStepView field_frequency_step {
|
||||||
|
{ 10 * 8 - 4, 1 * 8 },
|
||||||
|
};
|
||||||
|
|
||||||
void on_tuning_frequency_changed(rf::Frequency f);
|
void on_tuning_frequency_changed(rf::Frequency f);
|
||||||
void on_channel_bandwidth_changed(uint32_t channel_bandwidth);
|
void on_channel_bandwidth_changed(uint32_t channel_bandwidth);
|
||||||
void on_tx_gain_changed(int32_t tx_gain);
|
void on_tx_gain_changed(int32_t tx_gain);
|
||||||
|
Loading…
Reference in New Issue
Block a user