Skip to content

Commit 21c442c

Browse files
Josh-Tsaiamstan
authored andcommitted
fwk: dogwood: reduce TIMEOUT_5VSB_MIN to 1 minute
The average power consumption exceeds 5W with TIMEOUT_5VSB_MIN set to 3 minutes. Change the value to 1 minute to reduce the average power consumption. BRANCH=fwk-dogwood-27111 BUG=power consumption exceeds 5W when the system is in standby mode TEST=measure the average power consumption is 3.45W when the system is in the standby mode. Signed-off-by: Josh Tsai <Josh_Tsai@compal.com>
1 parent 4c4b1bc commit 21c442c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zephyr/program/framework/dogwood/src/power_sequence.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
* After every low-power entry we'll *= by _INCREASE_FACTOR.
5353
* for a max of _MAX
5454
*/
55-
#define TIMEOUT_5VSB_MIN (3 * MINUTE)
55+
#define TIMEOUT_5VSB_MIN (1 * MINUTE)
5656
#define TIMEOUT_5VSB_INCREASE_FACTOR 2
5757
#define TIMEOUT_5VSB_MAX (30 * MINUTE)
5858
static int timeout_5vsb = TIMEOUT_5VSB_MIN;

0 commit comments

Comments
 (0)