some stubs

This commit is contained in:
Robin Müller 2021-05-27 21:06:37 +02:00 committed by Robin Mueller
parent 945ef9019a
commit 385dbd977e
5 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,4 @@
target_sources(${TARGET_NAME} PRIVATE
FileSystemManager.cpp
SdCardAccess.cpp
)

View File

@ -0,0 +1,7 @@
#include "FileSystemManager.h"
class FileSystemManager {
public:
private:
};

View File

@ -0,0 +1,8 @@
#ifndef BSP_Q7S_MEMORY_FILESYSTEMMANAGER_H_
#define BSP_Q7S_MEMORY_FILESYSTEMMANAGER_H_
#endif /* BSP_Q7S_MEMORY_FILESYSTEMMANAGER_H_ */

View File

@ -0,0 +1,4 @@
#include "SdCardAccess.h"
SdCardAccess::SdCardAccess() {
}

View File

@ -0,0 +1,11 @@
#ifndef BSP_Q7S_MEMORY_SDCARDACCESS_H_
#define BSP_Q7S_MEMORY_SDCARDACCESS_H_
class SdCardAccess {
public:
SdCardAccess();
private:
};
#endif /* BSP_Q7S_MEMORY_SDCARDACCESS_H_ */