Media_INFO
The type Media_INFO contains media information data. The structure is defined in the file File_Config.h as follows:
typedef struct {
U32 block_cnt; /* Total number of blocks */
U16 read_blen; /* Read block length */
U16 write_blen; /* Write block length */
} Media_INFO;
Example:
#include <file_config.h>
...
Media_INFO mediaInfo;
...
mediaInfo.block_cnt = 3;
mediaInfo.read_blen = 256;
...