I have an FTDI USB/serial device at /dev/ttyUSB0. I set up my channel with
% set channel [open /dev/ttyUSB0 r+]
file3
% chan configure $channel -mode "76800,n,8,1" -buffering none -blocking 0 -translation auto
which works just fine for Tcl on Windows. On Linux, baud rate queries show
% puts [chan configure $channel -mode]
57600,n,8,1
and I get all the garbage you'd expect from trying to communicate at the wrong baud rate. I saw this previous post: fconfigure refuses to set baud rate to 921600 ...reference a fixed set of baud rates in the Tcl source. Is there a way for me to add my non-standard baud rate to get communication to work under both Windows and Linux?