implemented sending/resending- buffer and lots of other bugfixes

This commit is contained in:
Alex
2015-04-03 23:11:41 +02:00
parent 5bddfa9c78
commit f3d518b4d4
30 changed files with 8255 additions and 46 deletions

View File

@@ -14,7 +14,8 @@ void rxThread::receiveData()
if(bot->port->canReadLine())
{
line = bot->port->readLine(1024);
line.chop(1);
//qDebug()<<"receiving raw: " << line << endl;/////////////////////////////
while(line.endsWith('\n')) line.chop(1);
qDebug()<<"receiving: " << line << endl;/////////////////////////////
emit lineReceived(line);
}