.
.
.
.
.
.
Hello Stam,
I am confirming about this with the team and will get back to you soon with an update. You can expect a response by tomorrow. Thank you for your patience.
Best Regards,
Samruddhi
Thank you for your reply. I'm using the nrf_cloud_rest_send_location() function in nrf_cloud_rest.c to send device messages to submit the GNSS fixes. It seems to be working fine now.
Btw I'm working with SDK v2.3.0
int nrf_cloud_location_send_gnss(float lat, float lon, float acc)
{
int err;
struct nrf_cloud_gnss_data gnss;
memset(&gnss, 0, sizeof(gnss));
gnss.pvt.lat = (double)lat;
gnss.pvt.lon = (double)lon;
gnss.pvt.accuracy = acc;
gnss.type = NRF_CLOUD_GNSS_TYPE_PVT;
err = nrf_cloud_rest_send_location(&rest_ctx, nrf_cloud_device_id, &gnss);
if (err) {
printk("nRF Cloud send location failed: %d\n", err);
}
return err;
}
Thank you for your reply. I'm using the nrf_cloud_rest_send_location() function in nrf_cloud_rest.c to send device messages to submit the GNSS fixes. It seems to be working fine now.
Btw I'm working with SDK v2.3.0
int nrf_cloud_location_send_gnss(float lat, float lon, float acc)
{
int err;
struct nrf_cloud_gnss_data gnss;
memset(&gnss, 0, sizeof(gnss));
gnss.pvt.lat = (double)lat;
gnss.pvt.lon = (double)lon;
gnss.pvt.accuracy = acc;
gnss.type = NRF_CLOUD_GNSS_TYPE_PVT;
err = nrf_cloud_rest_send_location(&rest_ctx, nrf_cloud_device_id, &gnss);
if (err) {
printk("nRF Cloud send location failed: %d\n", err);
}
return err;
}
Hi,
Are you now able to see all the types of location in the history? If you are still getting the same issue or have any further questions, let me know.
Best Regards,
Samruddhi
I'm able to see all types of location now.