add helper methods to disable crc calculation

This commit is contained in:
2022-07-27 11:41:06 +02:00
parent 86692e202d
commit 059fb10558
4 changed files with 16 additions and 1 deletions

View File

@ -100,6 +100,10 @@ ReturnValue_t CommandingServiceBase::initialize() {
}
tmStoreHelper.setTmStore(*tmStore);
}
// Generally, all TM packets will pass through a layer where the sequence count is set.
// This avoids duplicate calculation of the CRC16
tmStoreHelper.disableCrcCalculation();
if (errReporter == nullptr) {
errReporter =
ObjectManager::instance()->get<InternalErrorReporterIF>(objects::INTERNAL_ERROR_REPORTER);