-
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
suit: in-place updateable components #19760
base: main
Are you sure you want to change the base?
Conversation
CI InformationTo view the history of this post, clich the 'edited' button above Inputs:Sources:sdk-nrf: PR head: 616e493e7718bb70e2d6806d2ab604b36a3bf82f more detailssdk-nrf:
Github labels
List of changed files detected by CI (40)
Outputs:ToolchainVersion: 11349092be Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped;
|
6bfc33c
to
dc2b027
Compare
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 Publish GitHub Action. |
f47894d
to
3ffeeca
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.
Few minor findings
3ffeeca
to
f474d4c
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.
In a couple of places related to memory reading and writing, it seems that very "advanced" tools are used, while much simpler ones are necessary.
f474d4c
to
71c6335
Compare
71c6335
to
1711f34
Compare
*role = rsp_data->SSF_SUIT_RSP_ARG(get_ipuc_info, role); | ||
ssf_client_decode_done(rsp_pkt); | ||
|
||
#if (defined CONFIG_SUIT_LOG_LEVEL_INF || defined CONFIG_SUIT_LOG_LEVEL_DBG) |
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.
#if (defined CONFIG_SUIT_LOG_LEVEL_INF || defined CONFIG_SUIT_LOG_LEVEL_DBG) | |
#if defined(CONFIG_SUIT_LOG_LEVEL_INF) || defined(CONFIG_SUIT_LOG_LEVEL_DBG) |
Apply bracket changes throughout whole PR
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.
done
@@ -93,7 +93,8 @@ endif() | |||
|
|||
if (CONFIG_MOCK_SUIT_IPUC) |
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.
should not be a space here (fix in a later cleanup PR)
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.
when time comes
1711f34
to
bb5dbbd
Compare
bb5dbbd
to
88c77d7
Compare
Extension of SUIT in-place updateable component module. Support for an access to IPUC from IPC client added. Ref: NCSDK-30808 Signed-off-by: Sylwester Konczyk <[email protected]>
88c77d7
to
616e493
Compare
Extension of SUIT in-place updateable component module. Support for an access to IPUC from IPC client added.
Ref: NCSDK-30808