Browse Source

add func of HonaLowLevel

heydari
Alireza 3 years ago
parent
commit
f8960c0ea2
  1. 23
      Plx/include/LowLevel/Exception/HonaException.h
  2. 29
      Plx/include/LowLevel/HonaLowLevelAPI.h
  3. 6
      Plx/src/LowLevel/Exception/HonaException.cpp
  4. 85
      Plx/src/LowLevel/HonaLowLevelAPI.cpp

23
Plx/include/LowLevel/Exception/HonaException.h

@ -1,17 +1,24 @@
#ifndef HONAEXCEPTION_H
#define HONAEXCEPTION_H
#include <QObject>
#include <QDebug>
#include <QString>
class HonaException : public QObject
class HonaException : public std::exception
{
Q_OBJECT
public:
explicit HonaException(QObject *parent = nullptr);
private:
QString _str;
signals:
public:
HonaException(QString str)
{
_str = str;
}
public slots:
virtual const char* what() const throw()
{
return _str.toStdString().c_str();
}
};
#endif // HONAEXCEPTION_H
#endif //HONAEXCEPTION_H

29
Plx/include/LowLevel/HonaLowLevelAPI.h

@ -6,12 +6,33 @@
class HonaLowLevelAPI : public QObject
{
Q_OBJECT
public:
explicit HonaLowLevelAPI(QObject *parent = nullptr);
explicit HonaLowLevelAPI(QObject* parent = nullptr);
bool isHsruStarted();
bool isHiruStarted();
void deviceReset();
void setConfig(HonaSetting& honaSetting);
HonaSetting getConfig();
QString getSwVersion();
QString getDeviceId();
void hsruStarte();
void hiruStart();
void init();
signals:
private:
void writeSettingToRegisters(HonaSetting& honaSetting);
void setConfig();
void hsruMainThread();
void hiruReadThread();
void hsruUpdateThread();
int hiruGetDOA();
public slots:
signals:
void signalToTop(QList<&HonaPacket> honaPacketList, int i, int j);
//uncrustify off
public slots:
//uncrustify on
};
#endif // HONALOWLEVELAPI_H
#endif //HONALOWLEVELAPI_H

6
Plx/src/LowLevel/Exception/HonaException.cpp

@ -1,6 +0,0 @@
#include "../../../include/LowLevel/Exception/HonaException.h"
HonaException::HonaException(QObject *parent) : QObject(parent)
{
}

85
Plx/src/LowLevel/HonaLowLevelAPI.cpp

@ -1,6 +1,89 @@
#include "../../include/LowLevel/HonaLowLevelAPI.h"
HonaLowLevelAPI::HonaLowLevelAPI(QObject *parent) : QObject(parent)
HonaLowLevelAPI::HonaLowLevelAPI(QObject* parent) : QObject(parent)
{
}
bool HonaLowLevelAPI::isHsruStarted()
{
return true;
}
/*************************************************************************************************/
bool HonaLowLevelAPI::isHiruStarted()
{
return true;
}
/*************************************************************************************************/
void HonaLowLevelAPI::deviceReset()
{
}
/*************************************************************************************************/
void HonaLowLevelAPI::setConfig(HonaSetting& honaSetting)
{
}
/*************************************************************************************************/
HonaSetting HonaLowLevelAPI::getConfig()
{
}
/*************************************************************************************************/
QString HonaLowLevelAPI::getSwVersion()
{
}
/*************************************************************************************************/
QString HonaLowLevelAPI::getDeviceId()
{
}
/*************************************************************************************************/
void HonaLowLevelAPI::hsruStarte()
{
}
/*************************************************************************************************/
void HonaLowLevelAPI::hiruStart()
{
}
/*************************************************************************************************/
void HonaLowLevelAPI::init()
{
}
/*************************************************************************************************/
void HonaLowLevelAPI::writeSettingToRegisters(HonaSetting& honaSetting)
{
}
/*************************************************************************************************/
void HonaLowLevelAPI::setConfig()
{
}
/*************************************************************************************************/
void HonaLowLevelAPI::hsruMainThread()
{
}
/*************************************************************************************************/
void HonaLowLevelAPI::hiruReadThread()
{
}
/*************************************************************************************************/
void HonaLowLevelAPI::hsruUpdateThread()
{
}
/*************************************************************************************************/
int HonaLowLevelAPI::hiruGetDOA()
{
}
/*************************************************************************************************/

Loading…
Cancel
Save