1.2.7.4.82 SYS_FS_MEDIA_TYPE Enum

C

typedef enum
{
    /* Media is of type NVM (internal flash (non volatile) memory)*/
    SYS_FS_MEDIA_TYPE_NVM,

    /* Media is of type mass storage device */
    SYS_FS_MEDIA_TYPE_MSD,

    /* Media is of type SD card */
    SYS_FS_MEDIA_TYPE_SD_CARD,

    /* Media is of type RAM */
    SYS_FS_MEDIA_TYPE_RAM,

    /* Media is of type SPI/QSPI Flash, SPI/I2C EEPROM */
    SYS_FS_MEDIA_TYPE_SPIFLASH

} SYS_FS_MEDIA_TYPE;

Summary

The enumeration for type of media.

Description

This enumeration is for the type of media registered with the media manager.

Remarks

None.