eive-obsw/bsp_hosted/main.cpp

38 lines
1.0 KiB
C++
Raw Normal View History

2020-12-21 23:09:35 +01:00
#include "InitMission.h"
2021-07-26 14:00:15 +02:00
#include "OBSWVersion.h"
2020-12-21 23:09:35 +01:00
2021-07-26 14:00:15 +02:00
#include "fsfw/FSFWVersion.h"
#include "fsfw/tasks/TaskFactory.h"
2020-09-30 20:52:51 +02:00
2021-07-26 14:00:15 +02:00
#include <iostream>
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
*/
int main(void)
{
std::cout << "-- EIVE OBSW --" << std::endl;
2020-09-30 21:17:16 +02:00
std::cout << "-- Compiled for " << COMPILE_PRINTOUT << " --" << std::endl;
2021-07-26 14:00:15 +02:00
std::cout << "-- OBSW " << SW_NAME << " v" << SW_VERSION << "." << SW_SUBVERSION <<
"." << SW_REVISION << ", FSFW v" << FSFW_VERSION << "." << FSFW_SUBVERSION << "." <<
FSFW_REVISION << "--" << std::endl;
2020-09-30 20:52:51 +02:00
std::cout << "-- " << __DATE__ << " " << __TIME__ << " --" << std::endl;
2021-03-04 18:29:28 +01:00
initmission::initMission();
2020-09-30 21:17:16 +02:00
2020-09-30 20:52:51 +02:00
for(;;) {
// suspend main thread by sleeping it.
TaskFactory::delayTask(5000);
}
}