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/source/fs/mufs/dir.h

12 lines
201 B

#pragma once
struct mufs_dentry {
uint8_t type;
uint32_t file_size;
uint32_t root;
uint8_t depth;
uint16_t path_len;
} __attribute__((packed));
#define MUFS_FILE BIT(0)
#define MUFS_DIR BIT(1)