2021-08-03 06:50 AM
Hello ST,
Using Azure SDK and Cellular SDK for one of the project, Cellular SDK is not executing further and struck up in one point mentioned below details FYI.
Struck funcation:
static void cellular_notif_cb(dc_com_event_id_t dc_event_id, const void *private_gui_data)
{
if ((dc_event_id == DC_COM_CELLULAR_INFO) ||
#if (USE_SOCKETS_TYPE == USE_SOCKETS_LWIP)
(dc_event_id == DC_COM_PPP_CLIENT_INFO) ||
#endif /* USE_SOCKETS_LWIP */
(dc_event_id == DC_COM_CELLULAR_DATA_INFO) ||
(dc_event_id == DC_COM_NIFMAN_INFO) ||
(dc_event_id == DC_COM_SIM_INFO))
{
NET_DBG_INFO(" \n\n****> event %d put in cellular_queue\n\n", dc_event_id);
//while (osMessagePut(cellular_queue, (uint32_t)dc_event_id, osWaitForever) != osOK);
while (osMessagePut(cellular_queue, (uint32_t)dc_event_id, osWaitForever) != osOK);
}
}
Log: