-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
lib: nrf_modem: deprecate init ret function #8380
Conversation
You can find the documentation preview for this PR at this link. It will be updated about 10 minutes after the documentation build succeeds. Note: This comment is automatically posted by the Documentation Publishing GitHub Action. |
struct update_counter counter; | ||
|
||
/* Handle return values relating to modem firmware update */ | ||
ret = modem_lib_init_result; |
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.
ret = modem_lib_init_result; | |
int ret = modem_lib_init_result; | |
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.
LGTM, just definitely include that change suggested by @jayteemo
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.
Nice!
There is one occurrence in the azure_fota
sample that is yet to be addressed in addition to the lwm2m library.
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.
Modem shell looks fine
Integration test specification
Detailed information of selected test modules Note: This message is automatically posted and updated by the CI |
Changes look fine, but we need a changelog entry for this. |
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.
lgtm
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 fine from modem_shell
point of view.
* Deprecated: | ||
|
||
* The following functions: | ||
|
||
* ``nrf_modem_lib_get_init_ret`` |
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.
* Deprecated: | |
* The following functions: | |
* ``nrf_modem_lib_get_init_ret`` | |
* Deprecated the ``nrf_modem_lib_get_init_ret`` 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.
SLM update LGTM
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
This commit deprecates the `nrf_modem_lib_get_init_ret` function in favor of init hooks. Signed-off-by: Mirko Covizzi <mirko.covizzi@nordicsemi.no>
Thingy91 tests have finally passed, merging. |
This commit deprecates the
nrf_modem_lib_get_init_ret
functionin favor of init hooks.
Signed-off-by: Mirko Covizzi mirko.covizzi@nordicsemi.no