ReactOS 0.4.15-dev-7942-gd23573b
rs232.c
Go to the documentation of this file.
1/*
2 * FreeLoader - rs232.c
3 *
4 * Copyright (C) 2003 Brian Palmer <brianp@sginet.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21#include <windows.h>
22#include <winioctl.h>
23#include <tchar.h>
24#include <stdio.h>
25
26#include "rs232.h"
27
28
30
31
33{
36
37 // First check and make sure they don't already have the
38 // OBD2 connection open. We don't want to open things twice.
39 if (hPortHandle != NULL)
40 {
41 _tprintf(TEXT("Port handle not NULL. Must be already open. Returning FALSE...\n"));
42 return FALSE;
43 }
44
45 _stprintf(PortName, TEXT("\\\\.\\%s"), CommPort);
46
49 0,
50 0,
52 0,
53 0);
54
56 {
59
60 _tprintf(TEXT("CreateFile(\"%s\") failed. GetLastError() = %lu.\n"), PortName, ErrorCode);
61
62 return FALSE;
63 }
64
65 return TRUE;
66}
67
69{
70 HANDLE hTempPortHandle = hPortHandle;
71
73
74 if (hTempPortHandle == NULL)
75 {
76 return FALSE;
77 }
78
79 return CloseHandle(hTempPortHandle);
80}
81
82// DeviceControlString
83// [in] Pointer to a null-terminated string that specifies device-control information.
84// The string must have the same form as the mode command's command-line arguments.
85//
86// For example, the following string specifies a baud rate of 1200, no parity, 8 data bits, and 1 stop bit:
87// "baud=1200 parity=N data=8 stop=1"
88//
89// The following string specifies a baud rate of 115200, no parity, 8 data bits, and 1 stop bit:
90// "115200,n,8,1"
91//
92// The device name is ignored if it is included in the string, but it must specify a valid device, as follows:
93// "COM1: baud=1200 parity=N data=8 stop=1"
94//
95// For further information on mode command syntax, refer to the end-user documentation for your operating system.
96BOOL Rs232ConfigurePortWin32(TCHAR* DeviceControlString)
97{
98 DCB dcb;
100
101#if 0
102 if (!GetCommState(hPortHandle, &dcb))
103 {
105
106 _tprintf(TEXT("GetCommState() failed. GetLastError() = %lu.\n"), ErrorCode);
107
108 return FALSE;
109 }
110
111 dcb.BaudRate = BaudRate;
112 dcb.ByteSize = DataBits;
113 dcb.Parity = Parity;
114 dcb.StopBits = StopBits;
115 dcb.fBinary = TRUE;
116 dcb.fDsrSensitivity = FALSE;
117 dcb.fParity = (Parity == NOPARITY) ? FALSE : TRUE;
118 dcb.fOutX = FALSE;
119 dcb.fInX = FALSE;
120 dcb.fNull = FALSE;
121 dcb.fAbortOnError = TRUE;
122 dcb.fOutxCtsFlow = FALSE;
123 dcb.fOutxDsrFlow = FALSE;
124 dcb.fDtrControl = DTR_CONTROL_DISABLE;
125 dcb.fDsrSensitivity = FALSE;
126 dcb.fRtsControl = RTS_CONTROL_DISABLE;
127 dcb.fOutxCtsFlow = FALSE;
128 dcb.fOutxCtsFlow = FALSE;
129#endif
130
131 ZeroMemory(&dcb, sizeof(dcb));
132 dcb.DCBlength = sizeof(dcb);
133 if (!BuildCommDCB(DeviceControlString, &dcb))
134 {
136
137 _tprintf(TEXT("BuildCommDCB() failed. GetLastError() = %lu.\n"), ErrorCode);
138
139 return FALSE;
140 }
141
142 if (!SetCommState(hPortHandle, &dcb))
143 {
145
146 _tprintf(TEXT("SetCommState() failed. GetLastError() = %lu.\n"), ErrorCode);
147
148 return FALSE;
149 }
150
151 // Set the timeouts
153 {
154 return FALSE;
155 }
156
157 return TRUE;
158}
159
160// Members
161// ReadIntervalTimeout
162// Specifies the maximum time, in milliseconds, allowed to elapse between the arrival of two characters on the communications line. During a ReadFile operation, the time period begins when the first character is received. If the interval between the arrival of any two characters exceeds this amount, the ReadFile operation is completed and any buffered data is returned. A value of zero indicates that interval time-outs are not used.
163// A value of MAXDWORD, combined with zero values for both the ReadTotalTimeoutConstant and ReadTotalTimeoutMultiplier members, specifies that the read operation is to return immediately with the characters that have already been received, even if no characters have been received.
164//
165// ReadTotalTimeoutMultiplier
166// Specifies the multiplier, in milliseconds, used to calculate the total time-out period for read operations. For each read operation, this value is multiplied by the requested number of bytes to be read.
167// ReadTotalTimeoutConstant
168// Specifies the constant, in milliseconds, used to calculate the total time-out period for read operations. For each read operation, this value is added to the product of the ReadTotalTimeoutMultiplier member and the requested number of bytes.
169// A value of zero for both the ReadTotalTimeoutMultiplier and ReadTotalTimeoutConstant members indicates that total time-outs are not used for read operations.
170//
171// WriteTotalTimeoutMultiplier
172// Specifies the multiplier, in milliseconds, used to calculate the total time-out period for write operations. For each write operation, this value is multiplied by the number of bytes to be written.
173// WriteTotalTimeoutConstant
174// Specifies the constant, in milliseconds, used to calculate the total time-out period for write operations. For each write operation, this value is added to the product of the WriteTotalTimeoutMultiplier member and the number of bytes to be written.
175// A value of zero for both the WriteTotalTimeoutMultiplier and WriteTotalTimeoutConstant members indicates that total time-outs are not used for write operations.
176//
177// Remarks
178// If an application sets ReadIntervalTimeout and ReadTotalTimeoutMultiplier to MAXDWORD and sets ReadTotalTimeoutConstant to a value greater than zero and less than MAXDWORD, one of the following occurs when the ReadFile function is called:
179//
180// If there are any characters in the input buffer, ReadFile returns immediately with the characters in the buffer.
181// If there are no characters in the input buffer, ReadFile waits until a character arrives and then returns immediately.
182// If no character arrives within the time specified by ReadTotalTimeoutConstant, ReadFile times out.
183BOOL Rs232SetCommunicationTimeoutsWin32(DWORD ReadIntervalTimeout, DWORD ReadTotalTimeoutMultiplier, DWORD ReadTotalTimeoutConstant, DWORD WriteTotalTimeoutMultiplier, DWORD WriteTotalTimeoutConstant)
184{
185 COMMTIMEOUTS ct;
187
188 if (!GetCommTimeouts(hPortHandle, &ct))
189 {
191
192 _tprintf(TEXT("GetCommTimeouts() failed. GetLastError() = %lu.\n"), ErrorCode);
193
194 return FALSE;
195 }
196
197 ct.ReadIntervalTimeout = ReadIntervalTimeout;
198 ct.ReadTotalTimeoutConstant = ReadTotalTimeoutConstant;
199 ct.ReadTotalTimeoutMultiplier = ReadTotalTimeoutMultiplier;
200 ct.WriteTotalTimeoutConstant = WriteTotalTimeoutConstant;
201 ct.WriteTotalTimeoutMultiplier = WriteTotalTimeoutMultiplier;
202
203 if (!SetCommTimeouts(hPortHandle, &ct))
204 {
206
207 _tprintf(TEXT("SetCommTimeouts() failed. GetLastError() = %lu.\n"), ErrorCode);
208
209 return FALSE;
210 }
211
212 return TRUE;
213}
214
216{
217 DWORD BytesRead = 0;
219
220 // If ReadFile() fails then report error
221 if (!ReadFile(hPortHandle, DataByte, 1, &BytesRead, NULL))
222 {
224
225 _tprintf(TEXT("ReadFile() failed. GetLastError() = %lu.\n"), ErrorCode);
226
227 return FALSE;
228 }
229
230 // If ReadFile() succeeds, but BytesRead isn't 1
231 // then a timeout occurred.
232 if (BytesRead != 1)
233 {
234 return FALSE;
235 }
236
237 return TRUE;
238}
239
241{
245
246 Success = WriteFile(hPortHandle, &DataByte, 1, &BytesWritten, NULL);
247
248 if (!Success || BytesWritten != 1)
249 {
251
252 _tprintf(TEXT("WriteFile() failed. GetLastError() = %lu.\n"), ErrorCode);
253
254 return FALSE;
255 }
256
257 return TRUE;
258}
static UNICODE_STRING PortName
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define CloseHandle
Definition: compat.h:739
#define OPEN_EXISTING
Definition: compat.h:775
#define ReadFile(a, b, c, d, e)
Definition: compat.h:742
#define INVALID_HANDLE_VALUE
Definition: compat.h:731
#define GENERIC_READ
Definition: compat.h:135
#define MAX_PATH
Definition: compat.h:34
BOOL WINAPI WriteFile(IN HANDLE hFile, IN LPCVOID lpBuffer, IN DWORD nNumberOfBytesToWrite OPTIONAL, OUT LPDWORD lpNumberOfBytesWritten, IN LPOVERLAPPED lpOverlapped OPTIONAL)
Definition: rw.c:24
BOOL WINAPI SetCommTimeouts(HANDLE hComm, LPCOMMTIMEOUTS lptimeouts)
Definition: comm.c:1060
BOOL WINAPI SetCommState(HANDLE handle, LPDCB lpdcb)
Definition: comm.c:807
BOOL WINAPI GetCommState(HANDLE handle, LPDCB lpdcb)
Definition: comm.c:902
BOOL WINAPI GetCommTimeouts(HANDLE hComm, LPCOMMTIMEOUTS lptimeouts)
Definition: comm.c:1018
PWSTR StopBits[]
Definition: serial.c:37
PWSTR DataBits[]
Definition: serial.c:36
@ Success
Definition: eventcreate.c:712
BOOL Rs232SetCommunicationTimeoutsWin32(DWORD ReadIntervalTimeout, DWORD ReadTotalTimeoutMultiplier, DWORD ReadTotalTimeoutConstant, DWORD WriteTotalTimeoutMultiplier, DWORD WriteTotalTimeoutConstant)
Definition: rs232.c:183
BOOL Rs232OpenPortWin32(TCHAR *CommPort)
Definition: rs232.c:32
BOOL Rs232ClosePortWin32(VOID)
Definition: rs232.c:68
BOOL Rs232ReadByteWin32(BYTE *DataByte)
Definition: rs232.c:215
BOOL Rs232ConfigurePortWin32(TCHAR *DeviceControlString)
Definition: rs232.c:96
HANDLE hPortHandle
Definition: rs232.c:29
BOOL Rs232WriteByteWin32(BYTE DataByte)
Definition: rs232.c:240
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
#define _tprintf
Definition: tchar.h:506
#define TEXT(s)
Definition: k32.h:26
#define _stprintf
Definition: utility.h:124
_In_ NDIS_ERROR_CODE ErrorCode
Definition: ndis.h:4436
#define GENERIC_WRITE
Definition: nt_native.h:90
#define MAXDWORD
DWORD WriteTotalTimeoutConstant
Definition: winbase.h:713
DWORD ReadTotalTimeoutMultiplier
Definition: winbase.h:710
DWORD ReadTotalTimeoutConstant
Definition: winbase.h:711
DWORD ReadIntervalTimeout
Definition: winbase.h:709
DWORD WriteTotalTimeoutMultiplier
Definition: winbase.h:712
Definition: cdstruc.h:902
_Must_inspect_result_ _In_ WDFIOTARGET _In_opt_ WDFREQUEST _In_opt_ PWDF_MEMORY_DESCRIPTOR _In_opt_ PLONGLONG _In_opt_ PWDF_REQUEST_SEND_OPTIONS _Out_opt_ PULONG_PTR BytesWritten
Definition: wdfiotarget.h:960
_Must_inspect_result_ _In_ WDFIOTARGET _In_opt_ WDFREQUEST _In_opt_ PWDF_MEMORY_DESCRIPTOR _In_opt_ PLONGLONG _In_opt_ PWDF_REQUEST_SEND_OPTIONS _Out_opt_ PULONG_PTR BytesRead
Definition: wdfiotarget.h:870
#define ZeroMemory
Definition: winbase.h:1712
DWORD WINAPI GetLastError(void)
Definition: except.c:1042
#define DTR_CONTROL_DISABLE
Definition: winbase.h:533
#define RTS_CONTROL_DISABLE
Definition: winbase.h:536
#define BuildCommDCB
Definition: winbase.h:3733
#define NOPARITY
Definition: winbase.h:453
#define CreateFile
Definition: winbase.h:3749
char TCHAR
Definition: xmlstorage.h:189
unsigned char BYTE
Definition: xxhash.c:193