1.2.7.4.79 SYS_FS_MEDIA_PROPERTY Enum

C

typedef enum
{
    /* Media supports Byte Write */
    SYS_FS_MEDIA_SUPPORTS_BYTE_WRITES = SYS_MEDIA_SUPPORTS_BYTE_WRITES,

    /* Media supports only Read operation */
    SYS_FS_MEDIA_SUPPORTS_READ_ONLY = SYS_MEDIA_SUPPORTS_READ_ONLY,

    /* Media supports OTP (One Time Programming) */
    SYS_FS_MEDIA_SUPPORTS_ONE_TIME_PROGRAMING = SYS_MEDIA_SUPPORTS_ONE_TIME_PROGRAMING,

    /* Read in blocking */
    SYS_FS_MEDIA_READ_IS_BLOCKING = SYS_MEDIA_READ_IS_BLOCKING,

    /* Write is blocking */
    SYS_FS_MEDIA_WRITE_IS_BLOCKING = SYS_MEDIA_WRITE_IS_BLOCKING,

} SYS_FS_MEDIA_PROPERTY;

Summary

Contains information of property of a media.

Description

This structure contains the information of property of a media device.

For a device, if multiple properties are applicable, they can be ORed together and used.

Remarks

Refer to sys_media.h for actual enumerations.