eive-obsw/bsp_hosted/main.cpp

42 lines
1.1 KiB
C++
Raw Normal View History

#include <objects/systemObjectList.h>
2022-01-17 15:58:27 +01:00
#include <iostream>
2020-12-21 23:09:35 +01:00
#include "InitMission.h"
2022-04-26 10:37:25 +02:00
#include "commonConfig.h"
2021-07-26 14:00:15 +02:00
#include "fsfw/FSFWVersion.h"
#include "fsfw/controller/ControllerBase.h"
#include "fsfw/ipc/QueueFactory.h"
#include "fsfw/modes/HasModesIF.h"
#include "fsfw/modes/ModeMessage.h"
#include "fsfw/objectmanager/ObjectManager.h"
2021-07-26 14:00:15 +02:00
#include "fsfw/tasks/TaskFactory.h"
2020-09-30 21:17:16 +02:00
#ifdef WIN32
static const char* COMPILE_PRINTOUT = "Windows";
#elif LINUX
static const char* COMPILE_PRINTOUT = "Linux";
#else
static const char* COMPILE_PRINTOUT = "unknown OS";
#endif
2020-09-30 20:52:51 +02:00
/**
* @brief This is the main program for the hosted build. It can be run for
* Linux and Windows.
* @return
*/
2022-01-17 15:58:27 +01:00
int main(void) {
std::cout << "-- EIVE OBSW --" << std::endl;
std::cout << "-- Compiled for " << COMPILE_PRINTOUT << " --" << std::endl;
2022-04-26 10:37:25 +02:00
std::cout << "-- OBSW "
2022-05-04 13:49:55 +02:00
<< "v" << common::OBSW_VERSION << " | FSFW v" << fsfw::FSFW_VERSION << " --"
2022-04-26 10:37:25 +02:00
<< std::endl;
2022-01-17 15:58:27 +01:00
std::cout << "-- " << __DATE__ << " " << __TIME__ << " --" << std::endl;
2020-09-30 20:52:51 +02:00
2022-01-17 15:58:27 +01:00
initmission::initMission();
2020-09-30 21:17:16 +02:00
2022-01-17 15:58:27 +01:00
for (;;) {
// suspend main thread by sleeping it.
TaskFactory::delayTask(5000);
}
2020-09-30 20:52:51 +02:00
}