This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

cloud_event_handler() not called after cloud_connect()

I am trying to modify the asset_tracker application to work without PSM mode since we cannot get PSM mode granted from the local network here.

My plan is to switch the modem to GPS-only mode get a position fix, then switch the LTE-M only mode and send the data to the network.

The GPS part seems to be working but I'm having trouble with the LTE connection.

The LTE network connection seems to work (nrfcloud reports the device as connected) but the cloud_event_handler() is not called in my code.  The cloud_connect() function returns without error but the cloud_event_handler() registered with the cloud_init() function isn't called.  This could be a configuration mistake on my end or a lack of sending the right command to the network to elicit a response.

What causes the network to send events to the cloud_event_handler()?

  • Could you check if the handler event_handler() in ncs\nrf\subsys\net\lib\nrf_cloud\src\nrf_cloud.c runs? If it does, then you receive events on that layer, but isn't transported down to the user-provided event handler (The one initialized through cloud_init(cloud_backend, cloud_event_handler) in main.c).

    The event_handler() will invoke the user-provided event handler through the call cloud_notify_event().

    Could you try to debug your project and set a breakpoint in the case NRF_CLOUD_EVT_READY in event_handler() in ncs\nrf\subsys\net\lib\nrf_cloud\src\nrf_cloud.c and see if the program hits the breakpoint?

    Best regards,

    Simon

Related