We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a755c3 commit 0b15412Copy full SHA for 0b15412
openemc-firmware/src/supply/mod.rs
@@ -110,12 +110,12 @@ impl PowerSupply {
110
pub fn max_current_ma(&self) -> u32 {
111
match self {
112
Self::Unknown | Self::Disconnected => 0,
113
- Self::Ps2 | Self::UsbSdp => 100,
+ Self::Ps2 | Self::UsbSdp => 500,
114
Self::UsbDcp | Self::UsbCdp => 1500,
115
Self::PdoContract { max_current_ma, .. } => *max_current_ma,
116
Self::CcPins5V1500mA => 1500,
117
Self::CcPins5V3000mA => 3000,
118
- Self::Negotiating => 100,
+ Self::Negotiating => 500,
119
}
120
121
0 commit comments