Files
@ 3b42589b1df8
Branch filter:
Location: tempo-plotter/dataformatpanel.cpp
3b42589b1df8
8.9 KiB
text/x-c++hdr
renamed toolbars
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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 | /*
Copyright © 2015 Hasan Yavuz Özderya
This file is part of serialplot.
serialplot is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
serialplot 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with serialplot. If not, see <http://www.gnu.org/licenses/>.
*/
#include "dataformatpanel.h"
#include "ui_dataformatpanel.h"
#include <QtEndian>
#include "utils.h"
#include "floatswap.h"
DataFormatPanel::DataFormatPanel(QSerialPort* port,
QList<FrameBuffer*>* channelBuffers,
QWidget *parent) :
QWidget(parent),
ui(new Ui::DataFormatPanel)
{
ui->setupUi(this);
serialPort = port;
_channelBuffers = channelBuffers;
paused = false;
// setup number format buttons
numberFormatButtons.addButton(ui->rbUint8, NumberFormat_uint8);
numberFormatButtons.addButton(ui->rbUint16, NumberFormat_uint16);
numberFormatButtons.addButton(ui->rbUint32, NumberFormat_uint32);
numberFormatButtons.addButton(ui->rbInt8, NumberFormat_int8);
numberFormatButtons.addButton(ui->rbInt16, NumberFormat_int16);
numberFormatButtons.addButton(ui->rbInt32, NumberFormat_int32);
numberFormatButtons.addButton(ui->rbFloat, NumberFormat_float);
numberFormatButtons.addButton(ui->rbASCII, NumberFormat_ASCII);
QObject::connect(
&numberFormatButtons, SIGNAL(buttonToggled(int, bool)),
this, SLOT(onNumberFormatButtonToggled(int, bool)));
// init number format
selectNumberFormat((NumberFormat) numberFormatButtons.checkedId());
// setup number of channels spinbox
QObject::connect(ui->spNumOfChannels,
SELECT<int>::OVERLOAD_OF(&QSpinBox::valueChanged),
this, &DataFormatPanel::onNumOfChannelsSP);
_numOfChannels = ui->spNumOfChannels->value();
// Init sps (sample per second) counter
sampleCount = 0;
QObject::connect(&spsTimer, &QTimer::timeout,
this, &DataFormatPanel::spsTimerTimeout);
spsTimer.start(SPS_UPDATE_TIMEOUT * 1000);
// Init demo mode
demoCount = 0;
demoTimer.setInterval(100);
QObject::connect(&demoTimer, &QTimer::timeout,
this, &DataFormatPanel::demoTimerTimeout);
}
DataFormatPanel::~DataFormatPanel()
{
delete ui;
}
void DataFormatPanel::onNumberFormatButtonToggled(int numberFormatId,
bool checked)
{
if (checked) selectNumberFormat((NumberFormat) numberFormatId);
}
void DataFormatPanel::selectNumberFormat(NumberFormat numberFormatId)
{
numberFormat = numberFormatId;
switch(numberFormat)
{
case NumberFormat_uint8:
sampleSize = 1;
readSample = &DataFormatPanel::readSampleAs<quint8>;
break;
case NumberFormat_int8:
sampleSize = 1;
readSample = &DataFormatPanel::readSampleAs<qint8>;
break;
case NumberFormat_uint16:
sampleSize = 2;
readSample = &DataFormatPanel::readSampleAs<quint16>;
break;
case NumberFormat_int16:
sampleSize = 2;
readSample = &DataFormatPanel::readSampleAs<qint16>;
break;
case NumberFormat_uint32:
sampleSize = 4;
readSample = &DataFormatPanel::readSampleAs<quint32>;
break;
case NumberFormat_int32:
sampleSize = 4;
readSample = &DataFormatPanel::readSampleAs<qint32>;
break;
case NumberFormat_float:
sampleSize = 4;
readSample = &DataFormatPanel::readSampleAs<float>;
break;
case NumberFormat_ASCII:
sampleSize = 0; // these two members should not be used
readSample = NULL; // in this mode
break;
}
if (numberFormat == NumberFormat_ASCII)
{
QObject::disconnect(serialPort, &QSerialPort::readyRead, 0, 0);
QObject::connect(this->serialPort, &QSerialPort::readyRead,
this, &DataFormatPanel::onDataReadyASCII);
}
else
{
QObject::disconnect(serialPort, &QSerialPort::readyRead, 0, 0);
QObject::connect(serialPort, &QSerialPort::readyRead,
this, &DataFormatPanel::onDataReady);
}
emit skipByteEnabledChanged(skipByteEnabled());
}
bool DataFormatPanel::skipByteEnabled()
{
return numberFormat != NumberFormat_ASCII;
}
unsigned DataFormatPanel::numOfChannels()
{
return _numOfChannels;
}
void DataFormatPanel::onNumOfChannelsSP(int value)
{
_numOfChannels = value;
emit numOfChannelsChanged(value);
}
void DataFormatPanel::requestSkipByte()
{
skipByteRequested = true;
}
void DataFormatPanel::pause(bool enabled)
{
paused = enabled;
}
void DataFormatPanel::enableDemo(bool enabled)
{
if (enabled)
{
demoTimer.start();
}
else
{
demoTimer.stop();
}
}
void DataFormatPanel::spsTimerTimeout()
{
unsigned currentSps = _samplesPerSecond;
_samplesPerSecond = sampleCount/SPS_UPDATE_TIMEOUT;
if (currentSps != _samplesPerSecond)
{
emit samplesPerSecondChanged(_samplesPerSecond);
}
sampleCount = 0;
}
void DataFormatPanel::demoTimerTimeout()
{
const double period = 100;
demoCount++;
if (demoCount >= 100) demoCount = 0;
if (!paused)
{
for (unsigned ci = 0; ci < _numOfChannels; ci++)
{
// we are calculating the fourier components of square wave
double value = 4*sin(2*M_PI*double((ci+1)*demoCount)/period)/((2*(ci+1))*M_PI);
addChannelData(ci, &value, 1);
}
emit dataAdded();
}
}
void DataFormatPanel::onDataReady()
{
// a package is a set of channel data like {CHAN0_SAMPLE, CHAN1_SAMPLE...}
int packageSize = sampleSize * _numOfChannels;
int bytesAvailable = serialPort->bytesAvailable();
int numOfPackagesToRead =
(bytesAvailable - (bytesAvailable % packageSize)) / packageSize;
if (paused)
{
// read and discard data
serialPort->read(numOfPackagesToRead*packageSize);
return;
}
if (bytesAvailable > 0 && skipByteRequested)
{
serialPort->read(1);
skipByteRequested = false;
bytesAvailable--;
}
if (bytesAvailable < packageSize) return;
double* channelSamples = new double[numOfPackagesToRead*_numOfChannels];
for (int i = 0; i < numOfPackagesToRead; i++)
{
for (unsigned int ci = 0; ci < _numOfChannels; ci++)
{
// channelSamples[ci].replace(i, (this->*readSample)());
channelSamples[ci*numOfPackagesToRead+i] = (this->*readSample)();
}
}
for (unsigned int ci = 0; ci < _numOfChannels; ci++)
{
addChannelData(ci,
channelSamples + ci*numOfPackagesToRead,
numOfPackagesToRead);
}
emit dataAdded();
delete channelSamples;
}
void DataFormatPanel::onDataReadyASCII()
{
while(serialPort->canReadLine())
{
QByteArray line = serialPort->readLine();
// discard data if paused
if (paused)
{
return;
}
line = line.trimmed();
auto separatedValues = line.split(',');
int numReadChannels; // effective number of channels to read
if (separatedValues.length() >= int(_numOfChannels))
{
numReadChannels = _numOfChannels;
}
else // there is missing channel data
{
numReadChannels = separatedValues.length();
qWarning() << "Incoming data is missing data for some channels!";
}
// parse read line
for (int ci = 0; ci < numReadChannels; ci++)
{
bool ok;
double channelSample = separatedValues[ci].toDouble(&ok);
if (ok)
{
addChannelData(ci, &channelSample, 1);
}
else
{
qWarning() << "Data parsing error for channel: " << ci;
}
}
emit dataAdded();
}
}
template<typename T> double DataFormatPanel::readSampleAs()
{
T data;
serialPort->read((char*) &data, sizeof(data));
if (ui->rbLittleE->isChecked())
{
data = qFromLittleEndian(data);
}
else
{
data = qFromBigEndian(data);
}
return double(data);
}
void DataFormatPanel::addChannelData(unsigned int channel,
double* data, unsigned size)
{
(*_channelBuffers)[channel]->addSamples(data, size);
sampleCount += size;
}
|