I'm trying to write a script to automate a file transfer over serial connection to a remote device. My intention is to write the script in Ruby running on Cygwin on my local computer.
To start off with, I need to get serial communication going to the remote device and for that, I assume that I would need to access the serial port via /dev/tty...
When I look in /dev/ in my Cygwin shell I only see the following:
$ ls /dev
fd mqueue shm stderr stdin stdout
I don't see anything like a tty device.
When I check the device manager in Windows (Win7 Pro), it shows 3 com ports. There is one native com port (COM1) and two virtual com ports (COM5, COM6).
For now I'm just trying to get any kind of connectivity going..
Thanks.