Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

applications: serial_lte_modem: update last references to A-GPS #12571

Merged
merged 1 commit into from
Oct 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions applications/serial_lte_modem/src/gnss/slm_at_gnss.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ K_FIFO_DEFINE(gnss_status_fifo);
*/
static uint16_t gnss_cloud_assistance;

/* If true, indicates that the NRF_MODEM_GNSS_EVT_AGPS_REQ event
/* If true, indicates that the NRF_MODEM_GNSS_EVT_AGNSS_REQ event
* was received and ignored due to cloud assistance being disabled.
* It has been observed that the event is not sent again after a restart of GNSS, so
* this is to remember that A/P-GPS data was requested if cloud assistance gets enabled.
Expand Down Expand Up @@ -308,9 +308,9 @@ static int read_agnss_req(struct nrf_modem_gnss_agnss_data_frame *req)
return err;
}

LOG_DBG("AGPS_REQ.sv_mask_ephe = 0x%08x", (uint32_t)req->system[0].sv_mask_ephe);
LOG_DBG("AGPS_REQ.sv_mask_alm = 0x%08x", (uint32_t)req->system[0].sv_mask_alm);
LOG_DBG("AGPS_REQ.data_flags = 0x%08x", req->data_flags);
LOG_DBG("AGNSS_REQ.sv_mask_ephe = 0x%08x", (uint32_t)req->system[0].sv_mask_ephe);
LOG_DBG("AGNSS_REQ.sv_mask_alm = 0x%08x", (uint32_t)req->system[0].sv_mask_alm);
LOG_DBG("AGNSS_REQ.data_flags = 0x%08x", req->data_flags);

return 0;
}
Expand Down
Loading