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
use fmt;
use SerialPort;
/// Serial port driver which implements [`core::fmt::Write`][].
///
/// ```rust,no_run
/// use com_logger::Serial;
///
/// fn main() {
/// // Setup COM1 serial port.
/// let mut s = Serial::new(0x3f8);
/// s.init();
///
/// // Write the single byte to the serial port.
/// s.write(b'P');
///
/// // Write the string to the serial port.
/// core::fmt::write(&mut s, format_args!("Hello {}", 0xdead));
/// }
/// ```
;