Skip to content

Commit 23dfec6

Browse files
committed
nrf_modem: update library
SHA: 82b3367ec27701d12a6757fe723464035e356d1e Automatically created by libmodem Github workflow. Signed-off-by: Nordic Builder <[email protected]>
1 parent 6660641 commit 23dfec6

File tree

18 files changed

+936
-461
lines changed

18 files changed

+936
-461
lines changed

nrf_modem/include/nrf_modem_dect_phy.h

+929-458
Large diffs are not rendered by default.

nrf_modem/include/nrf_modem_softsim.h

+7-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,10 @@ enum nrf_modem_softsim_cmd {
3636
*
3737
* @details This handler lets the application process a SoftSIM request.
3838
* The application must then call @ref nrf_modem_softsim_res with the response data
39-
* requested.
39+
* requested, and @ref nrf_modem_softsim_data_free when the request is not referenced
40+
* anymore and can be freed.
4041
*
41-
* @note This handler is executed in an interrupt service routine.
42+
* @note This handler is executed in an interrupt service routine (ISR).
4243
* Offload any intensive operations as necessary.
4344
*
4445
* @param cmd SoftSIM request command.
@@ -52,7 +53,7 @@ typedef void (*nrf_modem_softsim_req_handler_t)(enum nrf_modem_softsim_cmd cmd,
5253
/**
5354
* @brief Set a handler function for SoftSIM requests.
5455
*
55-
* @note The handler is executed in an interrupt service routine.
56+
* @note The handler is executed in an interrupt service routine (ISR).
5657
* Take care to offload any processing as appropriate.
5758
*
5859
* @param handler The SoftSIM request handler. Use @c NULL to unset handler.
@@ -67,6 +68,9 @@ int nrf_modem_softsim_req_handler_set(nrf_modem_softsim_req_handler_t handler);
6768
* @details This function is used to respond to the Modem with the data requested by a specific
6869
* request.
6970
*
71+
* @note This function takes care of copying @p data to an internal buffer, so any
72+
* heap allocation for @p data can be freed immediately after calling this function.
73+
*
7074
* @param cmd SoftSIM response command.
7175
* @param req_id Request ID used to match request and response.
7276
* @param[in] data Pointer to the data of the SoftSIM response.
-416 Bytes
Binary file not shown.
Binary file not shown.
-416 Bytes
Binary file not shown.
Binary file not shown.
-416 Bytes
Binary file not shown.
Binary file not shown.
-416 Bytes
Binary file not shown.
Binary file not shown.
-416 Bytes
Binary file not shown.
Binary file not shown.
-416 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)