eive-obsw/bsp_q7s/main.cpp

21 lines
304 B
C++

#include "q7sConfig.h"
#if Q7S_SIMPLE_MODE == 0
#include "core/obsw.h"
#else
#include "simple/simple.h"
#endif
/**
* @brief This is the main program for the target hardware.
* @return
*/
int main(void)
{
#if Q7S_SIMPLE_MODE == 0
return obsw::obsw();
#else
return simple::simple();
#endif
}