So far, I've been searching in vain for a documentation of the libraries to be used for programming the 9160. Is this a lack of google skills, or aren't they public?
So far, I've been searching in vain for a documentation of the libraries to be used for programming the 9160. Is this a lack of google skills, or aren't they public?
It looks like you can find all the info you need here:
https://www.nordicsemi.com/?sc_itemid=%7BDD82D2FC-BBCE-4A02-8FC2-B8EF775557CB%7D
Edit: The page is very verbose, but have some patience, and you should find what you seek
What I'm looking for is something like this (zephyr): https://docs.zephyrproject.org/latest/reference/index.html. There they have an API documentation, with all the function signatures and parameter explanations.
I assume you follow the zephyr api to the letter. But there is no API description of the GPS. I therefore assume that you have produced this document. Where do I find it?
Sample code don't quite cut the mustard.
Then I misunderstood, I thought you were looking for documentation on how to program the nrf9160.
Could this be more fitting?
http://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/index.html
Edit: GPS API seems to be missing for now, but this is where it should be.
is there any timeframe for producing the gps api docs?
Hi,
We are working on the GPS API docs. Before the documents get released, you can refer to the gps.h.
-Amanda
Hi, done that. It seems you're not using the header files as source for generating documentation, but the comments are good enough to understand what methods do.
As far as I've understood so far, the GPS is activated using an AT command (AT%XSYSTEMMODE=0,0,1,0), and in order to get GPS data, a callback is registered to receive NMEA strings from the GPS.
Are there any intermediate steps I need to perform in order to receive the NMEA strings?
Tron