Network Commissioning: Fix incorrect reporting of transport type
This commit is contained in:
parent
72e703353d
commit
5843ebf2c0
1 changed files with 3 additions and 3 deletions
|
@ -36,9 +36,9 @@ impl ClusterType for NwCommCluster {
|
||||||
}
|
}
|
||||||
|
|
||||||
enum FeatureMap {
|
enum FeatureMap {
|
||||||
_Wifi = 0,
|
_Wifi = 0x01,
|
||||||
_Thread = 1,
|
_Thread = 0x02,
|
||||||
Ethernet = 2,
|
Ethernet = 0x04,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl NwCommCluster {
|
impl NwCommCluster {
|
||||||
|
|
Loading…
Add table
Reference in a new issue