eive-obsw/bsp_q7s/main.cpp
Robin Mueller 3b61697615
Some checks are pending
EIVE/eive-obsw/pipeline/head Build started...
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
refactored FIFO handling
2023-03-06 00:55:12 +01:00

23 lines
367 B
C++

#include "q7sConfig.h"
#if Q7S_SIMPLE_MODE == 0
#include "obsw.h"
#else
#include "simple/simple.h"
#endif
#include <iostream>
/**
* @brief This is the main program for the target hardware.
* @return
*/
int main(int argc, char* argv[]) {
using namespace std;
#if Q7S_SIMPLE_MODE == 0
return obsw::obsw(argc, argv);
#else
return simple::simple();
#endif
}