File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ use nb;
8
8
///
9
9
/// - It's the task of the user of this interface to manage the slave select lines
10
10
///
11
- /// - Due to how full duplex SPI works each `read ` call must be preceded by a `send ` call.
11
+ /// - Due to how full duplex SPI works each `try_read ` call must be preceded by a `try_send ` call.
12
12
///
13
- /// - `read ` calls only return the data received with the last `send` call.
13
+ /// - `try_read ` calls only return the data received with the last `send` call.
14
14
/// Previously received data is discarded
15
15
///
16
- /// - Data is only guaranteed to be clocked out when the `read ` call succeeds.
16
+ /// - Data is only guaranteed to be clocked out when the `try_read ` call succeeds.
17
17
/// The slave select line shouldn't be released before that.
18
18
///
19
19
/// - Some SPIs can work with 8-bit *and* 16-bit words. You can overload this trait with different
You can’t perform that action at this time.
0 commit comments