2020-11-20 18:30:15 +01:00
|
|
|
#include "InitMission.h"
|
|
|
|
#include <OBSWVersion.h>
|
2021-03-04 18:29:28 +01:00
|
|
|
|
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
|
|
|
|
2021-05-05 22:51:29 +02:00
|
|
|
#ifdef RASPBERRY_PI
|
|
|
|
static const char* const BOARD_NAME = "Raspberry Pi";
|
|
|
|
#elif defined(BEAGLEBONEBLACK)
|
|
|
|
static const char* const BOARD_NAME = "Beaglebone Black";
|
|
|
|
#else
|
|
|
|
static const char* const BOARD_NAME = "Unknown Board";
|
|
|
|
#endif
|
|
|
|
|
2020-09-16 16:22:36 +02:00
|
|
|
/**
|
2021-03-04 18:29:28 +01:00
|
|
|
* @brief This is the main program and entry point for the Raspberry Pi.
|
2020-09-16 16:22:36 +02:00
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
std::cout << "-- EIVE OBSW --" << std::endl;
|
2021-05-05 22:51:29 +02:00
|
|
|
std::cout << "-- Compiled for Linux board " << BOARD_NAME << " --" << 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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|