We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a7a86f commit aba960cCopy full SHA for aba960c
soc/nordic/nrf54h/power.c
@@ -18,6 +18,14 @@
18
19
extern sys_snode_t soc_node;
20
21
+__weak void nrf54h_custom_suspend(void)
22
+{
23
+}
24
+
25
+__weak void nrf54h_custom_resume(void)
26
27
28
29
static void common_suspend(void)
30
{
31
if (IS_ENABLED(CONFIG_DCACHE)) {
@@ -36,6 +44,7 @@ static void common_suspend(void)
36
44
}
37
45
38
46
soc_lrcconf_poweron_release(&soc_node, NRF_LRCCONF_POWER_DOMAIN_0);
47
+ nrf54h_custom_suspend();
39
48
40
49
41
50
static void common_resume(void)
@@ -55,6 +64,7 @@ static void common_resume(void)
55
64
56
65
57
66
soc_lrcconf_poweron_request(&soc_node, NRF_LRCCONF_POWER_DOMAIN_0);
67
+ nrf54h_custom_resume();
58
68
59
69
60
70
void nrf_poweroff(void)
0 commit comments