using cmake configure file now

This commit is contained in:
2021-05-31 17:01:11 +02:00
parent 82b752807f
commit d165c7533a
15 changed files with 22 additions and 5 deletions

View File

@ -17,3 +17,7 @@ ReturnValue_t STM32TestTask::performPeriodicAction() {
}
return TestTask::performPeriodicAction();
}
ReturnValue_t STM32TestTask::performOneShotAction() {
return HasReturnvaluesIF::RETURN_OK;
}

View File

@ -8,6 +8,8 @@ public:
STM32TestTask(object_id_t objectId, bool enablePrintout, bool blinkyLed = true);
ReturnValue_t performPeriodicAction() override;
ReturnValue_t performOneShotAction() override;
private:
bool blinkyLed = false;