chore(hid): 删除 CH9329 收发 trace 日志

This commit is contained in:
mofeng-git
2026-03-26 23:05:49 +08:00
parent e09a906f93
commit 762a3b037d

View File

@@ -569,7 +569,6 @@ impl Ch9329Backend {
port.write_all(&packet).map_err(|e| {
Self::backend_error(format!("Failed to write to CH9329: {}", e), "write_failed")
})?;
trace!("CH9329 TX [cmd=0x{:02X}]: {:02X?}", cmd, packet);
Ok(())
}
@@ -624,7 +623,6 @@ impl Ch9329Backend {
match port.read(&mut chunk) {
Ok(n) if n > 0 => {
pending.extend_from_slice(&chunk[..n]);
trace!("CH9329 RX pending: {:02X?}", pending);
while let Some((response, consumed)) = Self::try_extract_response(&pending) {
pending.drain(..consumed);