eive-obsw/bsp_linux/main.cpp

35 lines
818 B
C++
Raw Normal View History

2020-11-20 18:10:39 +01:00
2020-09-16 16:22:36 +02:00
#if defined(GCOV)
#include <boardconfig/gcov.h>
#endif
2020-11-20 18:10:39 +01:00
#include <bsp_linux/InitMission.h>
2020-09-30 17:17:01 +02:00
#include <fsfw/tasks/TaskFactory.h>
2020-09-16 16:22:36 +02:00
#include <iostream>
2020-11-20 18:10:39 +01:00
#include <hosted/fsfwconfig/OBSWVersion.h>
2020-09-16 16:22:36 +02:00
#include <unistd.h>
/**
* @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;
std::cout << "-- Compiled for Linux " << " --" << std::endl;
2020-11-20 18:27:07 +01:00
std::cout << "-- Software version " << SW_NAME << " v" << SW_VERSION << "."
<< SW_SUBVERSION << "." << SW_SUBSUBVERSION << " -- " << std::endl;
2020-09-16 16:22:36 +02:00
std::cout << "-- " << __DATE__ << " " << __TIME__ << " --" << std::endl;
2020-09-30 17:17:01 +02:00
InitMission::initMission();
2020-09-16 16:22:36 +02:00
for(;;) {
// suspend main thread by sleeping it.
2020-09-30 17:17:01 +02:00
TaskFactory::delayTask(5000);
2020-09-16 16:22:36 +02:00
}
}