We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d81cf7c commit c4a8eb7Copy full SHA for c4a8eb7
src/spi.rs
@@ -10,6 +10,9 @@ use nb;
10
///
11
/// - Due to how full duplex SPI works each `read` call must be preceded by a `send` call.
12
13
+/// - `read` calls only return the data received with the last `send` call.
14
+/// Previously received data is discarded
15
+///
16
/// - Some SPIs can work with 8-bit *and* 16-bit words. You can overload this trait with different
17
/// `Word` types to allow operation in both modes.
18
pub trait FullDuplex<Word> {
0 commit comments