Skip to content

Commit b3f964a

Browse files
NordicBuilderrlubos
authored andcommitted
nrf_modem: update library
SHA: 904e5a3264086bd57c58414003475547732862e1 Automatically created by libmodem Github workflow. Signed-off-by: Nordic Builder <[email protected]>
1 parent f254829 commit b3f964a

File tree

18 files changed

+37
-7
lines changed

18 files changed

+37
-7
lines changed

nrf_modem/doc/CHANGELOG.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,19 @@ Changelog
99

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

12+
nrf_modem
13+
*********
14+
15+
Sockets
16+
=======
17+
18+
* 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`.
19+
20+
DECT NR+
21+
========
22+
23+
* Added a field to the :c:struct:`nrf_modem_dect_phy_init_params` struct to control band 4 support for nRF9151 devices.
24+
1225
nrf_modem 2.8.0
1326
***************
1427

nrf_modem/include/nrf_modem_dect_phy.h

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1249,13 +1249,30 @@ struct nrf_modem_dect_phy_init_params {
12491249
* Maximum supported value: 5000000.
12501250
*/
12511251
uint32_t harq_rx_expiry_time_us;
1252-
/**
1253-
* @brief Number of HARQ processes.
1254-
*
1255-
* The HARQ reception buffer is divided equally between processes.
1256-
* Supported values: 1, 2, 4, 8.
1257-
*/
1258-
uint8_t harq_rx_process_count;
1252+
struct {
1253+
/**
1254+
* @brief Number of HARQ processes.
1255+
*
1256+
* The HARQ reception buffer is divided equally between processes.
1257+
* Supported values: 1, 2, 4, 8.
1258+
*/
1259+
uint8_t harq_rx_process_count : 4;
1260+
/**
1261+
* @brief Reserved for future use.
1262+
*/
1263+
uint8_t reserved : 3;
1264+
/**
1265+
* @brief Band 4 support.
1266+
*
1267+
* 1 - Enables band 4 operation.
1268+
* 0 - Disables band 4 operation.
1269+
*
1270+
* @note
1271+
* Band 4 support may only be toggled when de-initialized.
1272+
* Toggling band 4 support when already initialized is not supported.
1273+
*/
1274+
uint8_t band4_support : 1;
1275+
};
12591276
};
12601277

12611278
/**
8 Bytes
Binary file not shown.
8 Bytes
Binary file not shown.
8 Bytes
Binary file not shown.
8 Bytes
Binary file not shown.
8 Bytes
Binary file not shown.
8 Bytes
Binary file not shown.
8 Bytes
Binary file not shown.
8 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)