added wiretapping mode check in handleDeviceTm of PlocHandler

This commit is contained in:
2021-04-25 15:54:48 +02:00
parent be77f86685
commit ec76222907
5 changed files with 9 additions and 4 deletions

2
fsfw

Submodule fsfw updated: 42720e6f7d...e7d2456350

Submodule fsfw_hal updated: 14fe32572d...a85c01465b

View File

@ -388,6 +388,11 @@ void PlocHandler::handleDeviceTM(const uint8_t* data, size_t dataSize, DeviceCom
ReturnValue_t result = RETURN_OK;
if (wiretappingMode == RAW) {
/* Data already sent in doGetRead() */
return result;
}
DeviceReplyMap::iterator iter = deviceReplyMap.find(replyId);
if (iter == deviceReplyMap.end()) {
sif::debug << "PlocHandler::handleDeviceTM: Unknown reply id" << std::endl;

2
thirdparty/etl vendored

2
tmtc

Submodule tmtc updated: 7310513805...3e466f06ef