-
Notifications
You must be signed in to change notification settings - Fork 0
/
AD9361SourcePage.cpp
120 lines (99 loc) · 2.51 KB
/
AD9361SourcePage.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
//
// AD9361SourcePage.cpp: description
// Copyright (C) 2023 Gonzalo José Carracedo Carballal
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this program. If not, see
// <http://www.gnu.org/licenses/>
//
#include "AD9361SourcePage.h"
#include <SuWidgetsHelpers.h>
#include <suscan/util/cfg.h>
#include "ui_AD9361SourcePage.h"
AD9361SourcePage::AD9361SourcePage(
SigDigger::SourceConfigWidgetFactory *factory,
QWidget *parent) : SigDigger::SourceConfigWidget(factory, parent)
{
ui = new Ui::AD9361SourcePage();
ui->setupUi(this);
connectAll();
}
AD9361SourcePage::~AD9361SourcePage()
{
delete ui;
}
void
AD9361SourcePage::connectAll()
{
connect(
ui->uriEdit,
SIGNAL(textEdited(QString)),
this,
SLOT(onConfigChanged()));
}
uint64_t
AD9361SourcePage::getCapabilityMask() const
{
uint64_t perms = SUSCAN_ANALYZER_ALL_SDR_PERMISSIONS;
perms &= ~SUSCAN_ANALYZER_PERM_SET_AGC;
perms &= ~SUSCAN_ANALYZER_PERM_SET_ANTENNA;
perms &= ~SUSCAN_ANALYZER_PERM_SET_DC_REMOVE;
return perms;
}
bool
AD9361SourcePage::getPreferredRates(QList<int> &) const
{
return false;
}
void
AD9361SourcePage::refreshUi()
{
if (m_config == nullptr)
return;
// Set format
auto uri = m_config->getParam("uri");
QString strUri = QString::fromStdString(uri);
if (strUri.size() == 0)
strUri = "ip:192.168.1.10";
BLOCKSIG(ui->uriEdit, setText(strUri));
}
void
AD9361SourcePage::activateWidget()
{
refreshUi();
emit changed();
}
bool
AD9361SourcePage::deactivateWidget()
{
return true;
}
void
AD9361SourcePage::notifySingletonChanges()
{
}
void
AD9361SourcePage::setConfigRef(Suscan::Source::Config &cfg)
{
m_config = &cfg;
refreshUi();
}
///////////////////////////////////// Slots ////////////////////////////////////
void
AD9361SourcePage::onConfigChanged()
{
if (m_config == nullptr)
return;
m_config->setParam("uri", ui->uriEdit->text().toStdString());
emit changed();
}