-
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
mpsl: make mpsl sw interrupt kconfig configurable #13362
mpsl: make mpsl sw interrupt kconfig configurable #13362
Conversation
Test specificationCI/Jenkins/NRF
CI/Jenkins/integration
Detailed information of selected test modules Note: This message is automatically posted and updated by the CI |
c200a41
to
11b9e47
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 Publishing GitHub Action. |
subsys/mpsl/init/Kconfig
Outdated
@@ -56,6 +56,14 @@ config MPSL_TRIGGER_IPC_TASK_ON_RTC_START_CHANNEL | |||
The application core part of the code needs to be aware of | |||
which channel is used. | |||
|
|||
config MPSL_LOW_PRIO_IRQN | |||
int | |||
default $(dt_node_array_prop_int,$(dt_nodelabel_path,swi5),interrupts,0) if SOC_COMPATIBLE_NRF52X |
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.
discussed OOB: I suggest to drop the dts complexity and "just hardcode" the number.
When we do have to revisit this, I propose we do the right thing (IMO) and add a mpsl driver and configure the SWI through a property.
11b9e47
to
de71998
Compare
The following west manifest projects have been modified in this Pull Request:
Note: This message is automatically posted and updated by the Manifest GitHub Action. |
376ab37
to
c6ca011
Compare
Make the SW interrupt that MPSL is using configurable through KConfig. Like that, MPSL can better cooperate with other libraries that might use the same SW interrupt. Signed-off-by: Jan Müller <[email protected]>
Update the MPSL documentation in nrfxlib. Signed-off-by: Jan Müller <[email protected]>
c6ca011
to
7d68f5a
Compare
Make the SW interrupt that MPSL is using configurable through KConfig. Like that, MPSL can better cooperate with other libraries that might use the same SW interrupt.