Solved? - Re: Test serial port application

2023-12-24 Thread Robert Moskowitz
I have found socat: socat -d -d pty,rawer,echo=0 pty,rawer,echo=0 on my system that is creating /dev/pts/18 and 19 and I can run screen to them and type back and forth.  So I SHOULD be able to simply use this... On 12/24/23 08:21, Roger Heflin wrote: If you have the arduino app attach to th

Re: Test serial port application

2023-12-24 Thread Roger Heflin
If you have the arduino app attach to the port and then exit the arduino port (once it has setup the port speed to work in its serial viewer), then cat from the port works and echo to the port works (while the cat is reading from it). My arduino program takes commands from serial, and outputs stat

Re: Test serial port application

2023-12-24 Thread Robert Moskowitz
On 12/24/23 06:36, Barry Scott wrote: On 24 Dec 2023, at 01:25, Robert Moskowitz wrote: I want to test a program that is supposedly talking serial to /dev/tty[]. e.g. ttyUSB0 I was thinking that I could run some program in some terminal window that would set up a serial /dev/tty and the

Re: Test serial port application

2023-12-24 Thread Barry Scott
> On 24 Dec 2023, at 01:25, Robert Moskowitz wrote: > > I want to test a program that is supposedly talking serial to /dev/tty[]. > e.g. ttyUSB0 > > I was thinking that I could run some program in some terminal window that > would set up a serial /dev/tty and the program could attach to tha