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
8 changes: 8 additions & 0 deletions nrf_modem/doc/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ Core library
DECT NR+
========

* Added the DECT clock synchronization API for precise timing with external 1 PPS signals. See the :ref:`nrf_modem_dect_clock_sync` for more information.

* The :c:func:`nrf_modem_dect_clock_sync_enable` and :c:func:`nrf_modem_dect_clock_sync_disable` functions to control external clock synchronization.
* The :c:func:`nrf_modem_dect_clock_sync_get_pulse_info` function to query synchronization pulse timing.
* The :c:func:`nrf_modem_dect_clock_sync_get_state` function to retrieve synchronization status and accuracy.
* The :c:func:`nrf_modem_dect_clock_sync_enable_ref_output` and :c:func:`nrf_modem_dect_clock_sync_disable_ref_output` functions to control reference signal output on the **COEX1** pin.
* The :c:func:`nrf_modem_dect_clock_sync_event_handler_set` function to set the event handler for asynchronous operations.

* Added:

* The :c:func:`nrf_modem_dect_phy_test_rf_tx_cw_control` function to control continuous wave transmission for device certification purposes.
Expand Down
7 changes: 7 additions & 0 deletions nrf_modem/doc/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,13 @@ DECT NR+ PHY API

.. doxygengroup:: nrf_modem_dect_phy

.. _nrf_modem_dect_clock_sync:

DECT clock sync API
===================

.. doxygengroup:: nrf_modem_dect_clock_sync

.. _nrf_modem_gnss_api:

GNSS API
Expand Down
4 changes: 2 additions & 2 deletions nrf_modem/include/nrf_modem.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ extern "C" {
#endif

/**
* @defgroup nrf_modem_limits Limits of the Modem library
* @defgroup nrf_modem_limits Limits of the Modem library.
* @ingroup nrf_modem
* @{
* @brief Modem library constants.
Expand Down Expand Up @@ -69,7 +69,7 @@ extern "C" {
/** @} */

/**
* @defgroup nrf_modem_shmem_config Shared memory configuration
* @defgroup nrf_modem_shmem_config Shared memory configuration.
* Only the lower 128k of RAM may be shared with the modem core.
*
* @ingroup nrf_modem
Expand Down
Loading