update SCEX code

This commit is contained in:
2022-08-31 16:07:38 +02:00
parent 74d4741380
commit 839851914a
11 changed files with 103 additions and 78 deletions

View File

@ -34,7 +34,6 @@ ReturnValue_t ScexUartReader::performOperation(uint8_t operationCode) {
lock->unlockMutex();
while (true) {
semaphore->acquire();
sif::info << "ScexUartReader::performOperation:task was started" << std::endl;
int bytesRead = 0;
while (true) {
bytesRead = read(serialPort, reinterpret_cast<void *>(recBuf.data()),
@ -66,8 +65,6 @@ ReturnValue_t ScexUartReader::performOperation(uint8_t operationCode) {
}
}
};
// task block comes here
sif::info << "ScexUartReader::performOperation: task was stopped" << std::endl;
}
return OK;
}