eive-obsw/bsp_hosted/main.cpp

35 lines
951 B
C++
Raw Normal View History

2020-12-14 13:03:47 +01:00
#include <bsp_hosted/fsfwconfig/OBSWVersion.h>
2020-11-20 18:10:39 +01:00
#include <bsp_linux/InitMission.h>
2020-09-30 20:52:51 +02:00
#include <fsfw/tasks/TaskFactory.h>
#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;
2020-11-20 18:10:39 +01:00
std::cout << "-- Software version " << SW_NAME << " v" << SW_VERSION << "."
<< SW_SUBVERSION << "." << SW_SUBSUBVERSION << " -- " << std::endl;
2020-09-30 20:52:51 +02:00
std::cout << "-- " << __DATE__ << " " << __TIME__ << " --" << std::endl;
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);
}
}