eive-obsw/bsp_q7s/simple/simple.cpp

23 lines
373 B
C++
Raw Normal View History

2021-06-30 15:18:41 +02:00
#include "simple.h"
2022-01-17 15:58:27 +01:00
#include "iostream"
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() {
std::cout << "-- Q7S Simple Application --" << std::endl;
2021-06-30 16:15:46 +02:00
#if Q7S_SIMPLE_ADD_FILE_SYSTEM_TEST == 1
2025-02-06 13:07:36 +01:00
{
FileSystemTest fileSystemTest;
}
2021-09-20 16:30:50 +02:00
#endif
#if TE0720_GPIO_TEST
2021-06-30 16:15:46 +02:00
#endif
2022-01-17 15:58:27 +01:00
return 0;
2021-06-30 15:18:41 +02:00
}