Skip to content

Commit 01bcc7c

Browse files
NordicBuildernordic-mare
authored andcommitted
nrf_modem: update library
SHA: d9e6902880366eb3086acf900987995b832bcfae Automatically created by libmodem Github workflow. Signed-off-by: Nordic Builder <[email protected]>
1 parent 74e6bd8 commit 01bcc7c

File tree

30 files changed

+2973
-32
lines changed

30 files changed

+2973
-32
lines changed

nrf_modem/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ if(CONFIG_NRF_MODEM_LINK_BINARY)
1414
cmake_path(APPEND lib_path cellular)
1515
elseif(CONFIG_NRF_MODEM_LINK_BINARY_DECT_PHY)
1616
cmake_path(APPEND lib_path dect_phy)
17+
elseif(CONFIG_NRF_MODEM_LINK_BINARY_DECT_NRP)
18+
cmake_path(APPEND lib_path dect)
1719
endif()
1820

1921
# SOC

nrf_modem/Kconfig

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ config NRF_MODEM_LINK_BINARY_DECT_PHY
3333
select EXPERIMENTAL
3434
bool "DECT PHY"
3535

36+
config NRF_MODEM_LINK_BINARY_DECT_NRP
37+
select EXPERIMENTAL
38+
bool "DECT NR+"
39+
3640
endchoice
3741

3842
config NRF_MODEM_LOG
@@ -46,7 +50,8 @@ endif # NRF_MODEM
4650
config NRF_MODEM_SHMEM_CTRL_SIZE
4751
hex
4852
default 0x1000 if (SOC_SERIES_NRF92X && NRF_MODEM_LINK_BINARY_CELLULAR)
49-
default 0x728 if (SOC_SERIES_NRF91X && NRF_MODEM_LINK_BINARY_DECT_PHY)
53+
default 0x728 if (SOC_SERIES_NRF91X && \
54+
(NRF_MODEM_LINK_BINARY_DECT_PHY || NRF_MODEM_LINK_BINARY_DECT_NRP))
5055
default 0x4e8
5156

5257
endmenu # nrf_modem

nrf_modem/include/nrf_modem.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,15 @@ extern "C" {
8181
*/
8282
#define NRF_MODEM_CELLULAR_SHMEM_CTRL_SIZE 0x4e8
8383
/**
84-
* @brief Shared memory control region size for DECT PHY flavour.
84+
* @brief Shared memory control region size for DECT NRP flavour.
8585
*/
86-
#define NRF_MODEM_DECT_PHY_SHMEM_CTRL_SIZE 0x728
86+
#define NRF_MODEM_DECT_NRP_SHMEM_CTRL_SIZE 0x728
8787

8888
/** @brief Shared memory configuration in normal operation mode. */
8989
struct nrf_modem_shmem_cfg {
9090
/** Control memory, used for control structures.
9191
* The size of this area is build constant, and must be equal to
92-
* @c NRF_MODEM_CELLULAR_SHMEM_CTRL_SIZE or @c NRF_MODEM_DECT_PHY_SHMEM_CTRL_SIZE.
92+
* @c NRF_MODEM_CELLULAR_SHMEM_CTRL_SIZE or @c NRF_MODEM_DECT_NRP_SHMEM_CTRL_SIZE.
9393
*/
9494
struct {
9595
uint32_t base;

0 commit comments

Comments
 (0)