This repository has been archived by the owner on Feb 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
getu.cpp
82 lines (62 loc) · 1.85 KB
/
getu.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
#include "getu.h"
GetU::GetU(QObject *parent) : G3000(0x10c4, 0xea60, parent),
timeOutTimerId(-1),
poolPeriod(4000),
freq(NAN)
{
}
void GetU::timerEvent(QTimerEvent *event)
{
if (FmTimerId == event->timerId()) {
fmIteration();
return;
}
if (FmTimerId != -1) {
return;
}
if((timeOutTimerId == event->timerId()) && (!std::isnan(freq))) {
killTimer(timeOutTimerId);
timeOutTimerId = -1;
G3000::setFrequency(freq);
}
}
bool GetU::turnOn(bool i_on)
{
if (timeOutTimerId != -1)
killTimer(timeOutTimerId);
if (i_on)
timeOutTimerId = startTimer(poolPeriod);
return G3000::turnOn(i_on);
}
bool GetU::setAmp(double &m_amp)
{
if (timeOutTimerId != -1)
killTimer(timeOutTimerId);
timeOutTimerId = startTimer(poolPeriod);
return G3000::setAmp(m_amp);
}
bool GetU::setFrequency(double &m_f)
{
if (timeOutTimerId != -1)
killTimer(timeOutTimerId);
timeOutTimerId = startTimer(poolPeriod);
freq = m_f;
return G3000::setFrequency(m_f);
}
bool GetU::isGetU(QSerialPortInfo &info)
{
printMessage("Определяем относится ли данных последовательный порт к Гетеродину У.");
bool success = Generator::connect(info);
if (!success)
return success;
success = commute(1);
success = success && (info.vendorIdentifier() == vid) && (info.productIdentifier() == pid);
if (success)
printMessage("Данный последовательный порт относиться к Гетеродину У");
else
printMessage("Данный последовательный порт не относиться к Гетеродину У");
serialPort.close();
delete serialPortInfo;
serialPortInfo = NULL;
return success;
}