pmconfig: add last state and modify current state to next state

Signed-off-by: zhuyanlin <zhuyanlin1@xiaomi.com>
This commit is contained in:
zhuyanlin 2022-05-06 19:31:12 +08:00 committed by Xiang Xiao
parent 3821121a2e
commit 23584669c5

View File

@ -180,7 +180,8 @@ int cmd_pmconfig(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
if (argc <= 2) if (argc <= 2)
{ {
int current_state; int next_state;
int last_state;
int normal_count; int normal_count;
int idle_count; int idle_count;
int standby_count; int standby_count;
@ -193,7 +194,11 @@ int cmd_pmconfig(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
ctrl.action = BOARDIOC_PM_QUERYSTATE; ctrl.action = BOARDIOC_PM_QUERYSTATE;
boardctl(BOARDIOC_PM_CONTROL, (uintptr_t)&ctrl); boardctl(BOARDIOC_PM_CONTROL, (uintptr_t)&ctrl);
current_state = ctrl.state; last_state = ctrl.state;
ctrl.action = BOARDIOC_PM_CHECKSTATE;
boardctl(BOARDIOC_PM_CONTROL, (uintptr_t)&ctrl);
next_state = ctrl.state;
ctrl.action = BOARDIOC_PM_STAYCOUNT; ctrl.action = BOARDIOC_PM_STAYCOUNT;
ctrl.state = PM_NORMAL; ctrl.state = PM_NORMAL;
@ -212,8 +217,10 @@ int cmd_pmconfig(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
boardctl(BOARDIOC_PM_CONTROL, (uintptr_t)&ctrl); boardctl(BOARDIOC_PM_CONTROL, (uintptr_t)&ctrl);
sleep_count = ctrl.count; sleep_count = ctrl.count;
nsh_output(vtbl, "Current state %d, PM stay [%d, %d, %d, %d]\n", nsh_output(vtbl, "Last state %d, Next state %d",
current_state, normal_count, idle_count, standby_count, sleep_count); "PM stay [%d, %d, %d, %d]\n",
last_state, next_state, normal_count, idle_count,
standby_count, sleep_count);
} }
else if (argc <= 4) else if (argc <= 4)
{ {