AWS IoT Over-the-air Update v3.3.0
Client library for AWS IoT OTA
OTA_GetState

Get the current state of the OTA agent.

OtaState_t
OTA Agent states.
Definition: ota.h:115
OtaState_t OTA_GetState(void)
Get the current state of the OTA agent.
Definition: ota.c:3228
Returns
The current state of the OTA agent.

Example Check if OTA agent is in suspended state.

// OTA Agent state
while( state != OtaAgentStateSuspended )
{
// Do something while the agent is back to
// the desired state.
state = OTA_GetState();
}