Skip to content

Commit 75df75b

Browse files
committed
fix CI
2 parents b6819ca + 7249c56 commit 75df75b

File tree

56 files changed

+880
-899
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+880
-899
lines changed

examples/all-clusters-app/all-clusters-common/all-clusters-app.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -2554,7 +2554,7 @@ cluster TimeSynchronization = 56 {
25542554
Two types of switch devices are supported: latching switch (e.g. rocker switch) and momentary switch (e.g. push button), distinguished with their feature flags.
25552555
Interactions with the switch device are exposed as attributes (for the latching switch) and as events (for both types of switches). An interested party MAY subscribe to these attributes/events and thus be informed of the interactions, and can perform actions based on this, for example by sending commands to perform an action such as controlling a light or a window shade. */
25562556
cluster Switch = 59 {
2557-
revision 1;
2557+
revision 2;
25582558

25592559
bitmap Feature : bitmap32 {
25602560
kLatchingSwitch = 0x1;

examples/all-clusters-app/linux/ValveControlDelegate.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ DataModel::Nullable<chip::Percent> ValveControlDelegate::HandleOpenValve(DataMod
3535
sLastOpenDuration = 0;
3636
ChipLogProgress(NotSpecified, "Valve opening from level: %d to %d", currentLevel, sLevel);
3737

38-
// In this demo application, the trasition is considered instant,
38+
// In this demo application, the transition is considered instant,
3939
// so current level is set to the requested level and current state is set to kOpen.
4040
currentLevel = sLevel;
4141
Attributes::CurrentState::Set(kValveEndpoint, ValveConfigurationAndControl::ValveStateEnum::kOpen);

examples/all-clusters-minimal-app/all-clusters-common/all-clusters-minimal-app.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -2286,7 +2286,7 @@ cluster EthernetNetworkDiagnostics = 55 {
22862286
Two types of switch devices are supported: latching switch (e.g. rocker switch) and momentary switch (e.g. push button), distinguished with their feature flags.
22872287
Interactions with the switch device are exposed as attributes (for the latching switch) and as events (for both types of switches). An interested party MAY subscribe to these attributes/events and thus be informed of the interactions, and can perform actions based on this, for example by sending commands to perform an action such as controlling a light or a window shade. */
22882288
cluster Switch = 59 {
2289-
revision 1;
2289+
revision 2;
22902290

22912291
bitmap Feature : bitmap32 {
22922292
kLatchingSwitch = 0x1;

examples/bridge-app/bridge-common/bridge-app.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -1921,7 +1921,7 @@ cluster EthernetNetworkDiagnostics = 55 {
19211921
Two types of switch devices are supported: latching switch (e.g. rocker switch) and momentary switch (e.g. push button), distinguished with their feature flags.
19221922
Interactions with the switch device are exposed as attributes (for the latching switch) and as events (for both types of switches). An interested party MAY subscribe to these attributes/events and thus be informed of the interactions, and can perform actions based on this, for example by sending commands to perform an action such as controlling a light or a window shade. */
19231923
cluster Switch = 59 {
1924-
revision 1;
1924+
revision 2;
19251925

19261926
bitmap Feature : bitmap32 {
19271927
kLatchingSwitch = 0x1;

examples/chef/devices/rootnode_genericswitch_2dfff6e516.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -1251,7 +1251,7 @@ cluster GeneralDiagnostics = 51 {
12511251
Two types of switch devices are supported: latching switch (e.g. rocker switch) and momentary switch (e.g. push button), distinguished with their feature flags.
12521252
Interactions with the switch device are exposed as attributes (for the latching switch) and as events (for both types of switches). An interested party MAY subscribe to these attributes/events and thus be informed of the interactions, and can perform actions based on this, for example by sending commands to perform an action such as controlling a light or a window shade. */
12531253
cluster Switch = 59 {
1254-
revision 1;
1254+
revision 2;
12551255

12561256
bitmap Feature : bitmap32 {
12571257
kLatchingSwitch = 0x1;

examples/chef/devices/rootnode_genericswitch_9866e35d0b.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -1251,7 +1251,7 @@ cluster GeneralDiagnostics = 51 {
12511251
Two types of switch devices are supported: latching switch (e.g. rocker switch) and momentary switch (e.g. push button), distinguished with their feature flags.
12521252
Interactions with the switch device are exposed as attributes (for the latching switch) and as events (for both types of switches). An interested party MAY subscribe to these attributes/events and thus be informed of the interactions, and can perform actions based on this, for example by sending commands to perform an action such as controlling a light or a window shade. */
12531253
cluster Switch = 59 {
1254-
revision 1;
1254+
revision 2;
12551255

12561256
bitmap Feature : bitmap32 {
12571257
kLatchingSwitch = 0x1;

examples/contact-sensor-app/linux/README.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,6 @@ details.
6969

7070
## Running the Complete Example on Raspberry Pi 4
7171

72-
> If you want to test Echo protocol, please enable Echo handler
73-
>
74-
> gn gen out/debug --args='chip_app_use_echo=true'
75-
> ninja -C out/debug
76-
7772
- Prerequisites
7873

7974
1. A Raspberry Pi 4 board
@@ -112,7 +107,7 @@ details.
112107
$ cd ~/connectedhomeip/examples/contact-sensor-app/linux
113108
$ sudo out/debug/chip-contact-sensor-app --ble-device [bluetooth device number]
114109
# In this example, the device we want to use is hci1
115-
$ sudo out/debug/chip-contact-sensor-app --ble-device 1
110+
$ sudo out/debug/contact-sensor-app --ble-device 1
116111

117112
- Test the device using ChipDeviceController on your laptop /
118113
workstation etc.

examples/fabric-admin/commands/pairing/PairingCommand.h

+9-9
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ class PairingCommand : public CHIPCommand,
250250
const PairingNetworkType mNetworkType;
251251
const chip::Dnssd::DiscoveryFilterType mFilterType;
252252
Command::AddressWithInterface mRemoteAddr;
253-
NodeId mNodeId;
253+
NodeId mNodeId = chip::kUndefinedNodeId;
254254
chip::Optional<uint16_t> mTimeout;
255255
chip::Optional<bool> mDiscoverOnce;
256256
chip::Optional<bool> mUseOnlyOnNetworkDiscovery;
@@ -272,18 +272,18 @@ class PairingCommand : public CHIPCommand,
272272
TypedComplexArgument<chip::app::DataModel::List<chip::app::Clusters::TimeSynchronization::Structs::DSTOffsetStruct::Type>>
273273
mComplex_DSTOffsets;
274274

275-
uint16_t mRemotePort;
276-
uint16_t mDiscriminator;
277-
uint32_t mSetupPINCode;
278-
uint16_t mIndex;
275+
uint16_t mRemotePort = 0;
276+
uint16_t mDiscriminator = 0;
277+
uint32_t mSetupPINCode = 0;
278+
uint16_t mIndex = 0;
279279
chip::ByteSpan mOperationalDataset;
280280
chip::ByteSpan mSSID;
281281
chip::ByteSpan mPassword;
282-
char * mOnboardingPayload;
283-
uint64_t mDiscoveryFilterCode;
284-
char * mDiscoveryFilterInstanceName;
282+
char * mOnboardingPayload = nullptr;
283+
uint64_t mDiscoveryFilterCode = 0;
284+
char * mDiscoveryFilterInstanceName = nullptr;
285285

286-
bool mDeviceIsICD;
286+
bool mDeviceIsICD = false;
287287
uint8_t mRandomGeneratedICDSymmetricKey[chip::Crypto::kAES_CCM128_Key_Length];
288288

289289
// For unpair

examples/fabric-admin/scripts/run_fabric_sync.sh

+2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ DEFAULT_BRIDGE_CHOICES=(
1414
"./fabric-bridge-app"
1515
"out/debug/standalone/fabric-bridge-app"
1616
"out/linux-x64-fabric-bridge-rpc/fabric-bridge-app"
17+
"out/linux-x64-fabric-bridge-rpc-no-ble/fabric-bridge-app"
1718
"out/darwin-arm64-fabric-bridge-rpc/fabric-bridge-app"
19+
"out/darwin-arm64-fabric-bridge-rpc-no-ble/fabric-bridge-app"
1820
)
1921
FABRIC_ADMIN_LOG="/tmp/fabric_admin.log"
2022
FABRIC_BRIDGE_APP_LOG="/tmp/fabric_bridge_app.log"

examples/fabric-bridge-app/linux/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ defined:
9292

9393
```
9494
source scripts/activate.sh
95-
./scripts/build/build_examples.py --target linux-x64-fabric-bridge-rpc build
95+
./scripts/build/build_examples.py --target linux-x64-fabric-bridge-rpc-no-ble build
9696
```
9797

9898
### For Raspberry Pi 4 example:

examples/light-switch-app/light-switch-common/light-switch-app.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -1897,7 +1897,7 @@ cluster TimeSynchronization = 56 {
18971897
Two types of switch devices are supported: latching switch (e.g. rocker switch) and momentary switch (e.g. push button), distinguished with their feature flags.
18981898
Interactions with the switch device are exposed as attributes (for the latching switch) and as events (for both types of switches). An interested party MAY subscribe to these attributes/events and thus be informed of the interactions, and can perform actions based on this, for example by sending commands to perform an action such as controlling a light or a window shade. */
18991899
cluster Switch = 59 {
1900-
revision 1;
1900+
revision 2;
19011901

19021902
bitmap Feature : bitmap32 {
19031903
kLatchingSwitch = 0x1;

examples/light-switch-app/qpg/zap/switch.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -1953,7 +1953,7 @@ cluster ThreadNetworkDiagnostics = 53 {
19531953
Two types of switch devices are supported: latching switch (e.g. rocker switch) and momentary switch (e.g. push button), distinguished with their feature flags.
19541954
Interactions with the switch device are exposed as attributes (for the latching switch) and as events (for both types of switches). An interested party MAY subscribe to these attributes/events and thus be informed of the interactions, and can perform actions based on this, for example by sending commands to perform an action such as controlling a light or a window shade. */
19551955
cluster Switch = 59 {
1956-
revision 1;
1956+
revision 2;
19571957

19581958
bitmap Feature : bitmap32 {
19591959
kLatchingSwitch = 0x1;

examples/lighting-app-data-mode-no-unique-id/lighting-common/lighting-app.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -1803,7 +1803,7 @@ cluster EthernetNetworkDiagnostics = 55 {
18031803
Two types of switch devices are supported: latching switch (e.g. rocker switch) and momentary switch (e.g. push button), distinguished with their feature flags.
18041804
Interactions with the switch device are exposed as attributes (for the latching switch) and as events (for both types of switches). An interested party MAY subscribe to these attributes/events and thus be informed of the interactions, and can perform actions based on this, for example by sending commands to perform an action such as controlling a light or a window shade. */
18051805
cluster Switch = 59 {
1806-
revision 1;
1806+
revision 2;
18071807

18081808
bitmap Feature : bitmap32 {
18091809
kLatchingSwitch = 0x1;

examples/lighting-app/lighting-common/lighting-app.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -1803,7 +1803,7 @@ cluster EthernetNetworkDiagnostics = 55 {
18031803
Two types of switch devices are supported: latching switch (e.g. rocker switch) and momentary switch (e.g. push button), distinguished with their feature flags.
18041804
Interactions with the switch device are exposed as attributes (for the latching switch) and as events (for both types of switches). An interested party MAY subscribe to these attributes/events and thus be informed of the interactions, and can perform actions based on this, for example by sending commands to perform an action such as controlling a light or a window shade. */
18051805
cluster Switch = 59 {
1806-
revision 1;
1806+
revision 2;
18071807

18081808
bitmap Feature : bitmap32 {
18091809
kLatchingSwitch = 0x1;

examples/placeholder/linux/apps/app1/config.matter

+2-2
Original file line numberDiff line numberDiff line change
@@ -2711,7 +2711,7 @@ cluster BridgedDeviceBasicInformation = 57 {
27112711
Two types of switch devices are supported: latching switch (e.g. rocker switch) and momentary switch (e.g. push button), distinguished with their feature flags.
27122712
Interactions with the switch device are exposed as attributes (for the latching switch) and as events (for both types of switches). An interested party MAY subscribe to these attributes/events and thus be informed of the interactions, and can perform actions based on this, for example by sending commands to perform an action such as controlling a light or a window shade. */
27132713
cluster Switch = 59 {
2714-
revision 1;
2714+
revision 2;
27152715

27162716
bitmap Feature : bitmap32 {
27172717
kLatchingSwitch = 0x1;
@@ -2767,7 +2767,7 @@ cluster Switch = 59 {
27672767
Two types of switch devices are supported: latching switch (e.g. rocker switch) and momentary switch (e.g. push button), distinguished with their feature flags.
27682768
Interactions with the switch device are exposed as attributes (for the latching switch) and as events (for both types of switches). An interested party MAY subscribe to these attributes/events and thus be informed of the interactions, and can perform actions based on this, for example by sending commands to perform an action such as controlling a light or a window shade. */
27692769
cluster Switch = 59 {
2770-
revision 1;
2770+
revision 2;
27712771

27722772
bitmap Feature : bitmap32 {
27732773
kLatchingSwitch = 0x1;

examples/placeholder/linux/apps/app2/config.matter

+2-2
Original file line numberDiff line numberDiff line change
@@ -2668,7 +2668,7 @@ cluster BridgedDeviceBasicInformation = 57 {
26682668
Two types of switch devices are supported: latching switch (e.g. rocker switch) and momentary switch (e.g. push button), distinguished with their feature flags.
26692669
Interactions with the switch device are exposed as attributes (for the latching switch) and as events (for both types of switches). An interested party MAY subscribe to these attributes/events and thus be informed of the interactions, and can perform actions based on this, for example by sending commands to perform an action such as controlling a light or a window shade. */
26702670
cluster Switch = 59 {
2671-
revision 1;
2671+
revision 2;
26722672

26732673
bitmap Feature : bitmap32 {
26742674
kLatchingSwitch = 0x1;
@@ -2724,7 +2724,7 @@ cluster Switch = 59 {
27242724
Two types of switch devices are supported: latching switch (e.g. rocker switch) and momentary switch (e.g. push button), distinguished with their feature flags.
27252725
Interactions with the switch device are exposed as attributes (for the latching switch) and as events (for both types of switches). An interested party MAY subscribe to these attributes/events and thus be informed of the interactions, and can perform actions based on this, for example by sending commands to perform an action such as controlling a light or a window shade. */
27262726
cluster Switch = 59 {
2727-
revision 1;
2727+
revision 2;
27282728

27292729
bitmap Feature : bitmap32 {
27302730
kLatchingSwitch = 0x1;

0 commit comments

Comments
 (0)