Skip to content

Commit

Permalink
board default: enable Power Management per default for radio core
Browse files Browse the repository at this point in the history
This commit is just to test, no plan on merging this branch.

Signed-off-by: Kyra Lengfeld <[email protected]>
  • Loading branch information
KyraLengfeld committed Nov 27, 2024
1 parent c4d2187 commit 2872efb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions subsys/mpsl/pm/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ config MPSL_USE_ZEPHYR_PM
depends on SOC_SERIES_NRF54HX
depends on MPSL
depends on PM
default y
help
This option configures MPSL to use Zephyr's Power Management.
3 changes: 2 additions & 1 deletion subsys/mpsl/pm/mpsl_pm_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ LOG_MODULE_REGISTER(mpsl_pm_utils, CONFIG_MPSL_LOG_LEVEL);
* margins and allow optimal power savings.
*/
#define TIME_TO_REGISTER_EVENT_IN_ZEPHYR_US 1000
#define PM_MAX_LATENCY_HCI_COMMANDS_US 499999
/* depends on min-residency-us of idle RAM not retained*/
#define PM_MAX_LATENCY_HCI_COMMANDS_US (1000 - 1)

static void m_work_handler(struct k_work *work);
static K_WORK_DELAYABLE_DEFINE(pm_work, m_work_handler);
Expand Down
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ manifest:
# https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/guides/modules.html
- name: zephyr
repo-path: sdk-zephyr
revision: 8bc628d8945cb7bb01f57c92c00b5f1550ed576c
revision: pull/2290/head
import:
# In addition to the zephyr repository itself, NCS also
# imports the contents of zephyr/west.yml at the above
Expand Down

0 comments on commit 2872efb

Please sign in to comment.