We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9f9df49 + 4942e1c commit 8ff67b6Copy full SHA for 8ff67b6
framework_lib/src/ccgx/device.rs
@@ -181,6 +181,11 @@ impl PdController {
181
}
182
183
fn i2c_read(&self, addr: u16, len: u16) -> EcResult<EcI2cPassthruResponse> {
184
+ trace!(
185
+ "I2C passthrough from I2C Port {} to I2C Addr {}",
186
+ self.port.i2c_port().unwrap(),
187
+ self.port.i2c_address()
188
+ );
189
trace!("i2c_read(addr: {}, len: {})", addr, len);
190
if usize::from(len) > MAX_I2C_CHUNK {
191
return EcResult::Err(EcError::DeviceError(format!(
0 commit comments