fixed for updated fsfw

This commit is contained in:
Robin Müller 2021-09-28 15:43:09 +02:00
parent 693676304a
commit 127a0f6e16
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
1 changed files with 2 additions and 2 deletions

View File

@ -580,7 +580,7 @@ ReturnValue_t TestDevice::interpretingTestReply0(DeviceCommandId_t id, const uin
#endif
}
MessageQueueId_t commander = getCommanderId(id);
MessageQueueId_t commander = getCommanderQueueId(id);
/* Generate one step reply and the finish reply */
actionHelper.step(1, commander, id);
actionHelper.finish(true, commander, id);
@ -600,7 +600,7 @@ ReturnValue_t TestDevice::interpretingTestReply1(DeviceCommandId_t id,
#endif
}
MessageQueueId_t commander = getCommanderId(id);
MessageQueueId_t commander = getCommanderQueueId(id);
/* Send reply with data */
ReturnValue_t result = actionHelper.reportData(commander, id, packet,
testdevice::TEST_COMMAND_1_SIZE, false);