Init commit

This commit is contained in:
2021-04-27 17:22:34 +02:00
commit 4f6fe6959f
1140 changed files with 1174277 additions and 0 deletions

View File

@ -0,0 +1,7 @@
target_sources(${TARGET_NAME}
PUBLIC
SpiTest.cpp
)

View File

@ -0,0 +1,4 @@
#include "SpiTest.h"
SpiTest::SpiTest(object_id_t objectId): SystemObject(objectId) {
}

15
bsp_linux/test/SpiTest.h Normal file
View 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_ */