I know PSM+GPS works on nRF9160.
Then when will eDRX+GPS sample program be available on nRF9160? Thanks.
I know PSM+GPS works on nRF9160.
Then when will eDRX+GPS sample program be available on nRF9160? Thanks.
Hi.
For questions about future features, you should contact your Regional Sales Manager.
If you do not know who your local RSM is, you can send me a private message, and I will provide the contact details.
Best regards,
Didrik
new nrf fw and modem fw are released.
I read README.rst of asset_tracker and apparently it is possible to use eDRX and assisted-GPS(AGPS) concurrently in the fw.
However, it's not clear how to use them. The README.rst only says "Set 'y' to CONFIG_POWER_OPTIMIZATION_ENABLE.
I would like to send AGPS data to own AWS IoT server, not nRF Cloud one.
How can I achieve it?
Also, what happens if data is received through LTE while GPS receivers works?
Thanks
> I am not able to find any references to either A-GPS or GPS during eDRX.
asset_tracker uses a real GPS and Request eDRX mode is supported according to README. So I think GPS and eDRX should be available at the same time.
Also, from https://www.nordicsemi.com/Products/Low-power-cellular-IoT/nRF9160/Download#infotabs
A GPS receiver is integrated into the radio offering various modes of operation to suit a wide selection of applications that employ location-tracking functionality
I thought "various modes" means eDRX, AGPS, and other modes.
-----------
>To my knowledge, while the modem supports A-GPS, NCS does not yet have any way of providing the necessary data to the modem.
I'm not familiar to modem firmware, but ncs seems to be a MCU side firmware. AGPS is related to modem firmware, and the source of the modem firmware is not open to the public.
Agps is supported in modem fw but not in nrf fw yet
Yes, asset_tracker (and other applications) now supports GPS in eDRX. Sorry for not being clear enough in my last reply.
Yusuke said:I thought "various modes" means eDRX, AGPS, and other modes
The various modes of the GPS are:
Hi, Didrik.
nrf v1.3.0 is released.
I would like to use eDRX + Assisted-GPS(google supl server), but asset tracker program uses Nordic supl server. How can you implement it? Thanks
I am not sure I understand exactly what you are asking here, what exactly is it you want?
Using GPS + eDRX is as simple as just running the GPS while connected to the LTE network, and using LTE.
The program flow might be something like this:
1. Start the application, do various initialization.
2. Connect to LTE network.
3. Connect to server, do initialization that requires LTE.
4. Request (and enter) eDRX
5. Start the GPS
6. Do regular reporting, etc.
When adding A-GPS to the mix, point 5 gets expanded:
5.1 The GPS requests A-GPS data
5.2 Start the SUPL session (at this point, it is recommended to stop the GPS, especially if using NB-IoT)
5.3 Inject SUPL data (and restart the GPS)
Does this answer your questions?
Best regards,
Didrik
I am not sure I understand exactly what you are asking here, what exactly is it you want?
Using GPS + eDRX is as simple as just running the GPS while connected to the LTE network, and using LTE.
The program flow might be something like this:
1. Start the application, do various initialization.
2. Connect to LTE network.
3. Connect to server, do initialization that requires LTE.
4. Request (and enter) eDRX
5. Start the GPS
6. Do regular reporting, etc.
When adding A-GPS to the mix, point 5 gets expanded:
5.1 The GPS requests A-GPS data
5.2 Start the SUPL session (at this point, it is recommended to stop the GPS, especially if using NB-IoT)
5.3 Inject SUPL data (and restart the GPS)
Does this answer your questions?
Best regards,
Didrik
Thank you. it works out!