Newer
Older
Tardis / include / Filesystem.h
/*
SPDX-License-Identifier: MIT
Copyright (c) 2023 Casey Reeves and the LuminaSensum contributors
*/

#ifndef FILESYSTEM_H
#define FILESYSTEM_H

#include "MainFilesystem.h"

void mountFilesystem(mbed::BlockDevice &bd, LittleFileSystem2 &fs);
void unmountFilesystem(mbed::BlockDevice &bd, LittleFileSystem2 &fs);

#endif