First implementation
This commit is contained in:
215
core/MeasurementInterface.cpp
Normal file
215
core/MeasurementInterface.cpp
Normal file
@@ -0,0 +1,215 @@
|
||||
/*
|
||||
|
||||
Copyright (c) 2015, 2016 Hubert Denkmair <hubert@denkmair.de>
|
||||
|
||||
This file is part of cangaroo.
|
||||
|
||||
cangaroo 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 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
cangaroo 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 cangaroo. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
*/
|
||||
|
||||
#include "MeasurementInterface.h"
|
||||
|
||||
#include <core/Backend.h>
|
||||
#include <driver/CanDriver.h>
|
||||
#include <driver/CanInterface.h>
|
||||
|
||||
|
||||
MeasurementInterface::MeasurementInterface()
|
||||
: _doConfigure(true),
|
||||
_bitrate(500000),
|
||||
_samplePoint(875),
|
||||
_isCanFD(false),
|
||||
_fdBitrate(4000000),
|
||||
_fdSamplePoint(875),
|
||||
|
||||
_isListenOnlyMode(false),
|
||||
_isOneShotMode(false),
|
||||
_isTripleSampling(false),
|
||||
_doAutoRestart(false),
|
||||
_autoRestartMs(100)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
bool MeasurementInterface::loadXML(Backend &backend, QDomElement &el)
|
||||
{
|
||||
(void) backend;
|
||||
|
||||
_doConfigure = el.attribute("configure", "0").toInt() != 0;
|
||||
|
||||
_bitrate = el.attribute("bitrate", "500000").toInt();
|
||||
_samplePoint = el.attribute("sample-point", "875").toInt();
|
||||
_isCanFD = el.attribute("can-fd", "0").toInt() != 0;
|
||||
_fdBitrate = el.attribute("bitrate-fd", "500000").toInt();
|
||||
_fdSamplePoint = el.attribute("sample-point-fd", "875").toInt();
|
||||
|
||||
_isListenOnlyMode = el.attribute("listen-only", "0").toInt() != 0;
|
||||
_isOneShotMode = el.attribute("one-shot", "0").toInt() != 0;
|
||||
_isTripleSampling = el.attribute("triple-sampling", "0").toInt() != 0;
|
||||
_doAutoRestart = el.attribute("auto-restart", "0").toInt() != 0;
|
||||
_autoRestartMs = el.attribute("auto-restart-time", "100").toInt();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool MeasurementInterface::saveXML(Backend &backend, QDomDocument &xml, QDomElement &root)
|
||||
{
|
||||
(void) xml;
|
||||
|
||||
root.setAttribute("type", "can");
|
||||
root.setAttribute("driver", backend.getDriverName(_canif));
|
||||
root.setAttribute("name", backend.getInterfaceName(_canif));
|
||||
|
||||
root.setAttribute("configure", _doConfigure ? 1 : 0);
|
||||
|
||||
root.setAttribute("bitrate", _bitrate);
|
||||
root.setAttribute("sample-point", _samplePoint);
|
||||
root.setAttribute("can-fd", _isCanFD ? 1 : 0);
|
||||
root.setAttribute("bitrate-fd", _fdBitrate);
|
||||
root.setAttribute("sample-point-fd", _fdSamplePoint);
|
||||
|
||||
root.setAttribute("listen-only", _isListenOnlyMode ? 1 : 0);
|
||||
root.setAttribute("one-shot", _isOneShotMode ? 1 : 0);
|
||||
root.setAttribute("triple-sampling", _isTripleSampling ? 1 : 0);
|
||||
root.setAttribute("auto-restart", _doAutoRestart ? 1 : 0);
|
||||
root.setAttribute("auto-restart-time", _autoRestartMs);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
unsigned MeasurementInterface::bitrate() const
|
||||
{
|
||||
return _bitrate;
|
||||
}
|
||||
|
||||
void MeasurementInterface::setBitrate(unsigned bitrate)
|
||||
{
|
||||
_bitrate = bitrate;
|
||||
}
|
||||
|
||||
CanInterfaceId MeasurementInterface::canInterface() const
|
||||
{
|
||||
return _canif;
|
||||
}
|
||||
|
||||
void MeasurementInterface::setCanInterface(CanInterfaceId canif)
|
||||
{
|
||||
_canif = canif;
|
||||
}
|
||||
|
||||
void MeasurementInterface::cloneFrom(MeasurementInterface &origin)
|
||||
{
|
||||
*this = origin;
|
||||
}
|
||||
|
||||
bool MeasurementInterface::doConfigure() const
|
||||
{
|
||||
return _doConfigure;
|
||||
}
|
||||
|
||||
void MeasurementInterface::setDoConfigure(bool doConfigure)
|
||||
{
|
||||
_doConfigure = doConfigure;
|
||||
}
|
||||
|
||||
bool MeasurementInterface::isListenOnlyMode() const
|
||||
{
|
||||
return _isListenOnlyMode;
|
||||
}
|
||||
|
||||
void MeasurementInterface::setListenOnlyMode(bool isListenOnlyMode)
|
||||
{
|
||||
_isListenOnlyMode = isListenOnlyMode;
|
||||
}
|
||||
|
||||
bool MeasurementInterface::isOneShotMode() const
|
||||
{
|
||||
return _isOneShotMode;
|
||||
}
|
||||
|
||||
void MeasurementInterface::setOneShotMode(bool isOneShotMode)
|
||||
{
|
||||
_isOneShotMode = isOneShotMode;
|
||||
}
|
||||
|
||||
bool MeasurementInterface::isTripleSampling() const
|
||||
{
|
||||
return _isTripleSampling;
|
||||
}
|
||||
|
||||
void MeasurementInterface::setTripleSampling(bool isTripleSampling)
|
||||
{
|
||||
_isTripleSampling = isTripleSampling;
|
||||
}
|
||||
|
||||
bool MeasurementInterface::isCanFD() const
|
||||
{
|
||||
return _isCanFD;
|
||||
}
|
||||
|
||||
void MeasurementInterface::setCanFD(bool isCanFD)
|
||||
{
|
||||
_isCanFD = isCanFD;
|
||||
}
|
||||
|
||||
int MeasurementInterface::samplePoint() const
|
||||
{
|
||||
return _samplePoint;
|
||||
}
|
||||
|
||||
void MeasurementInterface::setSamplePoint(int samplePoint)
|
||||
{
|
||||
_samplePoint = samplePoint;
|
||||
}
|
||||
|
||||
unsigned MeasurementInterface::fdBitrate() const
|
||||
{
|
||||
return _fdBitrate;
|
||||
}
|
||||
|
||||
void MeasurementInterface::setFdBitrate(unsigned fdBitrate)
|
||||
{
|
||||
_fdBitrate = fdBitrate;
|
||||
}
|
||||
|
||||
unsigned MeasurementInterface::fdSamplePoint() const
|
||||
{
|
||||
return _fdSamplePoint;
|
||||
}
|
||||
|
||||
void MeasurementInterface::setFdSamplePoint(unsigned fdSamplePoint)
|
||||
{
|
||||
_fdSamplePoint = fdSamplePoint;
|
||||
}
|
||||
|
||||
bool MeasurementInterface::doAutoRestart() const
|
||||
{
|
||||
return _doAutoRestart;
|
||||
}
|
||||
|
||||
void MeasurementInterface::setAutoRestart(bool doAutoRestart)
|
||||
{
|
||||
_doAutoRestart = doAutoRestart;
|
||||
}
|
||||
|
||||
int MeasurementInterface::autoRestartMs() const
|
||||
{
|
||||
return _autoRestartMs;
|
||||
}
|
||||
|
||||
void MeasurementInterface::setAutoRestartMs(int autoRestartMs)
|
||||
{
|
||||
_autoRestartMs = autoRestartMs;
|
||||
}
|
||||
Reference in New Issue
Block a user