diff --git a/subsys/power/policy/policy_residency_cc13x2_cc26x2.c b/subsys/power/policy/policy_residency_cc13x2_cc26x2.c index 265e0c02ee6..96c86c49920 100644 --- a/subsys/power/policy/policy_residency_cc13x2_cc26x2.c +++ b/subsys/power/policy/policy_residency_cc13x2_cc26x2.c @@ -140,3 +140,8 @@ enum power_states sys_pm_policy_next_state(s32_t ticks) LOG_DBG("No suitable power state found!"); return SYS_POWER_STATE_ACTIVE; } + +__weak bool sys_pm_policy_low_power_devices(enum power_states pm_state) +{ + return (pm_state == SYS_POWER_STATE_SLEEP_2); +}