1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
//! Some common definations and types of this trait.
// use core::fmt;
/// The result type for all possible-failure function.
pub type Result<T> = Result;
/// The error list.
///
/// Every MCU fireware libraries may has their own error types.
/// So every implementation crates need to convert between the real error types and these types.
// impl fmt::Display for Error {
// fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
// match self {
// Error::Param => write!(f, "Ok"),
// Error::PeripheralBusy => write!(f, "Ok"),
// Error::WaitTimeout => write!(f, "Ok"),
// Error::Unknown => write!(f, "Ok"),
// }
// }
// }
/// The async transmission kind for some communication peripheral like UART, I2C and so on.
///
/// For async transmission, it means you could not blocking to wait the transmission action completed.
/// You can switch the processor to do other codes when wait for the remote feedback signal or in the
/// time of register operation.
/// The transmission direction.
/// The state of a transmission action, including sending and receiving.