Skip to content

Commit

Permalink
2.1: release
Browse files Browse the repository at this point in the history
  • Loading branch information
zvezdochiot committed Oct 15, 2022
1 parent d29de9f commit 21cee9c
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 6 deletions.
33 changes: 32 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@

=== tio v2.0 ===
=== tio v2.1 ===


Changes since tio v2.0:

* Fix output line delay

Apply output line delay on lines ending with \n.

On most systems lines ends with \n or \r\n.

* Do not print timestamps in hex mode

* Improve input mechanism in hex mode

Print the 2 character hex code that you input in hex mode but then
delete it before sending. This way it is easier to keep track of what
you are inputting. It basically mimics the ctrl-shift-u input mechanism
that is used to input unicode.

* Add support for sending prefix character to serial device

Do so by inputting prefix key twice, e.g. input ctrl-t ctrl-t to send
ctrl-t character to serial device.

* Clean up indentation

* Update example tiorc

Attila Veghelyi:

* Add bit reverse order feature



Expand Down
12 changes: 7 additions & 5 deletions man/man1/tio.1.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tio(1) User Commands tio(1)
tio(1) User Commands tio(1)

NAME
tio - a simple serial device I/O tool
Expand Down Expand Up @@ -66,7 +66,7 @@ OPTIONS

Disable automatic connect.

By default tio automatically connects to the provided device if present. If the device is not present, it will wait for it to appear and then connect. If the connection is lost
By default tio automatically connects to the provided device if present. If the device is not present, it will wait for it to appear and then connect. If the connection is lost
(eg. device disconnects), it will wait for the device to reappear and then reconnect.

However, if the --no-autoconnect option is provided, tio will exit if the device is not present or an established connection is lost.
Expand Down Expand Up @@ -151,8 +151,8 @@ OPTIONS

Redirect I/O to socket.

Any input from clients connected to the socket is sent on the serial port as if entered at the terminal where tio is running (except that ctrl-t sequences are not recognized),
and any input from the serial port is multiplexed to the terminal and all connected clients.
Any input from clients connected to the socket is sent on the serial port as if entered at the terminal where tio is running (except that ctrl-t sequences are not recognized), and
any input from the serial port is multiplexed to the terminal and all connected clients.

Sockets remain open while the serial port is disconnected, and writes will block.

Expand Down Expand Up @@ -245,6 +245,8 @@ KEYS

ctrl-t v Show version

ctrl-t ctrl-t Send ctrl-t character

HEXADECIMAL MODE
In hexadecimal mode each incoming byte is printed out as a hexadecimal value.

Expand Down Expand Up @@ -438,4 +440,4 @@ WEBSITE
AUTHOR
Created by Martin Lund <[email protected]>.

tio 2.0 2022-09-11 tio(1)
tio 2.1 2022-10-15 tio(1)

0 comments on commit 21cee9c

Please sign in to comment.