Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
28d3d213
Commit
28d3d213
authored
Nov 22, 1998
by
Cliff Wright
Committed by
Alexandre Julliard
Nov 22, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a mask set, and other parity setting bugs for serial ports.
parent
e6520dcd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
10 deletions
+16
-10
comm.c
misc/comm.c
+16
-10
No files found.
misc/comm.c
View file @
28d3d213
...
...
@@ -255,11 +255,11 @@ BOOL16 WINAPI BuildCommDCB16(LPCSTR device, LPDCB16 lpdcb)
*
ptr
=
toupper
(
*
ptr
);
TRACE
(
comm
,
"parity (%c)
\n
"
,
*
ptr
);
lpdcb
->
fParity
=
1
;
lpdcb
->
fParity
=
TRUE
;
switch
(
*
ptr
)
{
case
'N'
:
lpdcb
->
Parity
=
NOPARITY
;
lpdcb
->
fParity
=
0
;
lpdcb
->
fParity
=
FALSE
;
break
;
case
'E'
:
lpdcb
->
Parity
=
EVENPARITY
;
...
...
@@ -1459,15 +1459,18 @@ INT16 WINAPI GetCommState16(INT16 fd, LPDCB16 lpdcb)
break
;
}
switch
(
port
.
c_cflag
&
~
(
PARENB
|
PARODD
))
{
switch
(
port
.
c_cflag
&
(
PARENB
|
PARODD
))
{
case
0
:
lpdcb
->
fParity
=
NOPARITY
;
lpdcb
->
fParity
=
FALSE
;
lpdcb
->
Parity
=
NOPARITY
;
break
;
case
PARENB
:
lpdcb
->
fParity
=
EVENPARITY
;
lpdcb
->
fParity
=
TRUE
;
lpdcb
->
Parity
=
EVENPARITY
;
break
;
case
(
PARENB
|
PARODD
):
lpdcb
->
fParity
=
ODDPARITY
;
lpdcb
->
fParity
=
TRUE
;
lpdcb
->
Parity
=
ODDPARITY
;
break
;
}
...
...
@@ -1578,15 +1581,18 @@ BOOL32 WINAPI GetCommState32(INT32 fd, LPDCB32 lpdcb)
break
;
}
switch
(
port
.
c_cflag
&
~
(
PARENB
|
PARODD
))
{
switch
(
port
.
c_cflag
&
(
PARENB
|
PARODD
))
{
case
0
:
lpdcb
->
fParity
=
NOPARITY
;
lpdcb
->
fParity
=
FALSE
;
lpdcb
->
Parity
=
NOPARITY
;
break
;
case
PARENB
:
lpdcb
->
fParity
=
EVENPARITY
;
lpdcb
->
fParity
=
TRUE
;
lpdcb
->
Parity
=
EVENPARITY
;
break
;
case
(
PARENB
|
PARODD
):
lpdcb
->
fParity
=
ODDPARITY
;
lpdcb
->
fParity
=
TRUE
;
lpdcb
->
Parity
=
ODDPARITY
;
break
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment