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
// SPDX-License-Identifier: MPL-2.0
//! The console I/O.
use fmt;
use Write;
/// Prints the formatted arguments to the standard output using the serial port.
/// The callback function for console input.
pub type InputCallback = dyn Fn + Send + Sync + 'static;
/// Registers a callback function to be called when there is console input.
;
/// Initializes the serial port.
pub
/// Sends a byte on the serial port.