I am in the process of moving from a vanilla COM
communication system to a USB virtual COM (using the ftdi chip and driver).

Whenever I attempt to use my standard Win32::SerialPort, it croaks in CommPort.pm at CreateFile.

From what I could find, the problem* seems to be the way the FileHandle is called in kernel32...

(from another forum discussing this driver):
"I know that all of the Win32 API dlls, such as
kernel32.dll, use the _stdcall convention. It is my
understanding that any non-C programs linking to a dll require the _stdcall parameter passing convention.

BTW, the difference betweeen the two calling conventions is that when using _cdecl, the calling program cleans up the stack after the call, but with _stdcall, the called (dll) program does the cleanup."

Bottom line, has anyone had such an issue before and can they share the code modifications on how they made it work?

--------------------------------------------------
The error I get when I run is from CommPort.pm, sub CreateFile and says:

The system cannot find the file specified. can't open device: COM10
....

In reply to Perl->Win32::CommPort->COM ports->Kernel32->ftdi driver by gluphus

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.