Browse Source

Accurately set DPM minimum current

I took an accurate reading of the current consumed by the PD Buddy Sink
in various states, and found that the lowest current I could safely set
as the amount it requests when the output is turned off was 30 mA.
I therefore changed it to request this lower current to avoid asking for
more than we need.
Clara Hobbs 5 years ago
parent
commit
88766783de
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/device_policy_manager.c

+ 1
- 1
src/device_policy_manager.c View File

@@ -29,7 +29,7 @@
29 29
 
30 30
 
31 31
 /* The current draw when the output is disabled */
32
-#define DPM_MIN_CURRENT PD_MA2PDI(100)
32
+#define DPM_MIN_CURRENT PD_MA2PDI(30)
33 33
 
34 34
 
35 35
 /*

Loading…
Cancel
Save