Commit 3badfec 1 parent 209c3ed commit 3badfec Copy full SHA for 3badfec
File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ pub trait Error: core::fmt::Debug {
74
74
pub enum ErrorKind {
75
75
/// The peripheral receive buffer was overrun
76
76
Overrun ,
77
- /// Multiple devices on the SPI bus are trying across each other , e.g. in a multi-master setup
77
+ /// Multiple devices on the SPI bus are trying to drive the slave select pin , e.g. in a multi-master setup
78
78
ModeFault ,
79
79
/// CRC does not match the received data
80
80
Crc ,
@@ -96,7 +96,7 @@ impl core::fmt::Display for ErrorKind {
96
96
Self :: Overrun => write ! ( f, "The peripheral receive buffer was overrun" ) ,
97
97
Self :: ModeFault => write ! (
98
98
f,
99
- "Multiple devices on the SPI bus are trying across each other "
99
+ "Multiple devices on the SPI bus are trying to drive the slave select pin "
100
100
) ,
101
101
Self :: Crc => write ! ( f, "CRC does not match the received data" ) ,
102
102
Self :: FrameFormat => write ! (
You can’t perform that action at this time.
0 commit comments