4 changed files with 124 additions and 19 deletions
@ -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
|
|||
|
@ -1,6 +0,0 @@ |
|||
#include "../../../include/LowLevel/Exception/HonaException.h" |
|||
|
|||
HonaException::HonaException(QObject *parent) : QObject(parent) |
|||
{ |
|||
|
|||
} |
@ -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…
Reference in new issue