conitrace.rst 874 B

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