mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-01 13:47:01 -04:00
HackRF output: implementation of Fc position selection in the GUI
This commit is contained in:
@@ -298,6 +298,12 @@ void HackRFOutputGui::on_interp_currentIndexChanged(int index)
|
||||
sendSettings();
|
||||
}
|
||||
|
||||
void HackRFOutputGui::on_fcPos_currentIndexChanged(int index)
|
||||
{
|
||||
m_settings.m_fcPos = (HackRFOutputSettings::fcPos_t) (index < 0 ? 0 : index > 2 ? 2 : index);
|
||||
sendSettings();
|
||||
}
|
||||
|
||||
void HackRFOutputGui::on_txvga_valueChanged(int value)
|
||||
{
|
||||
if ((value < 0) || (value > 47))
|
||||
|
||||
Reference in New Issue
Block a user