Resume OTA agent operations .
- Returns
- OtaErrNone if successful, otherwise an error code prefixed with 'OtaErr' from the list above.
Example Resume the OTA agent after the network errors are resolved.
bool handleReconnect()
{
bool returnStatus = establishConnection();
if( returnStatus == EXIT_SUCCESS )
{
{
}
else
{
}
returnStatus = false;
}
return returnStatus;
}