Convert CONFIG_USB_XHCI_OMAP to Kconfig
[platform/kernel/u-boot.git] / doc / usage / conitrace.rst
1 conitrace command
2 =================
3
4 Synopsis
5 --------
6
7 ::
8
9     conitrace
10
11 Description
12 -----------
13
14 The conitrace command is used to test the correct function of the console input
15 driver. It is especially valuable for checking the support for special keys like
16 <F1> or <POS1>.
17
18 To display escape sequences on a single line the output only advances to the
19 next line after detecting a pause of a few milliseconds.
20
21 The output is hexadecimal.
22
23 Examples
24 --------
25
26 Entering keys <B><SHIFT-B><CTRL-B><X>
27
28 ::
29
30     => conitrace
31     Waiting for your input
32     To terminate type 'x'
33     62
34     42
35     02
36     =>
37
38 Entering keys <F1><POS1><DEL><BACKSPACE><X>
39
40 ::
41
42     => conitrace
43     Waiting for your input
44     To terminate type 'x'
45     1b 4f 50
46     1b 5b 48
47     1b 5b 33 7e
48     7f
49     =>
50
51 Configuration
52 -------------
53
54 The conitrace command is only available if CONFIG_CMD_CONITRACE=y.