Skip to content

Commit

Permalink
nrf_modem: update library
Browse files Browse the repository at this point in the history
SHA: e5c868eb6ce4b3dedd023bddef65279f4d50a662

Automatically created by libmodem Github workflow.

Signed-off-by: Nordic Builder <[email protected]>
  • Loading branch information
NordicBuilder authored and lemrey committed Nov 21, 2024
1 parent f254829 commit f55ad99
Show file tree
Hide file tree
Showing 18 changed files with 37 additions and 7 deletions.
13 changes: 13 additions & 0 deletions nrf_modem/doc/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,19 @@ Changelog

All notable changes to this project are documented in this file.

nrf_modem
*********

Sockets
=======

* Updated the :c:func:`nrf_send()` and :c:func:`nrf_sendto()` functions to correctly set ``errno`` when the socket is closed during a send operation with :c:macro:`NRF_MSG_WAITACK`.

DECT NR+
========

* Added a field to the :c:struct:`nrf_modem_dect_phy_init_params` struct to control band 4 support for nRF9151 devices.

nrf_modem 2.8.0
***************

Expand Down
31 changes: 24 additions & 7 deletions nrf_modem/include/nrf_modem_dect_phy.h
Original file line number Diff line number Diff line change
Expand Up @@ -1249,13 +1249,30 @@ struct nrf_modem_dect_phy_init_params {
* Maximum supported value: 5000000.
*/
uint32_t harq_rx_expiry_time_us;
/**
* @brief Number of HARQ processes.
*
* The HARQ reception buffer is divided equally between processes.
* Supported values: 1, 2, 4, 8.
*/
uint8_t harq_rx_process_count;
struct {
/**
* @brief Number of HARQ processes.
*
* The HARQ reception buffer is divided equally between processes.
* Supported values: 1, 2, 4, 8.
*/
uint8_t harq_rx_process_count : 4;
/**
* @brief Reserved for future use.
*/
uint8_t reserved : 3;
/**
* @brief Band 4 support.
*
* 1 - Enables band 4 operation.
* 0 - Disables band 4 operation.
*
* @note
* Band 4 support may only be toggled when de-initialized.
* Toggling band 4 support when already initialized is not supported.
*/
uint8_t band4_support : 1;
};
};

/**
Expand Down
Binary file modified nrf_modem/lib/cellular/nrf9120/hard-float/libmodem.a
Binary file not shown.
Binary file modified nrf_modem/lib/cellular/nrf9120/hard-float/libmodem_log.a
Binary file not shown.
Binary file modified nrf_modem/lib/cellular/nrf9120/soft-float/libmodem.a
Binary file not shown.
Binary file modified nrf_modem/lib/cellular/nrf9120/soft-float/libmodem_log.a
Binary file not shown.
Binary file modified nrf_modem/lib/cellular/nrf9160/hard-float/libmodem.a
Binary file not shown.
Binary file modified nrf_modem/lib/cellular/nrf9160/hard-float/libmodem_log.a
Binary file not shown.
Binary file modified nrf_modem/lib/cellular/nrf9160/soft-float/libmodem.a
Binary file not shown.
Binary file modified nrf_modem/lib/cellular/nrf9160/soft-float/libmodem_log.a
Binary file not shown.
Binary file modified nrf_modem/lib/cellular/nrf9230/hard-float/libmodem.a
Binary file not shown.
Binary file modified nrf_modem/lib/cellular/nrf9230/hard-float/libmodem_log.a
Binary file not shown.
Binary file modified nrf_modem/lib/cellular/nrf9230/soft-float/libmodem.a
Binary file not shown.
Binary file modified nrf_modem/lib/cellular/nrf9230/soft-float/libmodem_log.a
Binary file not shown.
Binary file modified nrf_modem/lib/dect_phy/nrf9120/hard-float/libmodem.a
Binary file not shown.
Binary file modified nrf_modem/lib/dect_phy/nrf9120/hard-float/libmodem_log.a
Binary file not shown.
Binary file modified nrf_modem/lib/dect_phy/nrf9120/soft-float/libmodem.a
Binary file not shown.
Binary file modified nrf_modem/lib/dect_phy/nrf9120/soft-float/libmodem_log.a
Binary file not shown.

0 comments on commit f55ad99

Please sign in to comment.