-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevice.cpp
130 lines (114 loc) · 3.16 KB
/
device.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
121
122
123
124
125
126
127
128
129
130
#include <device.h>
#include <QObject>
#include <QSerialPort>
#include <QDebug>
#include <QVector>
#include <ping-message-common.h>
#include <ping-message-chirp.h>
Device::Device(QSerialPortInfo info)
{
handle = new ComHandle(info);
connect(handle->serialPort, &QSerialPort::readyRead, this, &Device::consumeData);
connect(handle, &ComHandle::closed, this, &Device::closed);
}
bool Device::open()
{
return handle->open();
}
void Device::writeMessage(ping_message message)
{
write(message.msgData, message.msgDataLength());
}
void Device::requestProtocolVersion()
{
requestMessage(CommonId::PROTOCOL_VERSION);
}
void Device::requestDeviceInformation()
{
requestMessage(CommonId::DEVICE_INFORMATION);
}
void Device::requestMessage(uint16_t messageId)
{
common_general_request msg;
msg.set_requested_id(messageId);
msg.updateChecksum();
writeMessage(msg);
}
void Device::consumeData()
{
auto data = handle->serialPort->readAll();
for (auto b : data) {
ComParser::ParseState result = parser.parseByte(b);
if (result == ComParser::NEW_MESSAGE) {
rxParsed++;
emit rxParsedChanged(rxParsed);
emit rxErrorsChanged(parser.parser.errors);
handleMessage(&parser.parser.rxMessage);
} else if (result == ComParser::ERROR) {
rxErrors++;
emit rxErrorsChanged(rxErrors);
}
}
}
void Device::close()
{
handle->close();
}
void Device::write(uint8_t *data, uint16_t length)
{
if (handle) {
handle->write(data, length);
}
}
void Device::ping()
{
pingchirp_transmit m;
m.set_nsamples(nsamples);
m.set_pulse_duration(pulse_duration);
m.set_opamp1(opamp1_gain);
m.set_opamp2(opamp2_gain);
m.set_f0(f0);
m.set_f1(f1);
m.set_waveform(window);
m.set_adc_resolution(adc_resolution);
m.set_adc_sample_time(adc_sample_time);
m.updateChecksum();
writeMessage(m);
}
void Device::handleMessage(ping_message* message)
{
switch (message->message_id()) {
case CommonId::DEVICE_INFORMATION:
device_id = message->source_device_id();
device_type = ((common_device_information*)message)->device_type();
break;
case PingchirpId::CHIRP_DATA:
{
pingchirp_chirp_data* msg = (pingchirp_chirp_data*)message;
QVector<double> keys(msg->nsamples());
float Ts = 1/300000.0;
float Dn = 343*Ts/2;
QVector<double> data(msg->nsamples());
for (uint16_t i = 3; i < msg->nsamples(); i++) {
keys[i] = i*Dn;
// data[i] = (msg->data()[i] + msg->data()[i-1] + msg->data()[i-2]+msg->data()[i-3])/4;
data[i] = msg->data()[i];
}
data_length = msg->data_length();
nsamples = msg->nsamples();
f0 = msg->f0();
f1 = msg->f1();
pulse_duration = msg->pulse_duration();
opamp1_gain = msg->opamp1();
opamp2_gain = msg->opamp2();
window = msg->waveform();
adc_resolution = msg->adc_resolution();
adc_sample_time = msg->adc_sample_time();
emit newData(keys, data);
break;
}
default:
break;
}
//emit newData();
}