6d04c278c3
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
29 lines
838 B
C++
29 lines
838 B
C++
#include <iostream>
|
|
|
|
#include "InitMission.h"
|
|
#include "OBSWConfig.h"
|
|
#include "OBSWVersion.h"
|
|
#include "fsfw/tasks/TaskFactory.h"
|
|
#include "fsfw/version.h"
|
|
|
|
/**
|
|
* @brief This is the main program entry point for the egse (raspberry pi 4)
|
|
* @return
|
|
*/
|
|
int main(void) {
|
|
std::cout << "-- EIVE OBSW --" << std::endl;
|
|
std::cout << "-- Compiled for EGSE from Arcsec"
|
|
<< " --" << 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;
|
|
|
|
initmission::initMission();
|
|
|
|
for (;;) {
|
|
/* Suspend main thread by sleeping it. */
|
|
TaskFactory::delayTask(5000);
|
|
}
|
|
}
|