windows build working

This commit is contained in:
2020-09-30 21:17:16 +02:00
parent da79e0ec07
commit e09027f601
2 changed files with 10 additions and 8 deletions

View File

@ -2,12 +2,15 @@
#include <fsfw/tasks/TaskFactory.h>
#include <iostream>
#include <stdio.h>
#include <version.h>
#include <unistd.h>
#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
/**
* @brief This is the main program for the hosted build. It can be run for
* Linux and Windows.
@ -16,13 +19,13 @@
int main(void)
{
std::cout << "-- EIVE OBSW --" << std::endl;
std::cout << "-- Compiled for Linux " << " --" << std::endl;
std::cout << "-- Compiled for " << COMPILE_PRINTOUT << " --" << std::endl;
std::cout << "-- Software version v" << SW_VERSION << "." << SW_SUBVERSION
<< " -- " << std::endl;
std::cout << "-- " << __DATE__ << " " << __TIME__ << " --" << std::endl;
InitMission::initMission();
std::cout << std::endl;
for(;;) {
// suspend main thread by sleeping it.
TaskFactory::delayTask(5000);