26 lines
611 B
C
26 lines
611 B
C
|
#ifndef TEST_TESTTASKS_LIBGPIOTEST_H_
|
||
|
#define TEST_TESTTASKS_LIBGPIOTEST_H_
|
||
|
|
||
|
#include "TestTask.h"
|
||
|
#include "GpioIF.h"
|
||
|
#include "GpioCookie.h"
|
||
|
#include <fsfw/objectmanager/SystemObject.h>
|
||
|
|
||
|
/**
|
||
|
* @brief Test for the GPIO read implementation of the LinuxLibgpioIF.
|
||
|
* @author J. Meier
|
||
|
*/
|
||
|
class LibgpioTest: public TestTask {
|
||
|
public:
|
||
|
LibgpioTest(object_id_t objectId, object_id_t gpioIfobjectId, GpioCookie* gpioCookie);
|
||
|
virtual ~LibgpioTest();
|
||
|
|
||
|
protected:
|
||
|
virtual ReturnValue_t performPeriodicAction() override;
|
||
|
|
||
|
private:
|
||
|
GpioIF* gpioInterface;
|
||
|
};
|
||
|
|
||
|
#endif /* TEST_TESTTASKS_LIBGPIOTEST_H_ */
|