Commit 2af98191 authored by Don Gagne's avatar Don Gagne

Fixes for new _connect/_disconnect apis

parent 74e1e580
...@@ -168,7 +168,7 @@ bool XbeeLink::hardwareConnect() ...@@ -168,7 +168,7 @@ bool XbeeLink::hardwareConnect()
bool XbeeLink::_connect(void) bool XbeeLink::_connect(void)
{ {
if (this->isRunning()) this->disconnect(); if (this->isRunning()) _disconnect();
this->start(LowPriority); this->start(LowPriority);
return true; return true;
} }
...@@ -205,7 +205,7 @@ void XbeeLink::writeBytes(const char *bytes, qint64 length) // TO DO: delete th ...@@ -205,7 +205,7 @@ void XbeeLink::writeBytes(const char *bytes, qint64 length) // TO DO: delete th
} }
else else
{ {
this->disconnect(); _disconnect();
emit communicationError(this->getName(), tr("Could not send data - link %1 is disconnected!").arg(this->getName())); emit communicationError(this->getName(), tr("Could not send data - link %1 is disconnected!").arg(this->getName()));
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment