We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7567f3 commit 32125c0Copy full SHA for 32125c0
src/spi.rs
@@ -13,6 +13,9 @@ use nb;
13
/// - `read` calls only return the data received with the last `send` call.
14
/// Previously received data is discarded
15
///
16
+/// - Data is only guaranteed to be clocked out when the read call succeeds.
17
+/// The slave select line shouldn't be released before that.
18
+///
19
/// - Some SPIs can work with 8-bit *and* 16-bit words. You can overload this trait with different
20
/// `Word` types to allow operation in both modes.
21
pub trait FullDuplex<Word> {
0 commit comments