-
Notifications
You must be signed in to change notification settings - Fork 1.4k
mpsl: Add integration layer for MPSL external clock driver #19498
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
Changes from all commits
88a39b5
e6d42a1
5ef171c
233c61a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -18,4 +18,8 @@ if (CONFIG_MPSL_USE_ZEPHYR_PM) | |||||||
| add_subdirectory(pm) | ||||||||
| endif() | ||||||||
|
|
||||||||
| if (CONFIG_MPSL_USE_EXTERNAL_CLOCK_CONTROL) | ||||||||
|
||||||||
| if (CONFIG_MPSL_USE_EXTERNAL_CLOCK_CONTROL) | |
| if(CONFIG_MPSL_USE_EXTERNAL_CLOCK_CONTROL) |
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.
@nordicjm please see:
sdk-nrf/subsys/mpsl/CMakeLists.txt
Line 17 in 7815f14
| if (CONFIG_MPSL_USE_ZEPHYR_PM) |
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 file is wrong and needs fixing (outside the scope of this PR) but new code should be added correctly
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # | ||
| # Copyright (c) 2025 Nordic Semiconductor ASA | ||
| # | ||
| # SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
| # | ||
|
|
||
| zephyr_library() | ||
|
|
||
| zephyr_library_sources(mpsl_clock_ctrl.c) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| # | ||
| # Copyright (c) 2025 Nordic Semiconductor ASA | ||
| # | ||
| # SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
| # | ||
|
|
||
| config MPSL_USE_EXTERNAL_CLOCK_CONTROL | ||
| bool "Use external clock control [EXPERIMENTAL]" | ||
| depends on MPSL | ||
| select CLOCK_CONTROL | ||
| default y if SOC_SERIES_NRF54HX | ||
| select EXPERIMENTAL if SOC_SERIES_NRF52X || SOC_SERIES_NRF53X | ||
| help | ||
| This option configures MPSL to use an external clock driver, and | ||
| not the clock driver provided as part of the MPSL library. |
Uh oh!
There was an error while loading. Please reload this page.