Merge branch 'luz_FixedTimeslotTask_ExistenceCheck' into mueller_framework
This commit is contained in:
commit
a7964c7200
@ -57,13 +57,13 @@ ReturnValue_t FixedTimeslotTask::startTask() {
|
|||||||
|
|
||||||
ReturnValue_t FixedTimeslotTask::addSlot(object_id_t componentId,
|
ReturnValue_t FixedTimeslotTask::addSlot(object_id_t componentId,
|
||||||
uint32_t slotTimeMs, int8_t executionStep) {
|
uint32_t slotTimeMs, int8_t executionStep) {
|
||||||
if (!objectManager->get<ExecutableObjectIF>(componentId)) {
|
if (objectManager->get<ExecutableObjectIF>(componentId) != NULL) {
|
||||||
error << "Component " << std::hex << componentId << " not found, not adding it to pst" << std::endl;
|
pst.addSlot(componentId, slotTimeMs, executionStep, this);
|
||||||
return HasReturnvaluesIF::RETURN_FAILED;
|
return HasReturnvaluesIF::RETURN_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
pst.addSlot(componentId, slotTimeMs, executionStep, this);
|
error << "Component " << std::hex << componentId << " not found, not adding it to pst" << std::endl;
|
||||||
return HasReturnvaluesIF::RETURN_OK;
|
return HasReturnvaluesIF::RETURN_FAILED;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t FixedTimeslotTask::getPeriodMs() const {
|
uint32_t FixedTimeslotTask::getPeriodMs() const {
|
||||||
|
Loading…
Reference in New Issue
Block a user