Skip to content

Commit 93285ff

Browse files
committed
Fix card data length for "raw bit array"
Only formatted ASCII data is counted in bytes. All raw formats count in bits.
1 parent b9768f5 commit 93285ff

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

libosdp/src/events.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ pub struct OsdpEventCardRead {
8787
pub direction: bool,
8888

8989
/// Number of valid data bits in [`OsdpEventCardRead::data`] when the card
90-
/// format is [`OsdpCardFormats::Wiegand`]. For all other formats, this
90+
/// format is not [`OsdpCardFormats::Ascii`]. For [`OsdpCardFormats::Ascii`], this
9191
/// field is set to zero.
9292
pub nr_bits: usize,
9393

@@ -128,8 +128,8 @@ impl From<libosdp_sys::osdp_event_cardread> for OsdpEventCardRead {
128128
let format = value.format.into();
129129
let len = value.length as usize;
130130
let (nr_bits, nr_bytes) = match format {
131-
OsdpCardFormats::Wiegand => (len, (len + 7) / 8),
132-
_ => (0, len),
131+
OsdpCardFormats::Ascii => (0, len),
132+
_ => (len, len.div_ceil(8)),
133133
};
134134
let data = value.data[0..nr_bytes].to_vec();
135135
OsdpEventCardRead {
@@ -146,8 +146,8 @@ impl From<OsdpEventCardRead> for libosdp_sys::osdp_event_cardread {
146146
fn from(value: OsdpEventCardRead) -> Self {
147147
let mut data = [0; libosdp_sys::OSDP_EVENT_CARDREAD_MAX_DATALEN as usize];
148148
let length = match value.format {
149-
OsdpCardFormats::Wiegand => value.nr_bits as i32,
150-
_ => value.data.len() as i32,
149+
OsdpCardFormats::Ascii => value.data.len() as i32,
150+
_ => value.nr_bits as i32,
151151
};
152152
data[..value.data.len()].copy_from_slice(&value.data[..]);
153153
libosdp_sys::osdp_event_cardread {

0 commit comments

Comments
 (0)