Home | History | Annotate | Download | only in serial

Lines Matching refs:Parity

149             comDCB.Parity       = win32.NOPARITY
150 comDCB.fParity = 0 # Disable Parity Check
152 comDCB.Parity = win32.EVENPARITY
153 comDCB.fParity = 1 # Enable Parity Check
155 comDCB.Parity = win32.ODDPARITY
156 comDCB.fParity = 1 # Enable Parity Check
158 comDCB.Parity = win32.MARKPARITY
159 comDCB.fParity = 1 # Enable Parity Check
161 comDCB.Parity = win32.SPACEPARITY
162 comDCB.fParity = 1 # Enable Parity Check
164 raise ValueError("Unsupported parity mode: %r" % self._parity)
176 # Char. w/ Parity-Err are replaced with 0xff (if fErrorChar is set to TRUE)