1.6.3.3 SYS_OTA_CTRLMSG Enum

C

typedef enum {
    /* Control message type for registering a ota system service
    client callback */
    SYS_OTA_REGCALLBACK = 0,
    
    /* Control message type for checking OTA update availability */
    SYS_OTA_UPDATECHCK,
    
    /* Control message type for triggering OTA update */
    SYS_OTA_INITIATE_OTA,
    
    /* Control message type for triggering system reset */
    SYS_OTA_TRIGGER_SYSTEM_RESET,
    
    /* Control message type for triggering factory reset */
    SYS_OTA_TRIGGER_FACTORY_RESET,
    
    /* Control message type for triggering Roll back */
    SYS_OTA_TRIGGER_ROLLBACK
} SYS_OTA_CTRLMSG;

Summary

Identifies the control message for which the client has called the SYS_OTA_CtrlMsg().

Description

Identifies the control message for which the client has called the SYS_OTA_CtrlMsg().

Remarks

The different control messages which can be invoked by the client.