2022-01-17 15:58:27 +01:00
|
|
|
#include <iostream>
|
|
|
|
|
2020-12-21 23:09:35 +01:00
|
|
|
#include "InitMission.h"
|
2021-07-26 14:00:15 +02:00
|
|
|
#include "OBSWVersion.h"
|
|
|
|
#include "fsfw/FSFWVersion.h"
|
|
|
|
#include "fsfw/tasks/TaskFactory.h"
|
2020-09-30 21:17:16 +02:00
|
|
|
#ifdef WIN32
|
|
|
|
static const char* COMPILE_PRINTOUT = "Windows";
|
|
|
|
#elif LINUX
|
|
|
|
static const char* COMPILE_PRINTOUT = "Linux";
|
|
|
|
#else
|
|
|
|
static const char* COMPILE_PRINTOUT = "unknown OS";
|
|
|
|
#endif
|
2020-09-30 20:52:51 +02:00
|
|
|
/**
|
|
|
|
* @brief This is the main program for the hosted build. It can be run for
|
|
|
|
* Linux and Windows.
|
|
|
|
* @return
|
|
|
|
*/
|
2022-01-17 15:58:27 +01:00
|
|
|
int main(void) {
|
|
|
|
std::cout << "-- EIVE OBSW --" << std::endl;
|
|
|
|
std::cout << "-- Compiled for " << COMPILE_PRINTOUT << " --" << std::endl;
|
|
|
|
std::cout << "-- OBSW " << SW_NAME << " v" << SW_VERSION << "." << SW_SUBVERSION << "."
|
|
|
|
<< SW_REVISION << ", FSFW v" << FSFW_VERSION << "." << FSFW_SUBVERSION << "."
|
|
|
|
<< FSFW_REVISION << "--" << std::endl;
|
|
|
|
std::cout << "-- " << __DATE__ << " " << __TIME__ << " --" << std::endl;
|
2020-09-30 20:52:51 +02:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
initmission::initMission();
|
2020-09-30 21:17:16 +02:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
for (;;) {
|
|
|
|
// suspend main thread by sleeping it.
|
|
|
|
TaskFactory::delayTask(5000);
|
|
|
|
}
|
2020-09-30 20:52:51 +02:00
|
|
|
}
|