updated file system handler
This commit is contained in:
16
bsp_q7s/memory/FileSystemHandler.cpp
Normal file
16
bsp_q7s/memory/FileSystemHandler.cpp
Normal file
@ -0,0 +1,16 @@
|
||||
#include "FileSystemHandler.h"
|
||||
|
||||
#include "fsfw/tasks/TaskFactory.h"
|
||||
|
||||
FileSystemHandler::FileSystemHandler(object_id_t fileSystemHandler):
|
||||
SystemObject(fileSystemHandler) {
|
||||
}
|
||||
|
||||
ReturnValue_t FileSystemHandler::performOperation(uint8_t unsignedChar) {
|
||||
while(true) {
|
||||
// This task will have a low priority and will run permanently in the background
|
||||
// so we will just run in a permanent loop here and check file system
|
||||
// messages permanently
|
||||
TaskFactory::instance()->delayTask(1000);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user