diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html
index 7567e4f65d..5a6de2f947 100644
--- a/Documentation/NuttxPortingGuide.html
+++ b/Documentation/NuttxPortingGuide.html
@@ -5698,7 +5698,7 @@ Zero (OK
) on success; otherwise a negated errno
value
Function Prototype:
#include <nuttx/power/pm.h> -void pm_activity(int priority); +void pm_activity(int domain, int priority);
Description: This function is called by a device driver to indicate that it is performing meaningful activities (non-idle). @@ -5706,6 +5706,8 @@ void pm_activity(int priority);
Input Parameters:
domain
+ priority
Function Prototype:
#include <nuttx/power/pm.h> -enum pm_state_e pm_checkstate(void); +enum pm_state_e pm_checkstate(int domain);
Description: This function is called from the MCU-specific IDLE loop to monitor the power management conditions. @@ -5742,7 +5744,10 @@ enum pm_state_e pm_checkstate(void); The IDLE loop may need to make these calls atomic by either disabling interrupts until the state change is completed.
Input Parameters: - None +
domain
+ Returned Value: The recommended power management state.