Ulrich Mohr
4d154b7cee
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
- /mission is a library now, in preparation of unittests (which bring their own main) - eive-simple is now only available in bsp=arm/q7s (but is still not compiling) - watchdog and simple are their own executables, not configurations any more - moved some q7s specific code into /bsp-q7s to flatten if-hierarchy in main CMakeLists.txt - compiler and linker options are not globally applied to all targets - linux is the default fsfw osal now, as current code does not compile on hosted
22 lines
368 B
C++
22 lines
368 B
C++
#include "simple.h"
|
|
|
|
#include "iostream"
|
|
|
|
#include "q7sConfig.h"
|
|
|
|
#if Q7S_SIMPLE_ADD_FILE_SYSTEM_TEST == 1
|
|
#include "../boardtest/FileSystemTest.h"
|
|
#endif
|
|
|
|
int simple::simple() {
|
|
std::cout << "-- Q7S Simple Application --" << std::endl;
|
|
#if Q7S_SIMPLE_ADD_FILE_SYSTEM_TEST == 1
|
|
{ FileSystemTest fileSystemTest; }
|
|
#endif
|
|
|
|
#if TE0720_GPIO_TEST
|
|
|
|
#endif
|
|
return 0;
|
|
}
|