eive-obsw/bsp_q7s/simple/simple.cpp

18 lines
325 B
C++
Raw Normal View History

2021-06-30 15:18:41 +02:00
#include "simple.h"
2021-06-30 16:15:46 +02:00
#include "q7sConfig.h"
#if Q7S_SIMPLE_ADD_FILE_SYSTEM_TEST == 1
#include "../boardtest/FileSystemTest.h"
#endif
2021-06-30 15:18:41 +02:00
int simple::simple() {
2021-07-06 18:23:28 +02:00
cout << "-- Q7S Simple Application --" << endl;
2021-06-30 16:15:46 +02:00
#if Q7S_SIMPLE_ADD_FILE_SYSTEM_TEST == 1
{
FileSystemTest fileSystemTest;
}
#endif
2021-06-30 15:18:41 +02:00
return 0;
}
2021-06-30 16:15:46 +02:00