Init commit
This commit is contained in:
7
bsp_linux/test/CMakeLists.txt
Normal file
7
bsp_linux/test/CMakeLists.txt
Normal file
@ -0,0 +1,7 @@
|
||||
target_sources(${TARGET_NAME}
|
||||
PUBLIC
|
||||
SpiTest.cpp
|
||||
)
|
||||
|
||||
|
||||
|
4
bsp_linux/test/SpiTest.cpp
Normal file
4
bsp_linux/test/SpiTest.cpp
Normal file
@ -0,0 +1,4 @@
|
||||
#include "SpiTest.h"
|
||||
|
||||
SpiTest::SpiTest(object_id_t objectId): SystemObject(objectId) {
|
||||
}
|
15
bsp_linux/test/SpiTest.h
Normal file
15
bsp_linux/test/SpiTest.h
Normal file
@ -0,0 +1,15 @@
|
||||
#ifndef BSP_LINUX_TEST_SPITEST_H_
|
||||
#define BSP_LINUX_TEST_SPITEST_H_
|
||||
|
||||
#include <fsfw/objectmanager/SystemObject.h>
|
||||
#include <fsfw/tasks/ExecutableObjectIF.h>
|
||||
|
||||
class SpiTest: public ExecutableObjectIF, SystemObject {
|
||||
public:
|
||||
SpiTest(object_id_t objectId);
|
||||
private:
|
||||
|
||||
};
|
||||
|
||||
|
||||
#endif /* BSP_LINUX_TEST_SPITEST_H_ */
|
Reference in New Issue
Block a user