Activate GNSS without LTE initialization

Hi all! :)

I struggle to initialize GNSS when I don't have a connection with LTE. Examples that could be found on dev academy initializates GNNS after LTE has been initialized - that works well on my side too.
However, I want to be able to use GNSS also when LTE is not initialized or when there is no connection.
I couldn't find the answer to this, so I would really appreciate your help.

I am using:

nrf9151dk
v2.9.0 sdk

Thanks!


My current function for initialization:

int8_t gnss_init(void)
{
    if (lte_lc_func_mode_set(LTE_LC_FUNC_MODE_NORMAL) != 0)
    {

        LOG_ERR("Failed to activate gnss_t functional mode");
        return -1;
     }

    if (nrf_modem_gnss_event_handler_set(gnss_event_handler) != 0)
    {
        LOG_ERR("Failed to set gnss_t event handler");
        return -1;
    }

    if (nrf_modem_gnss_start() != 0)
    {
        LOG_ERR("Failed to start gnss_t");
        return -1;
    }
    return 0;
}
Parents Reply Children
No Data
Related