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.
1 parent 5e33ded commit b23e287Copy full SHA for b23e287
hil-test/tests/rmt.rs
@@ -106,12 +106,12 @@ mod tests {
106
107
let rx_transaction = rx_channel.receive(&mut rcv_data).unwrap();
108
let tx_transaction = tx_channel.transmit(&tx_data);
109
- tx_transaction.wait().unwrap();
110
111
- rx_transaction.wait().unwrap(); // HERE ESP32 hangs
+ rx_transaction.wait().unwrap();
+ tx_transaction.wait().unwrap();
112
113
- // the last two pulse-codes are the ones which wait for the timeout so they
114
- // can't be equal
+ // the last two pulse-codes are the ones which wait for the timeout so
+ // they can't be equal
115
assert_eq!(&tx_data[..18], &rcv_data[..18]);
116
}
117
0 commit comments