Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions app/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,9 @@ config SM_NRF_CLOUD
config SM_MQTTC
bool "MQTT client support"
default y
select EXPERIMENTAL
select MQTT_LIB
select MQTT_LIB_TLS
select EXPERIMENTAL

config SM_FULL_FOTA
bool "Full modem FOTA support"
Expand Down Expand Up @@ -308,8 +308,7 @@ config SM_GNSS_OUTPUT_NMEA_SATELLITES
depends on SM_LOG_LEVEL_DBG
help
If enabled, NMEA messages that pertain to the satellites will be output
along with the other NMEA messages. Those are output in debug logs, and
can also be output to a dedicated CMUX channel.
along with the other NMEA messages. Those are output in debug logs.

config SM_PGPS_INJECT_FIX_DATA
bool "Inject the data obtained when acquiring a fix"
Expand Down
1 change: 1 addition & 0 deletions app/src/lwm2m_carrier/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
config SM_CARRIER
bool "LwM2M Carrier support"
depends on LWM2M_CARRIER
select EXPERIMENTAL

if SM_CARRIER

Expand Down
4 changes: 4 additions & 0 deletions doc/app/at_carrier.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ LwM2M carrier library AT commands
:local:
:depth: 2

.. note::

These AT commands are `Experimental <Software maturity levels_>`_.

This page describes AT commands related to the LwM2M carrier library.

Carrier event #XCARRIEREVT
Expand Down
5 changes: 5 additions & 0 deletions doc/app/sm_configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ The following configuration files are provided:
* :file:`overlay-carrier-softbank.conf` and :file:`sysbuild-softbank.conf` - Configuration files that add SoftBank configurations needed by the carrier library.
Used in conjunction with :file:`overlay-carrier.conf`.
For more information, see the `Carrier-specific dependencies`_ section of the `LwM2M carrier`_ documentation.

* :file:`overlay-carrier-lgu.conf` - This configuration file adds LG U+ configurations needed by the carrier library.
Used in conjunction with :file:`overlay-carrier.conf`.
For more information, see the `Carrier-specific dependencies`_ section of the `LwM2M carrier`_ documentation.
Expand All @@ -294,6 +295,10 @@ The following configuration files are provided:
* :file:`overlay-memfault.conf` - Configuration file that enables `Memfault`_.
For more information about Memfault features in |NCS|, see the `Memfault library`_ docs.

.. note::
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should likely be in all the overlays that enable experimental features.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wanted to avoid that since the AT APIs show that they are experimental. From overlays, it would be only carrier lib stuff. Memfault is different since this is the only place where we talk about it.


The use of Memfault features in |SM| are `Experimental <Software maturity levels_>`_.

* :file:`overlay-disable-dtr.overlay` - Devicetree overlay that disables the DTR and RI pins and related functionality.
This overlay can be used if your setup does not have the need or means for managing the power externally.
Modify the overlay to fit your configuration.
Expand Down