We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28dc8c3 commit ed105efCopy full SHA for ed105ef
src/errors.rs
@@ -28,8 +28,6 @@ pub mod i2c {
28
NoAcknowledge,
29
/// The peripheral receive buffer was overrun
30
Overrun,
31
- /// The peripheral send buffer ran out of data
32
- Underrun,
33
/// A different error occurred. The original error may contain more information.
34
Other,
35
}
@@ -50,7 +48,6 @@ pub mod i2c {
50
48
),
51
49
Self::NoAcknowledge => write!(f, "A bus operation was not acknowledged"),
52
Self::Overrun => write!(f, "The peripheral receive buffer was overrun"),
53
- Self::Underrun => write!(f, "The peripheral send buffer ran out of data"),
54
Self::Other => write!(
55
f,
56
"A different error occurred. The original error may contain more information"
0 commit comments