eive-obsw/bsp_q7s/main.cpp
Jakob Meier 6d322c6e78
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
run clang format script
2022-04-30 16:21:59 +02:00

23 lines
339 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(void) {
using namespace std;
#if Q7S_SIMPLE_MODE == 0
return obsw::obsw();
#else
return simple::simple();
#endif
}