OOPS
Some checks failed
EIVE/eive-obsw/pipeline/pr-main There was a failure building this commit

This commit is contained in:
Robin Müller 2023-11-14 18:37:09 +01:00
parent 3898e2d66f
commit 4f6a594707
Signed by: muellerr
GPG Key ID: A649FB78196E3849
2 changed files with 1 additions and 4 deletions

View File

@ -549,9 +549,7 @@ ReturnValue_t FreshSupvHandler::initialize() {
if (result != returnvalue::OK) {
return result;
}
result = FreshDeviceHandlerBase::initialize();
sif::debug << "serial port: " << uartManager.serialPort << std::endl;
return result;
return FreshDeviceHandlerBase::initialize();
}
ReturnValue_t FreshSupvHandler::sendEmptyCmd(uint16_t apid, uint8_t serviceId, bool replyExpected) {

View File

@ -80,7 +80,6 @@ ReturnValue_t PlocSupvUartManager::initializeInterface(CookieIF* cookie) {
}
// Flush received and unread data
tcflush(serialPort, TCIOFLUSH);
sif::debug << "piece of shit port " << serialPort << std::endl;
return OK;
}