asynchronous serial port communication in windows in c - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T21:22:18Zhttp://stackoverflow.com/feeds/question/947280http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/947280/asynchronous-serial-port-communication-in-windows-in-c0asynchronous serial port communication in windows in cSchuyler2009-06-03T21:11:20Z2009-06-05T12:09:10Z
<p>I am getting an error when I try to run a c file which does some basic writes to a serial port. I am trying to run it asynchronously because the writes sometimes take a long time to transfer. My original version had it running synchronously with WriteFile() commands which worked fine. I am new to using OVERLAPPED and would appreciate and input concerning it.</p>
<p>The error I am getting is: </p>
<p>Debug Assertion Failed!
Line: 1317
Expression: _CrtIsValidHeapPointer(pUserData)</p>
<p>when the second write function is called.</p>
<p>in main:</p>
<pre><code> {
//initialized port (with overlapped), DBC, and timeouts
result = write_port(outPortHandle, 128);
result = write_port(outPortHandle, 131);
}
static void CALLBACK write_compl(DWORD dwErrorCode, DWORD dwNumberOfBytesTransfered, LPOVERLAPPED lpOverlapped) {
//write completed. check for errors? if so throw an exception maybe?
printf("write completed--and made it to callback function\n");
}
int write_port(HANDLE hComm,BYTE* lpBuf) {
OVERLAPPED osWrite = {0};
// Create this write operation's OVERLAPPED structure's hEvent.
osWrite.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
if (osWrite.hEvent == NULL)
// error creating overlapped event handle
return 0;
// Issue write.
if (!WriteFileEx(hComm, &lpBuf, 1, &osWrite, &write_compl )) {
if (GetLastError() != ERROR_IO_PENDING) {
// WriteFile failed, but isn't delayed. Report error and abort.
printf("last error: %ld",GetLastError());
return 0; //failed, return false;
}
else {
// Write is pending.
WaitForSingleObjectEx(osWrite.hEvent, 50, TRUE); //50 ms timeout
return -1; //pending
}
}
else {
return 1; //finished
}
}
</code></pre>
http://stackoverflow.com/questions/947280/asynchronous-serial-port-communication-in-windows-in-c/947470#9474700Answer by Shane Powell for asynchronous serial port communication in windows in cShane Powell2009-06-03T21:53:44Z2009-06-04T04:40:36Z<blockquote>
<pre><code> result = write_port(outPortHandle, 128);
result = write_port(outPortHandle, 131);
</code></pre>
</blockquote>
<p>The lpBuf argument have to be pointers to buffers, not constants.</p>
<p>e.g.</p>
<pre><code>char buffer;
buffer = 128;
result = write_port(outPortHandle, &buffer);
buffer = 131;
result = write_port(outPortHandle, &buffer);
</code></pre>
<p>What you really want to do is also pass a buffer length.</p>
<p>e.g.</p>
<pre><code> char buffer[] = { 128, 131 };
result = write_port(outPortHandle, &buffer, sizeof(buffer));
int write_port(HANDLE hComm,BYTE* lpBuf, size_t length) {
...
// Issue write.
if (!WriteFileEx(hComm, &lpBuf, length, &osWrite, &write_compl )) {
...
</code></pre>
http://stackoverflow.com/questions/947280/asynchronous-serial-port-communication-in-windows-in-c/947534#9475341Answer by Cwan for asynchronous serial port communication in windows in cCwan2009-06-03T22:07:03Z2009-06-05T12:09:10Z<p>I think you have a couple of issues:</p>
<p><hr /></p>
<p>You are passing an integer as a pointer (your compiler should warn against this or preferably refuse to compile the code):</p>
<blockquote>
<p>result = write_port(outPortHandle, 128);</p>
</blockquote>
<p>Compare this to the definition of write_port:</p>
<blockquote>
<p>int write_port(HANDLE hComm,BYTE* lpBuf) {</p>
</blockquote>
<p>The above statements doesn't match. Later on you then pass a pointer to the lpBuf pointer to the WriteFileEx function by taking the address of the BYTE* -> "&lpBuf". This will not result in what you think it will do.</p>
<p><hr /></p>
<p>Even if you fix this, you will still have potential lifetime issues whenever the write is successfully queued but won't complete within the 50 ms timeout.</p>
<p>When using overlapped I/O, you need to make sure that the read/write buffer and the overlapped structure remain valid until the I/O is completed, cancelled or the associated device is closed. In your code above you use a pointer to an OVERLAPPED struct that lives on the stack in your call to WriteFileEx. If WriteFileEx does not complete within 50 ms, the pending I/O will have a reference to a non-existing OVERLAPPED struct and you will (hopefully) have an access violation (or worse, silently corrupted stack data somewhere in your app).</p>
<p>The canonical way of handling these lifetime issues (if performance is not a big issue), is to use a custom struct that includes an OVERLAPPED struct and some storage for the data to be read/written. Allocate the struct when posting the write and deallocate the struct from the I/O completion routine. Pass the address of the included OVERLAPPED struct to WriteFileEx, and use e.g. offsetof to get the address to the custom struct from the OVERLAPPED address in the completion routine.</p>
<p>Also note that WriteFileEx does not actually use the hEvent member, IIRC. </p>
<p><hr /></p>
<p>EDIT: Added code sample, please note:</p>
<ol>
<li>I haven't actually tried to compile the code, there might be typos or other problems with the code.</li>
<li>It's not the most efficient way of sending data (allocating/deallocating a memory block for each byte that is sent). It should be easy to improve, though.</li>
</ol>
<pre>
#include <stddef.h>
#include <assert.h>
#include <windows.h>
// ...
typedef struct _MYOVERLAPPED
{
OVERLAPPED ol;
BYTE buffer;
} MYOVERLAPPED, *LPMYOVERLAPPED;
// ...
static void CALLBACK write_compl(DWORD dwErrorCode, DWORD dwNumberOfBytesTransfered, LPOVERLAPPED lpOverlapped)
{
if (NULL == lpOverlapped)
{
assert(!"Should never happen");
return;
}
LPBYTE pOlAsBytes = (LPBYTE)lpOverlapped;
LPBYTE pMyOlAsBytes = pOlAsBytes - offsetof(MYOVERLAPPED, ol);
LPMYOVERLAPPED pMyOl = (LPMYOVERLAPPED)pOlAsBytes;
if ((ERROR_SUCCESS == dwErrorCode) &&
(sizeof(BYTE) == dwNumberOfBytesTransfered))
{
printf("written %uc\n", pMyOl->buffer);
}
else
{
// handle error
}
free(pMyOl);
}
int write_port(HANDLE hComm, BYTE byte) {
LPMYOVERLAPPED pMyOl = (LPMYOVERLAPPED)malloc(sizeof(MYOVERLAPPED));
ZeroMemory(pMyOl, sizeof(MYOVERLAPPED));
pMyOl->buffer = byte;
// Issue write.
if (!WriteFileEx(hComm, &pMyOl->buffer, sizeof(BYTE), pMyOl, &write_compl )) {
if (GetLastError() != ERROR_IO_PENDING) {
// WriteFile failed, but isn't delayed. Report error and abort.
free(pMyOl);
printf("last error: %ld",GetLastError());
return 0; //failed, return false;
}
else {
return -1; //pending
}
}
else {
free(pMyOl);
return 1; //finished
}
}
</pre>
http://stackoverflow.com/questions/947280/asynchronous-serial-port-communication-in-windows-in-c/950886#9508860Answer by Schuyler for asynchronous serial port communication in windows in cSchuyler2009-06-04T14:18:08Z2009-06-04T14:18:08Z<p>That was not the full code, sorry. I was using an array of BYTEs as well, not constants. But system("pause")'s were causing my debug assertion failed errors, and after carefully looking through my code, when the WriteFileEx() was successful, it was never setting an alert/timeout on the event in the overlapped structure, so the callback function would never get called. I fixed these problems though. </p>
<p>I just need help with the handling/accessing a single BYTE in a structure which is allocated when a ReadFileEx() function is called (for storing the BYTE that is read so it can be handled). I need to know how to access that BYTE storage using an offset and make the overlapped structure null. Would making the overlapped structure null be as simple as setting the handle in it to INVALID_HANDLE_VALUE?</p>