-
Notifications
You must be signed in to change notification settings - Fork 314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nrf_modem: v2.5.0 release #1079
Conversation
239d9cb
to
2befd73
Compare
nrf_modem/CMakeLists.txt
Outdated
nrfxlib_calculate_lib_path(NRF_MODEM_LIB_DIR SOC_MODE BASE_DIR ${CMAKE_CURRENT_SOURCE_DIR} | ||
SOFT_FLOAT_FALLBACK | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nrfxlib_calculate_lib_path(NRF_MODEM_LIB_DIR SOC_MODE BASE_DIR ${CMAKE_CURRENT_SOURCE_DIR} | |
SOFT_FLOAT_FALLBACK | |
) | |
nrfxlib_calculate_lib_path(NRF_MODEM_LIB_DIR SOC_MODE | |
BASE_DIR ${CMAKE_CURRENT_SOURCE_DIR} | |
SOFT_FLOAT_FALLBACK | |
) |
nrf_modem/doc/CHANGELOG.rst
Outdated
|
||
* Added the option to set a timeout for AT commands by calling the :c:func:`nrf_modem_at_sem_timeout_set` function. | ||
|
||
:ref:`AT interface <nrf_modem_gnss>` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AT interface
-> GNSS
nrf_modem/doc/CHANGELOG.rst
Outdated
|
||
* Added a DFU callback that will be called after a DFU with the result of the update. | ||
|
||
:ref:`Delta DFU <nrf_modem_delta_dfu>` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should point to the bootloader API
nrf_modem/include/nrf_modem_os.h
Outdated
@@ -96,7 +96,7 @@ void nrf_modem_os_busywait(int32_t usec); | |||
* | |||
* @param context Library context. | |||
* @param[in, out] timeout Timeout in milliseconds, or @c NRF_MODEM_OS_FOREVER for no timeout. | |||
* Specifies the timeout value on input and the remaining | |||
* Specifies the timeout value on input and the remainig |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is misspelled now
nrf_modem/doc/CHANGELOG.rst
Outdated
:ref:`AT interface <nrf_modem_at>` | ||
================================== | ||
|
||
* Added the option to set a timeout for AT commands by calling the :c:func:`nrf_modem_at_sem_timeout_set` function. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should rephrase this so that it is clearer that it's not a timeout for AT commands, but rather a timeout for how long AT commands shall wait for ongoing AT commands to complete.
06412ad
to
99f9f4a
Compare
We should include the SoftSIM documentation page, @MirkoCovizzi could you give that to Eivind? |
nrf_modem/doc/CHANGELOG.rst
Outdated
:ref:`Core library <architecture>` | ||
================================== | ||
|
||
* The DFU result is now returned by the :c:param:`dfu_callback` callback in :c:struct:`nrf_modem_init_params` struct. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* The DFU result is now returned by the :c:param:`dfu_callback` callback in :c:struct:`nrf_modem_init_params` struct. | |
* The DFU result is now returned by the :c:param:`dfu_callback` callback in the :c:struct:`nrf_modem_init_params` struct. |
|
||
* Replaced the :c:macro:`NRF_SO_BINDTODEVICE` socket option with :c:macro:`NRF_SO_BINDTOPDN`. The new option takes an integer for the PDN ID. | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Extra line?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some questions on docs.
c000bcc
to
4e3a240
Compare
nrf_modem/doc/CHANGELOG.rst
Outdated
:ref:`AT interface <nrf_modem_at>` | ||
================================== | ||
|
||
* Added the option to set a timeout for the time to wait for ongoing AT commands to complete by calling the :c:func:`nrf_modem_at_sem_timeout_set` function. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are missing one item here, the behavior of nrf_modem_at_cmd_async
has changed slightly.
nrf_modem_at_cmd_async
will now return immediately if there is another AT command pending.
Earlier, it only returned immediately if there was another AT command pending from an earlier nrf_modem_at_cmd_async
call.
Perhaps we can phrase it like so:
nrf_modem_at_cmd_async will now return immediately if there is another AT command pending, regardless of whether it was sent with nrf_modem_at_cmd_async or other API calls.
4e3a240
to
4430c72
Compare
8c6796b
to
1c1f020
Compare
b7910c1
to
da0ec09
Compare
da0ec09
to
e3e4951
Compare
e3e4951
to
ed84e8c
Compare
See CHANGELOG file for details. Co-authored-by: Mirko Covizzi <[email protected]> Co-authored-by: Tommi Kangas <[email protected]> Co-authored-by: Emanuele Di Santo <[email protected]> Co-authored-by: divya pillai <[email protected]> Signed-off-by: Eivind Jølsgard <[email protected]>
33bde26
to
ce30ae8
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Thanks for your patience, Divya!
See CHANGELOG file for details.