Skip to content

Commit eed613c

Browse files
committed
fix(nusb-0.2): incorrect EP for rx impl
1 parent 356fd37 commit eed613c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • source/postcard-rpc/src/host_client/raw_nusb

source/postcard-rpc/src/host_client/raw_nusb/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ where
279279
tracing::debug!("IN EP: {ep_in}");
280280

281281
let tx = _impl::make_tx_impl(&interface, ep_out, mps)?;
282-
let rx = _impl::make_rx_impl(&interface, ep_out)?;
282+
let rx = _impl::make_rx_impl(&interface, ep_in)?;
283283

284284
Ok(HostClient::new_with_wire(
285285
tx,

0 commit comments

Comments
 (0)