1
0
forked from fsfw/fsfw

added initializeInterface for comIF/cookie

This commit is contained in:
2020-03-24 15:33:18 +01:00
parent ea49d88c4b
commit b2b6b8ee23
3 changed files with 17 additions and 6 deletions

View File

@ -102,11 +102,10 @@ ReturnValue_t DeviceHandlerBase::initialize() {
return RETURN_FAILED;
}
// result = communicationInterface->open(&cookie, logicalAddress,
// maxDeviceReplyLen, comParameter1, comParameter2);
// if (result != RETURN_OK) {
// return result;
// }
result = communicationInterface->initializeInterface(comCookie);
if (result != RETURN_OK) {
return result;
}
IPCStore = objectManager->get<StorageManagerIF>(objects::IPC_STORE);
if (IPCStore == NULL) {