eive-obsw/bsp_q7s/obsw.cpp

47 lines
1.4 KiB
C++
Raw Normal View History

2021-06-30 15:18:41 +02:00
#include "obsw.h"
2021-07-24 13:47:09 +02:00
2021-07-29 16:31:04 +02:00
#include <filesystem>
2022-01-17 15:58:27 +01:00
#include <iostream>
#include "OBSWConfig.h"
2022-04-22 14:09:08 +02:00
#include "commonConfig.h"
2022-04-29 15:47:54 +02:00
#include "core/InitMission.h"
2022-01-17 15:58:27 +01:00
#include "fsfw/tasks/TaskFactory.h"
2022-03-14 17:53:48 +01:00
#include "fsfw/version.h"
2022-05-23 18:37:04 +02:00
#include "q7sConfig.h"
2022-04-19 17:24:04 +02:00
#include "watchdog/definitions.h"
2021-07-29 16:31:04 +02:00
static int OBSW_ALREADY_RUNNING = -2;
2022-05-19 16:00:26 +02:00
#if OBSW_Q7S_EM == 0
static const char* DEV_STRING = "Xiphos Q7S FM";
#else
static const char* DEV_STRING = "Xiphos Q7S EM";
#endif
2021-06-30 15:18:41 +02:00
int obsw::obsw() {
2022-03-14 17:53:48 +01:00
using namespace fsfw;
2022-01-17 15:58:27 +01:00
std::cout << "-- EIVE OBSW --" << std::endl;
2022-05-19 16:00:26 +02:00
std::cout << "-- Compiled for Linux (" << DEV_STRING << ") --" << std::endl;
2022-04-22 15:58:15 +02:00
std::cout << "-- OBSW v" << common::OBSW_VERSION << " | FSFW v" << fsfw::FSFW_VERSION << " --"
2022-04-22 14:09:08 +02:00
<< std::endl;
2022-01-17 15:58:27 +01:00
std::cout << "-- " << __DATE__ << " " << __TIME__ << " --" << std::endl;
2021-06-30 15:18:41 +02:00
2021-07-29 13:07:07 +02:00
#if Q7S_CHECK_FOR_ALREADY_RUNNING_IMG == 1
2022-01-17 15:58:27 +01:00
// Check special file here. This file is created or deleted by the eive-watchdog application
// or systemd service!
if (std::filesystem::exists(watchdog::RUNNING_FILE_NAME)) {
sif::warning << "File " << watchdog::RUNNING_FILE_NAME
<< " exists so the software might "
"already be running. Check if obsw systemd service has been stopped."
2022-01-17 15:58:27 +01:00
<< std::endl;
return OBSW_ALREADY_RUNNING;
}
2021-07-29 13:07:07 +02:00
#endif
2022-01-17 15:58:27 +01:00
initmission::initMission();
2021-06-30 15:18:41 +02:00
2022-01-17 15:58:27 +01:00
for (;;) {
/* Suspend main thread by sleeping it. */
TaskFactory::delayTask(5000);
}
return 0;
2021-06-30 15:18:41 +02:00
}