Communication: Add LogDataMessage

This commit is contained in:
Keith Nash
2025-05-16 19:36:27 +00:00
committed by Kyle Schwarz
parent b94ade1ef6
commit b3d47f2ae5
10 changed files with 63 additions and 0 deletions
+8
View File
@@ -405,6 +405,14 @@ bool Device::close() {
return com->close();
}
bool Device::enableLogData() {
return com->sendCommand(Command::EnableLogData, true);
}
bool Device::disableLogData() {
return com->sendCommand(Command::EnableLogData, false);
}
bool Device::goOnline() {
if(!enableNetworkCommunication(true))
return false;