mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
Many modern RS-485 serial devices such as the ones from FTDI already operate in RS-485 mode by default and will work with tio out of the box. However, there are some RS-232/485 devices which need to be switched from e.g. RS-232 to RS-485 mode to operate accordingly on the physical level. This commit implements the switching mechanism and interface required to enable RS-485 mode. It only works on Linux and with serial devices which use device drivers that support the Linux RS-485 control interface. The RS-485 feature is detailed via the following options: --rs-485 Enable RS-485 mode --rs-485-config <config> Set RS-485 configuration Set the RS-485 configuration using the following key or key value pair format in the configuration field: RTS_ON_SEND=value Set logical level (0 or 1) for RTS pin when sending RTS_AFTER_SEND=value Set logical level (0 or 1) for RTS pin after sending RTS_DELAY_BEFORE_SEND=value Set RTS delay (ms) before sending RTS_DELAY_AFTER_SEND=value Set RTS delay (ms) after sending RX_DURING_TX Receive data even while sending data If defining more than one key or key value pair, they must be comma separated. Example use: $ tio /dev/ttyUSB0 --rs-485 --rs-r485-config=RTS_DELAY_AFTER_SEND=50,RX_DURING_TX
52 lines
1.1 KiB
Text
52 lines
1.1 KiB
Text
###############################
|
|
# tio - https://tio.github.io #
|
|
###############################
|
|
|
|
# Example configuration file
|
|
|
|
# Defaults
|
|
baudrate = 115200
|
|
databits = 8
|
|
flow = none
|
|
stopbits = 1
|
|
parity = none
|
|
prefix-ctrl-key = t
|
|
output-delay = 0
|
|
output-line-delay = 0
|
|
no-autoconnect = disable
|
|
hexadecimal = disable
|
|
timestamp = disable
|
|
color = bold
|
|
|
|
# Sub-configuraions
|
|
|
|
[rpi3]
|
|
baudrate = 115200
|
|
tty = /dev/serial/by-id/usb-FTDI_FT232R_USB_UART_A6009HU3-if00-port0
|
|
socket = unix:/tmp/tio-socket-0
|
|
color = 9
|
|
|
|
[am64-evm]
|
|
baudrate = 115200
|
|
tty = /dev/serial/by-id/usb-Silicon_Labs_CP2105_Dual_USB_to_UART_Bridge_Controller_01093176-if01-port0
|
|
line-pulse-duration = DTR=200,RTS=300,RI=50
|
|
color = 10
|
|
|
|
[tincan]
|
|
baudrate = 9600
|
|
tty = /dev/serial/by-id/usb-TinCanTools_Flyswatter2_FS20000-if00-port0
|
|
log = enable
|
|
log-file = tincan.log
|
|
log-strip = enable
|
|
color = 11
|
|
|
|
[usb devices]
|
|
pattern = usb([0-9]*)
|
|
tty = /dev/ttyUSB%s
|
|
color = 12
|
|
|
|
[rs-485-device]
|
|
tty = /dev/ttyUSB0
|
|
rs-485 = enable
|
|
rs-485-config = RTS_ON_SEND=1,RTS_AFTER_SEND=1,RTS_DELAY_BEFORE_SEND=60,RTS_DELAY_AFTER_SEND=80,RX_DURING_TX
|
|
color = 13
|