I wrote/support a terminal emulator called uCon (http://www.umonfw.com/ucon). Its all based on "good-ole" Win32, and is entirely in 'C'. I was recently asked to support the ability to have uCon attach to a COM port and set up DTR/RTS for purposes outside of RS232 flow control. I know I can do this after CreateFile() is called using EscapeCommFunction() and/or SetCommState(); however, these functions can only be called AFTER CreateFile() returns a handle to the opened port. Unfortunately, when CreateFile() opens the port, it sets DTR/RTS to their default state, which may (or may not) be different than the state that I wish to keep DTR in.

For example, assume the user has a board connected to the PC's serial port, and the DTR line is used to put the board in some non-standard state. With DTR inactive, the board runs "normal", but occasionally DTR-active is used to transition the hardware to some other state.

In most cases I've seen, CreateFile() brings DTR active, then my call to clear DTR brings it back to inactive; however, that's a glitch I need to avoid. I found a function set called GetDefaultCommConfig() & SetDefaultCommConfig() but have not been able to get them to work successfully. So, my question is this...

Is there a way to pre-define the default state that will be established on the RS232 control lines when CreateFile() is called? Has anyone used GetDefaultCommConfig()/SetDefaultCommConfig() successfully?

It seems to me that this should allow me to pre-establish the value of DTR to be used when CreateFile() is called...

 
int
EstablishDefaultDTR(char *comPortName, int dtr)
{
    COMMCONFIG  cc;
    DWORD   bsize = sizeof(COMMCONFIG);

    if (GetDefaultCommConfig(comPortName,&cc,&bsize) == 0) {
        ShowLastError("GetDefaultCommConfig()");
        return(-1);
    }

    if (dtr)
       cc.dcb.fDtrControl = DTR_CONTROL_ENABLE ;
    else
       cc.dcb.fDtrControl = DTR_CONTROL_DISABLE ;

    if (SetDefaultCommConfig(comPortName,&cc,bsize) == 0) {
        ShowLastError("SetDefaultCommConfig()");
        return(-1);
    }
}

But, as you may have already guessed, it doesn't. Any ideas?

link|improve this question

73% accept rate
Have you looked here: msdn.microsoft.com/en-us/library/ms810467.aspx The article offers BuildCommDCB() as an alternative ... perhaps that will do the trick for you? – Adam Liss Aug 3 '09 at 3:53
@Ed: I'm having the exact same problem. Could you solve it? I'm offering a bounty. – dario_ramos Jan 24 at 16:28
Have you looked here: codeguru.com/forum/showthread.php?t=291244 Same problem at hand. However TDM claims that setting the DTR to its state after opening the port is the only defined way to do so. If a 100ms switch lag kills the hardware than there is a design flaw right from the beginning. – Bort Jan 31 at 11:50
@Bort: In my case, it doesn't kill it, it just makes an X-Ray tube spin uselessly, which should be avoided but isn't fatal. I agree with you, but anyway, the MODE solution works perfectly. – dario_ramos Jan 31 at 13:35
feedback

2 Answers

You're not initializing the COMMCONFIG structure. That could well be the problem since the documentation explicitly says that you must set dwSize at least

cc.dwSize = sizeof( COMMCONFIG );

link|improve this answer
Just doing that before the first call didn't work. Both calls return nonzero, so, apparently, they succeed. After the call to GetDefaultCommConfig, I checked cc's contents and the only weird thing I saw was that cc.dcb.DCBLength equaled 3435973836. I'm gonna try using BuildCommDCB before the first call. Any other suggestion is welcome. – dario_ramos Jan 25 at 17:30
I found a workaround and posted it as an answer. I'll wait until the bounty expires to see if someone comes up with a better working solution. – dario_ramos Jan 25 at 19:04
@dario_ramos Did BuildCommDCB also not work? – Danra Jan 30 at 22:26
@Danra: Nope. I tried to add my code to the question, but my edit was rejected. Basically, after declaring the COMMCONFIG and setting its size, I used BuildCommDCB to set its DCB. I tried doing that before GetDefaultCommConfig. After that call, I changed the struct contents to disable DTR before the call to SetDefaultCommConfig. I checked with the debugger and all the struct contents made sense all the way, but still the port always opened with DTR set. I also read somewhere that this way of doing it doesn't work with some devices, so I gave up and adopted the solution from my answer, – dario_ramos Jan 31 at 12:24
My "device" is a microcontroller someone else made as an interface to an X-Ray generator. I know little about the electronics part, I was just told what happens if I set or clear DTR and RTS, and I receive some data via Tx to notify certain events. – dario_ramos Jan 31 at 12:27
show 1 more comment
feedback

Might not be the fastest way, but this works:

#include <stdlib.h>
#include <stdio.h>

int
EstablishDefaultDTR(char *comPortName, int dtr){
    char commandString[256];
    if ( !system(NULL) ){
        ShowLastError("system()");
        return(-1);
    }        
    sprintf( commandString, "MODE %s dtr=%s%", comPortName, dtr? "on":"off"  );
    return system( commandString );
}
link|improve this answer
Doesn't that just open the port and set the DTR state? If you have the port open already then the MODE command fails. The next time you open the port it keeps the previous state. You can get the same behaviour by opening a port, setting DTR, closing the port and then opening it again in code. – tinman Jan 28 at 20:24
I do this before opening it and it works. I didn't check if the call to CreateFile succeeds, but the port is opened with the correct DTR state (before, it ALWAYS started with DTR set), and communication works as expected. – dario_ramos Jan 29 at 23:44
Even if I opened the port, cleared DTR, closed it and opened it again later, I could see the hardware reacting during the small period in which DTR was set (a led was lit and an xray tube spun for half a second). With this solution, that doesn't happen at all. – dario_ramos Jan 30 at 12:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.