Network Commissioning: Fix incorrect reporting of transport type

This commit is contained in:
Kedar Sovani 2022-12-31 11:02:45 +05:30
parent 72e703353d
commit 5843ebf2c0

View file

@ -36,9 +36,9 @@ impl ClusterType for NwCommCluster {
}
enum FeatureMap {
_Wifi = 0,
_Thread = 1,
Ethernet = 2,
_Wifi = 0x01,
_Thread = 0x02,
Ethernet = 0x04,
}
impl NwCommCluster {