blob: d9916c865ee55c073fcaa26e21eef859cc7e4f19 [file] [log] [blame]
Heinrich Schuchardt5b6dac02021-01-25 01:11:47 +01001conitrace command
2=================
3
4Synopsis
5--------
6
7::
8
9 conitrace
10
11Description
12-----------
13
14The conitrace command is used to test the correct function of the console input
15driver. It is especially valuable for checking the support for special keys like
16<F1> or <POS1>.
17
18To display escape sequences on a single line the output only advances to the
19next line after detecting a pause of a few milliseconds.
20
21The output is hexadecimal.
22
23Examples
24--------
25
26Entering 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
38Entering 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
51Configuration
52-------------
53
54The conitrace command is only available if CONFIG_CMD_CONITRACE=y.