-
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
nrf_802154: Use DPPI and PPIB allocators on nRF54L #19153
base: main
Are you sure you want to change the base?
nrf_802154: Use DPPI and PPIB allocators on nRF54L #19153
Conversation
Automatically created by Github Action Signed-off-by: Nordic Builder <[email protected]>
The following west manifest projects have changed revision in this Pull Request: ⛔ DNM label due to: 1 project with PR revision Note: This message is automatically posted and updated by the Manifest GitHub Action. |
CI InformationTo view the history of this post, clich the 'edited' button above Inputs:Sources:sdk-nrf: PR head: 972aeb2c65a5bd47b96826d8a777db0ed5c87974 more detailssdk-nrf:
nrfxlib:
Github labels
List of changed files detected by CI (21)
Outputs:ToolchainVersion: b77d8c1312 Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped;
|
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. |
The GRTC LPTIMER platform implementation now uses the DPPI and PPIB allocators provided by NRFX, which avoids conflicts with other modules. Signed-off-by: Rafał Kuźnia <[email protected]>
static uint8_t peri_dppi_ch = -1; | ||
static uint8_t peri_ppib_ch = -1; |
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.
Assigning negative value to uint8_t
?
peri_dppi_ch = -1; | ||
peri_ppib_ch = -1; |
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.
these variables are uint8_t
, unsigned
static uint8_t peri_dppi_ch = -1; | ||
static uint8_t peri_ppib_ch = -1; |
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.
these variables are uint8_t, unsigned, assigning -1
Automatically created by action-manifest-pr GH action from PR: nrfconnect/sdk-nrfxlib#1594
The GRTC LPTIMER platform implementation now uses the DPPI and PPIB
allocators provided by NRFX, which avoids conflicts with other modules.