in reply to Com port break signal

I have not done this, but there is win32::serialport, it might be a good place to start.

Replies are listed 'Best First'.
Re^2: Com port break signal
by GoTerpsGo (Novice) on Oct 23, 2006 at 18:04 UTC
    I had already perused through that; I didn't find any methods that would allow for me to send a break signal. Of course if there is such a method, I may have missed it.
      After looking further, it appears that Win32API::CommPort, does what you want.

      Hope that this helps.
Re^2: Com port break signal
by GoTerpsGo (Novice) on Nov 02, 2006 at 19:54 UTC
    Yep it sure was... I ended up using "Win32::SerialPort::break_active('Y');". One dumb question though... What does the param do and what are its valid values? Thx to all for the help.