eive-obsw/bsp_linux_board/main.cpp

35 lines
1016 B
C++
Raw Normal View History

2022-01-17 15:58:27 +01:00
#include <iostream>
2020-11-20 18:30:15 +01:00
#include "InitMission.h"
2021-08-11 18:13:43 +02:00
#include "OBSWConfig.h"
#include "OBSWVersion.h"
#include "fsfw/tasks/TaskFactory.h"
2022-03-26 14:10:31 +01:00
#include "fsfw/version.h"
2020-09-30 17:17:01 +02: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
*/
2022-01-17 15:58:27 +01:00
int main(void) {
std::cout << "-- EIVE OBSW --" << std::endl;
std::cout << "-- Compiled for Linux board " << BOARD_NAME << " --" << std::endl;
std::cout << "-- OBSW " << SW_NAME << " v" << SW_VERSION << "." << SW_SUBVERSION << "."
2022-03-31 17:58:16 +02:00
<< SW_REVISION << ", FSFW v" << fsfw::FSFW_VERSION << " --" << std::endl;
2022-01-17 15:58:27 +01:00
std::cout << "-- " << __DATE__ << " " << __TIME__ << " --" << std::endl;
initmission::initMission();
for (;;) {
/* Suspend main thread by sleeping it. */
TaskFactory::delayTask(5000);
}
2020-09-16 16:22:36 +02:00
}