@@ -87,7 +87,7 @@ pub struct OsdpEventCardRead {
87
87
pub direction : bool ,
88
88
89
89
/// 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
91
91
/// field is set to zero.
92
92
pub nr_bits : usize ,
93
93
@@ -128,8 +128,8 @@ impl From<libosdp_sys::osdp_event_cardread> for OsdpEventCardRead {
128
128
let format = value. format . into ( ) ;
129
129
let len = value. length as usize ;
130
130
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 ) ) ,
133
133
} ;
134
134
let data = value. data [ 0 ..nr_bytes] . to_vec ( ) ;
135
135
OsdpEventCardRead {
@@ -146,8 +146,8 @@ impl From<OsdpEventCardRead> for libosdp_sys::osdp_event_cardread {
146
146
fn from ( value : OsdpEventCardRead ) -> Self {
147
147
let mut data = [ 0 ; libosdp_sys:: OSDP_EVENT_CARDREAD_MAX_DATALEN as usize ] ;
148
148
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 ,
151
151
} ;
152
152
data[ ..value. data . len ( ) ] . copy_from_slice ( & value. data [ ..] ) ;
153
153
libosdp_sys:: osdp_event_cardread {
0 commit comments