Changes between Version 3 and Version 4 of UsefulTools


Ignore:
Timestamp:
Nov 26, 2013, 2:53:55 PM (11 years ago)
Author:
Marek Kurdej
Comment:

Added: minicom, kermit, reading, writing from the console

Legend:

Unmodified
Added
Removed
Modified
  • UsefulTools

    v3 v4  
    1515== Debugging COM port connection ==
    1616
     17=== Windows ===
    1718* [[attachment:hypertrm.zip|HyperTerminal]] ([http://windows.microsoft.com/en-us/windows-vista/what-happened-to-hyperterminal available on Windows before Vista])
     19
     20=== Linux ===
     21* [https://en.wikipedia.org/wiki/Kermit_(protocol) kermit]
     22* [https://en.wikipedia.org/wiki/Minicom minicom]
     23
     24Writing to a COM port using terminal (supposing that we use port ```ttyS0```/COM1):
     25{{{#!sh
     26cat /dev/ttyS0
     27}}}
     28
     29Reading from a COM port using terminal (supposing that we use port ```ttyS0```/COM1):
     30{{{#!sh
     31echo "message" > /dev/ttyS0
     32}}}
     33
     34**Note:** on Linux, ```ttyS0``` corresponds to ```COM1```, ```ttyS1``` to ```COM2```, etc. (0-based counting).