If you have the correct voltage/impedance converters between your RS232 pins and the device you're driving it may be possible to write your own communications protocol using a control pin on the serial port.

Windows will let you switch DTR and RTS if I remember correctly using an API call, it is up to you to time this properly. Messy, but possible.

Actually, looking at the documentation for Win32API:CommPort there's an example of this very concept.

update: apologies I missed the fact that the device is standard serial 1200 baud. Thus you only need the RD pin wired up.. but follow the link g0n provided in Re: (OT) How to read a 2-Wire RS-232-C line? to ensure that the PC end has DTR/DSR/CD pins wired together and the RTS/CTS pins wired together (so the PC thinks something is connected to the port). Also ensure your device handles RS232 voltages (+/-25V). If it doesn't you'll need to add some hardware to convert those to CMOS voltages (if your device is CMOS) otherwise you might fry your component.


In reply to Re: (OT) How to read a 2-Wire RS-232-C line? by monarch
in thread (OT) How to read a 2-Wire RS-232-C line? by aplonis

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.