Skip to content

Commit 235df31

Browse files
committed
Update README.md
1 parent d014318 commit 235df31

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

examples/AssistNow/README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ You can further decrease the time-to-first-fix by providing the receiver's appro
8080

8181
## Support for AssistNow
8282

83-
```pushAssistNowData``` allows the AssistNow Online data or AssistNow Offline data from the u-blox server to be pushed to the module. As the ESP32 HTTP GET function returns a ```String```, we've included overloaded functions which allow you to pass the data as a ```String``` or as ```const uint8_t *```.
83+
```pushAssistNowData``` allows AssistNow Online, Offline or Autonomous data to be pushed to the module. As the ESP32 HTTP GET function returns a ```String```, we've included overloaded functions which allow you to pass the data as a ```String``` or as ```const uint8_t *```.
8484

8585
The String-based function declarations are:
8686

@@ -125,6 +125,7 @@ AssistNow Online data is valid for 2-4 hours. 'Stale' data can be re-used but:
125125

126126
The ```skipTime``` parameter tells ```pushAssistNowData``` to skip any time information in the data. ```skipTime``` is bool. Set it to ```true``` to skip the time information.
127127
<br>
128+
128129
UTC time can be pushed to the module first by calling ```setUTCTimeAssistance```:
129130

130131
* <b>bool setUTCTimeAssistance(uint16_t year, uint8_t month, uint8_t day, uint8_t hour, uint8_t minute, uint8_t second, uint32_t nanos, uint16_t tAccS, uint32_t tAccNs, uint8_t source, sfe_ublox_mga_assist_ack_e mgaAck, uint16_t maxWait);</b>
@@ -175,7 +176,7 @@ AssistNow Autonomous is disabled by default. You can enable it by calling ```set
175176
* set ```aopCfg``` to 1 to enable AssistNow Autonomous, or 0 to disable it
176177
* ```aopOrbMaxErr``` is used to set the 'lifetime' of the AssistNow data. It is recommended to set aopOrbMaxErr to 0 (the default value). This instructs the module to use the firmware default value that corresponds to a default orbit data validity of approximately three days (for GPS satellites observed once) and up to six days (for GPS and GLONASS satellites observed multiple times over a period of at least half a day).
177178

178-
Once AssistNow Autonomous is enabled, you can monitor its progress via the ```status``` field in the UBX-NAV-AOPSTATUS message. You can read the ```status``` by calling ```getAOPSTATUSstatus```. It will return zero when the AssistNow Autonomous data collection is complete. Non-zero values indicate that data collection is still in progress.
179+
Once AssistNow Autonomous is enabled, you can monitor its progress via the ```status``` field in the UBX-NAV-AOPSTATUS message. You can read the ```status``` by calling the helper function ```getAOPSTATUSstatus```. It will return zero when the AssistNow Autonomous data collection is idle. Non-zero values indicate that data collection is in progress.
179180

180181
* <b>uint8_t getAOPSTATUSstatus(uint16_t maxWait);</b>
181182
* <b>uint8_t getAOPSTATUSuseAOP(uint16_t maxWait);</b>

0 commit comments

Comments
 (0)