added .gitignore

This commit is contained in:
Blake Leverington 2024-08-05 14:21:30 +02:00
parent deb1b3a7c3
commit 2dbe657e2f
3 changed files with 4 additions and 1 deletions

2
.gitignore vendored
View File

@ -10,6 +10,8 @@
*.so.* *.so.*
*.dll *.dll
*.dylib *.dylib
*.exe
*.exe*
# Qt-es # Qt-es
object_script.*.Release object_script.*.Release

View File

@ -494,4 +494,4 @@ int Device::ctrlSetClusterThreshold(int threshold)
return queryCtrl(COMMAND_SET_CLUSTER_THRESHOLD, txdata, rxdata); return queryCtrl(COMMAND_SET_CLUSTER_THRESHOLD, txdata, rxdata);
} }
}

View File

@ -103,6 +103,7 @@ protected:
int ctrlSetMasterDelay(int tint); int ctrlSetMasterDelay(int tint);
int ctrlSetSlaveDelay(int tint); int ctrlSetSlaveDelay(int tint);
int ctrlSetClusterThreshold(int threshold); int ctrlSetClusterThreshold(int threshold);
protected slots: protected slots:
void onConnected(); void onConnected();
void onSocketError(QAbstractSocket::SocketError socketError); void onSocketError(QAbstractSocket::SocketError socketError);