Add additional product ID for Cloud III Wireless
This commit is contained in:
@@ -6,7 +6,7 @@ use std::{time::Duration, vec};
|
||||
|
||||
const HP: u16 = 0x03F0;
|
||||
pub const VENDOR_IDS: [u16; 1] = [HP];
|
||||
pub const PRODUCT_IDS: [u16; 1] = [0x05B7];
|
||||
pub const PRODUCT_IDS: [u16; 2] = [0x05B7, 0x0c9d]; // Possible Cloud III Wireless product IDs
|
||||
|
||||
const BASE_PACKET: [u8; 62] = {
|
||||
let mut packet = [0; 62];
|
||||
|
||||
@@ -16,7 +16,7 @@ use thistermination::TerminationFull;
|
||||
// Possible vendor IDs [HyperX, HP]
|
||||
const VENDOR_IDS: [u16; 2] = [0x0951, 0x03F0];
|
||||
// All supported product IDs
|
||||
const PRODUCT_IDS: [u16; 6] = [0x1718, 0x018B, 0x0D93, 0x0696, 0x0b92, 0x05B7];
|
||||
const PRODUCT_IDS: [u16; 7] = [0x1718, 0x018B, 0x0D93, 0x0696, 0x0b92, 0x05B7, 0x0c9d];
|
||||
|
||||
const RESPONSE_BUFFER_SIZE: usize = 256;
|
||||
const RESPONSE_DELAY: Duration = Duration::from_millis(50);
|
||||
|
||||
Reference in New Issue
Block a user