Source code for the Trusted Boot Module.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tbm-mcu/include/fs/mufs.h

13 lines
206 B

#pragma once
struct flash_dev;
struct mufs {
struct flash_dev *dev;
uint32_t nblocks;
uint32_t root;
};
int mufs_mount(struct mufs *fs, struct flash_dev *dev);
int mufs_format(struct flash_dev *dev);