Skip to content

Commit a739006

Browse files
committed
Fix an issue with SilkyEvCam HD
Thanks to @ buzz66boy for reporting and fixing the issue
1 parent 7cd28e0 commit a739006

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

drivers/src/devices/prophesee_evk4.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,11 @@ impl device::Usb for Device {
250250
b'P', 0x00, b'r', 0x00, b'o', 0x00, b'p', 0x00, b'h', 0x00, b'e', 0x00, b's',
251251
0x00, b'e', 0x00, b'e', 0x00,
252252
],
253+
// CenturyArks (UTF-16)
254+
&[
255+
b'C', 0x00, b'e', 0x00, b'n', 0x00, b't', 0x00, b'u', 0x00, b'r', 0x00, b'y',
256+
0x00, b'A', 0x00, b'r', 0x00, b'k', 0x00, b's', 0x00,
257+
],
253258
// IDS Imaging Development Systems GmbH (UTF-16)
254259
&[
255260
b'I', 0x00, b'D', 0x00, b'S', 0x00, b' ', 0x00, b'I', 0x00, b'm', 0x00, b'a',

drivers/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ pub mod properties;
77
pub mod usb;
88

99
pub use adapters::Adapter;
10+
pub use device::SerialOrBusNumberAndAddress;
1011
pub use device::Usb as UsbDevice;
11-
pub use device::SerialOrBusNumberAndAddress as SerialOrBusNumberAndAddress;
1212
pub use devices::list_devices;
1313
pub use devices::open;
1414
pub use devices::Configuration;

0 commit comments

Comments
 (0)