ttybus icon indicating copy to clipboard operation
ttybus copied to clipboard

A simple TTY multiplexer.

Results 7 ttybus issues
Sort by recently updated
recently updated
newest added

I would like to use your tool to read from one physical serial device with two apps and both of them seing the same data read. One of those apps...

I think I understood what was going on with my application. The tty_mux socket might be filling its buffer after some time, and then things do not work well anymore....

The README.md file currently states "a shared, *non-reliable* bus" and this is scaring off some of my coworkers from adopting this as a solution to a current problem we have....

Obviously I can just choose to not write to the port, but for the sake of safety in certain applications, it helps to know that there is a guardrail in...

I'm not sure if this is a bug or not, but I am using scenario #1 where I have a program communicating with a hardware serial device and I want...

First of all thank you for this tool, I'm trying to use it on a simulated serial device, that writes on /dev/ptmx and output in a pseudoterminal /dev/pts/[number], and I'd...

https://github.com/danielinux/ttybus/blob/32e9a9edda3717a1244e394dc59e02e1e469cee0/tty_attach.c#L100 ``` - realdev = open(devname, O_RDWR); + realdev = open(devname, O_RDWR|O_NOCTTY|O_NONBLOCK); ```