[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [avr-chat] Alternatives for minicom
From: |
schneider |
Subject: |
Re: [avr-chat] Alternatives for minicom |
Date: |
Mon, 07 Mar 2011 14:14:19 +0100 |
On Mon, 2011-03-07 at 10:08 +0100, Piotr Nikiel wrote:
> doing screen /dev/your.serial.port
> is usually another nice solution, as long as you are able to setup parameters
> of your port beforehand, using e.g. stty or other console utilities.
You can just do "screen /dev/ttyYourPort baudrate" which also sets the
baudrate of the serial port.
If you kill the screen the settings will still be set on the port and
you can use it just like file. For example you could to this:
cat /dev/ttyYourPort | hexdump -C
To get the data from the port as a hexdump.
Greetings,
Tobias