Skip to content

Commit afd03e1

Browse files
committed
Minor fixes
1 parent 89d9737 commit afd03e1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/onoff_light/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ fn main() {
3232
// vid/pid should match those in the DAC
3333
let dev_info = BasicInfoConfig {
3434
vid: 0xFFF1,
35-
pid: 0x8002,
35+
pid: 0x8000,
3636
hw_ver: 2,
3737
sw_ver: 1,
3838
sw_ver_str: "1".to_string(),

matter/src/fabric.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ use crate::{
3131
tlv::{OctetStr, TLVWriter, TagType, ToTLV, UtfStr},
3232
};
3333

34-
const MAX_CERT_TLV_LEN: usize = 300;
34+
const MAX_CERT_TLV_LEN: usize = 350;
3535
const COMPRESSED_FABRIC_ID_LEN: usize = 8;
3636

3737
macro_rules! fb_key {

matter/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
//!
4646
//! /// The basic information about this device
4747
//! let dev_info = BasicInfoConfig {
48-
//! vid: 0x8002,
48+
//! vid: 0x8000,
4949
//! pid: 0xFFF1,
5050
//! hw_ver: 2,
5151
//! sw_ver: 1,

0 commit comments

Comments
 (0)