2003-03-13 03:52:19 +00:00
|
|
|
/*
|
|
|
|
* avrdude - A Downloader/Uploader for AVR device programmers
|
2004-07-08 23:49:33 +00:00
|
|
|
* Copyright (C) 2003, 2004 Martin J. Thomas <mthomas@rhrk.uni-kl.de>
|
2006-08-31 20:52:47 +00:00
|
|
|
* Copyright (C) 2006 Joerg Wunsch <j@uriah.heep.sax.de>
|
2003-03-13 03:52:19 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/*
|
2003-03-13 19:25:27 +00:00
|
|
|
* Native Win32 serial interface for avrdude.
|
2003-03-13 03:52:19 +00:00
|
|
|
*/
|
|
|
|
|
2009-02-23 22:04:57 +00:00
|
|
|
#include "avrdude.h"
|
|
|
|
|
2004-06-24 11:05:07 +00:00
|
|
|
#if defined(WIN32NATIVE)
|
|
|
|
|
|
|
|
#include <windows.h>
|
2004-07-15 17:29:35 +00:00
|
|
|
#include <stdio.h>
|
2004-06-24 11:05:07 +00:00
|
|
|
#include <ctype.h> /* for isprint */
|
2003-03-13 19:25:27 +00:00
|
|
|
|
2007-01-24 21:07:54 +00:00
|
|
|
#include "serial.h"
|
2004-06-24 11:05:07 +00:00
|
|
|
|
Mega-commit to bring in both, the STK500v2 support from Erik
Walthinsen, as well as JTAG ICE mkII support (by me).
Erik's submission has been cleaned up a little bit, mostly to add his
name and the current year to the copyright of the new file, remove
trailing white space before importing the files, and fix the minor
syntax errors in his avrdude.conf.in additions (missing semicolons).
The JTAG ICE mkII support should be considered alpha to beta quality
at this point. Few things are still to be done, like defering the
hfuse (OCDEN) tweaks until they are really required. Also, for
reasons not yet known, the target MCU doesn't start to run after
signing off from the ICE, it needs a power-cycle first (at least on my
STK500).
Note that for the JTAG ICE, I did change a few things in the internal
API. Notably I made the serial receive timeout configurable by the
backends via an exported variable (done in both the Posix and the
Win32 implementation), and I made the serial_recv() function return a
-1 instead of bailing out with exit(1) upon encountering a receive
timeout (currently only done in the Posix implementation). Both
measures together allow me to receive a datastreem from the ICE at 115
kbps on a somewhat lossy PCI multi-UART card that occasionally drops a
character. The JTAG ICE mkII protocol has enough of safety layers to
allow recovering from these events, but the previous code wasn't
prepared for any kind of recovery. The Win32 change for this still
has to be done, and the traditional drivers need to be converted to
exit(1) upon encountering a timeout (as they're now getting a -1
returned they didn't see before in that case).
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@451 81a1dc3b-b13d-400b-aceb-764788c761c2
2005-05-10 19:17:12 +00:00
|
|
|
long serial_recv_timeout = 5000; /* ms */
|
|
|
|
|
2004-06-24 11:05:07 +00:00
|
|
|
#define W32SERBUFSIZE 1024
|
|
|
|
|
|
|
|
struct baud_mapping {
|
|
|
|
long baud;
|
|
|
|
DWORD speed;
|
|
|
|
};
|
2003-03-13 03:52:19 +00:00
|
|
|
|
2004-06-24 11:05:07 +00:00
|
|
|
/* HANDLE hComPort=INVALID_HANDLE_VALUE; */
|
|
|
|
|
|
|
|
static struct baud_mapping baud_lookup_table [] = {
|
|
|
|
{ 1200, CBR_1200 },
|
|
|
|
{ 2400, CBR_2400 },
|
|
|
|
{ 4800, CBR_4800 },
|
|
|
|
{ 9600, CBR_9600 },
|
|
|
|
{ 19200, CBR_19200 },
|
|
|
|
{ 38400, CBR_38400 },
|
|
|
|
{ 57600, CBR_57600 },
|
|
|
|
{ 115200, CBR_115200 },
|
|
|
|
{ 0, 0 } /* Terminator. */
|
|
|
|
};
|
|
|
|
|
|
|
|
static DWORD serial_baud_lookup(long baud)
|
|
|
|
{
|
|
|
|
struct baud_mapping *map = baud_lookup_table;
|
|
|
|
|
|
|
|
while (map->baud) {
|
|
|
|
if (map->baud == baud)
|
|
|
|
return map->speed;
|
|
|
|
map++;
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "%s: serial_baud_lookup(): unknown baud rate: %ld",
|
|
|
|
progname, baud);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-19 21:38:03 +00:00
|
|
|
static BOOL serial_w32SetTimeOut(HANDLE hComPort, DWORD timeout) // in ms
|
2004-06-24 11:05:07 +00:00
|
|
|
{
|
|
|
|
COMMTIMEOUTS ctmo;
|
|
|
|
ZeroMemory (&ctmo, sizeof(COMMTIMEOUTS));
|
|
|
|
ctmo.ReadIntervalTimeout = timeout;
|
|
|
|
ctmo.ReadTotalTimeoutMultiplier = timeout;
|
|
|
|
ctmo.ReadTotalTimeoutConstant = timeout;
|
|
|
|
|
|
|
|
return SetCommTimeouts(hComPort, &ctmo);
|
|
|
|
}
|
2003-03-13 03:52:19 +00:00
|
|
|
|
2006-12-11 12:47:35 +00:00
|
|
|
static int ser_setspeed(union filedescriptor *fd, long baud)
|
2003-03-13 03:52:19 +00:00
|
|
|
{
|
2004-06-24 11:05:07 +00:00
|
|
|
DCB dcb;
|
2006-12-11 12:47:35 +00:00
|
|
|
HANDLE hComPort = (HANDLE)fd->pfd;
|
Mega-commit to bring in both, the STK500v2 support from Erik
Walthinsen, as well as JTAG ICE mkII support (by me).
Erik's submission has been cleaned up a little bit, mostly to add his
name and the current year to the copyright of the new file, remove
trailing white space before importing the files, and fix the minor
syntax errors in his avrdude.conf.in additions (missing semicolons).
The JTAG ICE mkII support should be considered alpha to beta quality
at this point. Few things are still to be done, like defering the
hfuse (OCDEN) tweaks until they are really required. Also, for
reasons not yet known, the target MCU doesn't start to run after
signing off from the ICE, it needs a power-cycle first (at least on my
STK500).
Note that for the JTAG ICE, I did change a few things in the internal
API. Notably I made the serial receive timeout configurable by the
backends via an exported variable (done in both the Posix and the
Win32 implementation), and I made the serial_recv() function return a
-1 instead of bailing out with exit(1) upon encountering a receive
timeout (currently only done in the Posix implementation). Both
measures together allow me to receive a datastreem from the ICE at 115
kbps on a somewhat lossy PCI multi-UART card that occasionally drops a
character. The JTAG ICE mkII protocol has enough of safety layers to
allow recovering from these events, but the previous code wasn't
prepared for any kind of recovery. The Win32 change for this still
has to be done, and the traditional drivers need to be converted to
exit(1) upon encountering a timeout (as they're now getting a -1
returned they didn't see before in that case).
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@451 81a1dc3b-b13d-400b-aceb-764788c761c2
2005-05-10 19:17:12 +00:00
|
|
|
|
|
|
|
ZeroMemory (&dcb, sizeof(DCB));
|
|
|
|
dcb.DCBlength = sizeof(DCB);
|
|
|
|
dcb.BaudRate = serial_baud_lookup (baud);
|
|
|
|
dcb.fBinary = 1;
|
|
|
|
dcb.fDtrControl = DTR_CONTROL_DISABLE;
|
|
|
|
dcb.fRtsControl = RTS_CONTROL_DISABLE;
|
|
|
|
dcb.ByteSize = 8;
|
|
|
|
dcb.Parity = NOPARITY;
|
|
|
|
dcb.StopBits = ONESTOPBIT;
|
|
|
|
|
|
|
|
if (!SetCommState(hComPort, &dcb))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-11 12:47:35 +00:00
|
|
|
static void ser_open(char * port, long baud, union filedescriptor *fdp)
|
Mega-commit to bring in both, the STK500v2 support from Erik
Walthinsen, as well as JTAG ICE mkII support (by me).
Erik's submission has been cleaned up a little bit, mostly to add his
name and the current year to the copyright of the new file, remove
trailing white space before importing the files, and fix the minor
syntax errors in his avrdude.conf.in additions (missing semicolons).
The JTAG ICE mkII support should be considered alpha to beta quality
at this point. Few things are still to be done, like defering the
hfuse (OCDEN) tweaks until they are really required. Also, for
reasons not yet known, the target MCU doesn't start to run after
signing off from the ICE, it needs a power-cycle first (at least on my
STK500).
Note that for the JTAG ICE, I did change a few things in the internal
API. Notably I made the serial receive timeout configurable by the
backends via an exported variable (done in both the Posix and the
Win32 implementation), and I made the serial_recv() function return a
-1 instead of bailing out with exit(1) upon encountering a receive
timeout (currently only done in the Posix implementation). Both
measures together allow me to receive a datastreem from the ICE at 115
kbps on a somewhat lossy PCI multi-UART card that occasionally drops a
character. The JTAG ICE mkII protocol has enough of safety layers to
allow recovering from these events, but the previous code wasn't
prepared for any kind of recovery. The Win32 change for this still
has to be done, and the traditional drivers need to be converted to
exit(1) upon encountering a timeout (as they're now getting a -1
returned they didn't see before in that case).
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@451 81a1dc3b-b13d-400b-aceb-764788c761c2
2005-05-10 19:17:12 +00:00
|
|
|
{
|
2004-06-24 11:05:07 +00:00
|
|
|
LPVOID lpMsgBuf;
|
|
|
|
HANDLE hComPort=INVALID_HANDLE_VALUE;
|
|
|
|
|
2006-08-31 20:52:47 +00:00
|
|
|
/*
|
|
|
|
* If the port is of the form "net:<host>:<port>", then
|
|
|
|
* handle it as a TCP connection to a terminal server.
|
|
|
|
*
|
|
|
|
* This is curently not implemented for Win32.
|
|
|
|
*/
|
|
|
|
if (strncmp(port, "net:", strlen("net:")) == 0) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"%s: ser_open(): network connects are currently not"
|
|
|
|
"implemented for Win32 environments\n",
|
|
|
|
progname);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2004-06-24 11:05:07 +00:00
|
|
|
/* if (hComPort!=INVALID_HANDLE_VALUE)
|
2005-06-19 21:38:03 +00:00
|
|
|
fprintf(stderr, "%s: ser_open(): \"%s\" is already open\n",
|
2004-06-24 11:05:07 +00:00
|
|
|
progname, port);
|
|
|
|
*/
|
|
|
|
|
|
|
|
hComPort = CreateFile(port, GENERIC_READ | GENERIC_WRITE, 0, NULL,
|
|
|
|
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
|
|
|
|
|
|
|
|
if (hComPort == INVALID_HANDLE_VALUE) {
|
|
|
|
FormatMessage(
|
|
|
|
FORMAT_MESSAGE_ALLOCATE_BUFFER |
|
|
|
|
FORMAT_MESSAGE_FROM_SYSTEM |
|
|
|
|
FORMAT_MESSAGE_IGNORE_INSERTS,
|
|
|
|
NULL,
|
|
|
|
GetLastError(),
|
|
|
|
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
|
|
|
|
(LPTSTR) &lpMsgBuf,
|
|
|
|
0,
|
|
|
|
NULL);
|
2005-06-19 21:38:03 +00:00
|
|
|
fprintf(stderr, "%s: ser_open(): can't open device \"%s\": %s\n",
|
2004-06-24 11:05:07 +00:00
|
|
|
progname, port, (char*)lpMsgBuf);
|
|
|
|
LocalFree( lpMsgBuf );
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!SetupComm(hComPort, W32SERBUFSIZE, W32SERBUFSIZE))
|
|
|
|
{
|
|
|
|
CloseHandle(hComPort);
|
2005-06-19 21:38:03 +00:00
|
|
|
fprintf(stderr, "%s: ser_open(): can't set buffers for \"%s\"\n",
|
2004-06-24 11:05:07 +00:00
|
|
|
progname, port);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2006-12-11 12:47:35 +00:00
|
|
|
fdp->pfd = (void *)hComPort;
|
|
|
|
if (ser_setspeed(fdp, baud) != 0)
|
2004-06-24 11:05:07 +00:00
|
|
|
{
|
|
|
|
CloseHandle(hComPort);
|
2005-06-19 21:38:03 +00:00
|
|
|
fprintf(stderr, "%s: ser_open(): can't set com-state for \"%s\"\n",
|
2004-06-24 11:05:07 +00:00
|
|
|
progname, port);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!serial_w32SetTimeOut(hComPort,0))
|
|
|
|
{
|
|
|
|
CloseHandle(hComPort);
|
2005-06-19 21:38:03 +00:00
|
|
|
fprintf(stderr, "%s: ser_open(): can't set initial timeout for \"%s\"\n",
|
2004-06-24 11:05:07 +00:00
|
|
|
progname, port);
|
|
|
|
exit(1);
|
|
|
|
}
|
2003-03-13 03:52:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-11 12:47:35 +00:00
|
|
|
static void ser_close(union filedescriptor *fd)
|
2003-03-13 03:52:19 +00:00
|
|
|
{
|
2006-12-11 12:47:35 +00:00
|
|
|
HANDLE hComPort=(HANDLE)fd->pfd;
|
2004-06-24 11:05:07 +00:00
|
|
|
if (hComPort != INVALID_HANDLE_VALUE)
|
|
|
|
CloseHandle (hComPort);
|
|
|
|
|
|
|
|
hComPort = INVALID_HANDLE_VALUE;
|
2003-03-13 03:52:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-11 12:47:35 +00:00
|
|
|
static int ser_send(union filedescriptor *fd, unsigned char * buf, size_t buflen)
|
2003-03-13 03:52:19 +00:00
|
|
|
{
|
2004-06-24 11:05:07 +00:00
|
|
|
size_t len = buflen;
|
|
|
|
unsigned char c='\0';
|
|
|
|
DWORD written;
|
2006-12-11 12:47:35 +00:00
|
|
|
unsigned char * b = buf;
|
2004-06-24 11:05:07 +00:00
|
|
|
|
2006-12-11 12:47:35 +00:00
|
|
|
HANDLE hComPort=(HANDLE)fd->pfd;
|
2004-06-24 11:05:07 +00:00
|
|
|
|
|
|
|
if (hComPort == INVALID_HANDLE_VALUE) {
|
2005-06-19 21:38:03 +00:00
|
|
|
fprintf(stderr, "%s: ser_send(): port not open\n",
|
2004-06-24 11:05:07 +00:00
|
|
|
progname);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!len)
|
2003-03-13 03:52:19 +00:00
|
|
|
return 0;
|
2004-06-24 11:05:07 +00:00
|
|
|
|
|
|
|
if (verbose > 3)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "%s: Send: ", progname);
|
|
|
|
|
2005-11-24 15:00:49 +00:00
|
|
|
while (len) {
|
|
|
|
c = *b;
|
2004-06-24 11:05:07 +00:00
|
|
|
if (isprint(c)) {
|
|
|
|
fprintf(stderr, "%c ", c);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fprintf(stderr, ". ");
|
|
|
|
}
|
|
|
|
fprintf(stderr, "[%02x] ", c);
|
2005-11-24 15:00:49 +00:00
|
|
|
b++;
|
|
|
|
len--;
|
2004-06-24 11:05:07 +00:00
|
|
|
}
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
serial_w32SetTimeOut(hComPort,500);
|
|
|
|
|
|
|
|
if (!WriteFile (hComPort, buf, buflen, &written, NULL)) {
|
2005-06-19 21:38:03 +00:00
|
|
|
fprintf(stderr, "%s: ser_send(): write error: %s\n",
|
2004-06-24 11:05:07 +00:00
|
|
|
progname, "sorry no info avail"); // TODO
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (written != buflen) {
|
2005-06-19 21:38:03 +00:00
|
|
|
fprintf(stderr, "%s: ser_send(): size/send mismatch\n",
|
2004-06-24 11:05:07 +00:00
|
|
|
progname);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2003-03-13 03:52:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-11 12:47:35 +00:00
|
|
|
static int ser_recv(union filedescriptor *fd, unsigned char * buf, size_t buflen)
|
2003-03-13 03:52:19 +00:00
|
|
|
{
|
2004-06-24 11:05:07 +00:00
|
|
|
unsigned char c;
|
2006-12-11 12:47:35 +00:00
|
|
|
unsigned char * p = buf;
|
2004-06-24 11:05:07 +00:00
|
|
|
DWORD read;
|
|
|
|
|
2006-12-11 12:47:35 +00:00
|
|
|
HANDLE hComPort=(HANDLE)fd->pfd;
|
2004-06-24 11:05:07 +00:00
|
|
|
|
|
|
|
if (hComPort == INVALID_HANDLE_VALUE) {
|
2005-06-19 21:38:03 +00:00
|
|
|
fprintf(stderr, "%s: ser_read(): port not open\n",
|
2004-06-24 11:05:07 +00:00
|
|
|
progname);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
Mega-commit to bring in both, the STK500v2 support from Erik
Walthinsen, as well as JTAG ICE mkII support (by me).
Erik's submission has been cleaned up a little bit, mostly to add his
name and the current year to the copyright of the new file, remove
trailing white space before importing the files, and fix the minor
syntax errors in his avrdude.conf.in additions (missing semicolons).
The JTAG ICE mkII support should be considered alpha to beta quality
at this point. Few things are still to be done, like defering the
hfuse (OCDEN) tweaks until they are really required. Also, for
reasons not yet known, the target MCU doesn't start to run after
signing off from the ICE, it needs a power-cycle first (at least on my
STK500).
Note that for the JTAG ICE, I did change a few things in the internal
API. Notably I made the serial receive timeout configurable by the
backends via an exported variable (done in both the Posix and the
Win32 implementation), and I made the serial_recv() function return a
-1 instead of bailing out with exit(1) upon encountering a receive
timeout (currently only done in the Posix implementation). Both
measures together allow me to receive a datastreem from the ICE at 115
kbps on a somewhat lossy PCI multi-UART card that occasionally drops a
character. The JTAG ICE mkII protocol has enough of safety layers to
allow recovering from these events, but the previous code wasn't
prepared for any kind of recovery. The Win32 change for this still
has to be done, and the traditional drivers need to be converted to
exit(1) upon encountering a timeout (as they're now getting a -1
returned they didn't see before in that case).
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@451 81a1dc3b-b13d-400b-aceb-764788c761c2
2005-05-10 19:17:12 +00:00
|
|
|
serial_w32SetTimeOut(hComPort, serial_recv_timeout);
|
2004-06-24 11:05:07 +00:00
|
|
|
|
|
|
|
if (!ReadFile(hComPort, buf, buflen, &read, NULL)) {
|
|
|
|
LPVOID lpMsgBuf;
|
|
|
|
FormatMessage(
|
|
|
|
FORMAT_MESSAGE_ALLOCATE_BUFFER |
|
|
|
|
FORMAT_MESSAGE_FROM_SYSTEM |
|
|
|
|
FORMAT_MESSAGE_IGNORE_INSERTS,
|
|
|
|
NULL,
|
|
|
|
GetLastError(),
|
|
|
|
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
|
|
|
|
(LPTSTR) &lpMsgBuf,
|
|
|
|
0,
|
|
|
|
NULL );
|
2005-06-19 21:38:03 +00:00
|
|
|
fprintf(stderr, "%s: ser_recv(): read error: %s\n",
|
2004-06-24 11:05:07 +00:00
|
|
|
progname, (char*)lpMsgBuf);
|
|
|
|
LocalFree( lpMsgBuf );
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
p = buf;
|
|
|
|
|
|
|
|
if (verbose > 3)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "%s: Recv: ", progname);
|
|
|
|
|
2007-10-29 21:51:07 +00:00
|
|
|
while (read) {
|
2004-06-24 11:05:07 +00:00
|
|
|
c = *p;
|
|
|
|
if (isprint(c)) {
|
|
|
|
fprintf(stderr, "%c ", c);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fprintf(stderr, ". ");
|
|
|
|
}
|
|
|
|
fprintf(stderr, "[%02x] ", c);
|
|
|
|
|
|
|
|
p++;
|
2007-10-29 21:51:07 +00:00
|
|
|
read--;
|
2004-06-24 11:05:07 +00:00
|
|
|
}
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
2003-03-13 03:52:19 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-11 12:47:35 +00:00
|
|
|
static int ser_drain(union filedescriptor *fd, int display)
|
2003-03-13 03:52:19 +00:00
|
|
|
{
|
2004-06-24 11:05:07 +00:00
|
|
|
// int rc;
|
|
|
|
unsigned char buf[10];
|
|
|
|
BOOL readres;
|
|
|
|
DWORD read;
|
|
|
|
|
2006-12-11 12:47:35 +00:00
|
|
|
HANDLE hComPort=(HANDLE)fd->pfd;
|
2004-06-24 11:05:07 +00:00
|
|
|
|
|
|
|
if (hComPort == INVALID_HANDLE_VALUE) {
|
2005-06-19 21:38:03 +00:00
|
|
|
fprintf(stderr, "%s: ser_drain(): port not open\n",
|
2004-06-24 11:05:07 +00:00
|
|
|
progname);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
serial_w32SetTimeOut(hComPort,250);
|
|
|
|
|
|
|
|
if (display) {
|
|
|
|
fprintf(stderr, "drain>");
|
|
|
|
}
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
readres=ReadFile(hComPort, buf, 1, &read, NULL);
|
|
|
|
if (!readres) {
|
|
|
|
LPVOID lpMsgBuf;
|
|
|
|
FormatMessage(
|
|
|
|
FORMAT_MESSAGE_ALLOCATE_BUFFER |
|
|
|
|
FORMAT_MESSAGE_FROM_SYSTEM |
|
|
|
|
FORMAT_MESSAGE_IGNORE_INSERTS,
|
|
|
|
NULL,
|
|
|
|
GetLastError(),
|
|
|
|
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
|
|
|
|
(LPTSTR) &lpMsgBuf,
|
|
|
|
0,
|
|
|
|
NULL );
|
2005-06-19 21:38:03 +00:00
|
|
|
fprintf(stderr, "%s: ser_drain(): read error: %s\n",
|
2004-06-24 11:05:07 +00:00
|
|
|
progname, (char*)lpMsgBuf);
|
|
|
|
LocalFree( lpMsgBuf );
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (read) { // data avail
|
|
|
|
if (display) fprintf(stderr, "%02x ", buf[0]);
|
|
|
|
}
|
|
|
|
else { // no more data
|
|
|
|
if (display) fprintf(stderr, "<drain\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} // while
|
2003-03-13 03:52:19 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-06-19 21:38:03 +00:00
|
|
|
struct serial_device serial_serdev =
|
|
|
|
{
|
|
|
|
.open = ser_open,
|
|
|
|
.setspeed = ser_setspeed,
|
|
|
|
.close = ser_close,
|
|
|
|
.send = ser_send,
|
|
|
|
.recv = ser_recv,
|
|
|
|
.drain = ser_drain,
|
2006-10-27 08:45:47 +00:00
|
|
|
.flags = SERDEV_FL_CANSETSPEED,
|
2005-06-19 21:38:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct serial_device *serdev = &serial_serdev;
|
|
|
|
|
2004-06-24 11:05:07 +00:00
|
|
|
#endif /* WIN32NATIVE */
|