eive-obsw/bsp_q7s/main.cpp

30 lines
703 B
C++
Raw Normal View History

2020-11-20 18:30:15 +01:00
#include "InitMission.h"
#include <OBSWVersion.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:30:15 +01:00
2020-09-16 16:22:36 +02:00
#include <unistd.h>
/**
2020-11-20 18:30:15 +01:00
* @brief This is the main program for the target hardware.
2020-09-16 16:22:36 +02:00
* @return
*/
int main(void)
{
std::cout << "-- EIVE OBSW --" << std::endl;
2021-03-04 18:29:28 +01:00
std::cout << "-- Compiled for Linux (Xiphos Q7S) --" << 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
2021-03-04 18:29:28 +01:00
initmission::initMission();
2020-09-30 17:17:01 +02:00
2020-09-16 16:22:36 +02:00
for(;;) {
2021-03-04 18:29:28 +01:00
/* 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
}
}