From 2dbe657e2fba47a086fbbedab227b036b0361b32 Mon Sep 17 00:00:00 2001 From: Blake Leverington Date: Mon, 5 Aug 2024 14:21:30 +0200 Subject: [PATCH] added .gitignore --- .gitignore | 2 ++ hit2023v2_RMS/device.cpp | 2 +- hit2023v2_RMS/device.h | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 421c845..7c1fc60 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,8 @@ *.so.* *.dll *.dylib +*.exe +*.exe* # Qt-es object_script.*.Release diff --git a/hit2023v2_RMS/device.cpp b/hit2023v2_RMS/device.cpp index 8a91598..cff1fe7 100644 --- a/hit2023v2_RMS/device.cpp +++ b/hit2023v2_RMS/device.cpp @@ -494,4 +494,4 @@ int Device::ctrlSetClusterThreshold(int threshold) return queryCtrl(COMMAND_SET_CLUSTER_THRESHOLD, txdata, rxdata); } -} + diff --git a/hit2023v2_RMS/device.h b/hit2023v2_RMS/device.h index 9614317..15717e6 100644 --- a/hit2023v2_RMS/device.h +++ b/hit2023v2_RMS/device.h @@ -103,6 +103,7 @@ protected: int ctrlSetMasterDelay(int tint); int ctrlSetSlaveDelay(int tint); int ctrlSetClusterThreshold(int threshold); + protected slots: void onConnected(); void onSocketError(QAbstractSocket::SocketError socketError);