You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following options control the use of GNSS assistance data:
250
+
For external GNSS assistance data usage, set the :kconfig:option:`CONFIG_LOCATION_SERVICE_EXTERNAL` Kconfig option.
251
+
It enables A-GNSS and P-GPS data retrieval, and cellular cell information and Wi-Fi APs sending to an external source, implemented separately by the application.
252
+
If enabled, the library triggers a :c:enum:`LOCATION_EVT_GNSS_ASSISTANCE_REQUEST`, :c:enum:`LOCATION_EVT_GNSS_PREDICTION_REQUEST` or :c:enum:`LOCATION_EVT_CLOUD_LOCATION_EXT_REQUEST` event when additional information is needed.
253
+
Once the application has obtained necessary information, it must call the :c:func:`location_agnss_data_process`, the :c:func:`location_pgps_data_process`, or the :c:func:`location_cloud_location_ext_result_set` function, respectively, to feed it into the library.
251
254
252
-
* :kconfig:option:`CONFIG_LOCATION_SERVICE_EXTERNAL` - Enables A-GNSS and P-GPS data retrieval, and cellular cell information and Wi-Fi APs sending to an external source, implemented separately by the application.
253
-
If enabled, the library triggers a :c:enum:`LOCATION_EVT_GNSS_ASSISTANCE_REQUEST`, :c:enum:`LOCATION_EVT_GNSS_PREDICTION_REQUEST` or :c:enum:`LOCATION_EVT_CLOUD_LOCATION_EXT_REQUEST` event when additional information is needed.
254
-
Once the application has obtained necessary information, it must call the :c:func:`location_agnss_data_process`, the :c:func:`location_pgps_data_process`, or the :c:func:`location_cloud_location_ext_result_set` function, respectively, to feed it into the library.
255
+
Set the following Kconfig options to retrieve GNSS assistance data from `nRF Cloud`_:
* :kconfig:option:`CONFIG_NRF_CLOUD_AGNSS` - Enables A-GNSS data retrieval from `nRF Cloud`_.
256
259
* :kconfig:option:`CONFIG_NRF_CLOUD_PGPS` - Enables P-GPS data retrieval from `nRF Cloud`_.
257
260
* :kconfig:option:`CONFIG_NRF_CLOUD_AGNSS_FILTERED` - Reduces assistance size by only downloading ephemerides for visible satellites.
@@ -270,7 +273,7 @@ The following options control the sensitivity of obstructed visibility detection
270
273
These options set the threshold for how many satellites need to be found in how long a time period in order to conclude that the device is likely not indoors.
271
274
Configuring the obstructed visibility detection is always a tradeoff between power consumption and the accuracy of detection.
272
275
273
-
The following options control the transport method used with `nRF Cloud`_:
276
+
To enable the transport method, set the :kconfig:option:`CONFIG_NRF_CLOUD` Kconfig option and select one of the following options:
274
277
275
278
* :kconfig:option:`CONFIG_NRF_CLOUD_REST` - Uses REST APIs to communicate with `nRF Cloud`_ if :kconfig:option:`CONFIG_NRF_CLOUD_MQTT` is not set.
276
279
* :kconfig:option:`CONFIG_NRF_CLOUD_MQTT` - Uses MQTT transport to communicate with `nRF Cloud`_.
Copy file name to clipboardExpand all lines: doc/nrf/libraries/networking/nrf_cloud.rst
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,8 @@ The current implementation supports the following technologies:
25
25
26
26
Initializing
27
27
************
28
-
Before using any other APIs of the module, the application must call the :c:func:`nrf_cloud_init` function.
28
+
29
+
Before using any other APIs of the module, set the :kconfig:option:`CONFIG_NRF_CLOUD` Kconfig option and call the :c:func:`nrf_cloud_init` function in the application.
29
30
If this call fails, the application must not use any functions of the module.
Copy file name to clipboardExpand all lines: doc/nrf/libraries/networking/nrf_cloud_alert.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ The :c:func:`nrf_cloud_rest_alert_send` function initiates the connection as nee
53
53
Configuration
54
54
*************
55
55
56
-
Configure the following Kconfig options to enable or disable the library and to select the data transport method:
56
+
To enable this library, set the :kconfig:option:`CONFIG_NRF_CLOUD` Kconfig option and configure the following options to select the data transport method:
57
57
58
58
* :kconfig:option:`CONFIG_NRF_CLOUD_ALERT`
59
59
* :kconfig:option:`CONFIG_NRF_CLOUD_MQTT`, :kconfig:option:`CONFIG_NRF_CLOUD_REST`, or :kconfig:option:`CONFIG_NRF_CLOUD_COAP`.
Copy file name to clipboardExpand all lines: doc/nrf/libraries/networking/nrf_cloud_log.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -75,7 +75,7 @@ The :c:func:`nrf_cloud_rest_log_send` function initiates the connection as neede
75
75
Configuration
76
76
*************
77
77
78
-
Configure one or both of the following Kconfig options to enable direct log messages or the logging backend:
78
+
To enable direct log messages or the logging backend, set the :kconfig:option:`CONFIG_NRF_CLOUD` Kconfig option and one or both of the following options:
0 commit comments