minor changes

This commit is contained in:
Robin Müller 2021-07-12 17:50:01 +02:00 committed by Robin Mueller
parent d903da109e
commit 6c2c1e6552
2 changed files with 3 additions and 2 deletions

View File

@ -93,7 +93,8 @@ void FileSystemHandler::fileSystemCheckup() {
// This function will appear to fix the inconsistent state
ReturnValue_t result = sdcMan->sanitizeState(&preferredSdCard, &statusPair);
if(result != HasReturnvaluesIF::RETURN_OK) {
// Oh no. Trigger medium severity event
// Oh no.
// TODO: Trigger medium severity event
sif::error << "Fix failed" << std::endl;
}
}

View File

@ -1,7 +1,7 @@
#ifndef BSP_Q7S_MEMORY_FILESYSTEMHANDLER_H_
#define BSP_Q7S_MEMORY_FILESYSTEMHANDLER_H_
#include <bsp_q7s/memory/SdCardManager.h>
#include "SdCardManager.h"
#include "OBSWConfig.h"
#include "fsfw/ipc/MessageQueueIF.h"