added more files

This commit is contained in:
2021-06-11 12:50:14 +02:00
parent 97f25ae2e5
commit 63c7c6e5af
46 changed files with 1440 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_ */