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,17 @@
#ifndef LINUX_BOARDTEST_I2CTESTCLASS_H_
#define LINUX_BOARDTEST_I2CTESTCLASS_H_
#include <test/testtasks/TestTask.h>
class I2cTestClass: public TestTask {
public:
I2cTestClass(object_id_t objectId);
ReturnValue_t performPeriodicAction() override;
private:
};
#endif /* LINUX_BOARDTEST_I2CTESTCLASS_H_ */