moved all third-party lib to separate folder

This commit is contained in:
2021-02-27 19:32:58 +01:00
committed by Robin Mueller
parent 264191415f
commit fa81b06bea
138 changed files with 22 additions and 2 deletions

View File

@ -41,8 +41,12 @@ ReturnValue_t TestTask::performOperation(uint8_t operationCode) {
return result;
}
#include <etl/vector.h>
ReturnValue_t TestTask::performOneShotAction() {
/* Everything here will only be performed once. */
etl::vector<uint8_t, 30> testVec;
return HasReturnvaluesIF::RETURN_OK;
}