eive-obsw/bsp_q7s/simple/simple.cpp
Robin Mueller 0b215bf7e0
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
use radfet enable pin now
2022-02-24 11:47:32 +01:00

21 lines
367 B
C++

#include "simple.h"
#include "iostream"
#include "q7sConfig.h"
#if Q7S_SIMPLE_ADD_FILE_SYSTEM_TEST == 1
#include "../boardtest/FileSystemTest.h"
#endif
int simple::simple() {
std::cout << "-- Q7S Simple Application --" << std::endl;
#if Q7S_SIMPLE_ADD_FILE_SYSTEM_TEST == 1
{ FileSystemTest fileSystemTest; }
#endif
#if TE0720_GPIO_TEST
#endif
return 0;
}