added file system test

This commit is contained in:
2021-06-30 16:15:46 +02:00
committed by Robin.Mueller
parent 9bad03093b
commit 3895eea24b
6 changed files with 48 additions and 1 deletions

View File

@ -1,5 +1,16 @@
#include "simple.h"
#include "q7sConfig.h"
#if Q7S_SIMPLE_ADD_FILE_SYSTEM_TEST == 1
#include "../boardtest/FileSystemTest.h"
#endif
int simple::simple() {
#if Q7S_SIMPLE_ADD_FILE_SYSTEM_TEST == 1
{
FileSystemTest fileSystemTest;
}
#endif
return 0;
}