new linux boardtest folder

This commit is contained in:
2021-02-14 19:22:58 +01:00
committed by Robin Mueller
parent 7c1c2b46af
commit 571606c251
12 changed files with 86 additions and 2 deletions

View File

@ -0,0 +1,8 @@
#include <linux/boardtest/I2cTestClass.h>
I2cTestClass::I2cTestClass(object_id_t objectId): TestTask(objectId) {
}
ReturnValue_t I2cTestClass::performPeriodicAction() {
return HasReturnvaluesIF::RETURN_OK;
}