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
Adding a note that LTE LC and nrf_modem_at APIs should be used
together with caution.
A comment in lte_lc_connect* that reconnection happens automatically.
Signed-off-by: Tommi Rantanen <[email protected]>
Copy file name to clipboardExpand all lines: doc/nrf/libraries/modem/lte_lc.rst
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -185,7 +185,7 @@ You can set the timer values requested by the modem using the following options:
185
185
Connection pre-evaluation
186
186
=========================
187
187
188
-
Modem firmware version 1.3.0 and higher supports connection a pre-evaluation feature that allows the application to get information about a cell that is likely to be used for an RRC connection.
188
+
Modem firmware versions 1.3.0 and higher support a connection pre-evaluation feature that allows the application to get information about a cell that is likely to be used for an RRC connection.
189
189
Based on the parameters received in the function call, the application can decide whether to send application data or not.
190
190
To enable this module, use the :kconfig:option:`CONFIG_LTE_LC_CONN_EVAL_MODULE` Kconfig option.
191
191
The function :c:func:`lte_lc_conn_eval_params_get` populates a structure of type :c:struct:`lte_lc_conn_eval_params` that includes information on the current consumption cost by the data transmission when utilizing the given cell.
@@ -227,7 +227,7 @@ The :c:struct:`lte_lc_conn_eval_params` structure lists all information that is
227
227
Modem sleep and TAU pre-warning notifications
228
228
=============================================
229
229
230
-
Modem firmware v1.3.0 and higher supports receiving callbacks from the modem related to Tracking Area Updates (TAU) and modem sleep.
230
+
Modem firmware versions 1.3.0 and higher support receiving callbacks from the modem related to Tracking Area Updates (TAU) and modem sleep.
231
231
Based on these notifications, the application can alter its behavior to optimize for a given metric.
232
232
233
233
For instance, TAU pre-warning notifications can be used to schedule data transfers before a TAU so that data transfer and TAU occurs within the same RRC connection window, thereby saving the potential overhead associated with the additional data exchange.
@@ -243,6 +243,13 @@ To enable modem sleep and TAU pre-warning notifications, use the following optio
243
243
244
244
For additional configurations related to these features, see the API documentation.
245
245
246
+
Limitations
247
+
***********
248
+
249
+
The LTE link control library and the :ref:`nrfxlib:nrf_modem_at` interface should be used at the same time with caution,
250
+
because the library also uses the same interface.
251
+
As a general rule, do not use the AT commands for features that the LTE link control library supports.
0 commit comments