using cmake configure file now
This commit is contained in:
@ -17,3 +17,7 @@ ReturnValue_t STM32TestTask::performPeriodicAction() {
|
||||
}
|
||||
return TestTask::performPeriodicAction();
|
||||
}
|
||||
|
||||
ReturnValue_t STM32TestTask::performOneShotAction() {
|
||||
return HasReturnvaluesIF::RETURN_OK;
|
||||
}
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user