From d9243947c526a03da6054202f0a2b99e8a5ba3dc Mon Sep 17 00:00:00 2001 From: Jeroen Meulemeester Date: Mon, 9 Oct 2017 23:00:02 +0200 Subject: [PATCH 1/2] microcom: add page --- pages/linux/microcom.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pages/linux/microcom.md diff --git a/pages/linux/microcom.md b/pages/linux/microcom.md new file mode 100644 index 000000000..2275a1b3e --- /dev/null +++ b/pages/linux/microcom.md @@ -0,0 +1,11 @@ +# microcom + +> A minimalistic terminal program. + +- Open a serial port using the specified baudrate: + +`microcom --port {{path/to/serial-port}} --speed {{baudrate}}` + +- Establish a telnet connection (rfc2217) to the specified host: + +`microcom --telnet {{hostname}}:{{port}}` From 94e2496c296da600e9afa660acb96e817ce2465d Mon Sep 17 00:00:00 2001 From: Jeroen Meulemeester Date: Thu, 12 Oct 2017 00:12:15 +0200 Subject: [PATCH 2/2] microcom: Fix various review comments - Expand the description to prevent confusion - Use 'baud rate' instead of baudrate - Replace '-' chars in example parameter values with '_' - Remove the telnet RFC number --- pages/linux/microcom.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/linux/microcom.md b/pages/linux/microcom.md index 2275a1b3e..460cd69de 100644 --- a/pages/linux/microcom.md +++ b/pages/linux/microcom.md @@ -1,11 +1,11 @@ # microcom -> A minimalistic terminal program. +> A minimalistic terminal program, used to access remote devices via a serial, CAN or telnet connection from the console. -- Open a serial port using the specified baudrate: +- Open a serial port using the specified baud rate: -`microcom --port {{path/to/serial-port}} --speed {{baudrate}}` +`microcom --port {{path/to/serial_port}} --speed {{baud_rate}}` -- Establish a telnet connection (rfc2217) to the specified host: +- Establish a telnet connection to the specified host: `microcom --telnet {{hostname}}:{{port}}`