Skip to content

Commit b20e1c4

Browse files
committed
Add Mark and Space variants to Parity enum
Closes #167
1 parent c320919 commit b20e1c4

File tree

5 files changed

+26
-0
lines changed

5 files changed

+26
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ project adheres to [Semantic Versioning](https://semver.org/).
99
### Added
1010
* Added conversions between `DataBits`, `StopBits` types and their numeric representations
1111
* Added `FromStr` implementation for `FlowControl`
12+
* Added `Mark` and `Space` variants to `Parity` enum
1213
### Changed
1314
### Fixed
1415
* Fixes a bug where `available_ports()` returned disabled devices on Windows.

src/lib.rs

+8
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,12 @@ pub enum Parity {
204204

205205
/// Parity bit sets even number of 1 bits.
206206
Even,
207+
208+
/// Parity bit is set to 1.
209+
Mark,
210+
211+
/// Parity bit is set to 0.
212+
Space,
207213
}
208214

209215
impl fmt::Display for Parity {
@@ -212,6 +218,8 @@ impl fmt::Display for Parity {
212218
Parity::None => write!(f, "None"),
213219
Parity::Odd => write!(f, "Odd"),
214220
Parity::Even => write!(f, "Even"),
221+
Parity::Mark => write!(f, "Mark"),
222+
Parity::Space => write!(f, "Space"),
215223
}
216224
}
217225
}

src/posix/termios.rs

+13
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,19 @@ pub(crate) fn set_parity(termios: &mut Termios, parity: Parity) {
163163
termios.c_iflag |= libc::INPCK;
164164
termios.c_iflag &= !libc::IGNPAR;
165165
}
166+
Parity::Mark => {
167+
termios.c_cflag |= libc::PARODD;
168+
termios.c_cflag |= libc::PARENB;
169+
termios.c_iflag |= libc::INPCK;
170+
termios.c_iflag &= !libc::IGNPAR;
171+
termios.c_iflag |= libc::CMSPAR;
172+
}
173+
Parity::Space => {
174+
termios.c_cflag &= !libc::PARODD;
175+
termios.c_cflag |= libc::PARENB;
176+
termios.c_iflag |= libc::INPCK;
177+
termios.c_iflag &= !libc::IGNPAR;
178+
}
166179
};
167180
}
168181

src/windows/com.rs

+2
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,8 @@ impl SerialPort for COMPort {
314314
match dcb.Parity {
315315
ODDPARITY => Ok(Parity::Odd),
316316
EVENPARITY => Ok(Parity::Even),
317+
MARKPARITY => Ok(Parity::Mark),
318+
SPACEPARITY => Ok(Parity::Space),
317319
NOPARITY => Ok(Parity::None),
318320
_ => Err(Error::new(
319321
ErrorKind::Unknown,

src/windows/dcb.rs

+2
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ pub(crate) fn set_parity(dcb: &mut DCB, parity: Parity) {
8181
Parity::None => NOPARITY,
8282
Parity::Odd => ODDPARITY,
8383
Parity::Even => EVENPARITY,
84+
Parity::Mark => MARKPARITY,
85+
Parity::Space => SPACEPARITY,
8486
};
8587

8688
dcb.set_fParity(if parity == Parity::None { FALSE } else { TRUE } as DWORD);

0 commit comments

Comments
 (0)