cancel
Showing results for 
Search instead for 
Did you mean: 

STM32CubeExpansion_Cloud_AZURE_V1.2.1 + Cellular SDK

MKP
Associate

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:

0 REPLIES 0