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

@ -0,0 +1,18 @@
#ifndef BSP_Q7S_BOARDTEST_FILESYSTEMTEST_H_
#define BSP_Q7S_BOARDTEST_FILESYSTEMTEST_H_
enum SdCard {
SDC0,
SDC1
};
class FileSystemTest {
public:
FileSystemTest();
virtual~ FileSystemTest();
private:
};
#endif /* BSP_Q7S_BOARDTEST_FILESYSTEMTEST_H_ */