-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevice.h
87 lines (71 loc) · 2.16 KB
/
device.h
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
#ifndef DEVICE_H
#define DEVICE_H
#include <com-handle.h>
#include <com-parser.h>
#include <QSerialPort>
#include <QObject>
#include <QTimer>
#include <QMap>
#include <inttypes.h>
#define ADC_NUM_CHANNELS 8
class Device : public QObject
{
Q_OBJECT
public:
Device(QSerialPortInfo info);
ComParser parser;
ComHandle* handle;
bool open();
void requestDeviceInformation();
void requestProtocolVersion();
void requestMessage(uint16_t messageId);
void consumeData();
uint8_t device_type;
uint8_t device_id;
void handleMessage(ping_message* message);
void writeMessage(ping_message message);
void close();
void ping();
void setNSamples(int n) { nsamples = n; ping(); }
void setPulseDuration(int n) { pulse_duration = n; ping(); };
void setOpamp1Gain(int n) { opamp1_gain = n; ping(); };
void setOpamp2Gain(int n) { opamp2_gain = n; ping(); };
void setF0(int n) { f0 = n; ping(); };
void setF1(int n) { f1 = n; ping(); };
void setWindow(int n) { window = n; ping(); };
void setAdcSampleTime(int n) { adc_sample_time = n; ping(); };
void setAdcResolution(int n) { adc_resolution = n; ping(); };
uint32_t cpu_frequency;
uint32_t timer_frequency;
uint16_t duty;
uint8_t opamp1_gain;
uint8_t opamp2_gain;
uint8_t adc_resolution;
uint8_t adc_sample_time;
uint16_t pulse_duration;
uint32_t sample_frequency;
uint32_t f0;
uint32_t f1;
uint16_t digital_gain;
uint16_t dc_bias;
uint32_t nsamples;
uint8_t window;
uint16_t data_length;
uint8_t profile_data[0xffff];
void request_profile();
uint32_t rxParsed = 0;
uint32_t rxErrors = 0;
private:
void write(uint8_t* data, uint16_t length);
QTimer updateTimer;
signals:
void closed();
void firmwareVersionChanged(QString& firmwareVersion);
void protocolVersionChanged(QString& protocolVersion);
void deviceIdChanged(QString& deviceId);
void hardwareRevisionChanged(QString& hardwareRevision);
void newData(QVector<double>, QVector<double>);
void rxParsedChanged(uint32_t rxParsed);
void rxErrorsChanged(uint32_t rxErrors);
};
#endif // DEVICE_H