diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-05-05 17:09:43 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-05-05 17:09:43 +0200 |
commit | 85a77c191379643fcbb1ef716ef41d18c78fe1e0 (patch) | |
tree | be32ee81ebea51d032b4b7c1e862194315a9bf55 /ftnoir_tracker_hatire/ftnoir_tracker_hat.h | |
parent | 330405759c97bfd8988a4617f88c93dc0560bbe9 (diff) | |
parent | 4da4b7608ff03782ed2a157a7ef2bc843101b271 (diff) |
Merge pull request #154 from MartinJG/master
Fix returning consistent data to get headpose and other minor issues
Diffstat (limited to 'ftnoir_tracker_hatire/ftnoir_tracker_hat.h')
-rw-r--r-- | ftnoir_tracker_hatire/ftnoir_tracker_hat.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ftnoir_tracker_hatire/ftnoir_tracker_hat.h b/ftnoir_tracker_hatire/ftnoir_tracker_hat.h index 2abeb77d..020b4132 100644 --- a/ftnoir_tracker_hatire/ftnoir_tracker_hat.h +++ b/ftnoir_tracker_hatire/ftnoir_tracker_hat.h @@ -19,7 +19,7 @@ #include <QMutexLocker> #include <QSettings> -#define VER_FILEVERSION_STR "Version 2.1.0\0" +#define VER_FILEVERSION_STR "Version 2.1.1\0" class FTNoIR_Tracker : public QObject, public ITracker { @@ -49,6 +49,7 @@ public: private Q_SLOTS: void SerialRead(); + void Log(QString message); signals: void sendMsgInfo(const QByteArray &MsgInfo); @@ -80,6 +81,7 @@ private: bool bInvertX; bool bInvertY; bool bInvertZ; + bool bEnableLogging; int iRollAxe; int iPitchAxe; @@ -107,6 +109,8 @@ private: QSerialPort::Parity iParity; QSerialPort::StopBits iStopBits; QSerialPort::FlowControl iFlowControl; + + QFile flDiagnostics; #ifdef OPENTRACK_API int iFpsArduino; #endif |