From 45a8add58e75363a21ce97a45d45791b984fa438 Mon Sep 17 00:00:00 2001 From: Michael Spang Date: Tue, 25 Jan 2022 01:11:23 -0500 Subject: [PATCH] Revert "[chip-tool] Use chip::EndpointId instead of uint8_t and relax the restriction from old ZCL endpoint constraints (#13692)" This reverts commit d1f66193c96dd0066514c8d0ae2952e894b94ff0. --- .../commands/clusters/ModelCommand.h | 7 +- examples/chip-tool/commands/common/Command.h | 4 + examples/chip-tool/templates/commands.zapt | 24 +- .../zap-generated/cluster/Commands.h | 6448 ++++++++--------- 4 files changed, 3244 insertions(+), 3239 deletions(-) diff --git a/examples/chip-tool/commands/clusters/ModelCommand.h b/examples/chip-tool/commands/clusters/ModelCommand.h index 2dfec9900f0a7a..e769ad3f9ffad3 100644 --- a/examples/chip-tool/commands/clusters/ModelCommand.h +++ b/examples/chip-tool/commands/clusters/ModelCommand.h @@ -20,6 +20,7 @@ #include "../../config/PersistentStorage.h" #include "../common/CHIPCommand.h" +#include #include class ModelCommand : public CHIPCommand @@ -35,7 +36,7 @@ class ModelCommand : public CHIPCommand void AddArguments() { AddArgument("node-id", 0, UINT64_MAX, &mNodeId); - AddArgument("endpoint-id", 0, UINT16_MAX, &mEndPointId); + AddArgument("endpoint-id", CHIP_ZCL_ENDPOINT_MIN, CHIP_ZCL_ENDPOINT_MAX, &mEndPointId); AddArgument("timedInteractionTimeoutMs", 0, UINT16_MAX, &mTimedInteractionTimeoutMs); } @@ -43,14 +44,14 @@ class ModelCommand : public CHIPCommand CHIP_ERROR RunCommand() override; chip::System::Clock::Timeout GetWaitDuration() const override { return chip::System::Clock::Seconds16(10); } - virtual CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endPointId) = 0; + virtual CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endPointId) = 0; protected: chip::Optional mTimedInteractionTimeoutMs; private: chip::NodeId mNodeId; - chip::EndpointId mEndPointId; + uint8_t mEndPointId; static void OnDeviceConnectedFn(void * context, ChipDevice * device); static void OnDeviceConnectionFailureFn(void * context, PeerId peerId, CHIP_ERROR error); diff --git a/examples/chip-tool/commands/common/Command.h b/examples/chip-tool/commands/common/Command.h index b6a0021c30b221..4b1074cd768984 100644 --- a/examples/chip-tool/commands/common/Command.h +++ b/examples/chip-tool/commands/common/Command.h @@ -33,6 +33,10 @@ class Command; +// Limits on endpoint values. +#define CHIP_ZCL_ENDPOINT_MIN 0x00 +#define CHIP_ZCL_ENDPOINT_MAX 0xF0 + template std::unique_ptr make_unique(Args &&... args) { diff --git a/examples/chip-tool/templates/commands.zapt b/examples/chip-tool/templates/commands.zapt index dd0a0f56010061..a7f619a272e723 100644 --- a/examples/chip-tool/templates/commands.zapt +++ b/examples/chip-tool/templates/commands.zapt @@ -278,9 +278,9 @@ public: ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster ({{asHex parent.code 8}}) command ({{asHex code 8}}) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster ({{asHex parent.code 8}}) command ({{asHex code 8}}) on endpoint %" PRIu8, endpointId); {{#chip_cluster_command_non_expanded_arguments}} {{#if isArray}} @@ -315,9 +315,9 @@ public: { } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster ({{asHex parent.code 8}}) ReadEvent ({{asHex code 8}}) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster ({{asHex parent.code 4}}) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::{{asUpperCamelCase parent.name}}Cluster cluster; cluster.Associate(device, endpointId); @@ -348,9 +348,9 @@ public: { } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster ({{asHex parent.code 8}}) ReportEvent ({{asHex code 8}}) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster ({{asHex parent.code 4}}) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::{{asUpperCamelCase parent.name}}Cluster cluster; cluster.Associate(device, endpointId); @@ -400,9 +400,9 @@ public: { } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster ({{asHex parent.code 8}}) ReadAttribute ({{asHex code 8}}) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster ({{asHex parent.code 4}}) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::{{asUpperCamelCase parent.name}}Cluster cluster; cluster.Associate(device, endpointId); @@ -443,9 +443,9 @@ public: { } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster ({{asHex parent.code 8}}) WriteAttribute ({{asHex code 8}}) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster ({{asHex parent.code 4}}) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::{{asUpperCamelCase parent.name}}Cluster cluster; cluster.Associate(device, endpointId); @@ -475,9 +475,9 @@ public: { } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster ({{asHex parent.code 8}}) ReportAttribute ({{asHex code 8}}) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster ({{asHex parent.code 4}}) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::{{asUpperCamelCase parent.name}}Cluster cluster; cluster.Associate(device, endpointId); diff --git a/zzz_generated/chip-tool/zap-generated/cluster/Commands.h b/zzz_generated/chip-tool/zap-generated/cluster/Commands.h index ef53720c78214d..e6075145daccf7 100644 --- a/zzz_generated/chip-tool/zap-generated/cluster/Commands.h +++ b/zzz_generated/chip-tool/zap-generated/cluster/Commands.h @@ -4662,9 +4662,9 @@ class ReadAccessControlAccessControlEntryChanged : public ModelCommand ~ReadAccessControlAccessControlEntryChanged() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001F) ReadEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001F) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::AccessControlCluster cluster; cluster.Associate(device, endpointId); @@ -4693,9 +4693,9 @@ class ReportAccessControlAccessControlEntryChanged : public ModelCommand ~ReportAccessControlAccessControlEntryChanged() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001F) ReportEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001F) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::AccessControlCluster cluster; cluster.Associate(device, endpointId); @@ -4735,9 +4735,9 @@ class ReadAccessControlAccessControlExtensionChanged : public ModelCommand ~ReadAccessControlAccessControlExtensionChanged() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001F) ReadEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001F) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::AccessControlCluster cluster; cluster.Associate(device, endpointId); @@ -4766,9 +4766,9 @@ class ReportAccessControlAccessControlExtensionChanged : public ModelCommand ~ReportAccessControlAccessControlExtensionChanged() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001F) ReportEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001F) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::AccessControlCluster cluster; cluster.Associate(device, endpointId); @@ -4809,9 +4809,9 @@ class ReadAccessControlAcl : public ModelCommand ~ReadAccessControlAcl() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001F) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AccessControlCluster cluster; cluster.Associate(device, endpointId); @@ -4842,9 +4842,9 @@ class ReportAccessControlAcl : public ModelCommand ~ReportAccessControlAcl() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001F) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AccessControlCluster cluster; cluster.Associate(device, endpointId); @@ -4887,9 +4887,9 @@ class ReadAccessControlExtension : public ModelCommand ~ReadAccessControlExtension() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001F) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AccessControlCluster cluster; cluster.Associate(device, endpointId); @@ -4920,9 +4920,9 @@ class ReportAccessControlExtension : public ModelCommand ~ReportAccessControlExtension() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001F) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AccessControlCluster cluster; cluster.Associate(device, endpointId); @@ -4965,9 +4965,9 @@ class ReadAccessControlAttributeList : public ModelCommand ~ReadAccessControlAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001F) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AccessControlCluster cluster; cluster.Associate(device, endpointId); @@ -4995,9 +4995,9 @@ class ReportAccessControlAttributeList : public ModelCommand ~ReportAccessControlAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001F) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AccessControlCluster cluster; cluster.Associate(device, endpointId); @@ -5037,9 +5037,9 @@ class ReadAccessControlClusterRevision : public ModelCommand ~ReadAccessControlClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001F) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AccessControlCluster cluster; cluster.Associate(device, endpointId); @@ -5067,9 +5067,9 @@ class ReportAccessControlClusterRevision : public ModelCommand ~ReportAccessControlClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001F) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AccessControlCluster cluster; cluster.Associate(device, endpointId); @@ -5119,9 +5119,9 @@ class AccountLoginGetSetupPINRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050E) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050E) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnAccountLoginGetSetupPINResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -5144,9 +5144,9 @@ class AccountLoginLoginRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050E) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050E) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -5164,9 +5164,9 @@ class AccountLoginLogoutRequest : public ModelCommand public: AccountLoginLogoutRequest() : ModelCommand("logout-request") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050E) command (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050E) command (0x00000003) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -5190,9 +5190,9 @@ class ReadAccountLoginAttributeList : public ModelCommand ~ReadAccountLoginAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050E) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050E) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AccountLoginCluster cluster; cluster.Associate(device, endpointId); @@ -5220,9 +5220,9 @@ class ReportAccountLoginAttributeList : public ModelCommand ~ReportAccountLoginAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050E) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050E) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AccountLoginCluster cluster; cluster.Associate(device, endpointId); @@ -5262,9 +5262,9 @@ class ReadAccountLoginClusterRevision : public ModelCommand ~ReadAccountLoginClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050E) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050E) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AccountLoginCluster cluster; cluster.Associate(device, endpointId); @@ -5292,9 +5292,9 @@ class ReportAccountLoginClusterRevision : public ModelCommand ~ReportAccountLoginClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050E) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050E) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AccountLoginCluster cluster; cluster.Associate(device, endpointId); @@ -5347,9 +5347,9 @@ class AdministratorCommissioningOpenBasicCommissioningWindow : public ModelComma ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003C) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000003C) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -5376,9 +5376,9 @@ class AdministratorCommissioningOpenCommissioningWindow : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003C) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000003C) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -5396,9 +5396,9 @@ class AdministratorCommissioningRevokeCommissioning : public ModelCommand public: AdministratorCommissioningRevokeCommissioning() : ModelCommand("revoke-commissioning") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003C) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000003C) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -5422,9 +5422,9 @@ class ReadAdministratorCommissioningWindowStatus : public ModelCommand ~ReadAdministratorCommissioningWindowStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003C) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003C) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AdministratorCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -5452,9 +5452,9 @@ class ReportAdministratorCommissioningWindowStatus : public ModelCommand ~ReportAdministratorCommissioningWindowStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003C) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003C) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AdministratorCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -5494,9 +5494,9 @@ class ReadAdministratorCommissioningAdminFabricIndex : public ModelCommand ~ReadAdministratorCommissioningAdminFabricIndex() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003C) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003C) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AdministratorCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -5524,9 +5524,9 @@ class ReportAdministratorCommissioningAdminFabricIndex : public ModelCommand ~ReportAdministratorCommissioningAdminFabricIndex() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003C) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003C) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AdministratorCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -5566,9 +5566,9 @@ class ReadAdministratorCommissioningAdminVendorId : public ModelCommand ~ReadAdministratorCommissioningAdminVendorId() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003C) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003C) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AdministratorCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -5596,9 +5596,9 @@ class ReportAdministratorCommissioningAdminVendorId : public ModelCommand ~ReportAdministratorCommissioningAdminVendorId() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003C) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003C) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AdministratorCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -5638,9 +5638,9 @@ class ReadAdministratorCommissioningAttributeList : public ModelCommand ~ReadAdministratorCommissioningAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003C) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003C) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AdministratorCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -5668,9 +5668,9 @@ class ReportAdministratorCommissioningAttributeList : public ModelCommand ~ReportAdministratorCommissioningAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003C) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003C) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AdministratorCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -5710,9 +5710,9 @@ class ReadAdministratorCommissioningClusterRevision : public ModelCommand ~ReadAdministratorCommissioningClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003C) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003C) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AdministratorCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -5740,9 +5740,9 @@ class ReportAdministratorCommissioningClusterRevision : public ModelCommand ~ReportAdministratorCommissioningClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003C) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003C) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AdministratorCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -5802,9 +5802,9 @@ class ReadApplicationBasicVendorName : public ModelCommand ~ReadApplicationBasicVendorName() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050D) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050D) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationBasicCluster cluster; cluster.Associate(device, endpointId); @@ -5832,9 +5832,9 @@ class ReportApplicationBasicVendorName : public ModelCommand ~ReportApplicationBasicVendorName() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050D) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050D) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationBasicCluster cluster; cluster.Associate(device, endpointId); @@ -5871,9 +5871,9 @@ class ReadApplicationBasicVendorId : public ModelCommand ~ReadApplicationBasicVendorId() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050D) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050D) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationBasicCluster cluster; cluster.Associate(device, endpointId); @@ -5901,9 +5901,9 @@ class ReportApplicationBasicVendorId : public ModelCommand ~ReportApplicationBasicVendorId() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050D) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050D) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationBasicCluster cluster; cluster.Associate(device, endpointId); @@ -5940,9 +5940,9 @@ class ReadApplicationBasicApplicationName : public ModelCommand ~ReadApplicationBasicApplicationName() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050D) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050D) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationBasicCluster cluster; cluster.Associate(device, endpointId); @@ -5970,9 +5970,9 @@ class ReportApplicationBasicApplicationName : public ModelCommand ~ReportApplicationBasicApplicationName() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050D) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050D) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationBasicCluster cluster; cluster.Associate(device, endpointId); @@ -6012,9 +6012,9 @@ class ReadApplicationBasicProductId : public ModelCommand ~ReadApplicationBasicProductId() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050D) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050D) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationBasicCluster cluster; cluster.Associate(device, endpointId); @@ -6042,9 +6042,9 @@ class ReportApplicationBasicProductId : public ModelCommand ~ReportApplicationBasicProductId() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050D) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050D) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationBasicCluster cluster; cluster.Associate(device, endpointId); @@ -6081,9 +6081,9 @@ class ReadApplicationBasicApplicationStatus : public ModelCommand ~ReadApplicationBasicApplicationStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050D) ReadAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050D) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationBasicCluster cluster; cluster.Associate(device, endpointId); @@ -6111,9 +6111,9 @@ class ReportApplicationBasicApplicationStatus : public ModelCommand ~ReportApplicationBasicApplicationStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050D) ReportAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050D) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationBasicCluster cluster; cluster.Associate(device, endpointId); @@ -6153,9 +6153,9 @@ class ReadApplicationBasicApplicationVersion : public ModelCommand ~ReadApplicationBasicApplicationVersion() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050D) ReadAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050D) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationBasicCluster cluster; cluster.Associate(device, endpointId); @@ -6183,9 +6183,9 @@ class ReportApplicationBasicApplicationVersion : public ModelCommand ~ReportApplicationBasicApplicationVersion() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050D) ReportAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050D) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationBasicCluster cluster; cluster.Associate(device, endpointId); @@ -6225,9 +6225,9 @@ class ReadApplicationBasicAllowedVendorList : public ModelCommand ~ReadApplicationBasicAllowedVendorList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050D) ReadAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050D) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationBasicCluster cluster; cluster.Associate(device, endpointId); @@ -6255,9 +6255,9 @@ class ReportApplicationBasicAllowedVendorList : public ModelCommand ~ReportApplicationBasicAllowedVendorList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050D) ReportAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050D) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationBasicCluster cluster; cluster.Associate(device, endpointId); @@ -6297,9 +6297,9 @@ class ReadApplicationBasicAttributeList : public ModelCommand ~ReadApplicationBasicAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050D) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050D) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationBasicCluster cluster; cluster.Associate(device, endpointId); @@ -6327,9 +6327,9 @@ class ReportApplicationBasicAttributeList : public ModelCommand ~ReportApplicationBasicAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050D) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050D) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationBasicCluster cluster; cluster.Associate(device, endpointId); @@ -6369,9 +6369,9 @@ class ReadApplicationBasicClusterRevision : public ModelCommand ~ReadApplicationBasicClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050D) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050D) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationBasicCluster cluster; cluster.Associate(device, endpointId); @@ -6399,9 +6399,9 @@ class ReportApplicationBasicClusterRevision : public ModelCommand ~ReportApplicationBasicClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050D) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050D) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationBasicCluster cluster; cluster.Associate(device, endpointId); @@ -6452,9 +6452,9 @@ class ApplicationLauncherHideAppRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050C) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050C) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnApplicationLauncherLauncherResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -6477,9 +6477,9 @@ class ApplicationLauncherLaunchAppRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050C) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050C) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnApplicationLauncherLauncherResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -6501,9 +6501,9 @@ class ApplicationLauncherStopAppRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050C) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050C) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnApplicationLauncherLauncherResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -6527,9 +6527,9 @@ class ReadApplicationLauncherApplicationLauncherList : public ModelCommand ~ReadApplicationLauncherApplicationLauncherList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050C) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050C) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationLauncherCluster cluster; cluster.Associate(device, endpointId); @@ -6557,9 +6557,9 @@ class ReportApplicationLauncherApplicationLauncherList : public ModelCommand ~ReportApplicationLauncherApplicationLauncherList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050C) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050C) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationLauncherCluster cluster; cluster.Associate(device, endpointId); @@ -6599,9 +6599,9 @@ class ReadApplicationLauncherAttributeList : public ModelCommand ~ReadApplicationLauncherAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050C) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050C) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationLauncherCluster cluster; cluster.Associate(device, endpointId); @@ -6629,9 +6629,9 @@ class ReportApplicationLauncherAttributeList : public ModelCommand ~ReportApplicationLauncherAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050C) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050C) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationLauncherCluster cluster; cluster.Associate(device, endpointId); @@ -6671,9 +6671,9 @@ class ReadApplicationLauncherClusterRevision : public ModelCommand ~ReadApplicationLauncherClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050C) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050C) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationLauncherCluster cluster; cluster.Associate(device, endpointId); @@ -6701,9 +6701,9 @@ class ReportApplicationLauncherClusterRevision : public ModelCommand ~ReportApplicationLauncherClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050C) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050C) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ApplicationLauncherCluster cluster; cluster.Associate(device, endpointId); @@ -6755,9 +6755,9 @@ class AudioOutputRenameOutputRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050B) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050B) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -6779,9 +6779,9 @@ class AudioOutputSelectOutputRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050B) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050B) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -6805,9 +6805,9 @@ class ReadAudioOutputAudioOutputList : public ModelCommand ~ReadAudioOutputAudioOutputList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050B) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050B) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AudioOutputCluster cluster; cluster.Associate(device, endpointId); @@ -6837,9 +6837,9 @@ class ReportAudioOutputAudioOutputList : public ModelCommand ~ReportAudioOutputAudioOutputList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050B) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050B) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AudioOutputCluster cluster; cluster.Associate(device, endpointId); @@ -6881,9 +6881,9 @@ class ReadAudioOutputCurrentAudioOutput : public ModelCommand ~ReadAudioOutputCurrentAudioOutput() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050B) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050B) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AudioOutputCluster cluster; cluster.Associate(device, endpointId); @@ -6911,9 +6911,9 @@ class ReportAudioOutputCurrentAudioOutput : public ModelCommand ~ReportAudioOutputCurrentAudioOutput() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050B) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050B) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AudioOutputCluster cluster; cluster.Associate(device, endpointId); @@ -6950,9 +6950,9 @@ class ReadAudioOutputAttributeList : public ModelCommand ~ReadAudioOutputAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050B) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050B) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AudioOutputCluster cluster; cluster.Associate(device, endpointId); @@ -6980,9 +6980,9 @@ class ReportAudioOutputAttributeList : public ModelCommand ~ReportAudioOutputAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050B) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050B) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AudioOutputCluster cluster; cluster.Associate(device, endpointId); @@ -7022,9 +7022,9 @@ class ReadAudioOutputClusterRevision : public ModelCommand ~ReadAudioOutputClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050B) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050B) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AudioOutputCluster cluster; cluster.Associate(device, endpointId); @@ -7052,9 +7052,9 @@ class ReportAudioOutputClusterRevision : public ModelCommand ~ReportAudioOutputClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050B) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050B) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::AudioOutputCluster cluster; cluster.Associate(device, endpointId); @@ -7107,9 +7107,9 @@ class BarrierControlBarrierControlGoToPercent : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000103) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000103) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -7127,9 +7127,9 @@ class BarrierControlBarrierControlStop : public ModelCommand public: BarrierControlBarrierControlStop() : ModelCommand("barrier-control-stop") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000103) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000103) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -7153,9 +7153,9 @@ class ReadBarrierControlBarrierMovingState : public ModelCommand ~ReadBarrierControlBarrierMovingState() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000103) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0103) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BarrierControlCluster cluster; cluster.Associate(device, endpointId); @@ -7183,9 +7183,9 @@ class ReportBarrierControlBarrierMovingState : public ModelCommand ~ReportBarrierControlBarrierMovingState() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000103) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0103) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BarrierControlCluster cluster; cluster.Associate(device, endpointId); @@ -7222,9 +7222,9 @@ class ReadBarrierControlBarrierSafetyStatus : public ModelCommand ~ReadBarrierControlBarrierSafetyStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000103) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0103) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BarrierControlCluster cluster; cluster.Associate(device, endpointId); @@ -7252,9 +7252,9 @@ class ReportBarrierControlBarrierSafetyStatus : public ModelCommand ~ReportBarrierControlBarrierSafetyStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000103) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0103) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BarrierControlCluster cluster; cluster.Associate(device, endpointId); @@ -7291,9 +7291,9 @@ class ReadBarrierControlBarrierCapabilities : public ModelCommand ~ReadBarrierControlBarrierCapabilities() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000103) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0103) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BarrierControlCluster cluster; cluster.Associate(device, endpointId); @@ -7321,9 +7321,9 @@ class ReportBarrierControlBarrierCapabilities : public ModelCommand ~ReportBarrierControlBarrierCapabilities() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000103) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0103) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BarrierControlCluster cluster; cluster.Associate(device, endpointId); @@ -7360,9 +7360,9 @@ class ReadBarrierControlBarrierPosition : public ModelCommand ~ReadBarrierControlBarrierPosition() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000103) ReadAttribute (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0103) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BarrierControlCluster cluster; cluster.Associate(device, endpointId); @@ -7390,9 +7390,9 @@ class ReportBarrierControlBarrierPosition : public ModelCommand ~ReportBarrierControlBarrierPosition() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000103) ReportAttribute (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0103) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BarrierControlCluster cluster; cluster.Associate(device, endpointId); @@ -7429,9 +7429,9 @@ class ReadBarrierControlAttributeList : public ModelCommand ~ReadBarrierControlAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000103) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0103) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BarrierControlCluster cluster; cluster.Associate(device, endpointId); @@ -7459,9 +7459,9 @@ class ReportBarrierControlAttributeList : public ModelCommand ~ReportBarrierControlAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000103) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0103) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BarrierControlCluster cluster; cluster.Associate(device, endpointId); @@ -7501,9 +7501,9 @@ class ReadBarrierControlClusterRevision : public ModelCommand ~ReadBarrierControlClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000103) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0103) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BarrierControlCluster cluster; cluster.Associate(device, endpointId); @@ -7531,9 +7531,9 @@ class ReportBarrierControlClusterRevision : public ModelCommand ~ReportBarrierControlClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000103) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0103) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BarrierControlCluster cluster; cluster.Associate(device, endpointId); @@ -7600,9 +7600,9 @@ class BasicMfgSpecificPing : public ModelCommand public: BasicMfgSpecificPing() : ModelCommand("mfg-specific-ping") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000028) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -7626,9 +7626,9 @@ class ReadBasicStartUp : public ModelCommand ~ReadBasicStartUp() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -7656,9 +7656,9 @@ class ReportBasicStartUp : public ModelCommand ~ReportBasicStartUp() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -7697,9 +7697,9 @@ class ReadBasicShutDown : public ModelCommand ~ReadBasicShutDown() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -7727,9 +7727,9 @@ class ReportBasicShutDown : public ModelCommand ~ReportBasicShutDown() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -7768,9 +7768,9 @@ class ReadBasicLeave : public ModelCommand ~ReadBasicLeave() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadEvent (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -7797,9 +7797,9 @@ class ReportBasicLeave : public ModelCommand ~ReportBasicLeave() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportEvent (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -7838,9 +7838,9 @@ class ReadBasicReachableChanged : public ModelCommand ~ReadBasicReachableChanged() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadEvent (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -7868,9 +7868,9 @@ class ReportBasicReachableChanged : public ModelCommand ~ReportBasicReachableChanged() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportEvent (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -7910,9 +7910,9 @@ class ReadBasicInteractionModelVersion : public ModelCommand ~ReadBasicInteractionModelVersion() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -7940,9 +7940,9 @@ class ReportBasicInteractionModelVersion : public ModelCommand ~ReportBasicInteractionModelVersion() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -7979,9 +7979,9 @@ class ReadBasicVendorName : public ModelCommand ~ReadBasicVendorName() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8009,9 +8009,9 @@ class ReportBasicVendorName : public ModelCommand ~ReportBasicVendorName() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8048,9 +8048,9 @@ class ReadBasicVendorID : public ModelCommand ~ReadBasicVendorID() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8078,9 +8078,9 @@ class ReportBasicVendorID : public ModelCommand ~ReportBasicVendorID() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8117,9 +8117,9 @@ class ReadBasicProductName : public ModelCommand ~ReadBasicProductName() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8147,9 +8147,9 @@ class ReportBasicProductName : public ModelCommand ~ReportBasicProductName() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8186,9 +8186,9 @@ class ReadBasicProductID : public ModelCommand ~ReadBasicProductID() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8216,9 +8216,9 @@ class ReportBasicProductID : public ModelCommand ~ReportBasicProductID() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8255,9 +8255,9 @@ class ReadBasicNodeLabel : public ModelCommand ~ReadBasicNodeLabel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8283,9 +8283,9 @@ class WriteBasicNodeLabel : public ModelCommand ~WriteBasicNodeLabel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) WriteAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8311,9 +8311,9 @@ class ReportBasicNodeLabel : public ModelCommand ~ReportBasicNodeLabel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8350,9 +8350,9 @@ class ReadBasicLocation : public ModelCommand ~ReadBasicLocation() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8378,9 +8378,9 @@ class WriteBasicLocation : public ModelCommand ~WriteBasicLocation() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) WriteAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8406,9 +8406,9 @@ class ReportBasicLocation : public ModelCommand ~ReportBasicLocation() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8445,9 +8445,9 @@ class ReadBasicHardwareVersion : public ModelCommand ~ReadBasicHardwareVersion() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8475,9 +8475,9 @@ class ReportBasicHardwareVersion : public ModelCommand ~ReportBasicHardwareVersion() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8514,9 +8514,9 @@ class ReadBasicHardwareVersionString : public ModelCommand ~ReadBasicHardwareVersionString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8544,9 +8544,9 @@ class ReportBasicHardwareVersionString : public ModelCommand ~ReportBasicHardwareVersionString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8583,9 +8583,9 @@ class ReadBasicSoftwareVersion : public ModelCommand ~ReadBasicSoftwareVersion() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8613,9 +8613,9 @@ class ReportBasicSoftwareVersion : public ModelCommand ~ReportBasicSoftwareVersion() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8652,9 +8652,9 @@ class ReadBasicSoftwareVersionString : public ModelCommand ~ReadBasicSoftwareVersionString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8682,9 +8682,9 @@ class ReportBasicSoftwareVersionString : public ModelCommand ~ReportBasicSoftwareVersionString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8721,9 +8721,9 @@ class ReadBasicManufacturingDate : public ModelCommand ~ReadBasicManufacturingDate() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8751,9 +8751,9 @@ class ReportBasicManufacturingDate : public ModelCommand ~ReportBasicManufacturingDate() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8790,9 +8790,9 @@ class ReadBasicPartNumber : public ModelCommand ~ReadBasicPartNumber() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8820,9 +8820,9 @@ class ReportBasicPartNumber : public ModelCommand ~ReportBasicPartNumber() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8859,9 +8859,9 @@ class ReadBasicProductURL : public ModelCommand ~ReadBasicProductURL() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x0000000D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8889,9 +8889,9 @@ class ReportBasicProductURL : public ModelCommand ~ReportBasicProductURL() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x0000000D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8928,9 +8928,9 @@ class ReadBasicProductLabel : public ModelCommand ~ReadBasicProductLabel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x0000000E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8958,9 +8958,9 @@ class ReportBasicProductLabel : public ModelCommand ~ReportBasicProductLabel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x0000000E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -8997,9 +8997,9 @@ class ReadBasicSerialNumber : public ModelCommand ~ReadBasicSerialNumber() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x0000000F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -9027,9 +9027,9 @@ class ReportBasicSerialNumber : public ModelCommand ~ReportBasicSerialNumber() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x0000000F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -9066,9 +9066,9 @@ class ReadBasicLocalConfigDisabled : public ModelCommand ~ReadBasicLocalConfigDisabled() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -9094,9 +9094,9 @@ class WriteBasicLocalConfigDisabled : public ModelCommand ~WriteBasicLocalConfigDisabled() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) WriteAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -9122,9 +9122,9 @@ class ReportBasicLocalConfigDisabled : public ModelCommand ~ReportBasicLocalConfigDisabled() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -9161,9 +9161,9 @@ class ReadBasicReachable : public ModelCommand ~ReadBasicReachable() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -9191,9 +9191,9 @@ class ReportBasicReachable : public ModelCommand ~ReportBasicReachable() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -9230,9 +9230,9 @@ class ReadBasicUniqueID : public ModelCommand ~ReadBasicUniqueID() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -9260,9 +9260,9 @@ class ReportBasicUniqueID : public ModelCommand ~ReportBasicUniqueID() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -9299,9 +9299,9 @@ class ReadBasicAttributeList : public ModelCommand ~ReadBasicAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -9329,9 +9329,9 @@ class ReportBasicAttributeList : public ModelCommand ~ReportBasicAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -9371,9 +9371,9 @@ class ReadBasicClusterRevision : public ModelCommand ~ReadBasicClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -9401,9 +9401,9 @@ class ReportBasicClusterRevision : public ModelCommand ~ReportBasicClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000028) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0028) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BasicCluster cluster; cluster.Associate(device, endpointId); @@ -9455,9 +9455,9 @@ class ReadBinaryInputBasicOutOfService : public ModelCommand ~ReadBinaryInputBasicOutOfService() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000000F) ReadAttribute (0x00000051) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x000F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BinaryInputBasicCluster cluster; cluster.Associate(device, endpointId); @@ -9483,9 +9483,9 @@ class WriteBinaryInputBasicOutOfService : public ModelCommand ~WriteBinaryInputBasicOutOfService() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000000F) WriteAttribute (0x00000051) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x000F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BinaryInputBasicCluster cluster; cluster.Associate(device, endpointId); @@ -9511,9 +9511,9 @@ class ReportBinaryInputBasicOutOfService : public ModelCommand ~ReportBinaryInputBasicOutOfService() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000000F) ReportAttribute (0x00000051) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x000F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BinaryInputBasicCluster cluster; cluster.Associate(device, endpointId); @@ -9550,9 +9550,9 @@ class ReadBinaryInputBasicPresentValue : public ModelCommand ~ReadBinaryInputBasicPresentValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000000F) ReadAttribute (0x00000055) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x000F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BinaryInputBasicCluster cluster; cluster.Associate(device, endpointId); @@ -9578,9 +9578,9 @@ class WriteBinaryInputBasicPresentValue : public ModelCommand ~WriteBinaryInputBasicPresentValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000000F) WriteAttribute (0x00000055) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x000F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BinaryInputBasicCluster cluster; cluster.Associate(device, endpointId); @@ -9606,9 +9606,9 @@ class ReportBinaryInputBasicPresentValue : public ModelCommand ~ReportBinaryInputBasicPresentValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000000F) ReportAttribute (0x00000055) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x000F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BinaryInputBasicCluster cluster; cluster.Associate(device, endpointId); @@ -9645,9 +9645,9 @@ class ReadBinaryInputBasicStatusFlags : public ModelCommand ~ReadBinaryInputBasicStatusFlags() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000000F) ReadAttribute (0x0000006F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x000F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BinaryInputBasicCluster cluster; cluster.Associate(device, endpointId); @@ -9675,9 +9675,9 @@ class ReportBinaryInputBasicStatusFlags : public ModelCommand ~ReportBinaryInputBasicStatusFlags() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000000F) ReportAttribute (0x0000006F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x000F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BinaryInputBasicCluster cluster; cluster.Associate(device, endpointId); @@ -9714,9 +9714,9 @@ class ReadBinaryInputBasicAttributeList : public ModelCommand ~ReadBinaryInputBasicAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000000F) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x000F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BinaryInputBasicCluster cluster; cluster.Associate(device, endpointId); @@ -9744,9 +9744,9 @@ class ReportBinaryInputBasicAttributeList : public ModelCommand ~ReportBinaryInputBasicAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000000F) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x000F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BinaryInputBasicCluster cluster; cluster.Associate(device, endpointId); @@ -9786,9 +9786,9 @@ class ReadBinaryInputBasicClusterRevision : public ModelCommand ~ReadBinaryInputBasicClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000000F) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x000F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BinaryInputBasicCluster cluster; cluster.Associate(device, endpointId); @@ -9816,9 +9816,9 @@ class ReportBinaryInputBasicClusterRevision : public ModelCommand ~ReportBinaryInputBasicClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000000F) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x000F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BinaryInputBasicCluster cluster; cluster.Associate(device, endpointId); @@ -9870,9 +9870,9 @@ class BindingBind : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001E) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000001E) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -9897,9 +9897,9 @@ class BindingUnbind : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001E) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000001E) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -9923,9 +9923,9 @@ class ReadBindingAttributeList : public ModelCommand ~ReadBindingAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001E) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001E) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BindingCluster cluster; cluster.Associate(device, endpointId); @@ -9953,9 +9953,9 @@ class ReportBindingAttributeList : public ModelCommand ~ReportBindingAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001E) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001E) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BindingCluster cluster; cluster.Associate(device, endpointId); @@ -9995,9 +9995,9 @@ class ReadBindingClusterRevision : public ModelCommand ~ReadBindingClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001E) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001E) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BindingCluster cluster; cluster.Associate(device, endpointId); @@ -10025,9 +10025,9 @@ class ReportBindingClusterRevision : public ModelCommand ~ReportBindingClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001E) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001E) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BindingCluster cluster; cluster.Associate(device, endpointId); @@ -10078,9 +10078,9 @@ class ReadBooleanStateStateChange : public ModelCommand ~ReadBooleanStateStateChange() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000045) ReadEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0045) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::BooleanStateCluster cluster; cluster.Associate(device, endpointId); @@ -10108,9 +10108,9 @@ class ReportBooleanStateStateChange : public ModelCommand ~ReportBooleanStateStateChange() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000045) ReportEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0045) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::BooleanStateCluster cluster; cluster.Associate(device, endpointId); @@ -10150,9 +10150,9 @@ class ReadBooleanStateStateValue : public ModelCommand ~ReadBooleanStateStateValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000045) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0045) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BooleanStateCluster cluster; cluster.Associate(device, endpointId); @@ -10180,9 +10180,9 @@ class ReportBooleanStateStateValue : public ModelCommand ~ReportBooleanStateStateValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000045) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0045) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BooleanStateCluster cluster; cluster.Associate(device, endpointId); @@ -10219,9 +10219,9 @@ class ReadBooleanStateAttributeList : public ModelCommand ~ReadBooleanStateAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000045) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0045) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BooleanStateCluster cluster; cluster.Associate(device, endpointId); @@ -10249,9 +10249,9 @@ class ReportBooleanStateAttributeList : public ModelCommand ~ReportBooleanStateAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000045) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0045) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BooleanStateCluster cluster; cluster.Associate(device, endpointId); @@ -10291,9 +10291,9 @@ class ReadBooleanStateClusterRevision : public ModelCommand ~ReadBooleanStateClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000045) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0045) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BooleanStateCluster cluster; cluster.Associate(device, endpointId); @@ -10321,9 +10321,9 @@ class ReportBooleanStateClusterRevision : public ModelCommand ~ReportBooleanStateClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000045) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0045) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BooleanStateCluster cluster; cluster.Associate(device, endpointId); @@ -10388,9 +10388,9 @@ class BridgedActionsDisableAction : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x0000000A) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -10414,9 +10414,9 @@ class BridgedActionsDisableActionWithDuration : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x0000000B) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -10439,9 +10439,9 @@ class BridgedActionsEnableAction : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000008) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -10465,9 +10465,9 @@ class BridgedActionsEnableActionWithDuration : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000009) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -10490,9 +10490,9 @@ class BridgedActionsInstantAction : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -10516,9 +10516,9 @@ class BridgedActionsInstantActionWithTransition : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -10541,9 +10541,9 @@ class BridgedActionsPauseAction : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000005) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -10567,9 +10567,9 @@ class BridgedActionsPauseActionWithDuration : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000006) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -10592,9 +10592,9 @@ class BridgedActionsResumeAction : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000007) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -10617,9 +10617,9 @@ class BridgedActionsStartAction : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -10643,9 +10643,9 @@ class BridgedActionsStartActionWithDuration : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000003) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -10668,9 +10668,9 @@ class BridgedActionsStopAction : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000025) command (0x00000004) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -10694,9 +10694,9 @@ class ReadBridgedActionsStateChanged : public ModelCommand ~ReadBridgedActionsStateChanged() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) ReadEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0025) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::BridgedActionsCluster cluster; cluster.Associate(device, endpointId); @@ -10724,9 +10724,9 @@ class ReportBridgedActionsStateChanged : public ModelCommand ~ReportBridgedActionsStateChanged() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) ReportEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0025) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::BridgedActionsCluster cluster; cluster.Associate(device, endpointId); @@ -10765,9 +10765,9 @@ class ReadBridgedActionsActionFailed : public ModelCommand ~ReadBridgedActionsActionFailed() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) ReadEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0025) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::BridgedActionsCluster cluster; cluster.Associate(device, endpointId); @@ -10795,9 +10795,9 @@ class ReportBridgedActionsActionFailed : public ModelCommand ~ReportBridgedActionsActionFailed() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) ReportEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0025) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::BridgedActionsCluster cluster; cluster.Associate(device, endpointId); @@ -10837,9 +10837,9 @@ class ReadBridgedActionsActionList : public ModelCommand ~ReadBridgedActionsActionList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0025) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BridgedActionsCluster cluster; cluster.Associate(device, endpointId); @@ -10870,9 +10870,9 @@ class ReportBridgedActionsActionList : public ModelCommand ~ReportBridgedActionsActionList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0025) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BridgedActionsCluster cluster; cluster.Associate(device, endpointId); @@ -10915,9 +10915,9 @@ class ReadBridgedActionsEndpointList : public ModelCommand ~ReadBridgedActionsEndpointList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0025) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BridgedActionsCluster cluster; cluster.Associate(device, endpointId); @@ -10948,9 +10948,9 @@ class ReportBridgedActionsEndpointList : public ModelCommand ~ReportBridgedActionsEndpointList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0025) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BridgedActionsCluster cluster; cluster.Associate(device, endpointId); @@ -10993,9 +10993,9 @@ class ReadBridgedActionsSetupUrl : public ModelCommand ~ReadBridgedActionsSetupUrl() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0025) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BridgedActionsCluster cluster; cluster.Associate(device, endpointId); @@ -11023,9 +11023,9 @@ class ReportBridgedActionsSetupUrl : public ModelCommand ~ReportBridgedActionsSetupUrl() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0025) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BridgedActionsCluster cluster; cluster.Associate(device, endpointId); @@ -11062,9 +11062,9 @@ class ReadBridgedActionsAttributeList : public ModelCommand ~ReadBridgedActionsAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0025) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BridgedActionsCluster cluster; cluster.Associate(device, endpointId); @@ -11092,9 +11092,9 @@ class ReportBridgedActionsAttributeList : public ModelCommand ~ReportBridgedActionsAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0025) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BridgedActionsCluster cluster; cluster.Associate(device, endpointId); @@ -11134,9 +11134,9 @@ class ReadBridgedActionsClusterRevision : public ModelCommand ~ReadBridgedActionsClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0025) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BridgedActionsCluster cluster; cluster.Associate(device, endpointId); @@ -11164,9 +11164,9 @@ class ReportBridgedActionsClusterRevision : public ModelCommand ~ReportBridgedActionsClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000025) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0025) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BridgedActionsCluster cluster; cluster.Associate(device, endpointId); @@ -11215,9 +11215,9 @@ class ReadBridgedDeviceBasicAttributeList : public ModelCommand ~ReadBridgedDeviceBasicAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000039) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0039) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BridgedDeviceBasicCluster cluster; cluster.Associate(device, endpointId); @@ -11245,9 +11245,9 @@ class ReportBridgedDeviceBasicAttributeList : public ModelCommand ~ReportBridgedDeviceBasicAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000039) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0039) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BridgedDeviceBasicCluster cluster; cluster.Associate(device, endpointId); @@ -11287,9 +11287,9 @@ class ReadBridgedDeviceBasicClusterRevision : public ModelCommand ~ReadBridgedDeviceBasicClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000039) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0039) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BridgedDeviceBasicCluster cluster; cluster.Associate(device, endpointId); @@ -11317,9 +11317,9 @@ class ReportBridgedDeviceBasicClusterRevision : public ModelCommand ~ReportBridgedDeviceBasicClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000039) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0039) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::BridgedDeviceBasicCluster cluster; cluster.Associate(device, endpointId); @@ -11371,9 +11371,9 @@ class ChannelChangeChannelByNumberRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000504) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000504) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -11395,9 +11395,9 @@ class ChannelChangeChannelRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000504) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000504) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnChannelChangeChannelResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -11419,9 +11419,9 @@ class ChannelSkipChannelRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000504) command (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000504) command (0x00000003) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -11445,9 +11445,9 @@ class ReadChannelChannelList : public ModelCommand ~ReadChannelChannelList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000504) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0504) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ChannelCluster cluster; cluster.Associate(device, endpointId); @@ -11477,9 +11477,9 @@ class ReportChannelChannelList : public ModelCommand ~ReportChannelChannelList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000504) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0504) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ChannelCluster cluster; cluster.Associate(device, endpointId); @@ -11521,9 +11521,9 @@ class ReadChannelAttributeList : public ModelCommand ~ReadChannelAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000504) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0504) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ChannelCluster cluster; cluster.Associate(device, endpointId); @@ -11551,9 +11551,9 @@ class ReportChannelAttributeList : public ModelCommand ~ReportChannelAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000504) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0504) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ChannelCluster cluster; cluster.Associate(device, endpointId); @@ -11593,9 +11593,9 @@ class ReadChannelClusterRevision : public ModelCommand ~ReadChannelClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000504) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0504) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ChannelCluster cluster; cluster.Associate(device, endpointId); @@ -11623,9 +11623,9 @@ class ReportChannelClusterRevision : public ModelCommand ~ReportChannelClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000504) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0504) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ChannelCluster cluster; cluster.Associate(device, endpointId); @@ -11753,9 +11753,9 @@ class ColorControlColorLoopSet : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000044) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000044) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -11781,9 +11781,9 @@ class ColorControlEnhancedMoveHue : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000041) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000041) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -11810,9 +11810,9 @@ class ColorControlEnhancedMoveToHue : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000040) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000040) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -11838,9 +11838,9 @@ class ColorControlEnhancedMoveToHueAndSaturation : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000043) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000043) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -11867,9 +11867,9 @@ class ColorControlEnhancedStepHue : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000042) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000042) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -11894,9 +11894,9 @@ class ColorControlMoveColor : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000008) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -11924,9 +11924,9 @@ class ColorControlMoveColorTemperature : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x0000004B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x0000004B) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -11952,9 +11952,9 @@ class ColorControlMoveHue : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -11980,9 +11980,9 @@ class ColorControlMoveSaturation : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000004) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -12008,9 +12008,9 @@ class ColorControlMoveToColor : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000007) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -12035,9 +12035,9 @@ class ColorControlMoveToColorTemperature : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x0000000A) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -12064,9 +12064,9 @@ class ColorControlMoveToHue : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -12092,9 +12092,9 @@ class ColorControlMoveToHueAndSaturation : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000006) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -12119,9 +12119,9 @@ class ColorControlMoveToSaturation : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000003) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -12147,9 +12147,9 @@ class ColorControlStepColor : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000009) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -12178,9 +12178,9 @@ class ColorControlStepColorTemperature : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x0000004C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x0000004C) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -12207,9 +12207,9 @@ class ColorControlStepHue : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -12236,9 +12236,9 @@ class ColorControlStepSaturation : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000005) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -12261,9 +12261,9 @@ class ColorControlStopMoveStep : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000047) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000300) command (0x00000047) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -12287,9 +12287,9 @@ class ReadColorControlCurrentHue : public ModelCommand ~ReadColorControlCurrentHue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12317,9 +12317,9 @@ class ReportColorControlCurrentHue : public ModelCommand ~ReportColorControlCurrentHue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12356,9 +12356,9 @@ class ReadColorControlCurrentSaturation : public ModelCommand ~ReadColorControlCurrentSaturation() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12386,9 +12386,9 @@ class ReportColorControlCurrentSaturation : public ModelCommand ~ReportColorControlCurrentSaturation() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12425,9 +12425,9 @@ class ReadColorControlRemainingTime : public ModelCommand ~ReadColorControlRemainingTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12455,9 +12455,9 @@ class ReportColorControlRemainingTime : public ModelCommand ~ReportColorControlRemainingTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12494,9 +12494,9 @@ class ReadColorControlCurrentX : public ModelCommand ~ReadColorControlCurrentX() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12524,9 +12524,9 @@ class ReportColorControlCurrentX : public ModelCommand ~ReportColorControlCurrentX() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12563,9 +12563,9 @@ class ReadColorControlCurrentY : public ModelCommand ~ReadColorControlCurrentY() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12593,9 +12593,9 @@ class ReportColorControlCurrentY : public ModelCommand ~ReportColorControlCurrentY() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12632,9 +12632,9 @@ class ReadColorControlDriftCompensation : public ModelCommand ~ReadColorControlDriftCompensation() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12662,9 +12662,9 @@ class ReportColorControlDriftCompensation : public ModelCommand ~ReportColorControlDriftCompensation() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12701,9 +12701,9 @@ class ReadColorControlCompensationText : public ModelCommand ~ReadColorControlCompensationText() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12731,9 +12731,9 @@ class ReportColorControlCompensationText : public ModelCommand ~ReportColorControlCompensationText() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12770,9 +12770,9 @@ class ReadColorControlColorTemperature : public ModelCommand ~ReadColorControlColorTemperature() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12800,9 +12800,9 @@ class ReportColorControlColorTemperature : public ModelCommand ~ReportColorControlColorTemperature() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12839,9 +12839,9 @@ class ReadColorControlColorMode : public ModelCommand ~ReadColorControlColorMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12869,9 +12869,9 @@ class ReportColorControlColorMode : public ModelCommand ~ReportColorControlColorMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12908,9 +12908,9 @@ class ReadColorControlColorControlOptions : public ModelCommand ~ReadColorControlColorControlOptions() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x0000000F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12936,9 +12936,9 @@ class WriteColorControlColorControlOptions : public ModelCommand ~WriteColorControlColorControlOptions() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) WriteAttribute (0x0000000F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -12964,9 +12964,9 @@ class ReportColorControlColorControlOptions : public ModelCommand ~ReportColorControlColorControlOptions() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x0000000F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13003,9 +13003,9 @@ class ReadColorControlNumberOfPrimaries : public ModelCommand ~ReadColorControlNumberOfPrimaries() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13033,9 +13033,9 @@ class ReportColorControlNumberOfPrimaries : public ModelCommand ~ReportColorControlNumberOfPrimaries() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13072,9 +13072,9 @@ class ReadColorControlPrimary1X : public ModelCommand ~ReadColorControlPrimary1X() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13102,9 +13102,9 @@ class ReportColorControlPrimary1X : public ModelCommand ~ReportColorControlPrimary1X() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13141,9 +13141,9 @@ class ReadColorControlPrimary1Y : public ModelCommand ~ReadColorControlPrimary1Y() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13171,9 +13171,9 @@ class ReportColorControlPrimary1Y : public ModelCommand ~ReportColorControlPrimary1Y() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13210,9 +13210,9 @@ class ReadColorControlPrimary1Intensity : public ModelCommand ~ReadColorControlPrimary1Intensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000013) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13240,9 +13240,9 @@ class ReportColorControlPrimary1Intensity : public ModelCommand ~ReportColorControlPrimary1Intensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000013) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13279,9 +13279,9 @@ class ReadColorControlPrimary2X : public ModelCommand ~ReadColorControlPrimary2X() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000015) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13309,9 +13309,9 @@ class ReportColorControlPrimary2X : public ModelCommand ~ReportColorControlPrimary2X() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000015) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13348,9 +13348,9 @@ class ReadColorControlPrimary2Y : public ModelCommand ~ReadColorControlPrimary2Y() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000016) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13378,9 +13378,9 @@ class ReportColorControlPrimary2Y : public ModelCommand ~ReportColorControlPrimary2Y() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000016) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13417,9 +13417,9 @@ class ReadColorControlPrimary2Intensity : public ModelCommand ~ReadColorControlPrimary2Intensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13447,9 +13447,9 @@ class ReportColorControlPrimary2Intensity : public ModelCommand ~ReportColorControlPrimary2Intensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13486,9 +13486,9 @@ class ReadColorControlPrimary3X : public ModelCommand ~ReadColorControlPrimary3X() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000019) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13516,9 +13516,9 @@ class ReportColorControlPrimary3X : public ModelCommand ~ReportColorControlPrimary3X() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000019) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13555,9 +13555,9 @@ class ReadColorControlPrimary3Y : public ModelCommand ~ReadColorControlPrimary3Y() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x0000001A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13585,9 +13585,9 @@ class ReportColorControlPrimary3Y : public ModelCommand ~ReportColorControlPrimary3Y() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x0000001A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13624,9 +13624,9 @@ class ReadColorControlPrimary3Intensity : public ModelCommand ~ReadColorControlPrimary3Intensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x0000001B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13654,9 +13654,9 @@ class ReportColorControlPrimary3Intensity : public ModelCommand ~ReportColorControlPrimary3Intensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x0000001B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13693,9 +13693,9 @@ class ReadColorControlPrimary4X : public ModelCommand ~ReadColorControlPrimary4X() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000020) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13723,9 +13723,9 @@ class ReportColorControlPrimary4X : public ModelCommand ~ReportColorControlPrimary4X() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000020) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13762,9 +13762,9 @@ class ReadColorControlPrimary4Y : public ModelCommand ~ReadColorControlPrimary4Y() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000021) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13792,9 +13792,9 @@ class ReportColorControlPrimary4Y : public ModelCommand ~ReportColorControlPrimary4Y() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000021) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13831,9 +13831,9 @@ class ReadColorControlPrimary4Intensity : public ModelCommand ~ReadColorControlPrimary4Intensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000022) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13861,9 +13861,9 @@ class ReportColorControlPrimary4Intensity : public ModelCommand ~ReportColorControlPrimary4Intensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000022) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13900,9 +13900,9 @@ class ReadColorControlPrimary5X : public ModelCommand ~ReadColorControlPrimary5X() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000024) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13930,9 +13930,9 @@ class ReportColorControlPrimary5X : public ModelCommand ~ReportColorControlPrimary5X() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000024) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13969,9 +13969,9 @@ class ReadColorControlPrimary5Y : public ModelCommand ~ReadColorControlPrimary5Y() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000025) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -13999,9 +13999,9 @@ class ReportColorControlPrimary5Y : public ModelCommand ~ReportColorControlPrimary5Y() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000025) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14038,9 +14038,9 @@ class ReadColorControlPrimary5Intensity : public ModelCommand ~ReadColorControlPrimary5Intensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000026) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14068,9 +14068,9 @@ class ReportColorControlPrimary5Intensity : public ModelCommand ~ReportColorControlPrimary5Intensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000026) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14107,9 +14107,9 @@ class ReadColorControlPrimary6X : public ModelCommand ~ReadColorControlPrimary6X() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000028) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14137,9 +14137,9 @@ class ReportColorControlPrimary6X : public ModelCommand ~ReportColorControlPrimary6X() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000028) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14176,9 +14176,9 @@ class ReadColorControlPrimary6Y : public ModelCommand ~ReadColorControlPrimary6Y() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000029) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14206,9 +14206,9 @@ class ReportColorControlPrimary6Y : public ModelCommand ~ReportColorControlPrimary6Y() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000029) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14245,9 +14245,9 @@ class ReadColorControlPrimary6Intensity : public ModelCommand ~ReadColorControlPrimary6Intensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x0000002A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14275,9 +14275,9 @@ class ReportColorControlPrimary6Intensity : public ModelCommand ~ReportColorControlPrimary6Intensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x0000002A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14314,9 +14314,9 @@ class ReadColorControlWhitePointX : public ModelCommand ~ReadColorControlWhitePointX() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000030) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14342,9 +14342,9 @@ class WriteColorControlWhitePointX : public ModelCommand ~WriteColorControlWhitePointX() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) WriteAttribute (0x00000030) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14370,9 +14370,9 @@ class ReportColorControlWhitePointX : public ModelCommand ~ReportColorControlWhitePointX() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000030) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14409,9 +14409,9 @@ class ReadColorControlWhitePointY : public ModelCommand ~ReadColorControlWhitePointY() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000031) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14437,9 +14437,9 @@ class WriteColorControlWhitePointY : public ModelCommand ~WriteColorControlWhitePointY() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) WriteAttribute (0x00000031) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14465,9 +14465,9 @@ class ReportColorControlWhitePointY : public ModelCommand ~ReportColorControlWhitePointY() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000031) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14504,9 +14504,9 @@ class ReadColorControlColorPointRX : public ModelCommand ~ReadColorControlColorPointRX() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000032) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14532,9 +14532,9 @@ class WriteColorControlColorPointRX : public ModelCommand ~WriteColorControlColorPointRX() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) WriteAttribute (0x00000032) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14560,9 +14560,9 @@ class ReportColorControlColorPointRX : public ModelCommand ~ReportColorControlColorPointRX() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000032) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14599,9 +14599,9 @@ class ReadColorControlColorPointRY : public ModelCommand ~ReadColorControlColorPointRY() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000033) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14627,9 +14627,9 @@ class WriteColorControlColorPointRY : public ModelCommand ~WriteColorControlColorPointRY() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) WriteAttribute (0x00000033) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14655,9 +14655,9 @@ class ReportColorControlColorPointRY : public ModelCommand ~ReportColorControlColorPointRY() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000033) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14694,9 +14694,9 @@ class ReadColorControlColorPointRIntensity : public ModelCommand ~ReadColorControlColorPointRIntensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000034) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14722,9 +14722,9 @@ class WriteColorControlColorPointRIntensity : public ModelCommand ~WriteColorControlColorPointRIntensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) WriteAttribute (0x00000034) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14750,9 +14750,9 @@ class ReportColorControlColorPointRIntensity : public ModelCommand ~ReportColorControlColorPointRIntensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000034) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14789,9 +14789,9 @@ class ReadColorControlColorPointGX : public ModelCommand ~ReadColorControlColorPointGX() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000036) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14817,9 +14817,9 @@ class WriteColorControlColorPointGX : public ModelCommand ~WriteColorControlColorPointGX() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) WriteAttribute (0x00000036) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14845,9 +14845,9 @@ class ReportColorControlColorPointGX : public ModelCommand ~ReportColorControlColorPointGX() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000036) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14884,9 +14884,9 @@ class ReadColorControlColorPointGY : public ModelCommand ~ReadColorControlColorPointGY() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000037) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14912,9 +14912,9 @@ class WriteColorControlColorPointGY : public ModelCommand ~WriteColorControlColorPointGY() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) WriteAttribute (0x00000037) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14940,9 +14940,9 @@ class ReportColorControlColorPointGY : public ModelCommand ~ReportColorControlColorPointGY() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000037) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -14979,9 +14979,9 @@ class ReadColorControlColorPointGIntensity : public ModelCommand ~ReadColorControlColorPointGIntensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00000038) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15007,9 +15007,9 @@ class WriteColorControlColorPointGIntensity : public ModelCommand ~WriteColorControlColorPointGIntensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) WriteAttribute (0x00000038) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15035,9 +15035,9 @@ class ReportColorControlColorPointGIntensity : public ModelCommand ~ReportColorControlColorPointGIntensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00000038) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15074,9 +15074,9 @@ class ReadColorControlColorPointBX : public ModelCommand ~ReadColorControlColorPointBX() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x0000003A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15102,9 +15102,9 @@ class WriteColorControlColorPointBX : public ModelCommand ~WriteColorControlColorPointBX() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) WriteAttribute (0x0000003A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15130,9 +15130,9 @@ class ReportColorControlColorPointBX : public ModelCommand ~ReportColorControlColorPointBX() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x0000003A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15169,9 +15169,9 @@ class ReadColorControlColorPointBY : public ModelCommand ~ReadColorControlColorPointBY() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x0000003B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15197,9 +15197,9 @@ class WriteColorControlColorPointBY : public ModelCommand ~WriteColorControlColorPointBY() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) WriteAttribute (0x0000003B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15225,9 +15225,9 @@ class ReportColorControlColorPointBY : public ModelCommand ~ReportColorControlColorPointBY() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x0000003B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15264,9 +15264,9 @@ class ReadColorControlColorPointBIntensity : public ModelCommand ~ReadColorControlColorPointBIntensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x0000003C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15292,9 +15292,9 @@ class WriteColorControlColorPointBIntensity : public ModelCommand ~WriteColorControlColorPointBIntensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) WriteAttribute (0x0000003C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15320,9 +15320,9 @@ class ReportColorControlColorPointBIntensity : public ModelCommand ~ReportColorControlColorPointBIntensity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x0000003C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15359,9 +15359,9 @@ class ReadColorControlEnhancedCurrentHue : public ModelCommand ~ReadColorControlEnhancedCurrentHue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00004000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15389,9 +15389,9 @@ class ReportColorControlEnhancedCurrentHue : public ModelCommand ~ReportColorControlEnhancedCurrentHue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00004000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15428,9 +15428,9 @@ class ReadColorControlEnhancedColorMode : public ModelCommand ~ReadColorControlEnhancedColorMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00004001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15458,9 +15458,9 @@ class ReportColorControlEnhancedColorMode : public ModelCommand ~ReportColorControlEnhancedColorMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00004001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15497,9 +15497,9 @@ class ReadColorControlColorLoopActive : public ModelCommand ~ReadColorControlColorLoopActive() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00004002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15527,9 +15527,9 @@ class ReportColorControlColorLoopActive : public ModelCommand ~ReportColorControlColorLoopActive() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00004002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15566,9 +15566,9 @@ class ReadColorControlColorLoopDirection : public ModelCommand ~ReadColorControlColorLoopDirection() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00004003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15596,9 +15596,9 @@ class ReportColorControlColorLoopDirection : public ModelCommand ~ReportColorControlColorLoopDirection() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00004003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15635,9 +15635,9 @@ class ReadColorControlColorLoopTime : public ModelCommand ~ReadColorControlColorLoopTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00004004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15665,9 +15665,9 @@ class ReportColorControlColorLoopTime : public ModelCommand ~ReportColorControlColorLoopTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00004004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15704,9 +15704,9 @@ class ReadColorControlColorLoopStartEnhancedHue : public ModelCommand ~ReadColorControlColorLoopStartEnhancedHue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00004005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15734,9 +15734,9 @@ class ReportColorControlColorLoopStartEnhancedHue : public ModelCommand ~ReportColorControlColorLoopStartEnhancedHue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00004005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15776,9 +15776,9 @@ class ReadColorControlColorLoopStoredEnhancedHue : public ModelCommand ~ReadColorControlColorLoopStoredEnhancedHue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00004006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15806,9 +15806,9 @@ class ReportColorControlColorLoopStoredEnhancedHue : public ModelCommand ~ReportColorControlColorLoopStoredEnhancedHue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00004006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15848,9 +15848,9 @@ class ReadColorControlColorCapabilities : public ModelCommand ~ReadColorControlColorCapabilities() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x0000400A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15878,9 +15878,9 @@ class ReportColorControlColorCapabilities : public ModelCommand ~ReportColorControlColorCapabilities() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x0000400A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15917,9 +15917,9 @@ class ReadColorControlColorTempPhysicalMin : public ModelCommand ~ReadColorControlColorTempPhysicalMin() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x0000400B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15947,9 +15947,9 @@ class ReportColorControlColorTempPhysicalMin : public ModelCommand ~ReportColorControlColorTempPhysicalMin() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x0000400B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -15986,9 +15986,9 @@ class ReadColorControlColorTempPhysicalMax : public ModelCommand ~ReadColorControlColorTempPhysicalMax() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x0000400C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -16016,9 +16016,9 @@ class ReportColorControlColorTempPhysicalMax : public ModelCommand ~ReportColorControlColorTempPhysicalMax() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x0000400C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -16055,9 +16055,9 @@ class ReadColorControlCoupleColorTempToLevelMinMireds : public ModelCommand ~ReadColorControlCoupleColorTempToLevelMinMireds() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x0000400D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -16085,9 +16085,9 @@ class ReportColorControlCoupleColorTempToLevelMinMireds : public ModelCommand ~ReportColorControlCoupleColorTempToLevelMinMireds() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x0000400D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -16127,9 +16127,9 @@ class ReadColorControlStartUpColorTemperatureMireds : public ModelCommand ~ReadColorControlStartUpColorTemperatureMireds() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x00004010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -16155,9 +16155,9 @@ class WriteColorControlStartUpColorTemperatureMireds : public ModelCommand ~WriteColorControlStartUpColorTemperatureMireds() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) WriteAttribute (0x00004010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -16183,9 +16183,9 @@ class ReportColorControlStartUpColorTemperatureMireds : public ModelCommand ~ReportColorControlStartUpColorTemperatureMireds() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x00004010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -16225,9 +16225,9 @@ class ReadColorControlAttributeList : public ModelCommand ~ReadColorControlAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -16255,9 +16255,9 @@ class ReportColorControlAttributeList : public ModelCommand ~ReportColorControlAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -16297,9 +16297,9 @@ class ReadColorControlClusterRevision : public ModelCommand ~ReadColorControlClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -16327,9 +16327,9 @@ class ReportColorControlClusterRevision : public ModelCommand ~ReportColorControlClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000300) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0300) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ColorControlCluster cluster; cluster.Associate(device, endpointId); @@ -16382,9 +16382,9 @@ class ContentLauncherLaunchContentRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050A) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050A) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnContentLauncherLaunchResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -16408,9 +16408,9 @@ class ContentLauncherLaunchURLRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050A) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050A) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnContentLauncherLaunchResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -16434,9 +16434,9 @@ class ReadContentLauncherAcceptHeaderList : public ModelCommand ~ReadContentLauncherAcceptHeaderList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050A) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050A) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ContentLauncherCluster cluster; cluster.Associate(device, endpointId); @@ -16464,9 +16464,9 @@ class ReportContentLauncherAcceptHeaderList : public ModelCommand ~ReportContentLauncherAcceptHeaderList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050A) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050A) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ContentLauncherCluster cluster; cluster.Associate(device, endpointId); @@ -16506,9 +16506,9 @@ class ReadContentLauncherSupportedStreamingProtocols : public ModelCommand ~ReadContentLauncherSupportedStreamingProtocols() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050A) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050A) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ContentLauncherCluster cluster; cluster.Associate(device, endpointId); @@ -16534,9 +16534,9 @@ class WriteContentLauncherSupportedStreamingProtocols : public ModelCommand ~WriteContentLauncherSupportedStreamingProtocols() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050A) WriteAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050A) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ContentLauncherCluster cluster; cluster.Associate(device, endpointId); @@ -16562,9 +16562,9 @@ class ReportContentLauncherSupportedStreamingProtocols : public ModelCommand ~ReportContentLauncherSupportedStreamingProtocols() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050A) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050A) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ContentLauncherCluster cluster; cluster.Associate(device, endpointId); @@ -16604,9 +16604,9 @@ class ReadContentLauncherAttributeList : public ModelCommand ~ReadContentLauncherAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050A) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050A) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ContentLauncherCluster cluster; cluster.Associate(device, endpointId); @@ -16634,9 +16634,9 @@ class ReportContentLauncherAttributeList : public ModelCommand ~ReportContentLauncherAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050A) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050A) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ContentLauncherCluster cluster; cluster.Associate(device, endpointId); @@ -16676,9 +16676,9 @@ class ReadContentLauncherClusterRevision : public ModelCommand ~ReadContentLauncherClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050A) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050A) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ContentLauncherCluster cluster; cluster.Associate(device, endpointId); @@ -16706,9 +16706,9 @@ class ReportContentLauncherClusterRevision : public ModelCommand ~ReportContentLauncherClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050A) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050A) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ContentLauncherCluster cluster; cluster.Associate(device, endpointId); @@ -16761,9 +16761,9 @@ class ReadDescriptorDeviceList : public ModelCommand ~ReadDescriptorDeviceList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001D) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001D) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DescriptorCluster cluster; cluster.Associate(device, endpointId); @@ -16793,9 +16793,9 @@ class ReportDescriptorDeviceList : public ModelCommand ~ReportDescriptorDeviceList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001D) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001D) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DescriptorCluster cluster; cluster.Associate(device, endpointId); @@ -16837,9 +16837,9 @@ class ReadDescriptorServerList : public ModelCommand ~ReadDescriptorServerList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001D) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001D) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DescriptorCluster cluster; cluster.Associate(device, endpointId); @@ -16867,9 +16867,9 @@ class ReportDescriptorServerList : public ModelCommand ~ReportDescriptorServerList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001D) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001D) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DescriptorCluster cluster; cluster.Associate(device, endpointId); @@ -16909,9 +16909,9 @@ class ReadDescriptorClientList : public ModelCommand ~ReadDescriptorClientList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001D) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001D) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DescriptorCluster cluster; cluster.Associate(device, endpointId); @@ -16939,9 +16939,9 @@ class ReportDescriptorClientList : public ModelCommand ~ReportDescriptorClientList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001D) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001D) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DescriptorCluster cluster; cluster.Associate(device, endpointId); @@ -16981,9 +16981,9 @@ class ReadDescriptorPartsList : public ModelCommand ~ReadDescriptorPartsList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001D) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001D) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DescriptorCluster cluster; cluster.Associate(device, endpointId); @@ -17011,9 +17011,9 @@ class ReportDescriptorPartsList : public ModelCommand ~ReportDescriptorPartsList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001D) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001D) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DescriptorCluster cluster; cluster.Associate(device, endpointId); @@ -17053,9 +17053,9 @@ class ReadDescriptorAttributeList : public ModelCommand ~ReadDescriptorAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001D) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001D) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DescriptorCluster cluster; cluster.Associate(device, endpointId); @@ -17083,9 +17083,9 @@ class ReportDescriptorAttributeList : public ModelCommand ~ReportDescriptorAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001D) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001D) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DescriptorCluster cluster; cluster.Associate(device, endpointId); @@ -17125,9 +17125,9 @@ class ReadDescriptorClusterRevision : public ModelCommand ~ReadDescriptorClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001D) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001D) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DescriptorCluster cluster; cluster.Associate(device, endpointId); @@ -17155,9 +17155,9 @@ class ReportDescriptorClusterRevision : public ModelCommand ~ReportDescriptorClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000001D) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x001D) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DescriptorCluster cluster; cluster.Associate(device, endpointId); @@ -17208,9 +17208,9 @@ class DiagnosticLogsRetrieveLogsRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000032) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000032) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDiagnosticLogsRetrieveLogsResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -17234,9 +17234,9 @@ class ReadDiagnosticLogsAttributeList : public ModelCommand ~ReadDiagnosticLogsAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000032) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0032) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DiagnosticLogsCluster cluster; cluster.Associate(device, endpointId); @@ -17264,9 +17264,9 @@ class ReportDiagnosticLogsAttributeList : public ModelCommand ~ReportDiagnosticLogsAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000032) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0032) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DiagnosticLogsCluster cluster; cluster.Associate(device, endpointId); @@ -17345,9 +17345,9 @@ class DoorLockClearCredential : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) command (0x00000026) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000101) command (0x00000026) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -17369,9 +17369,9 @@ class DoorLockClearUser : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) command (0x0000001D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000101) command (0x0000001D) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -17393,9 +17393,9 @@ class DoorLockGetCredentialStatus : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) command (0x00000024) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000101) command (0x00000024) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDoorLockGetCredentialStatusResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -17417,9 +17417,9 @@ class DoorLockGetUser : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) command (0x0000001B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000101) command (0x0000001B) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDoorLockGetUserResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -17441,9 +17441,9 @@ class DoorLockLockDoor : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000101) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -17471,9 +17471,9 @@ class DoorLockSetCredential : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) command (0x00000022) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000101) command (0x00000022) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDoorLockSetCredentialResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -17505,9 +17505,9 @@ class DoorLockSetUser : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) command (0x0000001A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000101) command (0x0000001A) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -17529,9 +17529,9 @@ class DoorLockUnlockDoor : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000101) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -17555,9 +17555,9 @@ class ReadDoorLockDoorLockAlarm : public ModelCommand ~ReadDoorLockDoorLockAlarm() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -17585,9 +17585,9 @@ class ReportDoorLockDoorLockAlarm : public ModelCommand ~ReportDoorLockDoorLockAlarm() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -17626,9 +17626,9 @@ class ReadDoorLockDoorStateChange : public ModelCommand ~ReadDoorLockDoorStateChange() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -17656,9 +17656,9 @@ class ReportDoorLockDoorStateChange : public ModelCommand ~ReportDoorLockDoorStateChange() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -17697,9 +17697,9 @@ class ReadDoorLockLockOperation : public ModelCommand ~ReadDoorLockLockOperation() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadEvent (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -17727,9 +17727,9 @@ class ReportDoorLockLockOperation : public ModelCommand ~ReportDoorLockLockOperation() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportEvent (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -17768,9 +17768,9 @@ class ReadDoorLockLockOperationError : public ModelCommand ~ReadDoorLockLockOperationError() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadEvent (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -17798,9 +17798,9 @@ class ReportDoorLockLockOperationError : public ModelCommand ~ReportDoorLockLockOperationError() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportEvent (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -17839,9 +17839,9 @@ class ReadDoorLockLockUserChange : public ModelCommand ~ReadDoorLockLockUserChange() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadEvent (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -17869,9 +17869,9 @@ class ReportDoorLockLockUserChange : public ModelCommand ~ReportDoorLockLockUserChange() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportEvent (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -17911,9 +17911,9 @@ class ReadDoorLockLockState : public ModelCommand ~ReadDoorLockLockState() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -17942,9 +17942,9 @@ class ReportDoorLockLockState : public ModelCommand ~ReportDoorLockLockState() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -17985,9 +17985,9 @@ class ReadDoorLockLockType : public ModelCommand ~ReadDoorLockLockType() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18015,9 +18015,9 @@ class ReportDoorLockLockType : public ModelCommand ~ReportDoorLockLockType() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18057,9 +18057,9 @@ class ReadDoorLockActuatorEnabled : public ModelCommand ~ReadDoorLockActuatorEnabled() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18087,9 +18087,9 @@ class ReportDoorLockActuatorEnabled : public ModelCommand ~ReportDoorLockActuatorEnabled() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18126,9 +18126,9 @@ class ReadDoorLockDoorState : public ModelCommand ~ReadDoorLockDoorState() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18157,9 +18157,9 @@ class ReportDoorLockDoorState : public ModelCommand ~ReportDoorLockDoorState() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18200,9 +18200,9 @@ class ReadDoorLockNumberOfTotalUsersSupported : public ModelCommand ~ReadDoorLockNumberOfTotalUsersSupported() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18230,9 +18230,9 @@ class ReportDoorLockNumberOfTotalUsersSupported : public ModelCommand ~ReportDoorLockNumberOfTotalUsersSupported() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18269,9 +18269,9 @@ class ReadDoorLockNumberOfPINUsersSupported : public ModelCommand ~ReadDoorLockNumberOfPINUsersSupported() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18299,9 +18299,9 @@ class ReportDoorLockNumberOfPINUsersSupported : public ModelCommand ~ReportDoorLockNumberOfPINUsersSupported() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18338,9 +18338,9 @@ class ReadDoorLockMaxPINCodeLength : public ModelCommand ~ReadDoorLockMaxPINCodeLength() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadAttribute (0x00000017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18368,9 +18368,9 @@ class ReportDoorLockMaxPINCodeLength : public ModelCommand ~ReportDoorLockMaxPINCodeLength() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportAttribute (0x00000017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18407,9 +18407,9 @@ class ReadDoorLockMinPINCodeLength : public ModelCommand ~ReadDoorLockMinPINCodeLength() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadAttribute (0x00000018) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18437,9 +18437,9 @@ class ReportDoorLockMinPINCodeLength : public ModelCommand ~ReportDoorLockMinPINCodeLength() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportAttribute (0x00000018) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18476,9 +18476,9 @@ class ReadDoorLockLanguage : public ModelCommand ~ReadDoorLockLanguage() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadAttribute (0x00000021) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18504,9 +18504,9 @@ class WriteDoorLockLanguage : public ModelCommand ~WriteDoorLockLanguage() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) WriteAttribute (0x00000021) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18532,9 +18532,9 @@ class ReportDoorLockLanguage : public ModelCommand ~ReportDoorLockLanguage() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportAttribute (0x00000021) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18571,9 +18571,9 @@ class ReadDoorLockAutoRelockTime : public ModelCommand ~ReadDoorLockAutoRelockTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadAttribute (0x00000023) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18599,9 +18599,9 @@ class WriteDoorLockAutoRelockTime : public ModelCommand ~WriteDoorLockAutoRelockTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) WriteAttribute (0x00000023) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18627,9 +18627,9 @@ class ReportDoorLockAutoRelockTime : public ModelCommand ~ReportDoorLockAutoRelockTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportAttribute (0x00000023) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18666,9 +18666,9 @@ class ReadDoorLockSoundVolume : public ModelCommand ~ReadDoorLockSoundVolume() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadAttribute (0x00000024) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18694,9 +18694,9 @@ class WriteDoorLockSoundVolume : public ModelCommand ~WriteDoorLockSoundVolume() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) WriteAttribute (0x00000024) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18722,9 +18722,9 @@ class ReportDoorLockSoundVolume : public ModelCommand ~ReportDoorLockSoundVolume() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportAttribute (0x00000024) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18761,9 +18761,9 @@ class ReadDoorLockOperatingMode : public ModelCommand ~ReadDoorLockOperatingMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadAttribute (0x00000025) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18789,9 +18789,9 @@ class WriteDoorLockOperatingMode : public ModelCommand ~WriteDoorLockOperatingMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) WriteAttribute (0x00000025) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18817,9 +18817,9 @@ class ReportDoorLockOperatingMode : public ModelCommand ~ReportDoorLockOperatingMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportAttribute (0x00000025) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18859,9 +18859,9 @@ class ReadDoorLockSupportedOperatingModes : public ModelCommand ~ReadDoorLockSupportedOperatingModes() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadAttribute (0x00000026) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18889,9 +18889,9 @@ class ReportDoorLockSupportedOperatingModes : public ModelCommand ~ReportDoorLockSupportedOperatingModes() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportAttribute (0x00000026) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18928,9 +18928,9 @@ class ReadDoorLockEnableOneTouchLocking : public ModelCommand ~ReadDoorLockEnableOneTouchLocking() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadAttribute (0x00000029) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18956,9 +18956,9 @@ class WriteDoorLockEnableOneTouchLocking : public ModelCommand ~WriteDoorLockEnableOneTouchLocking() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) WriteAttribute (0x00000029) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -18984,9 +18984,9 @@ class ReportDoorLockEnableOneTouchLocking : public ModelCommand ~ReportDoorLockEnableOneTouchLocking() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportAttribute (0x00000029) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -19023,9 +19023,9 @@ class ReadDoorLockEnablePrivacyModeButton : public ModelCommand ~ReadDoorLockEnablePrivacyModeButton() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadAttribute (0x0000002B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -19051,9 +19051,9 @@ class WriteDoorLockEnablePrivacyModeButton : public ModelCommand ~WriteDoorLockEnablePrivacyModeButton() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) WriteAttribute (0x0000002B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -19079,9 +19079,9 @@ class ReportDoorLockEnablePrivacyModeButton : public ModelCommand ~ReportDoorLockEnablePrivacyModeButton() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportAttribute (0x0000002B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -19118,9 +19118,9 @@ class ReadDoorLockWrongCodeEntryLimit : public ModelCommand ~ReadDoorLockWrongCodeEntryLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadAttribute (0x00000030) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -19146,9 +19146,9 @@ class WriteDoorLockWrongCodeEntryLimit : public ModelCommand ~WriteDoorLockWrongCodeEntryLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) WriteAttribute (0x00000030) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -19174,9 +19174,9 @@ class ReportDoorLockWrongCodeEntryLimit : public ModelCommand ~ReportDoorLockWrongCodeEntryLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportAttribute (0x00000030) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -19213,9 +19213,9 @@ class ReadDoorLockAttributeList : public ModelCommand ~ReadDoorLockAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -19243,9 +19243,9 @@ class ReportDoorLockAttributeList : public ModelCommand ~ReportDoorLockAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -19285,9 +19285,9 @@ class ReadDoorLockClusterRevision : public ModelCommand ~ReadDoorLockClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -19315,9 +19315,9 @@ class ReportDoorLockClusterRevision : public ModelCommand ~ReportDoorLockClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000101) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0101) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::DoorLockCluster cluster; cluster.Associate(device, endpointId); @@ -19377,9 +19377,9 @@ class ReadElectricalMeasurementMeasurementType : public ModelCommand ~ReadElectricalMeasurementMeasurementType() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -19407,9 +19407,9 @@ class ReportElectricalMeasurementMeasurementType : public ModelCommand ~ReportElectricalMeasurementMeasurementType() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -19449,9 +19449,9 @@ class ReadElectricalMeasurementTotalActivePower : public ModelCommand ~ReadElectricalMeasurementTotalActivePower() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReadAttribute (0x00000304) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -19479,9 +19479,9 @@ class ReportElectricalMeasurementTotalActivePower : public ModelCommand ~ReportElectricalMeasurementTotalActivePower() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReportAttribute (0x00000304) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -19521,9 +19521,9 @@ class ReadElectricalMeasurementRmsVoltage : public ModelCommand ~ReadElectricalMeasurementRmsVoltage() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReadAttribute (0x00000505) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -19551,9 +19551,9 @@ class ReportElectricalMeasurementRmsVoltage : public ModelCommand ~ReportElectricalMeasurementRmsVoltage() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReportAttribute (0x00000505) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -19590,9 +19590,9 @@ class ReadElectricalMeasurementRmsVoltageMin : public ModelCommand ~ReadElectricalMeasurementRmsVoltageMin() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReadAttribute (0x00000506) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -19620,9 +19620,9 @@ class ReportElectricalMeasurementRmsVoltageMin : public ModelCommand ~ReportElectricalMeasurementRmsVoltageMin() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReportAttribute (0x00000506) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -19659,9 +19659,9 @@ class ReadElectricalMeasurementRmsVoltageMax : public ModelCommand ~ReadElectricalMeasurementRmsVoltageMax() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReadAttribute (0x00000507) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -19689,9 +19689,9 @@ class ReportElectricalMeasurementRmsVoltageMax : public ModelCommand ~ReportElectricalMeasurementRmsVoltageMax() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReportAttribute (0x00000507) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -19728,9 +19728,9 @@ class ReadElectricalMeasurementRmsCurrent : public ModelCommand ~ReadElectricalMeasurementRmsCurrent() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReadAttribute (0x00000508) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -19758,9 +19758,9 @@ class ReportElectricalMeasurementRmsCurrent : public ModelCommand ~ReportElectricalMeasurementRmsCurrent() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReportAttribute (0x00000508) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -19797,9 +19797,9 @@ class ReadElectricalMeasurementRmsCurrentMin : public ModelCommand ~ReadElectricalMeasurementRmsCurrentMin() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReadAttribute (0x00000509) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -19827,9 +19827,9 @@ class ReportElectricalMeasurementRmsCurrentMin : public ModelCommand ~ReportElectricalMeasurementRmsCurrentMin() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReportAttribute (0x00000509) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -19866,9 +19866,9 @@ class ReadElectricalMeasurementRmsCurrentMax : public ModelCommand ~ReadElectricalMeasurementRmsCurrentMax() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReadAttribute (0x0000050A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -19896,9 +19896,9 @@ class ReportElectricalMeasurementRmsCurrentMax : public ModelCommand ~ReportElectricalMeasurementRmsCurrentMax() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReportAttribute (0x0000050A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -19935,9 +19935,9 @@ class ReadElectricalMeasurementActivePower : public ModelCommand ~ReadElectricalMeasurementActivePower() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReadAttribute (0x0000050B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -19965,9 +19965,9 @@ class ReportElectricalMeasurementActivePower : public ModelCommand ~ReportElectricalMeasurementActivePower() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReportAttribute (0x0000050B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -20004,9 +20004,9 @@ class ReadElectricalMeasurementActivePowerMin : public ModelCommand ~ReadElectricalMeasurementActivePowerMin() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReadAttribute (0x0000050C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -20034,9 +20034,9 @@ class ReportElectricalMeasurementActivePowerMin : public ModelCommand ~ReportElectricalMeasurementActivePowerMin() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReportAttribute (0x0000050C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -20073,9 +20073,9 @@ class ReadElectricalMeasurementActivePowerMax : public ModelCommand ~ReadElectricalMeasurementActivePowerMax() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReadAttribute (0x0000050D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -20103,9 +20103,9 @@ class ReportElectricalMeasurementActivePowerMax : public ModelCommand ~ReportElectricalMeasurementActivePowerMax() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReportAttribute (0x0000050D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -20142,9 +20142,9 @@ class ReadElectricalMeasurementAttributeList : public ModelCommand ~ReadElectricalMeasurementAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -20172,9 +20172,9 @@ class ReportElectricalMeasurementAttributeList : public ModelCommand ~ReportElectricalMeasurementAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -20214,9 +20214,9 @@ class ReadElectricalMeasurementClusterRevision : public ModelCommand ~ReadElectricalMeasurementClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -20244,9 +20244,9 @@ class ReportElectricalMeasurementClusterRevision : public ModelCommand ~ReportElectricalMeasurementClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000B04) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0B04) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ElectricalMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -20303,9 +20303,9 @@ class EthernetNetworkDiagnosticsResetCounts : public ModelCommand public: EthernetNetworkDiagnosticsResetCounts() : ModelCommand("reset-counts") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000037) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -20329,9 +20329,9 @@ class ReadEthernetNetworkDiagnosticsPHYRate : public ModelCommand ~ReadEthernetNetworkDiagnosticsPHYRate() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20359,9 +20359,9 @@ class ReportEthernetNetworkDiagnosticsPHYRate : public ModelCommand ~ReportEthernetNetworkDiagnosticsPHYRate() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20398,9 +20398,9 @@ class ReadEthernetNetworkDiagnosticsFullDuplex : public ModelCommand ~ReadEthernetNetworkDiagnosticsFullDuplex() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20428,9 +20428,9 @@ class ReportEthernetNetworkDiagnosticsFullDuplex : public ModelCommand ~ReportEthernetNetworkDiagnosticsFullDuplex() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20467,9 +20467,9 @@ class ReadEthernetNetworkDiagnosticsPacketRxCount : public ModelCommand ~ReadEthernetNetworkDiagnosticsPacketRxCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20497,9 +20497,9 @@ class ReportEthernetNetworkDiagnosticsPacketRxCount : public ModelCommand ~ReportEthernetNetworkDiagnosticsPacketRxCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20539,9 +20539,9 @@ class ReadEthernetNetworkDiagnosticsPacketTxCount : public ModelCommand ~ReadEthernetNetworkDiagnosticsPacketTxCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20569,9 +20569,9 @@ class ReportEthernetNetworkDiagnosticsPacketTxCount : public ModelCommand ~ReportEthernetNetworkDiagnosticsPacketTxCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20611,9 +20611,9 @@ class ReadEthernetNetworkDiagnosticsTxErrCount : public ModelCommand ~ReadEthernetNetworkDiagnosticsTxErrCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReadAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20641,9 +20641,9 @@ class ReportEthernetNetworkDiagnosticsTxErrCount : public ModelCommand ~ReportEthernetNetworkDiagnosticsTxErrCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReportAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20683,9 +20683,9 @@ class ReadEthernetNetworkDiagnosticsCollisionCount : public ModelCommand ~ReadEthernetNetworkDiagnosticsCollisionCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReadAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20713,9 +20713,9 @@ class ReportEthernetNetworkDiagnosticsCollisionCount : public ModelCommand ~ReportEthernetNetworkDiagnosticsCollisionCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReportAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20755,9 +20755,9 @@ class ReadEthernetNetworkDiagnosticsOverrunCount : public ModelCommand ~ReadEthernetNetworkDiagnosticsOverrunCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReadAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20785,9 +20785,9 @@ class ReportEthernetNetworkDiagnosticsOverrunCount : public ModelCommand ~ReportEthernetNetworkDiagnosticsOverrunCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReportAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20827,9 +20827,9 @@ class ReadEthernetNetworkDiagnosticsCarrierDetect : public ModelCommand ~ReadEthernetNetworkDiagnosticsCarrierDetect() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReadAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20857,9 +20857,9 @@ class ReportEthernetNetworkDiagnosticsCarrierDetect : public ModelCommand ~ReportEthernetNetworkDiagnosticsCarrierDetect() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReportAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20896,9 +20896,9 @@ class ReadEthernetNetworkDiagnosticsTimeSinceReset : public ModelCommand ~ReadEthernetNetworkDiagnosticsTimeSinceReset() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReadAttribute (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20926,9 +20926,9 @@ class ReportEthernetNetworkDiagnosticsTimeSinceReset : public ModelCommand ~ReportEthernetNetworkDiagnosticsTimeSinceReset() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReportAttribute (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20968,9 +20968,9 @@ class ReadEthernetNetworkDiagnosticsAttributeList : public ModelCommand ~ReadEthernetNetworkDiagnosticsAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -20998,9 +20998,9 @@ class ReportEthernetNetworkDiagnosticsAttributeList : public ModelCommand ~ReportEthernetNetworkDiagnosticsAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -21040,9 +21040,9 @@ class ReadEthernetNetworkDiagnosticsFeatureMap : public ModelCommand ~ReadEthernetNetworkDiagnosticsFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReadAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -21070,9 +21070,9 @@ class ReportEthernetNetworkDiagnosticsFeatureMap : public ModelCommand ~ReportEthernetNetworkDiagnosticsFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReportAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -21112,9 +21112,9 @@ class ReadEthernetNetworkDiagnosticsClusterRevision : public ModelCommand ~ReadEthernetNetworkDiagnosticsClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -21142,9 +21142,9 @@ class ReportEthernetNetworkDiagnosticsClusterRevision : public ModelCommand ~ReportEthernetNetworkDiagnosticsClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000037) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0037) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::EthernetNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -21197,9 +21197,9 @@ class ReadFixedLabelLabelList : public ModelCommand ~ReadFixedLabelLabelList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000040) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0040) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::FixedLabelCluster cluster; cluster.Associate(device, endpointId); @@ -21229,9 +21229,9 @@ class ReportFixedLabelLabelList : public ModelCommand ~ReportFixedLabelLabelList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000040) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0040) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::FixedLabelCluster cluster; cluster.Associate(device, endpointId); @@ -21273,9 +21273,9 @@ class ReadFixedLabelAttributeList : public ModelCommand ~ReadFixedLabelAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000040) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0040) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::FixedLabelCluster cluster; cluster.Associate(device, endpointId); @@ -21303,9 +21303,9 @@ class ReportFixedLabelAttributeList : public ModelCommand ~ReportFixedLabelAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000040) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0040) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::FixedLabelCluster cluster; cluster.Associate(device, endpointId); @@ -21345,9 +21345,9 @@ class ReadFixedLabelClusterRevision : public ModelCommand ~ReadFixedLabelClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000040) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0040) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::FixedLabelCluster cluster; cluster.Associate(device, endpointId); @@ -21375,9 +21375,9 @@ class ReportFixedLabelClusterRevision : public ModelCommand ~ReportFixedLabelClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000040) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0040) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::FixedLabelCluster cluster; cluster.Associate(device, endpointId); @@ -21430,9 +21430,9 @@ class ReadFlowMeasurementMeasuredValue : public ModelCommand ~ReadFlowMeasurementMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000404) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0404) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::FlowMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -21460,9 +21460,9 @@ class ReportFlowMeasurementMeasuredValue : public ModelCommand ~ReportFlowMeasurementMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000404) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0404) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::FlowMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -21499,9 +21499,9 @@ class ReadFlowMeasurementMinMeasuredValue : public ModelCommand ~ReadFlowMeasurementMinMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000404) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0404) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::FlowMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -21529,9 +21529,9 @@ class ReportFlowMeasurementMinMeasuredValue : public ModelCommand ~ReportFlowMeasurementMinMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000404) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0404) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::FlowMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -21568,9 +21568,9 @@ class ReadFlowMeasurementMaxMeasuredValue : public ModelCommand ~ReadFlowMeasurementMaxMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000404) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0404) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::FlowMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -21598,9 +21598,9 @@ class ReportFlowMeasurementMaxMeasuredValue : public ModelCommand ~ReportFlowMeasurementMaxMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000404) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0404) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::FlowMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -21637,9 +21637,9 @@ class ReadFlowMeasurementTolerance : public ModelCommand ~ReadFlowMeasurementTolerance() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000404) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0404) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::FlowMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -21667,9 +21667,9 @@ class ReportFlowMeasurementTolerance : public ModelCommand ~ReportFlowMeasurementTolerance() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000404) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0404) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::FlowMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -21706,9 +21706,9 @@ class ReadFlowMeasurementAttributeList : public ModelCommand ~ReadFlowMeasurementAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000404) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0404) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::FlowMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -21736,9 +21736,9 @@ class ReportFlowMeasurementAttributeList : public ModelCommand ~ReportFlowMeasurementAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000404) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0404) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::FlowMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -21778,9 +21778,9 @@ class ReadFlowMeasurementClusterRevision : public ModelCommand ~ReadFlowMeasurementClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000404) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0404) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::FlowMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -21808,9 +21808,9 @@ class ReportFlowMeasurementClusterRevision : public ModelCommand ~ReportFlowMeasurementClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000404) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0404) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::FlowMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -21866,9 +21866,9 @@ class GeneralCommissioningArmFailSafe : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000030) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000030) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnGeneralCommissioningArmFailSafeResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -21886,9 +21886,9 @@ class GeneralCommissioningCommissioningComplete : public ModelCommand public: GeneralCommissioningCommissioningComplete() : ModelCommand("commissioning-complete") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000030) command (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000030) command (0x00000004) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnGeneralCommissioningCommissioningCompleteResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -21914,9 +21914,9 @@ class GeneralCommissioningSetRegulatoryConfig : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000030) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000030) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnGeneralCommissioningSetRegulatoryConfigResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -21940,9 +21940,9 @@ class ReadGeneralCommissioningBreadcrumb : public ModelCommand ~ReadGeneralCommissioningBreadcrumb() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000030) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0030) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -21968,9 +21968,9 @@ class WriteGeneralCommissioningBreadcrumb : public ModelCommand ~WriteGeneralCommissioningBreadcrumb() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000030) WriteAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0030) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -21996,9 +21996,9 @@ class ReportGeneralCommissioningBreadcrumb : public ModelCommand ~ReportGeneralCommissioningBreadcrumb() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000030) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0030) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -22035,9 +22035,9 @@ class ReadGeneralCommissioningBasicCommissioningInfoList : public ModelCommand ~ReadGeneralCommissioningBasicCommissioningInfoList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000030) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0030) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -22068,9 +22068,9 @@ class ReportGeneralCommissioningBasicCommissioningInfoList : public ModelCommand ~ReportGeneralCommissioningBasicCommissioningInfoList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000030) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0030) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -22114,9 +22114,9 @@ class ReadGeneralCommissioningRegulatoryConfig : public ModelCommand ~ReadGeneralCommissioningRegulatoryConfig() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000030) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0030) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -22144,9 +22144,9 @@ class ReportGeneralCommissioningRegulatoryConfig : public ModelCommand ~ReportGeneralCommissioningRegulatoryConfig() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000030) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0030) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -22183,9 +22183,9 @@ class ReadGeneralCommissioningLocationCapability : public ModelCommand ~ReadGeneralCommissioningLocationCapability() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000030) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0030) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -22213,9 +22213,9 @@ class ReportGeneralCommissioningLocationCapability : public ModelCommand ~ReportGeneralCommissioningLocationCapability() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000030) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0030) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -22255,9 +22255,9 @@ class ReadGeneralCommissioningAttributeList : public ModelCommand ~ReadGeneralCommissioningAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000030) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0030) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -22285,9 +22285,9 @@ class ReportGeneralCommissioningAttributeList : public ModelCommand ~ReportGeneralCommissioningAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000030) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0030) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -22327,9 +22327,9 @@ class ReadGeneralCommissioningClusterRevision : public ModelCommand ~ReadGeneralCommissioningClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000030) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0030) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -22357,9 +22357,9 @@ class ReportGeneralCommissioningClusterRevision : public ModelCommand ~ReportGeneralCommissioningClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000030) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0030) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -22420,9 +22420,9 @@ class ReadGeneralDiagnosticsHardwareFaultChange : public ModelCommand ~ReadGeneralDiagnosticsHardwareFaultChange() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReadEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -22451,9 +22451,9 @@ class ReportGeneralDiagnosticsHardwareFaultChange : public ModelCommand ~ReportGeneralDiagnosticsHardwareFaultChange() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReportEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -22493,9 +22493,9 @@ class ReadGeneralDiagnosticsRadioFaultChange : public ModelCommand ~ReadGeneralDiagnosticsRadioFaultChange() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReadEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -22524,9 +22524,9 @@ class ReportGeneralDiagnosticsRadioFaultChange : public ModelCommand ~ReportGeneralDiagnosticsRadioFaultChange() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReportEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -22566,9 +22566,9 @@ class ReadGeneralDiagnosticsNetworkFaultChange : public ModelCommand ~ReadGeneralDiagnosticsNetworkFaultChange() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReadEvent (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -22597,9 +22597,9 @@ class ReportGeneralDiagnosticsNetworkFaultChange : public ModelCommand ~ReportGeneralDiagnosticsNetworkFaultChange() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReportEvent (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -22639,9 +22639,9 @@ class ReadGeneralDiagnosticsBootReason : public ModelCommand ~ReadGeneralDiagnosticsBootReason() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReadEvent (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -22669,9 +22669,9 @@ class ReportGeneralDiagnosticsBootReason : public ModelCommand ~ReportGeneralDiagnosticsBootReason() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReportEvent (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -22711,9 +22711,9 @@ class ReadGeneralDiagnosticsNetworkInterfaces : public ModelCommand ~ReadGeneralDiagnosticsNetworkInterfaces() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -22744,9 +22744,9 @@ class ReportGeneralDiagnosticsNetworkInterfaces : public ModelCommand ~ReportGeneralDiagnosticsNetworkInterfaces() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -22788,9 +22788,9 @@ class ReadGeneralDiagnosticsRebootCount : public ModelCommand ~ReadGeneralDiagnosticsRebootCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -22818,9 +22818,9 @@ class ReportGeneralDiagnosticsRebootCount : public ModelCommand ~ReportGeneralDiagnosticsRebootCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -22857,9 +22857,9 @@ class ReadGeneralDiagnosticsUpTime : public ModelCommand ~ReadGeneralDiagnosticsUpTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -22887,9 +22887,9 @@ class ReportGeneralDiagnosticsUpTime : public ModelCommand ~ReportGeneralDiagnosticsUpTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -22926,9 +22926,9 @@ class ReadGeneralDiagnosticsTotalOperationalHours : public ModelCommand ~ReadGeneralDiagnosticsTotalOperationalHours() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -22956,9 +22956,9 @@ class ReportGeneralDiagnosticsTotalOperationalHours : public ModelCommand ~ReportGeneralDiagnosticsTotalOperationalHours() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -22998,9 +22998,9 @@ class ReadGeneralDiagnosticsBootReasons : public ModelCommand ~ReadGeneralDiagnosticsBootReasons() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReadAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -23028,9 +23028,9 @@ class ReportGeneralDiagnosticsBootReasons : public ModelCommand ~ReportGeneralDiagnosticsBootReasons() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReportAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -23067,9 +23067,9 @@ class ReadGeneralDiagnosticsActiveHardwareFaults : public ModelCommand ~ReadGeneralDiagnosticsActiveHardwareFaults() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReadAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -23097,9 +23097,9 @@ class ReportGeneralDiagnosticsActiveHardwareFaults : public ModelCommand ~ReportGeneralDiagnosticsActiveHardwareFaults() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReportAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -23139,9 +23139,9 @@ class ReadGeneralDiagnosticsActiveRadioFaults : public ModelCommand ~ReadGeneralDiagnosticsActiveRadioFaults() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReadAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -23169,9 +23169,9 @@ class ReportGeneralDiagnosticsActiveRadioFaults : public ModelCommand ~ReportGeneralDiagnosticsActiveRadioFaults() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReportAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -23211,9 +23211,9 @@ class ReadGeneralDiagnosticsActiveNetworkFaults : public ModelCommand ~ReadGeneralDiagnosticsActiveNetworkFaults() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReadAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -23241,9 +23241,9 @@ class ReportGeneralDiagnosticsActiveNetworkFaults : public ModelCommand ~ReportGeneralDiagnosticsActiveNetworkFaults() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReportAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -23283,9 +23283,9 @@ class ReadGeneralDiagnosticsAttributeList : public ModelCommand ~ReadGeneralDiagnosticsAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -23313,9 +23313,9 @@ class ReportGeneralDiagnosticsAttributeList : public ModelCommand ~ReportGeneralDiagnosticsAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -23355,9 +23355,9 @@ class ReadGeneralDiagnosticsClusterRevision : public ModelCommand ~ReadGeneralDiagnosticsClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -23385,9 +23385,9 @@ class ReportGeneralDiagnosticsClusterRevision : public ModelCommand ~ReportGeneralDiagnosticsClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000033) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0033) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GeneralDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -23442,9 +23442,9 @@ class GroupKeyManagementKeySetRead : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003F) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000003F) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnGroupKeyManagementKeySetReadResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -23466,9 +23466,9 @@ class GroupKeyManagementKeySetReadAllIndices : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003F) command (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000003F) command (0x00000004) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnGroupKeyManagementKeySetReadAllIndicesResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -23490,9 +23490,9 @@ class GroupKeyManagementKeySetRemove : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003F) command (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000003F) command (0x00000003) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -23514,9 +23514,9 @@ class GroupKeyManagementKeySetWrite : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003F) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000003F) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -23540,9 +23540,9 @@ class ReadGroupKeyManagementGroupKeyMap : public ModelCommand ~ReadGroupKeyManagementGroupKeyMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003F) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GroupKeyManagementCluster cluster; cluster.Associate(device, endpointId); @@ -23573,9 +23573,9 @@ class ReportGroupKeyManagementGroupKeyMap : public ModelCommand ~ReportGroupKeyManagementGroupKeyMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003F) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GroupKeyManagementCluster cluster; cluster.Associate(device, endpointId); @@ -23618,9 +23618,9 @@ class ReadGroupKeyManagementGroupTable : public ModelCommand ~ReadGroupKeyManagementGroupTable() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003F) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GroupKeyManagementCluster cluster; cluster.Associate(device, endpointId); @@ -23651,9 +23651,9 @@ class ReportGroupKeyManagementGroupTable : public ModelCommand ~ReportGroupKeyManagementGroupTable() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003F) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GroupKeyManagementCluster cluster; cluster.Associate(device, endpointId); @@ -23696,9 +23696,9 @@ class ReadGroupKeyManagementMaxGroupsPerFabric : public ModelCommand ~ReadGroupKeyManagementMaxGroupsPerFabric() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003F) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GroupKeyManagementCluster cluster; cluster.Associate(device, endpointId); @@ -23726,9 +23726,9 @@ class ReportGroupKeyManagementMaxGroupsPerFabric : public ModelCommand ~ReportGroupKeyManagementMaxGroupsPerFabric() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003F) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GroupKeyManagementCluster cluster; cluster.Associate(device, endpointId); @@ -23768,9 +23768,9 @@ class ReadGroupKeyManagementMaxGroupKeysPerFabric : public ModelCommand ~ReadGroupKeyManagementMaxGroupKeysPerFabric() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003F) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GroupKeyManagementCluster cluster; cluster.Associate(device, endpointId); @@ -23798,9 +23798,9 @@ class ReportGroupKeyManagementMaxGroupKeysPerFabric : public ModelCommand ~ReportGroupKeyManagementMaxGroupKeysPerFabric() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003F) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GroupKeyManagementCluster cluster; cluster.Associate(device, endpointId); @@ -23840,9 +23840,9 @@ class ReadGroupKeyManagementAttributeList : public ModelCommand ~ReadGroupKeyManagementAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003F) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GroupKeyManagementCluster cluster; cluster.Associate(device, endpointId); @@ -23870,9 +23870,9 @@ class ReportGroupKeyManagementAttributeList : public ModelCommand ~ReportGroupKeyManagementAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003F) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GroupKeyManagementCluster cluster; cluster.Associate(device, endpointId); @@ -23912,9 +23912,9 @@ class ReadGroupKeyManagementClusterRevision : public ModelCommand ~ReadGroupKeyManagementClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003F) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GroupKeyManagementCluster cluster; cluster.Associate(device, endpointId); @@ -23942,9 +23942,9 @@ class ReportGroupKeyManagementClusterRevision : public ModelCommand ~ReportGroupKeyManagementClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003F) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GroupKeyManagementCluster cluster; cluster.Associate(device, endpointId); @@ -23999,9 +23999,9 @@ class GroupsAddGroup : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000004) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000004) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnGroupsAddGroupResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -24024,9 +24024,9 @@ class GroupsAddGroupIfIdentifying : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000004) command (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000004) command (0x00000005) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -24048,9 +24048,9 @@ class GroupsGetGroupMembership : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000004) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000004) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnGroupsGetGroupMembershipResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -24068,9 +24068,9 @@ class GroupsRemoveAllGroups : public ModelCommand public: GroupsRemoveAllGroups() : ModelCommand("remove-all-groups") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000004) command (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000004) command (0x00000004) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -24092,9 +24092,9 @@ class GroupsRemoveGroup : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000004) command (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000004) command (0x00000003) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnGroupsRemoveGroupResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -24116,9 +24116,9 @@ class GroupsViewGroup : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000004) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000004) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnGroupsViewGroupResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -24142,9 +24142,9 @@ class ReadGroupsNameSupport : public ModelCommand ~ReadGroupsNameSupport() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000004) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0004) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GroupsCluster cluster; cluster.Associate(device, endpointId); @@ -24172,9 +24172,9 @@ class ReportGroupsNameSupport : public ModelCommand ~ReportGroupsNameSupport() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000004) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0004) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GroupsCluster cluster; cluster.Associate(device, endpointId); @@ -24211,9 +24211,9 @@ class ReadGroupsAttributeList : public ModelCommand ~ReadGroupsAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000004) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0004) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GroupsCluster cluster; cluster.Associate(device, endpointId); @@ -24241,9 +24241,9 @@ class ReportGroupsAttributeList : public ModelCommand ~ReportGroupsAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000004) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0004) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GroupsCluster cluster; cluster.Associate(device, endpointId); @@ -24283,9 +24283,9 @@ class ReadGroupsClusterRevision : public ModelCommand ~ReadGroupsClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000004) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0004) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GroupsCluster cluster; cluster.Associate(device, endpointId); @@ -24313,9 +24313,9 @@ class ReportGroupsClusterRevision : public ModelCommand ~ReportGroupsClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000004) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0004) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::GroupsCluster cluster; cluster.Associate(device, endpointId); @@ -24367,9 +24367,9 @@ class IdentifyIdentify : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000003) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000003) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -24387,9 +24387,9 @@ class IdentifyIdentifyQuery : public ModelCommand public: IdentifyIdentifyQuery() : ModelCommand("identify-query") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000003) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000003) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnIdentifyIdentifyQueryResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -24414,9 +24414,9 @@ class IdentifyTriggerEffect : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000003) command (0x00000040) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000003) command (0x00000040) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -24440,9 +24440,9 @@ class ReadIdentifyIdentifyTime : public ModelCommand ~ReadIdentifyIdentifyTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000003) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0003) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IdentifyCluster cluster; cluster.Associate(device, endpointId); @@ -24468,9 +24468,9 @@ class WriteIdentifyIdentifyTime : public ModelCommand ~WriteIdentifyIdentifyTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000003) WriteAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0003) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IdentifyCluster cluster; cluster.Associate(device, endpointId); @@ -24496,9 +24496,9 @@ class ReportIdentifyIdentifyTime : public ModelCommand ~ReportIdentifyIdentifyTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000003) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0003) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IdentifyCluster cluster; cluster.Associate(device, endpointId); @@ -24535,9 +24535,9 @@ class ReadIdentifyIdentifyType : public ModelCommand ~ReadIdentifyIdentifyType() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000003) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0003) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IdentifyCluster cluster; cluster.Associate(device, endpointId); @@ -24565,9 +24565,9 @@ class ReportIdentifyIdentifyType : public ModelCommand ~ReportIdentifyIdentifyType() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000003) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0003) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IdentifyCluster cluster; cluster.Associate(device, endpointId); @@ -24604,9 +24604,9 @@ class ReadIdentifyAttributeList : public ModelCommand ~ReadIdentifyAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000003) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0003) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IdentifyCluster cluster; cluster.Associate(device, endpointId); @@ -24634,9 +24634,9 @@ class ReportIdentifyAttributeList : public ModelCommand ~ReportIdentifyAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000003) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0003) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IdentifyCluster cluster; cluster.Associate(device, endpointId); @@ -24676,9 +24676,9 @@ class ReadIdentifyClusterRevision : public ModelCommand ~ReadIdentifyClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000003) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0003) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IdentifyCluster cluster; cluster.Associate(device, endpointId); @@ -24706,9 +24706,9 @@ class ReportIdentifyClusterRevision : public ModelCommand ~ReportIdentifyClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000003) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0003) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IdentifyCluster cluster; cluster.Associate(device, endpointId); @@ -24762,9 +24762,9 @@ class ReadIlluminanceMeasurementMeasuredValue : public ModelCommand ~ReadIlluminanceMeasurementMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000400) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0400) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IlluminanceMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -24792,9 +24792,9 @@ class ReportIlluminanceMeasurementMeasuredValue : public ModelCommand ~ReportIlluminanceMeasurementMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000400) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0400) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IlluminanceMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -24834,9 +24834,9 @@ class ReadIlluminanceMeasurementMinMeasuredValue : public ModelCommand ~ReadIlluminanceMeasurementMinMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000400) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0400) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IlluminanceMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -24864,9 +24864,9 @@ class ReportIlluminanceMeasurementMinMeasuredValue : public ModelCommand ~ReportIlluminanceMeasurementMinMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000400) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0400) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IlluminanceMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -24906,9 +24906,9 @@ class ReadIlluminanceMeasurementMaxMeasuredValue : public ModelCommand ~ReadIlluminanceMeasurementMaxMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000400) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0400) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IlluminanceMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -24936,9 +24936,9 @@ class ReportIlluminanceMeasurementMaxMeasuredValue : public ModelCommand ~ReportIlluminanceMeasurementMaxMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000400) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0400) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IlluminanceMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -24978,9 +24978,9 @@ class ReadIlluminanceMeasurementTolerance : public ModelCommand ~ReadIlluminanceMeasurementTolerance() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000400) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0400) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IlluminanceMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -25008,9 +25008,9 @@ class ReportIlluminanceMeasurementTolerance : public ModelCommand ~ReportIlluminanceMeasurementTolerance() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000400) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0400) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IlluminanceMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -25047,9 +25047,9 @@ class ReadIlluminanceMeasurementLightSensorType : public ModelCommand ~ReadIlluminanceMeasurementLightSensorType() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000400) ReadAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0400) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IlluminanceMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -25077,9 +25077,9 @@ class ReportIlluminanceMeasurementLightSensorType : public ModelCommand ~ReportIlluminanceMeasurementLightSensorType() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000400) ReportAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0400) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IlluminanceMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -25119,9 +25119,9 @@ class ReadIlluminanceMeasurementAttributeList : public ModelCommand ~ReadIlluminanceMeasurementAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000400) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0400) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IlluminanceMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -25149,9 +25149,9 @@ class ReportIlluminanceMeasurementAttributeList : public ModelCommand ~ReportIlluminanceMeasurementAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000400) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0400) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IlluminanceMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -25191,9 +25191,9 @@ class ReadIlluminanceMeasurementClusterRevision : public ModelCommand ~ReadIlluminanceMeasurementClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000400) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0400) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IlluminanceMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -25221,9 +25221,9 @@ class ReportIlluminanceMeasurementClusterRevision : public ModelCommand ~ReportIlluminanceMeasurementClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000400) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0400) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::IlluminanceMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -25275,9 +25275,9 @@ class KeypadInputSendKeyRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000509) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000509) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnKeypadInputSendKeyResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -25301,9 +25301,9 @@ class ReadKeypadInputAttributeList : public ModelCommand ~ReadKeypadInputAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000509) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0509) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::KeypadInputCluster cluster; cluster.Associate(device, endpointId); @@ -25331,9 +25331,9 @@ class ReportKeypadInputAttributeList : public ModelCommand ~ReportKeypadInputAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000509) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0509) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::KeypadInputCluster cluster; cluster.Associate(device, endpointId); @@ -25373,9 +25373,9 @@ class ReadKeypadInputClusterRevision : public ModelCommand ~ReadKeypadInputClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000509) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0509) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::KeypadInputCluster cluster; cluster.Associate(device, endpointId); @@ -25403,9 +25403,9 @@ class ReportKeypadInputClusterRevision : public ModelCommand ~ReportKeypadInputClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000509) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0509) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::KeypadInputCluster cluster; cluster.Associate(device, endpointId); @@ -25479,9 +25479,9 @@ class LevelControlMove : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000008) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -25506,9 +25506,9 @@ class LevelControlMoveToLevel : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000008) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -25531,9 +25531,9 @@ class LevelControlMoveToLevelWithOnOff : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) command (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000008) command (0x00000004) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -25557,9 +25557,9 @@ class LevelControlMoveWithOnOff : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) command (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000008) command (0x00000005) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -25586,9 +25586,9 @@ class LevelControlStep : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000008) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -25613,9 +25613,9 @@ class LevelControlStepWithOnOff : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) command (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000008) command (0x00000006) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -25638,9 +25638,9 @@ class LevelControlStop : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) command (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000008) command (0x00000003) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -25658,9 +25658,9 @@ class LevelControlStopWithOnOff : public ModelCommand public: LevelControlStopWithOnOff() : ModelCommand("stop-with-on-off") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) command (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000008) command (0x00000007) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -25684,9 +25684,9 @@ class ReadLevelControlCurrentLevel : public ModelCommand ~ReadLevelControlCurrentLevel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -25714,9 +25714,9 @@ class ReportLevelControlCurrentLevel : public ModelCommand ~ReportLevelControlCurrentLevel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -25753,9 +25753,9 @@ class ReadLevelControlRemainingTime : public ModelCommand ~ReadLevelControlRemainingTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -25783,9 +25783,9 @@ class ReportLevelControlRemainingTime : public ModelCommand ~ReportLevelControlRemainingTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -25822,9 +25822,9 @@ class ReadLevelControlMinLevel : public ModelCommand ~ReadLevelControlMinLevel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -25852,9 +25852,9 @@ class ReportLevelControlMinLevel : public ModelCommand ~ReportLevelControlMinLevel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -25891,9 +25891,9 @@ class ReadLevelControlMaxLevel : public ModelCommand ~ReadLevelControlMaxLevel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -25921,9 +25921,9 @@ class ReportLevelControlMaxLevel : public ModelCommand ~ReportLevelControlMaxLevel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -25960,9 +25960,9 @@ class ReadLevelControlCurrentFrequency : public ModelCommand ~ReadLevelControlCurrentFrequency() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReadAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -25990,9 +25990,9 @@ class ReportLevelControlCurrentFrequency : public ModelCommand ~ReportLevelControlCurrentFrequency() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReportAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26029,9 +26029,9 @@ class ReadLevelControlMinFrequency : public ModelCommand ~ReadLevelControlMinFrequency() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReadAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26059,9 +26059,9 @@ class ReportLevelControlMinFrequency : public ModelCommand ~ReportLevelControlMinFrequency() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReportAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26098,9 +26098,9 @@ class ReadLevelControlMaxFrequency : public ModelCommand ~ReadLevelControlMaxFrequency() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReadAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26128,9 +26128,9 @@ class ReportLevelControlMaxFrequency : public ModelCommand ~ReportLevelControlMaxFrequency() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReportAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26167,9 +26167,9 @@ class ReadLevelControlOptions : public ModelCommand ~ReadLevelControlOptions() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReadAttribute (0x0000000F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26195,9 +26195,9 @@ class WriteLevelControlOptions : public ModelCommand ~WriteLevelControlOptions() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) WriteAttribute (0x0000000F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26223,9 +26223,9 @@ class ReportLevelControlOptions : public ModelCommand ~ReportLevelControlOptions() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReportAttribute (0x0000000F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26262,9 +26262,9 @@ class ReadLevelControlOnOffTransitionTime : public ModelCommand ~ReadLevelControlOnOffTransitionTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReadAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26290,9 +26290,9 @@ class WriteLevelControlOnOffTransitionTime : public ModelCommand ~WriteLevelControlOnOffTransitionTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) WriteAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26318,9 +26318,9 @@ class ReportLevelControlOnOffTransitionTime : public ModelCommand ~ReportLevelControlOnOffTransitionTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReportAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26357,9 +26357,9 @@ class ReadLevelControlOnLevel : public ModelCommand ~ReadLevelControlOnLevel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReadAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26385,9 +26385,9 @@ class WriteLevelControlOnLevel : public ModelCommand ~WriteLevelControlOnLevel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) WriteAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26413,9 +26413,9 @@ class ReportLevelControlOnLevel : public ModelCommand ~ReportLevelControlOnLevel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReportAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26455,9 +26455,9 @@ class ReadLevelControlOnTransitionTime : public ModelCommand ~ReadLevelControlOnTransitionTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReadAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26483,9 +26483,9 @@ class WriteLevelControlOnTransitionTime : public ModelCommand ~WriteLevelControlOnTransitionTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) WriteAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26511,9 +26511,9 @@ class ReportLevelControlOnTransitionTime : public ModelCommand ~ReportLevelControlOnTransitionTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReportAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26553,9 +26553,9 @@ class ReadLevelControlOffTransitionTime : public ModelCommand ~ReadLevelControlOffTransitionTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReadAttribute (0x00000013) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26581,9 +26581,9 @@ class WriteLevelControlOffTransitionTime : public ModelCommand ~WriteLevelControlOffTransitionTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) WriteAttribute (0x00000013) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26609,9 +26609,9 @@ class ReportLevelControlOffTransitionTime : public ModelCommand ~ReportLevelControlOffTransitionTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReportAttribute (0x00000013) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26651,9 +26651,9 @@ class ReadLevelControlDefaultMoveRate : public ModelCommand ~ReadLevelControlDefaultMoveRate() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReadAttribute (0x00000014) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26679,9 +26679,9 @@ class WriteLevelControlDefaultMoveRate : public ModelCommand ~WriteLevelControlDefaultMoveRate() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) WriteAttribute (0x00000014) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26707,9 +26707,9 @@ class ReportLevelControlDefaultMoveRate : public ModelCommand ~ReportLevelControlDefaultMoveRate() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReportAttribute (0x00000014) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26749,9 +26749,9 @@ class ReadLevelControlStartUpCurrentLevel : public ModelCommand ~ReadLevelControlStartUpCurrentLevel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReadAttribute (0x00004000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26777,9 +26777,9 @@ class WriteLevelControlStartUpCurrentLevel : public ModelCommand ~WriteLevelControlStartUpCurrentLevel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) WriteAttribute (0x00004000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26805,9 +26805,9 @@ class ReportLevelControlStartUpCurrentLevel : public ModelCommand ~ReportLevelControlStartUpCurrentLevel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReportAttribute (0x00004000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26847,9 +26847,9 @@ class ReadLevelControlAttributeList : public ModelCommand ~ReadLevelControlAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26877,9 +26877,9 @@ class ReportLevelControlAttributeList : public ModelCommand ~ReportLevelControlAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26919,9 +26919,9 @@ class ReadLevelControlFeatureMap : public ModelCommand ~ReadLevelControlFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReadAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26949,9 +26949,9 @@ class ReportLevelControlFeatureMap : public ModelCommand ~ReportLevelControlFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReportAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -26988,9 +26988,9 @@ class ReadLevelControlClusterRevision : public ModelCommand ~ReadLevelControlClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -27018,9 +27018,9 @@ class ReportLevelControlClusterRevision : public ModelCommand ~ReportLevelControlClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000008) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0008) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LevelControlCluster cluster; cluster.Associate(device, endpointId); @@ -27070,9 +27070,9 @@ class ReadLocalizationConfigurationActiveLocale : public ModelCommand ~ReadLocalizationConfigurationActiveLocale() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002B) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002B) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LocalizationConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -27098,9 +27098,9 @@ class WriteLocalizationConfigurationActiveLocale : public ModelCommand ~WriteLocalizationConfigurationActiveLocale() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002B) WriteAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002B) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LocalizationConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -27126,9 +27126,9 @@ class ReportLocalizationConfigurationActiveLocale : public ModelCommand ~ReportLocalizationConfigurationActiveLocale() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002B) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002B) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LocalizationConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -27168,9 +27168,9 @@ class ReadLocalizationConfigurationSupportedLocales : public ModelCommand ~ReadLocalizationConfigurationSupportedLocales() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002B) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002B) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LocalizationConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -27198,9 +27198,9 @@ class ReportLocalizationConfigurationSupportedLocales : public ModelCommand ~ReportLocalizationConfigurationSupportedLocales() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002B) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002B) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LocalizationConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -27319,9 +27319,9 @@ class LowPowerSleep : public ModelCommand public: LowPowerSleep() : ModelCommand("sleep") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000508) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000508) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -27345,9 +27345,9 @@ class ReadLowPowerAttributeList : public ModelCommand ~ReadLowPowerAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000508) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0508) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LowPowerCluster cluster; cluster.Associate(device, endpointId); @@ -27375,9 +27375,9 @@ class ReportLowPowerAttributeList : public ModelCommand ~ReportLowPowerAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000508) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0508) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LowPowerCluster cluster; cluster.Associate(device, endpointId); @@ -27417,9 +27417,9 @@ class ReadLowPowerClusterRevision : public ModelCommand ~ReadLowPowerClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000508) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0508) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LowPowerCluster cluster; cluster.Associate(device, endpointId); @@ -27447,9 +27447,9 @@ class ReportLowPowerClusterRevision : public ModelCommand ~ReportLowPowerClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000508) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0508) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::LowPowerCluster cluster; cluster.Associate(device, endpointId); @@ -27498,9 +27498,9 @@ class MediaInputHideInputStatusRequest : public ModelCommand public: MediaInputHideInputStatusRequest() : ModelCommand("hide-input-status-request") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000507) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000507) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -27523,9 +27523,9 @@ class MediaInputRenameInputRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000507) command (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000507) command (0x00000003) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -27547,9 +27547,9 @@ class MediaInputSelectInputRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000507) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000507) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -27567,9 +27567,9 @@ class MediaInputShowInputStatusRequest : public ModelCommand public: MediaInputShowInputStatusRequest() : ModelCommand("show-input-status-request") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000507) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000507) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -27593,9 +27593,9 @@ class ReadMediaInputMediaInputList : public ModelCommand ~ReadMediaInputMediaInputList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000507) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0507) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaInputCluster cluster; cluster.Associate(device, endpointId); @@ -27625,9 +27625,9 @@ class ReportMediaInputMediaInputList : public ModelCommand ~ReportMediaInputMediaInputList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000507) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0507) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaInputCluster cluster; cluster.Associate(device, endpointId); @@ -27669,9 +27669,9 @@ class ReadMediaInputCurrentMediaInput : public ModelCommand ~ReadMediaInputCurrentMediaInput() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000507) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0507) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaInputCluster cluster; cluster.Associate(device, endpointId); @@ -27699,9 +27699,9 @@ class ReportMediaInputCurrentMediaInput : public ModelCommand ~ReportMediaInputCurrentMediaInput() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000507) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0507) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaInputCluster cluster; cluster.Associate(device, endpointId); @@ -27738,9 +27738,9 @@ class ReadMediaInputAttributeList : public ModelCommand ~ReadMediaInputAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000507) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0507) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaInputCluster cluster; cluster.Associate(device, endpointId); @@ -27768,9 +27768,9 @@ class ReportMediaInputAttributeList : public ModelCommand ~ReportMediaInputAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000507) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0507) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaInputCluster cluster; cluster.Associate(device, endpointId); @@ -27810,9 +27810,9 @@ class ReadMediaInputClusterRevision : public ModelCommand ~ReadMediaInputClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000507) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0507) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaInputCluster cluster; cluster.Associate(device, endpointId); @@ -27840,9 +27840,9 @@ class ReportMediaInputClusterRevision : public ModelCommand ~ReportMediaInputClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000507) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0507) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaInputCluster cluster; cluster.Associate(device, endpointId); @@ -27902,9 +27902,9 @@ class MediaPlaybackFastForwardRequest : public ModelCommand public: MediaPlaybackFastForwardRequest() : ModelCommand("fast-forward-request") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000007) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnMediaPlaybackPlaybackResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -27922,9 +27922,9 @@ class MediaPlaybackNextRequest : public ModelCommand public: MediaPlaybackNextRequest() : ModelCommand("next-request") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000005) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnMediaPlaybackPlaybackResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -27942,9 +27942,9 @@ class MediaPlaybackPauseRequest : public ModelCommand public: MediaPlaybackPauseRequest() : ModelCommand("pause-request") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnMediaPlaybackPlaybackResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -27962,9 +27962,9 @@ class MediaPlaybackPlayRequest : public ModelCommand public: MediaPlaybackPlayRequest() : ModelCommand("play-request") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnMediaPlaybackPlaybackResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -27982,9 +27982,9 @@ class MediaPlaybackPreviousRequest : public ModelCommand public: MediaPlaybackPreviousRequest() : ModelCommand("previous-request") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000004) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnMediaPlaybackPlaybackResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -28002,9 +28002,9 @@ class MediaPlaybackRewindRequest : public ModelCommand public: MediaPlaybackRewindRequest() : ModelCommand("rewind-request") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000006) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnMediaPlaybackPlaybackResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -28026,9 +28026,9 @@ class MediaPlaybackSeekRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x0000000B) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnMediaPlaybackPlaybackResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -28050,9 +28050,9 @@ class MediaPlaybackSkipBackwardRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000009) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnMediaPlaybackPlaybackResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -28074,9 +28074,9 @@ class MediaPlaybackSkipForwardRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000008) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnMediaPlaybackPlaybackResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -28094,9 +28094,9 @@ class MediaPlaybackStartOverRequest : public ModelCommand public: MediaPlaybackStartOverRequest() : ModelCommand("start-over-request") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000003) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnMediaPlaybackPlaybackResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -28114,9 +28114,9 @@ class MediaPlaybackStopRequest : public ModelCommand public: MediaPlaybackStopRequest() : ModelCommand("stop-request") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000506) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnMediaPlaybackPlaybackResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -28140,9 +28140,9 @@ class ReadMediaPlaybackPlaybackState : public ModelCommand ~ReadMediaPlaybackPlaybackState() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0506) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaPlaybackCluster cluster; cluster.Associate(device, endpointId); @@ -28170,9 +28170,9 @@ class ReportMediaPlaybackPlaybackState : public ModelCommand ~ReportMediaPlaybackPlaybackState() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0506) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaPlaybackCluster cluster; cluster.Associate(device, endpointId); @@ -28212,9 +28212,9 @@ class ReadMediaPlaybackStartTime : public ModelCommand ~ReadMediaPlaybackStartTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0506) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaPlaybackCluster cluster; cluster.Associate(device, endpointId); @@ -28242,9 +28242,9 @@ class ReportMediaPlaybackStartTime : public ModelCommand ~ReportMediaPlaybackStartTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0506) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaPlaybackCluster cluster; cluster.Associate(device, endpointId); @@ -28281,9 +28281,9 @@ class ReadMediaPlaybackDuration : public ModelCommand ~ReadMediaPlaybackDuration() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0506) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaPlaybackCluster cluster; cluster.Associate(device, endpointId); @@ -28311,9 +28311,9 @@ class ReportMediaPlaybackDuration : public ModelCommand ~ReportMediaPlaybackDuration() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0506) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaPlaybackCluster cluster; cluster.Associate(device, endpointId); @@ -28350,9 +28350,9 @@ class ReadMediaPlaybackPlaybackSpeed : public ModelCommand ~ReadMediaPlaybackPlaybackSpeed() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) ReadAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0506) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaPlaybackCluster cluster; cluster.Associate(device, endpointId); @@ -28380,9 +28380,9 @@ class ReportMediaPlaybackPlaybackSpeed : public ModelCommand ~ReportMediaPlaybackPlaybackSpeed() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) ReportAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0506) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaPlaybackCluster cluster; cluster.Associate(device, endpointId); @@ -28419,9 +28419,9 @@ class ReadMediaPlaybackSeekRangeEnd : public ModelCommand ~ReadMediaPlaybackSeekRangeEnd() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) ReadAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0506) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaPlaybackCluster cluster; cluster.Associate(device, endpointId); @@ -28449,9 +28449,9 @@ class ReportMediaPlaybackSeekRangeEnd : public ModelCommand ~ReportMediaPlaybackSeekRangeEnd() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) ReportAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0506) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaPlaybackCluster cluster; cluster.Associate(device, endpointId); @@ -28488,9 +28488,9 @@ class ReadMediaPlaybackSeekRangeStart : public ModelCommand ~ReadMediaPlaybackSeekRangeStart() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) ReadAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0506) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaPlaybackCluster cluster; cluster.Associate(device, endpointId); @@ -28518,9 +28518,9 @@ class ReportMediaPlaybackSeekRangeStart : public ModelCommand ~ReportMediaPlaybackSeekRangeStart() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) ReportAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0506) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaPlaybackCluster cluster; cluster.Associate(device, endpointId); @@ -28557,9 +28557,9 @@ class ReadMediaPlaybackAttributeList : public ModelCommand ~ReadMediaPlaybackAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0506) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaPlaybackCluster cluster; cluster.Associate(device, endpointId); @@ -28587,9 +28587,9 @@ class ReportMediaPlaybackAttributeList : public ModelCommand ~ReportMediaPlaybackAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0506) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaPlaybackCluster cluster; cluster.Associate(device, endpointId); @@ -28629,9 +28629,9 @@ class ReadMediaPlaybackClusterRevision : public ModelCommand ~ReadMediaPlaybackClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0506) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaPlaybackCluster cluster; cluster.Associate(device, endpointId); @@ -28659,9 +28659,9 @@ class ReportMediaPlaybackClusterRevision : public ModelCommand ~ReportMediaPlaybackClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000506) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0506) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::MediaPlaybackCluster cluster; cluster.Associate(device, endpointId); @@ -28714,9 +28714,9 @@ class ModeSelectChangeToMode : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000050) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000050) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -28740,9 +28740,9 @@ class ReadModeSelectCurrentMode : public ModelCommand ~ReadModeSelectCurrentMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000050) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0050) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ModeSelectCluster cluster; cluster.Associate(device, endpointId); @@ -28770,9 +28770,9 @@ class ReportModeSelectCurrentMode : public ModelCommand ~ReportModeSelectCurrentMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000050) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0050) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ModeSelectCluster cluster; cluster.Associate(device, endpointId); @@ -28809,9 +28809,9 @@ class ReadModeSelectSupportedModes : public ModelCommand ~ReadModeSelectSupportedModes() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000050) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0050) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ModeSelectCluster cluster; cluster.Associate(device, endpointId); @@ -28842,9 +28842,9 @@ class ReportModeSelectSupportedModes : public ModelCommand ~ReportModeSelectSupportedModes() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000050) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0050) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ModeSelectCluster cluster; cluster.Associate(device, endpointId); @@ -28887,9 +28887,9 @@ class ReadModeSelectOnMode : public ModelCommand ~ReadModeSelectOnMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000050) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0050) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ModeSelectCluster cluster; cluster.Associate(device, endpointId); @@ -28915,9 +28915,9 @@ class WriteModeSelectOnMode : public ModelCommand ~WriteModeSelectOnMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000050) WriteAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0050) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ModeSelectCluster cluster; cluster.Associate(device, endpointId); @@ -28943,9 +28943,9 @@ class ReportModeSelectOnMode : public ModelCommand ~ReportModeSelectOnMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000050) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0050) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ModeSelectCluster cluster; cluster.Associate(device, endpointId); @@ -28982,9 +28982,9 @@ class ReadModeSelectStartUpMode : public ModelCommand ~ReadModeSelectStartUpMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000050) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0050) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ModeSelectCluster cluster; cluster.Associate(device, endpointId); @@ -29012,9 +29012,9 @@ class ReportModeSelectStartUpMode : public ModelCommand ~ReportModeSelectStartUpMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000050) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0050) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ModeSelectCluster cluster; cluster.Associate(device, endpointId); @@ -29051,9 +29051,9 @@ class ReadModeSelectDescription : public ModelCommand ~ReadModeSelectDescription() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000050) ReadAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0050) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ModeSelectCluster cluster; cluster.Associate(device, endpointId); @@ -29081,9 +29081,9 @@ class ReportModeSelectDescription : public ModelCommand ~ReportModeSelectDescription() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000050) ReportAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0050) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ModeSelectCluster cluster; cluster.Associate(device, endpointId); @@ -29120,9 +29120,9 @@ class ReadModeSelectAttributeList : public ModelCommand ~ReadModeSelectAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000050) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0050) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ModeSelectCluster cluster; cluster.Associate(device, endpointId); @@ -29150,9 +29150,9 @@ class ReportModeSelectAttributeList : public ModelCommand ~ReportModeSelectAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000050) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0050) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ModeSelectCluster cluster; cluster.Associate(device, endpointId); @@ -29192,9 +29192,9 @@ class ReadModeSelectClusterRevision : public ModelCommand ~ReadModeSelectClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000050) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0050) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ModeSelectCluster cluster; cluster.Associate(device, endpointId); @@ -29222,9 +29222,9 @@ class ReportModeSelectClusterRevision : public ModelCommand ~ReportModeSelectClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000050) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0050) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ModeSelectCluster cluster; cluster.Associate(device, endpointId); @@ -29286,9 +29286,9 @@ class NetworkCommissioningAddOrUpdateThreadNetwork : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) command (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000031) command (0x00000003) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnNetworkCommissioningNetworkConfigResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -29312,9 +29312,9 @@ class NetworkCommissioningAddOrUpdateWiFiNetwork : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000031) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnNetworkCommissioningNetworkConfigResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -29337,9 +29337,9 @@ class NetworkCommissioningConnectNetwork : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) command (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000031) command (0x00000006) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnNetworkCommissioningConnectNetworkResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -29362,9 +29362,9 @@ class NetworkCommissioningRemoveNetwork : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) command (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000031) command (0x00000004) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnNetworkCommissioningNetworkConfigResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -29388,9 +29388,9 @@ class NetworkCommissioningReorderNetwork : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) command (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000031) command (0x00000008) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnNetworkCommissioningNetworkConfigResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -29413,9 +29413,9 @@ class NetworkCommissioningScanNetworks : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000031) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnNetworkCommissioningScanNetworksResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -29439,9 +29439,9 @@ class ReadNetworkCommissioningMaxNetworks : public ModelCommand ~ReadNetworkCommissioningMaxNetworks() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -29469,9 +29469,9 @@ class ReportNetworkCommissioningMaxNetworks : public ModelCommand ~ReportNetworkCommissioningMaxNetworks() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -29508,9 +29508,9 @@ class ReadNetworkCommissioningNetworks : public ModelCommand ~ReadNetworkCommissioningNetworks() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -29541,9 +29541,9 @@ class ReportNetworkCommissioningNetworks : public ModelCommand ~ReportNetworkCommissioningNetworks() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -29586,9 +29586,9 @@ class ReadNetworkCommissioningScanMaxTimeSeconds : public ModelCommand ~ReadNetworkCommissioningScanMaxTimeSeconds() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -29616,9 +29616,9 @@ class ReportNetworkCommissioningScanMaxTimeSeconds : public ModelCommand ~ReportNetworkCommissioningScanMaxTimeSeconds() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -29658,9 +29658,9 @@ class ReadNetworkCommissioningConnectMaxTimeSeconds : public ModelCommand ~ReadNetworkCommissioningConnectMaxTimeSeconds() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -29688,9 +29688,9 @@ class ReportNetworkCommissioningConnectMaxTimeSeconds : public ModelCommand ~ReportNetworkCommissioningConnectMaxTimeSeconds() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -29730,9 +29730,9 @@ class ReadNetworkCommissioningInterfaceEnabled : public ModelCommand ~ReadNetworkCommissioningInterfaceEnabled() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReadAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -29758,9 +29758,9 @@ class WriteNetworkCommissioningInterfaceEnabled : public ModelCommand ~WriteNetworkCommissioningInterfaceEnabled() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) WriteAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -29786,9 +29786,9 @@ class ReportNetworkCommissioningInterfaceEnabled : public ModelCommand ~ReportNetworkCommissioningInterfaceEnabled() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReportAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -29825,9 +29825,9 @@ class ReadNetworkCommissioningLastNetworkingStatus : public ModelCommand ~ReadNetworkCommissioningLastNetworkingStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReadAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -29855,9 +29855,9 @@ class ReportNetworkCommissioningLastNetworkingStatus : public ModelCommand ~ReportNetworkCommissioningLastNetworkingStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReportAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -29897,9 +29897,9 @@ class ReadNetworkCommissioningLastNetworkID : public ModelCommand ~ReadNetworkCommissioningLastNetworkID() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReadAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -29927,9 +29927,9 @@ class ReportNetworkCommissioningLastNetworkID : public ModelCommand ~ReportNetworkCommissioningLastNetworkID() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReportAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -29969,9 +29969,9 @@ class ReadNetworkCommissioningLastConnectErrorValue : public ModelCommand ~ReadNetworkCommissioningLastConnectErrorValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReadAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -29999,9 +29999,9 @@ class ReportNetworkCommissioningLastConnectErrorValue : public ModelCommand ~ReportNetworkCommissioningLastConnectErrorValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReportAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -30041,9 +30041,9 @@ class ReadNetworkCommissioningFeatureMap : public ModelCommand ~ReadNetworkCommissioningFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReadAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -30071,9 +30071,9 @@ class ReportNetworkCommissioningFeatureMap : public ModelCommand ~ReportNetworkCommissioningFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReportAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -30110,9 +30110,9 @@ class ReadNetworkCommissioningClusterRevision : public ModelCommand ~ReadNetworkCommissioningClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -30140,9 +30140,9 @@ class ReportNetworkCommissioningClusterRevision : public ModelCommand ~ReportNetworkCommissioningClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000031) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0031) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::NetworkCommissioningCluster cluster; cluster.Associate(device, endpointId); @@ -30193,9 +30193,9 @@ class OtaSoftwareUpdateProviderApplyUpdateRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000029) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000029) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnOtaSoftwareUpdateProviderApplyUpdateResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -30218,9 +30218,9 @@ class OtaSoftwareUpdateProviderNotifyUpdateApplied : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000029) command (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000029) command (0x00000004) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -30249,9 +30249,9 @@ class OtaSoftwareUpdateProviderQueryImage : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000029) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000029) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnOtaSoftwareUpdateProviderQueryImageResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -30275,9 +30275,9 @@ class ReadOtaSoftwareUpdateProviderAttributeList : public ModelCommand ~ReadOtaSoftwareUpdateProviderAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000029) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0029) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateProviderCluster cluster; cluster.Associate(device, endpointId); @@ -30305,9 +30305,9 @@ class ReportOtaSoftwareUpdateProviderAttributeList : public ModelCommand ~ReportOtaSoftwareUpdateProviderAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000029) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0029) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateProviderCluster cluster; cluster.Associate(device, endpointId); @@ -30347,9 +30347,9 @@ class ReadOtaSoftwareUpdateProviderClusterRevision : public ModelCommand ~ReadOtaSoftwareUpdateProviderClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000029) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0029) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateProviderCluster cluster; cluster.Associate(device, endpointId); @@ -30377,9 +30377,9 @@ class ReportOtaSoftwareUpdateProviderClusterRevision : public ModelCommand ~ReportOtaSoftwareUpdateProviderClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000029) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0029) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateProviderCluster cluster; cluster.Associate(device, endpointId); @@ -30443,9 +30443,9 @@ class OtaSoftwareUpdateRequestorAnnounceOtaProvider : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000002A) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -30469,9 +30469,9 @@ class ReadOtaSoftwareUpdateRequestorStateTransition : public ModelCommand ~ReadOtaSoftwareUpdateRequestorStateTransition() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) ReadEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002A) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateRequestorCluster cluster; cluster.Associate(device, endpointId); @@ -30500,9 +30500,9 @@ class ReportOtaSoftwareUpdateRequestorStateTransition : public ModelCommand ~ReportOtaSoftwareUpdateRequestorStateTransition() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) ReportEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002A) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateRequestorCluster cluster; cluster.Associate(device, endpointId); @@ -30542,9 +30542,9 @@ class ReadOtaSoftwareUpdateRequestorVersionApplied : public ModelCommand ~ReadOtaSoftwareUpdateRequestorVersionApplied() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) ReadEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002A) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateRequestorCluster cluster; cluster.Associate(device, endpointId); @@ -30573,9 +30573,9 @@ class ReportOtaSoftwareUpdateRequestorVersionApplied : public ModelCommand ~ReportOtaSoftwareUpdateRequestorVersionApplied() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) ReportEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002A) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateRequestorCluster cluster; cluster.Associate(device, endpointId); @@ -30615,9 +30615,9 @@ class ReadOtaSoftwareUpdateRequestorDownloadError : public ModelCommand ~ReadOtaSoftwareUpdateRequestorDownloadError() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) ReadEvent (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002A) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateRequestorCluster cluster; cluster.Associate(device, endpointId); @@ -30646,9 +30646,9 @@ class ReportOtaSoftwareUpdateRequestorDownloadError : public ModelCommand ~ReportOtaSoftwareUpdateRequestorDownloadError() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) ReportEvent (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002A) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateRequestorCluster cluster; cluster.Associate(device, endpointId); @@ -30689,9 +30689,9 @@ class ReadOtaSoftwareUpdateRequestorDefaultOtaProviders : public ModelCommand ~ReadOtaSoftwareUpdateRequestorDefaultOtaProviders() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002A) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateRequestorCluster cluster; cluster.Associate(device, endpointId); @@ -30722,9 +30722,9 @@ class ReportOtaSoftwareUpdateRequestorDefaultOtaProviders : public ModelCommand ~ReportOtaSoftwareUpdateRequestorDefaultOtaProviders() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002A) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateRequestorCluster cluster; cluster.Associate(device, endpointId); @@ -30768,9 +30768,9 @@ class ReadOtaSoftwareUpdateRequestorUpdatePossible : public ModelCommand ~ReadOtaSoftwareUpdateRequestorUpdatePossible() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002A) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateRequestorCluster cluster; cluster.Associate(device, endpointId); @@ -30798,9 +30798,9 @@ class ReportOtaSoftwareUpdateRequestorUpdatePossible : public ModelCommand ~ReportOtaSoftwareUpdateRequestorUpdatePossible() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002A) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateRequestorCluster cluster; cluster.Associate(device, endpointId); @@ -30840,9 +30840,9 @@ class ReadOtaSoftwareUpdateRequestorUpdateState : public ModelCommand ~ReadOtaSoftwareUpdateRequestorUpdateState() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002A) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateRequestorCluster cluster; cluster.Associate(device, endpointId); @@ -30870,9 +30870,9 @@ class ReportOtaSoftwareUpdateRequestorUpdateState : public ModelCommand ~ReportOtaSoftwareUpdateRequestorUpdateState() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002A) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateRequestorCluster cluster; cluster.Associate(device, endpointId); @@ -30912,9 +30912,9 @@ class ReadOtaSoftwareUpdateRequestorUpdateStateProgress : public ModelCommand ~ReadOtaSoftwareUpdateRequestorUpdateStateProgress() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002A) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateRequestorCluster cluster; cluster.Associate(device, endpointId); @@ -30942,9 +30942,9 @@ class ReportOtaSoftwareUpdateRequestorUpdateStateProgress : public ModelCommand ~ReportOtaSoftwareUpdateRequestorUpdateStateProgress() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002A) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateRequestorCluster cluster; cluster.Associate(device, endpointId); @@ -30985,9 +30985,9 @@ class ReadOtaSoftwareUpdateRequestorAttributeList : public ModelCommand ~ReadOtaSoftwareUpdateRequestorAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002A) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateRequestorCluster cluster; cluster.Associate(device, endpointId); @@ -31015,9 +31015,9 @@ class ReportOtaSoftwareUpdateRequestorAttributeList : public ModelCommand ~ReportOtaSoftwareUpdateRequestorAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002A) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateRequestorCluster cluster; cluster.Associate(device, endpointId); @@ -31057,9 +31057,9 @@ class ReadOtaSoftwareUpdateRequestorClusterRevision : public ModelCommand ~ReadOtaSoftwareUpdateRequestorClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002A) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateRequestorCluster cluster; cluster.Associate(device, endpointId); @@ -31087,9 +31087,9 @@ class ReportOtaSoftwareUpdateRequestorClusterRevision : public ModelCommand ~ReportOtaSoftwareUpdateRequestorClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002A) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002A) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OtaSoftwareUpdateRequestorCluster cluster; cluster.Associate(device, endpointId); @@ -31144,9 +31144,9 @@ class ReadOccupancySensingOccupancy : public ModelCommand ~ReadOccupancySensingOccupancy() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000406) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0406) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OccupancySensingCluster cluster; cluster.Associate(device, endpointId); @@ -31174,9 +31174,9 @@ class ReportOccupancySensingOccupancy : public ModelCommand ~ReportOccupancySensingOccupancy() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000406) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0406) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OccupancySensingCluster cluster; cluster.Associate(device, endpointId); @@ -31213,9 +31213,9 @@ class ReadOccupancySensingOccupancySensorType : public ModelCommand ~ReadOccupancySensingOccupancySensorType() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000406) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0406) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OccupancySensingCluster cluster; cluster.Associate(device, endpointId); @@ -31243,9 +31243,9 @@ class ReportOccupancySensingOccupancySensorType : public ModelCommand ~ReportOccupancySensingOccupancySensorType() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000406) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0406) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OccupancySensingCluster cluster; cluster.Associate(device, endpointId); @@ -31282,9 +31282,9 @@ class ReadOccupancySensingOccupancySensorTypeBitmap : public ModelCommand ~ReadOccupancySensingOccupancySensorTypeBitmap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000406) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0406) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OccupancySensingCluster cluster; cluster.Associate(device, endpointId); @@ -31312,9 +31312,9 @@ class ReportOccupancySensingOccupancySensorTypeBitmap : public ModelCommand ~ReportOccupancySensingOccupancySensorTypeBitmap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000406) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0406) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OccupancySensingCluster cluster; cluster.Associate(device, endpointId); @@ -31354,9 +31354,9 @@ class ReadOccupancySensingAttributeList : public ModelCommand ~ReadOccupancySensingAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000406) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0406) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OccupancySensingCluster cluster; cluster.Associate(device, endpointId); @@ -31384,9 +31384,9 @@ class ReportOccupancySensingAttributeList : public ModelCommand ~ReportOccupancySensingAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000406) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0406) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OccupancySensingCluster cluster; cluster.Associate(device, endpointId); @@ -31426,9 +31426,9 @@ class ReadOccupancySensingClusterRevision : public ModelCommand ~ReadOccupancySensingClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000406) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0406) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OccupancySensingCluster cluster; cluster.Associate(device, endpointId); @@ -31456,9 +31456,9 @@ class ReportOccupancySensingClusterRevision : public ModelCommand ~ReportOccupancySensingClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000406) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0406) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OccupancySensingCluster cluster; cluster.Associate(device, endpointId); @@ -31513,9 +31513,9 @@ class OnOffOff : public ModelCommand public: OnOffOff() : ModelCommand("off") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000006) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -31540,9 +31540,9 @@ class OnOffOffWithEffect : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) command (0x00000040) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000006) command (0x00000040) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -31560,9 +31560,9 @@ class OnOffOn : public ModelCommand public: OnOffOn() : ModelCommand("on") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000006) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -31580,9 +31580,9 @@ class OnOffOnWithRecallGlobalScene : public ModelCommand public: OnOffOnWithRecallGlobalScene() : ModelCommand("on-with-recall-global-scene") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) command (0x00000041) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000006) command (0x00000041) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -31607,9 +31607,9 @@ class OnOffOnWithTimedOff : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) command (0x00000042) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000006) command (0x00000042) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -31627,9 +31627,9 @@ class OnOffToggle : public ModelCommand public: OnOffToggle() : ModelCommand("toggle") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000006) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -31653,9 +31653,9 @@ class ReadOnOffOnOff : public ModelCommand ~ReadOnOffOnOff() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -31683,9 +31683,9 @@ class ReportOnOffOnOff : public ModelCommand ~ReportOnOffOnOff() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -31722,9 +31722,9 @@ class ReadOnOffGlobalSceneControl : public ModelCommand ~ReadOnOffGlobalSceneControl() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) ReadAttribute (0x00004000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -31752,9 +31752,9 @@ class ReportOnOffGlobalSceneControl : public ModelCommand ~ReportOnOffGlobalSceneControl() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) ReportAttribute (0x00004000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -31791,9 +31791,9 @@ class ReadOnOffOnTime : public ModelCommand ~ReadOnOffOnTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) ReadAttribute (0x00004001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -31819,9 +31819,9 @@ class WriteOnOffOnTime : public ModelCommand ~WriteOnOffOnTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) WriteAttribute (0x00004001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -31847,9 +31847,9 @@ class ReportOnOffOnTime : public ModelCommand ~ReportOnOffOnTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) ReportAttribute (0x00004001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -31886,9 +31886,9 @@ class ReadOnOffOffWaitTime : public ModelCommand ~ReadOnOffOffWaitTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) ReadAttribute (0x00004002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -31914,9 +31914,9 @@ class WriteOnOffOffWaitTime : public ModelCommand ~WriteOnOffOffWaitTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) WriteAttribute (0x00004002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -31942,9 +31942,9 @@ class ReportOnOffOffWaitTime : public ModelCommand ~ReportOnOffOffWaitTime() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) ReportAttribute (0x00004002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -31981,9 +31981,9 @@ class ReadOnOffStartUpOnOff : public ModelCommand ~ReadOnOffStartUpOnOff() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) ReadAttribute (0x00004003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -32009,9 +32009,9 @@ class WriteOnOffStartUpOnOff : public ModelCommand ~WriteOnOffStartUpOnOff() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) WriteAttribute (0x00004003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -32037,9 +32037,9 @@ class ReportOnOffStartUpOnOff : public ModelCommand ~ReportOnOffStartUpOnOff() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) ReportAttribute (0x00004003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -32076,9 +32076,9 @@ class ReadOnOffAttributeList : public ModelCommand ~ReadOnOffAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -32106,9 +32106,9 @@ class ReportOnOffAttributeList : public ModelCommand ~ReportOnOffAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -32148,9 +32148,9 @@ class ReadOnOffFeatureMap : public ModelCommand ~ReadOnOffFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) ReadAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -32178,9 +32178,9 @@ class ReportOnOffFeatureMap : public ModelCommand ~ReportOnOffFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) ReportAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -32217,9 +32217,9 @@ class ReadOnOffClusterRevision : public ModelCommand ~ReadOnOffClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -32247,9 +32247,9 @@ class ReportOnOffClusterRevision : public ModelCommand ~ReportOnOffClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000006) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0006) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffCluster cluster; cluster.Associate(device, endpointId); @@ -32300,9 +32300,9 @@ class ReadOnOffSwitchConfigurationSwitchType : public ModelCommand ~ReadOnOffSwitchConfigurationSwitchType() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000007) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0007) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffSwitchConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -32330,9 +32330,9 @@ class ReportOnOffSwitchConfigurationSwitchType : public ModelCommand ~ReportOnOffSwitchConfigurationSwitchType() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000007) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0007) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffSwitchConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -32369,9 +32369,9 @@ class ReadOnOffSwitchConfigurationSwitchActions : public ModelCommand ~ReadOnOffSwitchConfigurationSwitchActions() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000007) ReadAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0007) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffSwitchConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -32397,9 +32397,9 @@ class WriteOnOffSwitchConfigurationSwitchActions : public ModelCommand ~WriteOnOffSwitchConfigurationSwitchActions() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000007) WriteAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0007) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffSwitchConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -32425,9 +32425,9 @@ class ReportOnOffSwitchConfigurationSwitchActions : public ModelCommand ~ReportOnOffSwitchConfigurationSwitchActions() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000007) ReportAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0007) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffSwitchConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -32467,9 +32467,9 @@ class ReadOnOffSwitchConfigurationAttributeList : public ModelCommand ~ReadOnOffSwitchConfigurationAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000007) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0007) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffSwitchConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -32497,9 +32497,9 @@ class ReportOnOffSwitchConfigurationAttributeList : public ModelCommand ~ReportOnOffSwitchConfigurationAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000007) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0007) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffSwitchConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -32539,9 +32539,9 @@ class ReadOnOffSwitchConfigurationClusterRevision : public ModelCommand ~ReadOnOffSwitchConfigurationClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000007) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0007) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffSwitchConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -32569,9 +32569,9 @@ class ReportOnOffSwitchConfigurationClusterRevision : public ModelCommand ~ReportOnOffSwitchConfigurationClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000007) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0007) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OnOffSwitchConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -32640,9 +32640,9 @@ class OperationalCredentialsAddNOC : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) command (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000003E) command (0x00000006) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnOperationalCredentialsNOCResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -32664,9 +32664,9 @@ class OperationalCredentialsAddTrustedRootCertificate : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) command (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000003E) command (0x0000000B) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -32688,9 +32688,9 @@ class OperationalCredentialsAttestationRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000003E) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnOperationalCredentialsAttestationResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -32712,9 +32712,9 @@ class OperationalCredentialsCertificateChainRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000003E) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnOperationalCredentialsCertificateChainResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -32736,9 +32736,9 @@ class OperationalCredentialsOpCSRRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) command (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000003E) command (0x00000004) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnOperationalCredentialsOpCSRResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -32760,9 +32760,9 @@ class OperationalCredentialsRemoveFabric : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) command (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000003E) command (0x0000000A) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnOperationalCredentialsNOCResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -32784,9 +32784,9 @@ class OperationalCredentialsRemoveTrustedRootCertificate : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) command (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000003E) command (0x0000000C) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -32808,9 +32808,9 @@ class OperationalCredentialsUpdateFabricLabel : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) command (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000003E) command (0x00000009) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnOperationalCredentialsNOCResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -32833,9 +32833,9 @@ class OperationalCredentialsUpdateNOC : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) command (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000003E) command (0x00000007) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnOperationalCredentialsNOCResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -32937,9 +32937,9 @@ class ReadOperationalCredentialsFabricsList : public ModelCommand ~ReadOperationalCredentialsFabricsList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003E) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OperationalCredentialsCluster cluster; cluster.Associate(device, endpointId); @@ -32970,9 +32970,9 @@ class ReportOperationalCredentialsFabricsList : public ModelCommand ~ReportOperationalCredentialsFabricsList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003E) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OperationalCredentialsCluster cluster; cluster.Associate(device, endpointId); @@ -33014,9 +33014,9 @@ class ReadOperationalCredentialsSupportedFabrics : public ModelCommand ~ReadOperationalCredentialsSupportedFabrics() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003E) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OperationalCredentialsCluster cluster; cluster.Associate(device, endpointId); @@ -33044,9 +33044,9 @@ class ReportOperationalCredentialsSupportedFabrics : public ModelCommand ~ReportOperationalCredentialsSupportedFabrics() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003E) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OperationalCredentialsCluster cluster; cluster.Associate(device, endpointId); @@ -33086,9 +33086,9 @@ class ReadOperationalCredentialsCommissionedFabrics : public ModelCommand ~ReadOperationalCredentialsCommissionedFabrics() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003E) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OperationalCredentialsCluster cluster; cluster.Associate(device, endpointId); @@ -33116,9 +33116,9 @@ class ReportOperationalCredentialsCommissionedFabrics : public ModelCommand ~ReportOperationalCredentialsCommissionedFabrics() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003E) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OperationalCredentialsCluster cluster; cluster.Associate(device, endpointId); @@ -33158,9 +33158,9 @@ class ReadOperationalCredentialsTrustedRootCertificates : public ModelCommand ~ReadOperationalCredentialsTrustedRootCertificates() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) ReadAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003E) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OperationalCredentialsCluster cluster; cluster.Associate(device, endpointId); @@ -33188,9 +33188,9 @@ class ReportOperationalCredentialsTrustedRootCertificates : public ModelCommand ~ReportOperationalCredentialsTrustedRootCertificates() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) ReportAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003E) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OperationalCredentialsCluster cluster; cluster.Associate(device, endpointId); @@ -33231,9 +33231,9 @@ class ReadOperationalCredentialsCurrentFabricIndex : public ModelCommand ~ReadOperationalCredentialsCurrentFabricIndex() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) ReadAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003E) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OperationalCredentialsCluster cluster; cluster.Associate(device, endpointId); @@ -33261,9 +33261,9 @@ class ReportOperationalCredentialsCurrentFabricIndex : public ModelCommand ~ReportOperationalCredentialsCurrentFabricIndex() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) ReportAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003E) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OperationalCredentialsCluster cluster; cluster.Associate(device, endpointId); @@ -33303,9 +33303,9 @@ class ReadOperationalCredentialsAttributeList : public ModelCommand ~ReadOperationalCredentialsAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003E) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OperationalCredentialsCluster cluster; cluster.Associate(device, endpointId); @@ -33333,9 +33333,9 @@ class ReportOperationalCredentialsAttributeList : public ModelCommand ~ReportOperationalCredentialsAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003E) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OperationalCredentialsCluster cluster; cluster.Associate(device, endpointId); @@ -33375,9 +33375,9 @@ class ReadOperationalCredentialsClusterRevision : public ModelCommand ~ReadOperationalCredentialsClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003E) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OperationalCredentialsCluster cluster; cluster.Associate(device, endpointId); @@ -33405,9 +33405,9 @@ class ReportOperationalCredentialsClusterRevision : public ModelCommand ~ReportOperationalCredentialsClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003E) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003E) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::OperationalCredentialsCluster cluster; cluster.Associate(device, endpointId); @@ -33469,9 +33469,9 @@ class ReadPowerSourceStatus : public ModelCommand ~ReadPowerSourceStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -33499,9 +33499,9 @@ class ReportPowerSourceStatus : public ModelCommand ~ReportPowerSourceStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -33538,9 +33538,9 @@ class ReadPowerSourceOrder : public ModelCommand ~ReadPowerSourceOrder() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -33568,9 +33568,9 @@ class ReportPowerSourceOrder : public ModelCommand ~ReportPowerSourceOrder() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -33607,9 +33607,9 @@ class ReadPowerSourceDescription : public ModelCommand ~ReadPowerSourceDescription() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -33637,9 +33637,9 @@ class ReportPowerSourceDescription : public ModelCommand ~ReportPowerSourceDescription() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -33676,9 +33676,9 @@ class ReadPowerSourceBatteryVoltage : public ModelCommand ~ReadPowerSourceBatteryVoltage() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReadAttribute (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -33706,9 +33706,9 @@ class ReportPowerSourceBatteryVoltage : public ModelCommand ~ReportPowerSourceBatteryVoltage() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReportAttribute (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -33745,9 +33745,9 @@ class ReadPowerSourceBatteryPercentRemaining : public ModelCommand ~ReadPowerSourceBatteryPercentRemaining() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReadAttribute (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -33775,9 +33775,9 @@ class ReportPowerSourceBatteryPercentRemaining : public ModelCommand ~ReportPowerSourceBatteryPercentRemaining() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReportAttribute (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -33814,9 +33814,9 @@ class ReadPowerSourceBatteryTimeRemaining : public ModelCommand ~ReadPowerSourceBatteryTimeRemaining() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReadAttribute (0x0000000D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -33844,9 +33844,9 @@ class ReportPowerSourceBatteryTimeRemaining : public ModelCommand ~ReportPowerSourceBatteryTimeRemaining() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReportAttribute (0x0000000D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -33883,9 +33883,9 @@ class ReadPowerSourceBatteryChargeLevel : public ModelCommand ~ReadPowerSourceBatteryChargeLevel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReadAttribute (0x0000000E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -33913,9 +33913,9 @@ class ReportPowerSourceBatteryChargeLevel : public ModelCommand ~ReportPowerSourceBatteryChargeLevel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReportAttribute (0x0000000E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -33952,9 +33952,9 @@ class ReadPowerSourceActiveBatteryFaults : public ModelCommand ~ReadPowerSourceActiveBatteryFaults() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReadAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -33982,9 +33982,9 @@ class ReportPowerSourceActiveBatteryFaults : public ModelCommand ~ReportPowerSourceActiveBatteryFaults() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReportAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -34024,9 +34024,9 @@ class ReadPowerSourceBatteryChargeState : public ModelCommand ~ReadPowerSourceBatteryChargeState() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReadAttribute (0x0000001A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -34054,9 +34054,9 @@ class ReportPowerSourceBatteryChargeState : public ModelCommand ~ReportPowerSourceBatteryChargeState() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReportAttribute (0x0000001A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -34093,9 +34093,9 @@ class ReadPowerSourceAttributeList : public ModelCommand ~ReadPowerSourceAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -34123,9 +34123,9 @@ class ReportPowerSourceAttributeList : public ModelCommand ~ReportPowerSourceAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -34165,9 +34165,9 @@ class ReadPowerSourceFeatureMap : public ModelCommand ~ReadPowerSourceFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReadAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -34195,9 +34195,9 @@ class ReportPowerSourceFeatureMap : public ModelCommand ~ReportPowerSourceFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReportAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -34234,9 +34234,9 @@ class ReadPowerSourceClusterRevision : public ModelCommand ~ReadPowerSourceClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -34264,9 +34264,9 @@ class ReportPowerSourceClusterRevision : public ModelCommand ~ReportPowerSourceClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002F) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceCluster cluster; cluster.Associate(device, endpointId); @@ -34316,9 +34316,9 @@ class ReadPowerSourceConfigurationSources : public ModelCommand ~ReadPowerSourceConfigurationSources() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002E) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002E) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -34346,9 +34346,9 @@ class ReportPowerSourceConfigurationSources : public ModelCommand ~ReportPowerSourceConfigurationSources() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002E) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002E) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -34388,9 +34388,9 @@ class ReadPowerSourceConfigurationAttributeList : public ModelCommand ~ReadPowerSourceConfigurationAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002E) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002E) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -34418,9 +34418,9 @@ class ReportPowerSourceConfigurationAttributeList : public ModelCommand ~ReportPowerSourceConfigurationAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002E) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002E) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -34460,9 +34460,9 @@ class ReadPowerSourceConfigurationClusterRevision : public ModelCommand ~ReadPowerSourceConfigurationClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002E) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002E) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -34490,9 +34490,9 @@ class ReportPowerSourceConfigurationClusterRevision : public ModelCommand ~ReportPowerSourceConfigurationClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000002E) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x002E) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PowerSourceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -34547,9 +34547,9 @@ class ReadPressureMeasurementMeasuredValue : public ModelCommand ~ReadPressureMeasurementMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000403) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0403) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PressureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -34577,9 +34577,9 @@ class ReportPressureMeasurementMeasuredValue : public ModelCommand ~ReportPressureMeasurementMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000403) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0403) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PressureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -34616,9 +34616,9 @@ class ReadPressureMeasurementMinMeasuredValue : public ModelCommand ~ReadPressureMeasurementMinMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000403) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0403) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PressureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -34646,9 +34646,9 @@ class ReportPressureMeasurementMinMeasuredValue : public ModelCommand ~ReportPressureMeasurementMinMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000403) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0403) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PressureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -34685,9 +34685,9 @@ class ReadPressureMeasurementMaxMeasuredValue : public ModelCommand ~ReadPressureMeasurementMaxMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000403) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0403) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PressureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -34715,9 +34715,9 @@ class ReportPressureMeasurementMaxMeasuredValue : public ModelCommand ~ReportPressureMeasurementMaxMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000403) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0403) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PressureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -34754,9 +34754,9 @@ class ReadPressureMeasurementAttributeList : public ModelCommand ~ReadPressureMeasurementAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000403) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0403) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PressureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -34784,9 +34784,9 @@ class ReportPressureMeasurementAttributeList : public ModelCommand ~ReportPressureMeasurementAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000403) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0403) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PressureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -34826,9 +34826,9 @@ class ReadPressureMeasurementClusterRevision : public ModelCommand ~ReadPressureMeasurementClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000403) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0403) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PressureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -34856,9 +34856,9 @@ class ReportPressureMeasurementClusterRevision : public ModelCommand ~ReportPressureMeasurementClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000403) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0403) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PressureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -34949,9 +34949,9 @@ class ReadPumpConfigurationAndControlSupplyVoltageLow : public ModelCommand ~ReadPumpConfigurationAndControlSupplyVoltageLow() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -34980,9 +34980,9 @@ class ReportPumpConfigurationAndControlSupplyVoltageLow : public ModelCommand ~ReportPumpConfigurationAndControlSupplyVoltageLow() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35022,9 +35022,9 @@ class ReadPumpConfigurationAndControlSupplyVoltageHigh : public ModelCommand ~ReadPumpConfigurationAndControlSupplyVoltageHigh() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35053,9 +35053,9 @@ class ReportPumpConfigurationAndControlSupplyVoltageHigh : public ModelCommand ~ReportPumpConfigurationAndControlSupplyVoltageHigh() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35095,9 +35095,9 @@ class ReadPumpConfigurationAndControlPowerMissingPhase : public ModelCommand ~ReadPumpConfigurationAndControlPowerMissingPhase() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadEvent (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35126,9 +35126,9 @@ class ReportPumpConfigurationAndControlPowerMissingPhase : public ModelCommand ~ReportPumpConfigurationAndControlPowerMissingPhase() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportEvent (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35168,9 +35168,9 @@ class ReadPumpConfigurationAndControlSystemPressureLow : public ModelCommand ~ReadPumpConfigurationAndControlSystemPressureLow() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadEvent (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35199,9 +35199,9 @@ class ReportPumpConfigurationAndControlSystemPressureLow : public ModelCommand ~ReportPumpConfigurationAndControlSystemPressureLow() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportEvent (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35241,9 +35241,9 @@ class ReadPumpConfigurationAndControlSystemPressureHigh : public ModelCommand ~ReadPumpConfigurationAndControlSystemPressureHigh() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadEvent (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35272,9 +35272,9 @@ class ReportPumpConfigurationAndControlSystemPressureHigh : public ModelCommand ~ReportPumpConfigurationAndControlSystemPressureHigh() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportEvent (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35314,9 +35314,9 @@ class ReadPumpConfigurationAndControlDryRunning : public ModelCommand ~ReadPumpConfigurationAndControlDryRunning() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadEvent (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35345,9 +35345,9 @@ class ReportPumpConfigurationAndControlDryRunning : public ModelCommand ~ReportPumpConfigurationAndControlDryRunning() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportEvent (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35387,9 +35387,9 @@ class ReadPumpConfigurationAndControlMotorTemperatureHigh : public ModelCommand ~ReadPumpConfigurationAndControlMotorTemperatureHigh() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadEvent (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35418,9 +35418,9 @@ class ReportPumpConfigurationAndControlMotorTemperatureHigh : public ModelComman ~ReportPumpConfigurationAndControlMotorTemperatureHigh() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportEvent (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35461,9 +35461,9 @@ class ReadPumpConfigurationAndControlPumpMotorFatalFailure : public ModelCommand ~ReadPumpConfigurationAndControlPumpMotorFatalFailure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadEvent (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35493,9 +35493,9 @@ class ReportPumpConfigurationAndControlPumpMotorFatalFailure : public ModelComma ~ReportPumpConfigurationAndControlPumpMotorFatalFailure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportEvent (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35536,9 +35536,9 @@ class ReadPumpConfigurationAndControlElectronicTemperatureHigh : public ModelCom ~ReadPumpConfigurationAndControlElectronicTemperatureHigh() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadEvent (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35569,9 +35569,9 @@ class ReportPumpConfigurationAndControlElectronicTemperatureHigh : public ModelC ~ReportPumpConfigurationAndControlElectronicTemperatureHigh() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportEvent (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35613,9 +35613,9 @@ class ReadPumpConfigurationAndControlPumpBlocked : public ModelCommand ~ReadPumpConfigurationAndControlPumpBlocked() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadEvent (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35644,9 +35644,9 @@ class ReportPumpConfigurationAndControlPumpBlocked : public ModelCommand ~ReportPumpConfigurationAndControlPumpBlocked() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportEvent (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35686,9 +35686,9 @@ class ReadPumpConfigurationAndControlSensorFailure : public ModelCommand ~ReadPumpConfigurationAndControlSensorFailure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadEvent (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35717,9 +35717,9 @@ class ReportPumpConfigurationAndControlSensorFailure : public ModelCommand ~ReportPumpConfigurationAndControlSensorFailure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportEvent (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35759,9 +35759,9 @@ class ReadPumpConfigurationAndControlElectronicNonFatalFailure : public ModelCom ~ReadPumpConfigurationAndControlElectronicNonFatalFailure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadEvent (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35792,9 +35792,9 @@ class ReportPumpConfigurationAndControlElectronicNonFatalFailure : public ModelC ~ReportPumpConfigurationAndControlElectronicNonFatalFailure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportEvent (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35836,9 +35836,9 @@ class ReadPumpConfigurationAndControlElectronicFatalFailure : public ModelComman ~ReadPumpConfigurationAndControlElectronicFatalFailure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadEvent (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35868,9 +35868,9 @@ class ReportPumpConfigurationAndControlElectronicFatalFailure : public ModelComm ~ReportPumpConfigurationAndControlElectronicFatalFailure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportEvent (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35911,9 +35911,9 @@ class ReadPumpConfigurationAndControlGeneralFault : public ModelCommand ~ReadPumpConfigurationAndControlGeneralFault() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadEvent (0x0000000D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35942,9 +35942,9 @@ class ReportPumpConfigurationAndControlGeneralFault : public ModelCommand ~ReportPumpConfigurationAndControlGeneralFault() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportEvent (0x0000000D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -35984,9 +35984,9 @@ class ReadPumpConfigurationAndControlLeakage : public ModelCommand ~ReadPumpConfigurationAndControlLeakage() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadEvent (0x0000000E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36015,9 +36015,9 @@ class ReportPumpConfigurationAndControlLeakage : public ModelCommand ~ReportPumpConfigurationAndControlLeakage() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportEvent (0x0000000E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36057,9 +36057,9 @@ class ReadPumpConfigurationAndControlAirDetection : public ModelCommand ~ReadPumpConfigurationAndControlAirDetection() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadEvent (0x0000000F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36088,9 +36088,9 @@ class ReportPumpConfigurationAndControlAirDetection : public ModelCommand ~ReportPumpConfigurationAndControlAirDetection() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportEvent (0x0000000F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36130,9 +36130,9 @@ class ReadPumpConfigurationAndControlTurbineOperation : public ModelCommand ~ReadPumpConfigurationAndControlTurbineOperation() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadEvent (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36161,9 +36161,9 @@ class ReportPumpConfigurationAndControlTurbineOperation : public ModelCommand ~ReportPumpConfigurationAndControlTurbineOperation() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportEvent (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36204,9 +36204,9 @@ class ReadPumpConfigurationAndControlMaxPressure : public ModelCommand ~ReadPumpConfigurationAndControlMaxPressure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36234,9 +36234,9 @@ class ReportPumpConfigurationAndControlMaxPressure : public ModelCommand ~ReportPumpConfigurationAndControlMaxPressure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36276,9 +36276,9 @@ class ReadPumpConfigurationAndControlMaxSpeed : public ModelCommand ~ReadPumpConfigurationAndControlMaxSpeed() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36306,9 +36306,9 @@ class ReportPumpConfigurationAndControlMaxSpeed : public ModelCommand ~ReportPumpConfigurationAndControlMaxSpeed() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36345,9 +36345,9 @@ class ReadPumpConfigurationAndControlMaxFlow : public ModelCommand ~ReadPumpConfigurationAndControlMaxFlow() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36375,9 +36375,9 @@ class ReportPumpConfigurationAndControlMaxFlow : public ModelCommand ~ReportPumpConfigurationAndControlMaxFlow() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36414,9 +36414,9 @@ class ReadPumpConfigurationAndControlMinConstPressure : public ModelCommand ~ReadPumpConfigurationAndControlMinConstPressure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36444,9 +36444,9 @@ class ReportPumpConfigurationAndControlMinConstPressure : public ModelCommand ~ReportPumpConfigurationAndControlMinConstPressure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36486,9 +36486,9 @@ class ReadPumpConfigurationAndControlMaxConstPressure : public ModelCommand ~ReadPumpConfigurationAndControlMaxConstPressure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36516,9 +36516,9 @@ class ReportPumpConfigurationAndControlMaxConstPressure : public ModelCommand ~ReportPumpConfigurationAndControlMaxConstPressure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36558,9 +36558,9 @@ class ReadPumpConfigurationAndControlMinCompPressure : public ModelCommand ~ReadPumpConfigurationAndControlMinCompPressure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36588,9 +36588,9 @@ class ReportPumpConfigurationAndControlMinCompPressure : public ModelCommand ~ReportPumpConfigurationAndControlMinCompPressure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36630,9 +36630,9 @@ class ReadPumpConfigurationAndControlMaxCompPressure : public ModelCommand ~ReadPumpConfigurationAndControlMaxCompPressure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36660,9 +36660,9 @@ class ReportPumpConfigurationAndControlMaxCompPressure : public ModelCommand ~ReportPumpConfigurationAndControlMaxCompPressure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36702,9 +36702,9 @@ class ReadPumpConfigurationAndControlMinConstSpeed : public ModelCommand ~ReadPumpConfigurationAndControlMinConstSpeed() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36732,9 +36732,9 @@ class ReportPumpConfigurationAndControlMinConstSpeed : public ModelCommand ~ReportPumpConfigurationAndControlMinConstSpeed() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36774,9 +36774,9 @@ class ReadPumpConfigurationAndControlMaxConstSpeed : public ModelCommand ~ReadPumpConfigurationAndControlMaxConstSpeed() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36804,9 +36804,9 @@ class ReportPumpConfigurationAndControlMaxConstSpeed : public ModelCommand ~ReportPumpConfigurationAndControlMaxConstSpeed() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36846,9 +36846,9 @@ class ReadPumpConfigurationAndControlMinConstFlow : public ModelCommand ~ReadPumpConfigurationAndControlMinConstFlow() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36876,9 +36876,9 @@ class ReportPumpConfigurationAndControlMinConstFlow : public ModelCommand ~ReportPumpConfigurationAndControlMinConstFlow() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36918,9 +36918,9 @@ class ReadPumpConfigurationAndControlMaxConstFlow : public ModelCommand ~ReadPumpConfigurationAndControlMaxConstFlow() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36948,9 +36948,9 @@ class ReportPumpConfigurationAndControlMaxConstFlow : public ModelCommand ~ReportPumpConfigurationAndControlMaxConstFlow() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -36990,9 +36990,9 @@ class ReadPumpConfigurationAndControlMinConstTemp : public ModelCommand ~ReadPumpConfigurationAndControlMinConstTemp() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37020,9 +37020,9 @@ class ReportPumpConfigurationAndControlMinConstTemp : public ModelCommand ~ReportPumpConfigurationAndControlMinConstTemp() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37062,9 +37062,9 @@ class ReadPumpConfigurationAndControlMaxConstTemp : public ModelCommand ~ReadPumpConfigurationAndControlMaxConstTemp() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37092,9 +37092,9 @@ class ReportPumpConfigurationAndControlMaxConstTemp : public ModelCommand ~ReportPumpConfigurationAndControlMaxConstTemp() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37134,9 +37134,9 @@ class ReadPumpConfigurationAndControlPumpStatus : public ModelCommand ~ReadPumpConfigurationAndControlPumpStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37164,9 +37164,9 @@ class ReportPumpConfigurationAndControlPumpStatus : public ModelCommand ~ReportPumpConfigurationAndControlPumpStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37206,9 +37206,9 @@ class ReadPumpConfigurationAndControlEffectiveOperationMode : public ModelComman ~ReadPumpConfigurationAndControlEffectiveOperationMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37237,9 +37237,9 @@ class ReportPumpConfigurationAndControlEffectiveOperationMode : public ModelComm ~ReportPumpConfigurationAndControlEffectiveOperationMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37280,9 +37280,9 @@ class ReadPumpConfigurationAndControlEffectiveControlMode : public ModelCommand ~ReadPumpConfigurationAndControlEffectiveControlMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37310,9 +37310,9 @@ class ReportPumpConfigurationAndControlEffectiveControlMode : public ModelComman ~ReportPumpConfigurationAndControlEffectiveControlMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37353,9 +37353,9 @@ class ReadPumpConfigurationAndControlCapacity : public ModelCommand ~ReadPumpConfigurationAndControlCapacity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000013) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37383,9 +37383,9 @@ class ReportPumpConfigurationAndControlCapacity : public ModelCommand ~ReportPumpConfigurationAndControlCapacity() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000013) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37422,9 +37422,9 @@ class ReadPumpConfigurationAndControlSpeed : public ModelCommand ~ReadPumpConfigurationAndControlSpeed() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000014) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37452,9 +37452,9 @@ class ReportPumpConfigurationAndControlSpeed : public ModelCommand ~ReportPumpConfigurationAndControlSpeed() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000014) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37491,9 +37491,9 @@ class ReadPumpConfigurationAndControlLifetimeRunningHours : public ModelCommand ~ReadPumpConfigurationAndControlLifetimeRunningHours() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000015) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37519,9 +37519,9 @@ class WritePumpConfigurationAndControlLifetimeRunningHours : public ModelCommand ~WritePumpConfigurationAndControlLifetimeRunningHours() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) WriteAttribute (0x00000015) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37547,9 +37547,9 @@ class ReportPumpConfigurationAndControlLifetimeRunningHours : public ModelComman ~ReportPumpConfigurationAndControlLifetimeRunningHours() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000015) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37590,9 +37590,9 @@ class ReadPumpConfigurationAndControlPower : public ModelCommand ~ReadPumpConfigurationAndControlPower() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000016) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37620,9 +37620,9 @@ class ReportPumpConfigurationAndControlPower : public ModelCommand ~ReportPumpConfigurationAndControlPower() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000016) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37659,9 +37659,9 @@ class ReadPumpConfigurationAndControlLifetimeEnergyConsumed : public ModelComman ~ReadPumpConfigurationAndControlLifetimeEnergyConsumed() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37688,9 +37688,9 @@ class WritePumpConfigurationAndControlLifetimeEnergyConsumed : public ModelComma ~WritePumpConfigurationAndControlLifetimeEnergyConsumed() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) WriteAttribute (0x00000017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37717,9 +37717,9 @@ class ReportPumpConfigurationAndControlLifetimeEnergyConsumed : public ModelComm ~ReportPumpConfigurationAndControlLifetimeEnergyConsumed() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37760,9 +37760,9 @@ class ReadPumpConfigurationAndControlOperationMode : public ModelCommand ~ReadPumpConfigurationAndControlOperationMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000020) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37788,9 +37788,9 @@ class WritePumpConfigurationAndControlOperationMode : public ModelCommand ~WritePumpConfigurationAndControlOperationMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) WriteAttribute (0x00000020) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37816,9 +37816,9 @@ class ReportPumpConfigurationAndControlOperationMode : public ModelCommand ~ReportPumpConfigurationAndControlOperationMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000020) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37858,9 +37858,9 @@ class ReadPumpConfigurationAndControlControlMode : public ModelCommand ~ReadPumpConfigurationAndControlControlMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000021) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37886,9 +37886,9 @@ class WritePumpConfigurationAndControlControlMode : public ModelCommand ~WritePumpConfigurationAndControlControlMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) WriteAttribute (0x00000021) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37914,9 +37914,9 @@ class ReportPumpConfigurationAndControlControlMode : public ModelCommand ~ReportPumpConfigurationAndControlControlMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000021) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37956,9 +37956,9 @@ class ReadPumpConfigurationAndControlAlarmMask : public ModelCommand ~ReadPumpConfigurationAndControlAlarmMask() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x00000022) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -37986,9 +37986,9 @@ class ReportPumpConfigurationAndControlAlarmMask : public ModelCommand ~ReportPumpConfigurationAndControlAlarmMask() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x00000022) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -38028,9 +38028,9 @@ class ReadPumpConfigurationAndControlAttributeList : public ModelCommand ~ReadPumpConfigurationAndControlAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -38058,9 +38058,9 @@ class ReportPumpConfigurationAndControlAttributeList : public ModelCommand ~ReportPumpConfigurationAndControlAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -38100,9 +38100,9 @@ class ReadPumpConfigurationAndControlFeatureMap : public ModelCommand ~ReadPumpConfigurationAndControlFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -38130,9 +38130,9 @@ class ReportPumpConfigurationAndControlFeatureMap : public ModelCommand ~ReportPumpConfigurationAndControlFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -38172,9 +38172,9 @@ class ReadPumpConfigurationAndControlClusterRevision : public ModelCommand ~ReadPumpConfigurationAndControlClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -38202,9 +38202,9 @@ class ReportPumpConfigurationAndControlClusterRevision : public ModelCommand ~ReportPumpConfigurationAndControlClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000200) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0200) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::PumpConfigurationAndControlCluster cluster; cluster.Associate(device, endpointId); @@ -38260,9 +38260,9 @@ class ReadRelativeHumidityMeasurementMeasuredValue : public ModelCommand ~ReadRelativeHumidityMeasurementMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000405) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0405) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::RelativeHumidityMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -38290,9 +38290,9 @@ class ReportRelativeHumidityMeasurementMeasuredValue : public ModelCommand ~ReportRelativeHumidityMeasurementMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000405) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0405) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::RelativeHumidityMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -38332,9 +38332,9 @@ class ReadRelativeHumidityMeasurementMinMeasuredValue : public ModelCommand ~ReadRelativeHumidityMeasurementMinMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000405) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0405) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::RelativeHumidityMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -38362,9 +38362,9 @@ class ReportRelativeHumidityMeasurementMinMeasuredValue : public ModelCommand ~ReportRelativeHumidityMeasurementMinMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000405) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0405) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::RelativeHumidityMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -38404,9 +38404,9 @@ class ReadRelativeHumidityMeasurementMaxMeasuredValue : public ModelCommand ~ReadRelativeHumidityMeasurementMaxMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000405) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0405) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::RelativeHumidityMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -38434,9 +38434,9 @@ class ReportRelativeHumidityMeasurementMaxMeasuredValue : public ModelCommand ~ReportRelativeHumidityMeasurementMaxMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000405) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0405) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::RelativeHumidityMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -38476,9 +38476,9 @@ class ReadRelativeHumidityMeasurementTolerance : public ModelCommand ~ReadRelativeHumidityMeasurementTolerance() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000405) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0405) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::RelativeHumidityMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -38506,9 +38506,9 @@ class ReportRelativeHumidityMeasurementTolerance : public ModelCommand ~ReportRelativeHumidityMeasurementTolerance() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000405) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0405) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::RelativeHumidityMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -38548,9 +38548,9 @@ class ReadRelativeHumidityMeasurementAttributeList : public ModelCommand ~ReadRelativeHumidityMeasurementAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000405) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0405) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::RelativeHumidityMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -38578,9 +38578,9 @@ class ReportRelativeHumidityMeasurementAttributeList : public ModelCommand ~ReportRelativeHumidityMeasurementAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000405) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0405) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::RelativeHumidityMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -38620,9 +38620,9 @@ class ReadRelativeHumidityMeasurementClusterRevision : public ModelCommand ~ReadRelativeHumidityMeasurementClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000405) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0405) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::RelativeHumidityMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -38650,9 +38650,9 @@ class ReportRelativeHumidityMeasurementClusterRevision : public ModelCommand ~ReportRelativeHumidityMeasurementClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000405) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0405) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::RelativeHumidityMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -38718,9 +38718,9 @@ class ScenesAddScene : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000005) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnScenesAddSceneResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -38742,9 +38742,9 @@ class ScenesGetSceneMembership : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) command (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000005) command (0x00000006) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnScenesGetSceneMembershipResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -38768,9 +38768,9 @@ class ScenesRecallScene : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) command (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000005) command (0x00000005) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -38792,9 +38792,9 @@ class ScenesRemoveAllScenes : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) command (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000005) command (0x00000003) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnScenesRemoveAllScenesResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -38817,9 +38817,9 @@ class ScenesRemoveScene : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000005) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnScenesRemoveSceneResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -38842,9 +38842,9 @@ class ScenesStoreScene : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) command (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000005) command (0x00000004) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnScenesStoreSceneResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -38867,9 +38867,9 @@ class ScenesViewScene : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000005) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnScenesViewSceneResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -38893,9 +38893,9 @@ class ReadScenesSceneCount : public ModelCommand ~ReadScenesSceneCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0005) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ScenesCluster cluster; cluster.Associate(device, endpointId); @@ -38923,9 +38923,9 @@ class ReportScenesSceneCount : public ModelCommand ~ReportScenesSceneCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0005) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ScenesCluster cluster; cluster.Associate(device, endpointId); @@ -38962,9 +38962,9 @@ class ReadScenesCurrentScene : public ModelCommand ~ReadScenesCurrentScene() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0005) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ScenesCluster cluster; cluster.Associate(device, endpointId); @@ -38992,9 +38992,9 @@ class ReportScenesCurrentScene : public ModelCommand ~ReportScenesCurrentScene() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0005) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ScenesCluster cluster; cluster.Associate(device, endpointId); @@ -39031,9 +39031,9 @@ class ReadScenesCurrentGroup : public ModelCommand ~ReadScenesCurrentGroup() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0005) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ScenesCluster cluster; cluster.Associate(device, endpointId); @@ -39061,9 +39061,9 @@ class ReportScenesCurrentGroup : public ModelCommand ~ReportScenesCurrentGroup() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0005) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ScenesCluster cluster; cluster.Associate(device, endpointId); @@ -39100,9 +39100,9 @@ class ReadScenesSceneValid : public ModelCommand ~ReadScenesSceneValid() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0005) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ScenesCluster cluster; cluster.Associate(device, endpointId); @@ -39130,9 +39130,9 @@ class ReportScenesSceneValid : public ModelCommand ~ReportScenesSceneValid() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0005) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ScenesCluster cluster; cluster.Associate(device, endpointId); @@ -39169,9 +39169,9 @@ class ReadScenesNameSupport : public ModelCommand ~ReadScenesNameSupport() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) ReadAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0005) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ScenesCluster cluster; cluster.Associate(device, endpointId); @@ -39199,9 +39199,9 @@ class ReportScenesNameSupport : public ModelCommand ~ReportScenesNameSupport() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) ReportAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0005) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ScenesCluster cluster; cluster.Associate(device, endpointId); @@ -39238,9 +39238,9 @@ class ReadScenesAttributeList : public ModelCommand ~ReadScenesAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0005) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ScenesCluster cluster; cluster.Associate(device, endpointId); @@ -39268,9 +39268,9 @@ class ReportScenesAttributeList : public ModelCommand ~ReportScenesAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0005) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ScenesCluster cluster; cluster.Associate(device, endpointId); @@ -39310,9 +39310,9 @@ class ReadScenesClusterRevision : public ModelCommand ~ReadScenesClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0005) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ScenesCluster cluster; cluster.Associate(device, endpointId); @@ -39340,9 +39340,9 @@ class ReportScenesClusterRevision : public ModelCommand ~ReportScenesClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000005) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0005) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ScenesCluster cluster; cluster.Associate(device, endpointId); @@ -39392,9 +39392,9 @@ class SoftwareDiagnosticsResetWatermarks : public ModelCommand public: SoftwareDiagnosticsResetWatermarks() : ModelCommand("reset-watermarks") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000034) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000034) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -39418,9 +39418,9 @@ class ReadSoftwareDiagnosticsSoftwareFault : public ModelCommand ~ReadSoftwareDiagnosticsSoftwareFault() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000034) ReadEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0034) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::SoftwareDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -39449,9 +39449,9 @@ class ReportSoftwareDiagnosticsSoftwareFault : public ModelCommand ~ReportSoftwareDiagnosticsSoftwareFault() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000034) ReportEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0034) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::SoftwareDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -39491,9 +39491,9 @@ class ReadSoftwareDiagnosticsThreadMetrics : public ModelCommand ~ReadSoftwareDiagnosticsThreadMetrics() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000034) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0034) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SoftwareDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -39524,9 +39524,9 @@ class ReportSoftwareDiagnosticsThreadMetrics : public ModelCommand ~ReportSoftwareDiagnosticsThreadMetrics() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000034) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0034) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SoftwareDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -39569,9 +39569,9 @@ class ReadSoftwareDiagnosticsCurrentHeapFree : public ModelCommand ~ReadSoftwareDiagnosticsCurrentHeapFree() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000034) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0034) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SoftwareDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -39599,9 +39599,9 @@ class ReportSoftwareDiagnosticsCurrentHeapFree : public ModelCommand ~ReportSoftwareDiagnosticsCurrentHeapFree() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000034) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0034) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SoftwareDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -39638,9 +39638,9 @@ class ReadSoftwareDiagnosticsCurrentHeapUsed : public ModelCommand ~ReadSoftwareDiagnosticsCurrentHeapUsed() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000034) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0034) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SoftwareDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -39668,9 +39668,9 @@ class ReportSoftwareDiagnosticsCurrentHeapUsed : public ModelCommand ~ReportSoftwareDiagnosticsCurrentHeapUsed() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000034) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0034) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SoftwareDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -39707,9 +39707,9 @@ class ReadSoftwareDiagnosticsCurrentHeapHighWatermark : public ModelCommand ~ReadSoftwareDiagnosticsCurrentHeapHighWatermark() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000034) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0034) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SoftwareDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -39737,9 +39737,9 @@ class ReportSoftwareDiagnosticsCurrentHeapHighWatermark : public ModelCommand ~ReportSoftwareDiagnosticsCurrentHeapHighWatermark() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000034) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0034) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SoftwareDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -39779,9 +39779,9 @@ class ReadSoftwareDiagnosticsAttributeList : public ModelCommand ~ReadSoftwareDiagnosticsAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000034) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0034) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SoftwareDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -39809,9 +39809,9 @@ class ReportSoftwareDiagnosticsAttributeList : public ModelCommand ~ReportSoftwareDiagnosticsAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000034) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0034) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SoftwareDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -39851,9 +39851,9 @@ class ReadSoftwareDiagnosticsFeatureMap : public ModelCommand ~ReadSoftwareDiagnosticsFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000034) ReadAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0034) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SoftwareDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -39881,9 +39881,9 @@ class ReportSoftwareDiagnosticsFeatureMap : public ModelCommand ~ReportSoftwareDiagnosticsFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000034) ReportAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0034) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SoftwareDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -39920,9 +39920,9 @@ class ReadSoftwareDiagnosticsClusterRevision : public ModelCommand ~ReadSoftwareDiagnosticsClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000034) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0034) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SoftwareDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -39950,9 +39950,9 @@ class ReportSoftwareDiagnosticsClusterRevision : public ModelCommand ~ReportSoftwareDiagnosticsClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000034) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0034) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SoftwareDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -40012,9 +40012,9 @@ class ReadSwitchSwitchLatched : public ModelCommand ~ReadSwitchSwitchLatched() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReadEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40042,9 +40042,9 @@ class ReportSwitchSwitchLatched : public ModelCommand ~ReportSwitchSwitchLatched() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReportEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40083,9 +40083,9 @@ class ReadSwitchInitialPress : public ModelCommand ~ReadSwitchInitialPress() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReadEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40113,9 +40113,9 @@ class ReportSwitchInitialPress : public ModelCommand ~ReportSwitchInitialPress() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReportEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40154,9 +40154,9 @@ class ReadSwitchLongPress : public ModelCommand ~ReadSwitchLongPress() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReadEvent (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40184,9 +40184,9 @@ class ReportSwitchLongPress : public ModelCommand ~ReportSwitchLongPress() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReportEvent (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40225,9 +40225,9 @@ class ReadSwitchShortRelease : public ModelCommand ~ReadSwitchShortRelease() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReadEvent (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40255,9 +40255,9 @@ class ReportSwitchShortRelease : public ModelCommand ~ReportSwitchShortRelease() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReportEvent (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40296,9 +40296,9 @@ class ReadSwitchLongRelease : public ModelCommand ~ReadSwitchLongRelease() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReadEvent (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40326,9 +40326,9 @@ class ReportSwitchLongRelease : public ModelCommand ~ReportSwitchLongRelease() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReportEvent (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40367,9 +40367,9 @@ class ReadSwitchMultiPressOngoing : public ModelCommand ~ReadSwitchMultiPressOngoing() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReadEvent (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40397,9 +40397,9 @@ class ReportSwitchMultiPressOngoing : public ModelCommand ~ReportSwitchMultiPressOngoing() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReportEvent (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40438,9 +40438,9 @@ class ReadSwitchMultiPressComplete : public ModelCommand ~ReadSwitchMultiPressComplete() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReadEvent (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40468,9 +40468,9 @@ class ReportSwitchMultiPressComplete : public ModelCommand ~ReportSwitchMultiPressComplete() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReportEvent (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40510,9 +40510,9 @@ class ReadSwitchNumberOfPositions : public ModelCommand ~ReadSwitchNumberOfPositions() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40540,9 +40540,9 @@ class ReportSwitchNumberOfPositions : public ModelCommand ~ReportSwitchNumberOfPositions() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40579,9 +40579,9 @@ class ReadSwitchCurrentPosition : public ModelCommand ~ReadSwitchCurrentPosition() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40609,9 +40609,9 @@ class ReportSwitchCurrentPosition : public ModelCommand ~ReportSwitchCurrentPosition() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40648,9 +40648,9 @@ class ReadSwitchMultiPressMax : public ModelCommand ~ReadSwitchMultiPressMax() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40678,9 +40678,9 @@ class ReportSwitchMultiPressMax : public ModelCommand ~ReportSwitchMultiPressMax() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40717,9 +40717,9 @@ class ReadSwitchAttributeList : public ModelCommand ~ReadSwitchAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40747,9 +40747,9 @@ class ReportSwitchAttributeList : public ModelCommand ~ReportSwitchAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40789,9 +40789,9 @@ class ReadSwitchFeatureMap : public ModelCommand ~ReadSwitchFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReadAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40819,9 +40819,9 @@ class ReportSwitchFeatureMap : public ModelCommand ~ReportSwitchFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReportAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40858,9 +40858,9 @@ class ReadSwitchClusterRevision : public ModelCommand ~ReadSwitchClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40888,9 +40888,9 @@ class ReportSwitchClusterRevision : public ModelCommand ~ReportSwitchClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000003B) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x003B) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::SwitchCluster cluster; cluster.Associate(device, endpointId); @@ -40941,9 +40941,9 @@ class TargetNavigatorNavigateTargetRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000505) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000505) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnTargetNavigatorNavigateTargetResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -40967,9 +40967,9 @@ class ReadTargetNavigatorTargetNavigatorList : public ModelCommand ~ReadTargetNavigatorTargetNavigatorList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000505) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0505) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TargetNavigatorCluster cluster; cluster.Associate(device, endpointId); @@ -40999,9 +40999,9 @@ class ReportTargetNavigatorTargetNavigatorList : public ModelCommand ~ReportTargetNavigatorTargetNavigatorList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000505) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0505) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TargetNavigatorCluster cluster; cluster.Associate(device, endpointId); @@ -41043,9 +41043,9 @@ class ReadTargetNavigatorCurrentNavigatorTarget : public ModelCommand ~ReadTargetNavigatorCurrentNavigatorTarget() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000505) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0505) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TargetNavigatorCluster cluster; cluster.Associate(device, endpointId); @@ -41073,9 +41073,9 @@ class ReportTargetNavigatorCurrentNavigatorTarget : public ModelCommand ~ReportTargetNavigatorCurrentNavigatorTarget() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000505) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0505) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TargetNavigatorCluster cluster; cluster.Associate(device, endpointId); @@ -41115,9 +41115,9 @@ class ReadTargetNavigatorAttributeList : public ModelCommand ~ReadTargetNavigatorAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000505) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0505) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TargetNavigatorCluster cluster; cluster.Associate(device, endpointId); @@ -41145,9 +41145,9 @@ class ReportTargetNavigatorAttributeList : public ModelCommand ~ReportTargetNavigatorAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000505) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0505) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TargetNavigatorCluster cluster; cluster.Associate(device, endpointId); @@ -41187,9 +41187,9 @@ class ReadTargetNavigatorClusterRevision : public ModelCommand ~ReadTargetNavigatorClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000505) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0505) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TargetNavigatorCluster cluster; cluster.Associate(device, endpointId); @@ -41217,9 +41217,9 @@ class ReportTargetNavigatorClusterRevision : public ModelCommand ~ReportTargetNavigatorClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000505) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0505) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TargetNavigatorCluster cluster; cluster.Associate(device, endpointId); @@ -41272,9 +41272,9 @@ class ReadTemperatureMeasurementMeasuredValue : public ModelCommand ~ReadTemperatureMeasurementMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000402) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0402) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TemperatureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -41302,9 +41302,9 @@ class ReportTemperatureMeasurementMeasuredValue : public ModelCommand ~ReportTemperatureMeasurementMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000402) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0402) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TemperatureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -41341,9 +41341,9 @@ class ReadTemperatureMeasurementMinMeasuredValue : public ModelCommand ~ReadTemperatureMeasurementMinMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000402) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0402) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TemperatureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -41371,9 +41371,9 @@ class ReportTemperatureMeasurementMinMeasuredValue : public ModelCommand ~ReportTemperatureMeasurementMinMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000402) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0402) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TemperatureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -41413,9 +41413,9 @@ class ReadTemperatureMeasurementMaxMeasuredValue : public ModelCommand ~ReadTemperatureMeasurementMaxMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000402) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0402) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TemperatureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -41443,9 +41443,9 @@ class ReportTemperatureMeasurementMaxMeasuredValue : public ModelCommand ~ReportTemperatureMeasurementMaxMeasuredValue() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000402) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0402) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TemperatureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -41485,9 +41485,9 @@ class ReadTemperatureMeasurementTolerance : public ModelCommand ~ReadTemperatureMeasurementTolerance() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000402) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0402) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TemperatureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -41515,9 +41515,9 @@ class ReportTemperatureMeasurementTolerance : public ModelCommand ~ReportTemperatureMeasurementTolerance() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000402) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0402) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TemperatureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -41554,9 +41554,9 @@ class ReadTemperatureMeasurementAttributeList : public ModelCommand ~ReadTemperatureMeasurementAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000402) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0402) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TemperatureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -41584,9 +41584,9 @@ class ReportTemperatureMeasurementAttributeList : public ModelCommand ~ReportTemperatureMeasurementAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000402) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0402) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TemperatureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -41626,9 +41626,9 @@ class ReadTemperatureMeasurementClusterRevision : public ModelCommand ~ReadTemperatureMeasurementClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000402) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0402) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TemperatureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -41656,9 +41656,9 @@ class ReportTemperatureMeasurementClusterRevision : public ModelCommand ~ReportTemperatureMeasurementClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000402) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0402) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TemperatureMeasurementCluster cluster; cluster.Associate(device, endpointId); @@ -41805,9 +41805,9 @@ class TestClusterSimpleStructEchoRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000011) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnTestClusterSimpleStructResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -41825,9 +41825,9 @@ class TestClusterTest : public ModelCommand public: TestClusterTest() : ModelCommand("test") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -41850,9 +41850,9 @@ class TestClusterTestAddArguments : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000004) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnTestClusterTestAddArgumentsResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -41876,9 +41876,9 @@ class TestClusterTestEmitTestEventRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000014) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000014) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnTestClusterTestEmitTestEventResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -41901,9 +41901,9 @@ class TestClusterTestEnumsRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x0000000E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x0000000E) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnTestClusterTestEnumsResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -41925,9 +41925,9 @@ class TestClusterTestListInt8UArgumentRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x0000000A) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnTestClusterBooleanResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -41949,9 +41949,9 @@ class TestClusterTestListInt8UReverseRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x0000000D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x0000000D) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnTestClusterTestListInt8UReverseResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -41973,9 +41973,9 @@ class TestClusterTestListNestedStructListArgumentRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x0000000C) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnTestClusterBooleanResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -41997,9 +41997,9 @@ class TestClusterTestListStructArgumentRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000009) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnTestClusterBooleanResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -42021,9 +42021,9 @@ class TestClusterTestNestedStructArgumentRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000008) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnTestClusterBooleanResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -42045,9 +42045,9 @@ class TestClusterTestNestedStructListArgumentRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x0000000B) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnTestClusterBooleanResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -42065,9 +42065,9 @@ class TestClusterTestNotHandled : public ModelCommand public: TestClusterTestNotHandled() : ModelCommand("test-not-handled") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -42089,9 +42089,9 @@ class TestClusterTestNullableOptionalRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x0000000F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x0000000F) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnTestClusterTestNullableOptionalResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -42113,9 +42113,9 @@ class TestClusterTestSimpleOptionalArgumentRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000013) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000013) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -42133,9 +42133,9 @@ class TestClusterTestSpecific : public ModelCommand public: TestClusterTestSpecific() : ModelCommand("test-specific") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnTestClusterTestSpecificResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -42157,9 +42157,9 @@ class TestClusterTestStructArgumentRequest : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000007) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnTestClusterBooleanResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -42177,9 +42177,9 @@ class TestClusterTestUnknownCommand : public ModelCommand public: TestClusterTestUnknownCommand() : ModelCommand("test-unknown-command") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000003) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -42197,9 +42197,9 @@ class TestClusterTimedInvokeRequest : public ModelCommand public: TestClusterTimedInvokeRequest() : ModelCommand("timed-invoke-request") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0000050F) command (0x00000012) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -42223,9 +42223,9 @@ class ReadTestClusterTestEvent : public ModelCommand ~ReadTestClusterTestEvent() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42253,9 +42253,9 @@ class ReportTestClusterTestEvent : public ModelCommand ~ReportTestClusterTestEvent() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42295,9 +42295,9 @@ class ReadTestClusterBoolean : public ModelCommand ~ReadTestClusterBoolean() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42323,9 +42323,9 @@ class WriteTestClusterBoolean : public ModelCommand ~WriteTestClusterBoolean() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42351,9 +42351,9 @@ class ReportTestClusterBoolean : public ModelCommand ~ReportTestClusterBoolean() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42390,9 +42390,9 @@ class ReadTestClusterBitmap8 : public ModelCommand ~ReadTestClusterBitmap8() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42418,9 +42418,9 @@ class WriteTestClusterBitmap8 : public ModelCommand ~WriteTestClusterBitmap8() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42446,9 +42446,9 @@ class ReportTestClusterBitmap8 : public ModelCommand ~ReportTestClusterBitmap8() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42485,9 +42485,9 @@ class ReadTestClusterBitmap16 : public ModelCommand ~ReadTestClusterBitmap16() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42513,9 +42513,9 @@ class WriteTestClusterBitmap16 : public ModelCommand ~WriteTestClusterBitmap16() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42541,9 +42541,9 @@ class ReportTestClusterBitmap16 : public ModelCommand ~ReportTestClusterBitmap16() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42580,9 +42580,9 @@ class ReadTestClusterBitmap32 : public ModelCommand ~ReadTestClusterBitmap32() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42608,9 +42608,9 @@ class WriteTestClusterBitmap32 : public ModelCommand ~WriteTestClusterBitmap32() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42636,9 +42636,9 @@ class ReportTestClusterBitmap32 : public ModelCommand ~ReportTestClusterBitmap32() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42675,9 +42675,9 @@ class ReadTestClusterBitmap64 : public ModelCommand ~ReadTestClusterBitmap64() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42703,9 +42703,9 @@ class WriteTestClusterBitmap64 : public ModelCommand ~WriteTestClusterBitmap64() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42731,9 +42731,9 @@ class ReportTestClusterBitmap64 : public ModelCommand ~ReportTestClusterBitmap64() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42770,9 +42770,9 @@ class ReadTestClusterInt8u : public ModelCommand ~ReadTestClusterInt8u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42798,9 +42798,9 @@ class WriteTestClusterInt8u : public ModelCommand ~WriteTestClusterInt8u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42826,9 +42826,9 @@ class ReportTestClusterInt8u : public ModelCommand ~ReportTestClusterInt8u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42865,9 +42865,9 @@ class ReadTestClusterInt16u : public ModelCommand ~ReadTestClusterInt16u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42893,9 +42893,9 @@ class WriteTestClusterInt16u : public ModelCommand ~WriteTestClusterInt16u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42921,9 +42921,9 @@ class ReportTestClusterInt16u : public ModelCommand ~ReportTestClusterInt16u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42960,9 +42960,9 @@ class ReadTestClusterInt24u : public ModelCommand ~ReadTestClusterInt24u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -42988,9 +42988,9 @@ class WriteTestClusterInt24u : public ModelCommand ~WriteTestClusterInt24u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43016,9 +43016,9 @@ class ReportTestClusterInt24u : public ModelCommand ~ReportTestClusterInt24u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43055,9 +43055,9 @@ class ReadTestClusterInt32u : public ModelCommand ~ReadTestClusterInt32u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43083,9 +43083,9 @@ class WriteTestClusterInt32u : public ModelCommand ~WriteTestClusterInt32u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43111,9 +43111,9 @@ class ReportTestClusterInt32u : public ModelCommand ~ReportTestClusterInt32u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43150,9 +43150,9 @@ class ReadTestClusterInt40u : public ModelCommand ~ReadTestClusterInt40u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43178,9 +43178,9 @@ class WriteTestClusterInt40u : public ModelCommand ~WriteTestClusterInt40u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43206,9 +43206,9 @@ class ReportTestClusterInt40u : public ModelCommand ~ReportTestClusterInt40u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43245,9 +43245,9 @@ class ReadTestClusterInt48u : public ModelCommand ~ReadTestClusterInt48u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43273,9 +43273,9 @@ class WriteTestClusterInt48u : public ModelCommand ~WriteTestClusterInt48u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43301,9 +43301,9 @@ class ReportTestClusterInt48u : public ModelCommand ~ReportTestClusterInt48u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43340,9 +43340,9 @@ class ReadTestClusterInt56u : public ModelCommand ~ReadTestClusterInt56u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43368,9 +43368,9 @@ class WriteTestClusterInt56u : public ModelCommand ~WriteTestClusterInt56u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43396,9 +43396,9 @@ class ReportTestClusterInt56u : public ModelCommand ~ReportTestClusterInt56u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43435,9 +43435,9 @@ class ReadTestClusterInt64u : public ModelCommand ~ReadTestClusterInt64u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43463,9 +43463,9 @@ class WriteTestClusterInt64u : public ModelCommand ~WriteTestClusterInt64u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43491,9 +43491,9 @@ class ReportTestClusterInt64u : public ModelCommand ~ReportTestClusterInt64u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43530,9 +43530,9 @@ class ReadTestClusterInt8s : public ModelCommand ~ReadTestClusterInt8s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000000D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43558,9 +43558,9 @@ class WriteTestClusterInt8s : public ModelCommand ~WriteTestClusterInt8s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x0000000D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43586,9 +43586,9 @@ class ReportTestClusterInt8s : public ModelCommand ~ReportTestClusterInt8s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000000D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43625,9 +43625,9 @@ class ReadTestClusterInt16s : public ModelCommand ~ReadTestClusterInt16s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000000E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43653,9 +43653,9 @@ class WriteTestClusterInt16s : public ModelCommand ~WriteTestClusterInt16s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x0000000E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43681,9 +43681,9 @@ class ReportTestClusterInt16s : public ModelCommand ~ReportTestClusterInt16s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000000E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43720,9 +43720,9 @@ class ReadTestClusterInt24s : public ModelCommand ~ReadTestClusterInt24s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000000F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43748,9 +43748,9 @@ class WriteTestClusterInt24s : public ModelCommand ~WriteTestClusterInt24s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x0000000F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43776,9 +43776,9 @@ class ReportTestClusterInt24s : public ModelCommand ~ReportTestClusterInt24s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000000F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43815,9 +43815,9 @@ class ReadTestClusterInt32s : public ModelCommand ~ReadTestClusterInt32s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43843,9 +43843,9 @@ class WriteTestClusterInt32s : public ModelCommand ~WriteTestClusterInt32s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43871,9 +43871,9 @@ class ReportTestClusterInt32s : public ModelCommand ~ReportTestClusterInt32s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43910,9 +43910,9 @@ class ReadTestClusterInt40s : public ModelCommand ~ReadTestClusterInt40s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43938,9 +43938,9 @@ class WriteTestClusterInt40s : public ModelCommand ~WriteTestClusterInt40s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -43966,9 +43966,9 @@ class ReportTestClusterInt40s : public ModelCommand ~ReportTestClusterInt40s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44005,9 +44005,9 @@ class ReadTestClusterInt48s : public ModelCommand ~ReadTestClusterInt48s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44033,9 +44033,9 @@ class WriteTestClusterInt48s : public ModelCommand ~WriteTestClusterInt48s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44061,9 +44061,9 @@ class ReportTestClusterInt48s : public ModelCommand ~ReportTestClusterInt48s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44100,9 +44100,9 @@ class ReadTestClusterInt56s : public ModelCommand ~ReadTestClusterInt56s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000013) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44128,9 +44128,9 @@ class WriteTestClusterInt56s : public ModelCommand ~WriteTestClusterInt56s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000013) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44156,9 +44156,9 @@ class ReportTestClusterInt56s : public ModelCommand ~ReportTestClusterInt56s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000013) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44195,9 +44195,9 @@ class ReadTestClusterInt64s : public ModelCommand ~ReadTestClusterInt64s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000014) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44223,9 +44223,9 @@ class WriteTestClusterInt64s : public ModelCommand ~WriteTestClusterInt64s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000014) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44251,9 +44251,9 @@ class ReportTestClusterInt64s : public ModelCommand ~ReportTestClusterInt64s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000014) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44290,9 +44290,9 @@ class ReadTestClusterEnum8 : public ModelCommand ~ReadTestClusterEnum8() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000015) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44318,9 +44318,9 @@ class WriteTestClusterEnum8 : public ModelCommand ~WriteTestClusterEnum8() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000015) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44346,9 +44346,9 @@ class ReportTestClusterEnum8 : public ModelCommand ~ReportTestClusterEnum8() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000015) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44385,9 +44385,9 @@ class ReadTestClusterEnum16 : public ModelCommand ~ReadTestClusterEnum16() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000016) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44413,9 +44413,9 @@ class WriteTestClusterEnum16 : public ModelCommand ~WriteTestClusterEnum16() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000016) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44441,9 +44441,9 @@ class ReportTestClusterEnum16 : public ModelCommand ~ReportTestClusterEnum16() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000016) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44480,9 +44480,9 @@ class ReadTestClusterFloatSingle : public ModelCommand ~ReadTestClusterFloatSingle() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44508,9 +44508,9 @@ class WriteTestClusterFloatSingle : public ModelCommand ~WriteTestClusterFloatSingle() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44536,9 +44536,9 @@ class ReportTestClusterFloatSingle : public ModelCommand ~ReportTestClusterFloatSingle() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44575,9 +44575,9 @@ class ReadTestClusterFloatDouble : public ModelCommand ~ReadTestClusterFloatDouble() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000018) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44603,9 +44603,9 @@ class WriteTestClusterFloatDouble : public ModelCommand ~WriteTestClusterFloatDouble() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000018) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44631,9 +44631,9 @@ class ReportTestClusterFloatDouble : public ModelCommand ~ReportTestClusterFloatDouble() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000018) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44670,9 +44670,9 @@ class ReadTestClusterOctetString : public ModelCommand ~ReadTestClusterOctetString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000019) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44698,9 +44698,9 @@ class WriteTestClusterOctetString : public ModelCommand ~WriteTestClusterOctetString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000019) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44726,9 +44726,9 @@ class ReportTestClusterOctetString : public ModelCommand ~ReportTestClusterOctetString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000019) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44765,9 +44765,9 @@ class ReadTestClusterListInt8u : public ModelCommand ~ReadTestClusterListInt8u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000001A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44795,9 +44795,9 @@ class ReportTestClusterListInt8u : public ModelCommand ~ReportTestClusterListInt8u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000001A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44837,9 +44837,9 @@ class ReadTestClusterListOctetString : public ModelCommand ~ReadTestClusterListOctetString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000001B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44867,9 +44867,9 @@ class ReportTestClusterListOctetString : public ModelCommand ~ReportTestClusterListOctetString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000001B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44909,9 +44909,9 @@ class ReadTestClusterListStructOctetString : public ModelCommand ~ReadTestClusterListStructOctetString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000001C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44942,9 +44942,9 @@ class ReportTestClusterListStructOctetString : public ModelCommand ~ReportTestClusterListStructOctetString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000001C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -44987,9 +44987,9 @@ class ReadTestClusterLongOctetString : public ModelCommand ~ReadTestClusterLongOctetString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000001D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45015,9 +45015,9 @@ class WriteTestClusterLongOctetString : public ModelCommand ~WriteTestClusterLongOctetString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x0000001D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45043,9 +45043,9 @@ class ReportTestClusterLongOctetString : public ModelCommand ~ReportTestClusterLongOctetString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000001D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45082,9 +45082,9 @@ class ReadTestClusterCharString : public ModelCommand ~ReadTestClusterCharString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000001E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45110,9 +45110,9 @@ class WriteTestClusterCharString : public ModelCommand ~WriteTestClusterCharString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x0000001E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45138,9 +45138,9 @@ class ReportTestClusterCharString : public ModelCommand ~ReportTestClusterCharString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000001E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45177,9 +45177,9 @@ class ReadTestClusterLongCharString : public ModelCommand ~ReadTestClusterLongCharString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000001F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45205,9 +45205,9 @@ class WriteTestClusterLongCharString : public ModelCommand ~WriteTestClusterLongCharString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x0000001F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45233,9 +45233,9 @@ class ReportTestClusterLongCharString : public ModelCommand ~ReportTestClusterLongCharString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000001F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45272,9 +45272,9 @@ class ReadTestClusterEpochUs : public ModelCommand ~ReadTestClusterEpochUs() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000020) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45300,9 +45300,9 @@ class WriteTestClusterEpochUs : public ModelCommand ~WriteTestClusterEpochUs() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000020) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45328,9 +45328,9 @@ class ReportTestClusterEpochUs : public ModelCommand ~ReportTestClusterEpochUs() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000020) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45367,9 +45367,9 @@ class ReadTestClusterEpochS : public ModelCommand ~ReadTestClusterEpochS() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000021) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45395,9 +45395,9 @@ class WriteTestClusterEpochS : public ModelCommand ~WriteTestClusterEpochS() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000021) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45423,9 +45423,9 @@ class ReportTestClusterEpochS : public ModelCommand ~ReportTestClusterEpochS() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000021) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45462,9 +45462,9 @@ class ReadTestClusterVendorId : public ModelCommand ~ReadTestClusterVendorId() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000022) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45490,9 +45490,9 @@ class WriteTestClusterVendorId : public ModelCommand ~WriteTestClusterVendorId() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000022) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45518,9 +45518,9 @@ class ReportTestClusterVendorId : public ModelCommand ~ReportTestClusterVendorId() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000022) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45557,9 +45557,9 @@ class ReadTestClusterListNullablesAndOptionalsStruct : public ModelCommand ~ReadTestClusterListNullablesAndOptionalsStruct() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000023) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45590,9 +45590,9 @@ class ReportTestClusterListNullablesAndOptionalsStruct : public ModelCommand ~ReportTestClusterListNullablesAndOptionalsStruct() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000023) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45634,9 +45634,9 @@ class ReadTestClusterEnumAttr : public ModelCommand ~ReadTestClusterEnumAttr() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000024) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45662,9 +45662,9 @@ class WriteTestClusterEnumAttr : public ModelCommand ~WriteTestClusterEnumAttr() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000024) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45690,9 +45690,9 @@ class ReportTestClusterEnumAttr : public ModelCommand ~ReportTestClusterEnumAttr() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000024) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45732,9 +45732,9 @@ class ReadTestClusterRangeRestrictedInt8u : public ModelCommand ~ReadTestClusterRangeRestrictedInt8u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000026) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45760,9 +45760,9 @@ class WriteTestClusterRangeRestrictedInt8u : public ModelCommand ~WriteTestClusterRangeRestrictedInt8u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000026) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45788,9 +45788,9 @@ class ReportTestClusterRangeRestrictedInt8u : public ModelCommand ~ReportTestClusterRangeRestrictedInt8u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000026) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45827,9 +45827,9 @@ class ReadTestClusterRangeRestrictedInt8s : public ModelCommand ~ReadTestClusterRangeRestrictedInt8s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000027) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45855,9 +45855,9 @@ class WriteTestClusterRangeRestrictedInt8s : public ModelCommand ~WriteTestClusterRangeRestrictedInt8s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000027) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45883,9 +45883,9 @@ class ReportTestClusterRangeRestrictedInt8s : public ModelCommand ~ReportTestClusterRangeRestrictedInt8s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000027) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45922,9 +45922,9 @@ class ReadTestClusterRangeRestrictedInt16u : public ModelCommand ~ReadTestClusterRangeRestrictedInt16u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000028) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45950,9 +45950,9 @@ class WriteTestClusterRangeRestrictedInt16u : public ModelCommand ~WriteTestClusterRangeRestrictedInt16u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000028) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -45978,9 +45978,9 @@ class ReportTestClusterRangeRestrictedInt16u : public ModelCommand ~ReportTestClusterRangeRestrictedInt16u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000028) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46017,9 +46017,9 @@ class ReadTestClusterRangeRestrictedInt16s : public ModelCommand ~ReadTestClusterRangeRestrictedInt16s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000029) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46045,9 +46045,9 @@ class WriteTestClusterRangeRestrictedInt16s : public ModelCommand ~WriteTestClusterRangeRestrictedInt16s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000029) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46073,9 +46073,9 @@ class ReportTestClusterRangeRestrictedInt16s : public ModelCommand ~ReportTestClusterRangeRestrictedInt16s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000029) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46112,9 +46112,9 @@ class ReadTestClusterListLongOctetString : public ModelCommand ~ReadTestClusterListLongOctetString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000002A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46142,9 +46142,9 @@ class ReportTestClusterListLongOctetString : public ModelCommand ~ReportTestClusterListLongOctetString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000002A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46184,9 +46184,9 @@ class ReadTestClusterTimedWriteBoolean : public ModelCommand ~ReadTestClusterTimedWriteBoolean() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00000030) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46212,9 +46212,9 @@ class WriteTestClusterTimedWriteBoolean : public ModelCommand ~WriteTestClusterTimedWriteBoolean() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00000030) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46240,9 +46240,9 @@ class ReportTestClusterTimedWriteBoolean : public ModelCommand ~ReportTestClusterTimedWriteBoolean() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00000030) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46279,9 +46279,9 @@ class ReadTestClusterUnsupported : public ModelCommand ~ReadTestClusterUnsupported() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x000000FF) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46307,9 +46307,9 @@ class WriteTestClusterUnsupported : public ModelCommand ~WriteTestClusterUnsupported() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x000000FF) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46335,9 +46335,9 @@ class ReportTestClusterUnsupported : public ModelCommand ~ReportTestClusterUnsupported() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x000000FF) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46374,9 +46374,9 @@ class ReadTestClusterNullableBoolean : public ModelCommand ~ReadTestClusterNullableBoolean() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46402,9 +46402,9 @@ class WriteTestClusterNullableBoolean : public ModelCommand ~WriteTestClusterNullableBoolean() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46430,9 +46430,9 @@ class ReportTestClusterNullableBoolean : public ModelCommand ~ReportTestClusterNullableBoolean() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46472,9 +46472,9 @@ class ReadTestClusterNullableBitmap8 : public ModelCommand ~ReadTestClusterNullableBitmap8() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46500,9 +46500,9 @@ class WriteTestClusterNullableBitmap8 : public ModelCommand ~WriteTestClusterNullableBitmap8() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46528,9 +46528,9 @@ class ReportTestClusterNullableBitmap8 : public ModelCommand ~ReportTestClusterNullableBitmap8() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46570,9 +46570,9 @@ class ReadTestClusterNullableBitmap16 : public ModelCommand ~ReadTestClusterNullableBitmap16() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46598,9 +46598,9 @@ class WriteTestClusterNullableBitmap16 : public ModelCommand ~WriteTestClusterNullableBitmap16() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46626,9 +46626,9 @@ class ReportTestClusterNullableBitmap16 : public ModelCommand ~ReportTestClusterNullableBitmap16() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46668,9 +46668,9 @@ class ReadTestClusterNullableBitmap32 : public ModelCommand ~ReadTestClusterNullableBitmap32() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46696,9 +46696,9 @@ class WriteTestClusterNullableBitmap32 : public ModelCommand ~WriteTestClusterNullableBitmap32() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46724,9 +46724,9 @@ class ReportTestClusterNullableBitmap32 : public ModelCommand ~ReportTestClusterNullableBitmap32() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46766,9 +46766,9 @@ class ReadTestClusterNullableBitmap64 : public ModelCommand ~ReadTestClusterNullableBitmap64() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46794,9 +46794,9 @@ class WriteTestClusterNullableBitmap64 : public ModelCommand ~WriteTestClusterNullableBitmap64() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46822,9 +46822,9 @@ class ReportTestClusterNullableBitmap64 : public ModelCommand ~ReportTestClusterNullableBitmap64() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46864,9 +46864,9 @@ class ReadTestClusterNullableInt8u : public ModelCommand ~ReadTestClusterNullableInt8u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46892,9 +46892,9 @@ class WriteTestClusterNullableInt8u : public ModelCommand ~WriteTestClusterNullableInt8u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46920,9 +46920,9 @@ class ReportTestClusterNullableInt8u : public ModelCommand ~ReportTestClusterNullableInt8u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46962,9 +46962,9 @@ class ReadTestClusterNullableInt16u : public ModelCommand ~ReadTestClusterNullableInt16u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -46990,9 +46990,9 @@ class WriteTestClusterNullableInt16u : public ModelCommand ~WriteTestClusterNullableInt16u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47018,9 +47018,9 @@ class ReportTestClusterNullableInt16u : public ModelCommand ~ReportTestClusterNullableInt16u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47060,9 +47060,9 @@ class ReadTestClusterNullableInt24u : public ModelCommand ~ReadTestClusterNullableInt24u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47088,9 +47088,9 @@ class WriteTestClusterNullableInt24u : public ModelCommand ~WriteTestClusterNullableInt24u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47116,9 +47116,9 @@ class ReportTestClusterNullableInt24u : public ModelCommand ~ReportTestClusterNullableInt24u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47158,9 +47158,9 @@ class ReadTestClusterNullableInt32u : public ModelCommand ~ReadTestClusterNullableInt32u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47186,9 +47186,9 @@ class WriteTestClusterNullableInt32u : public ModelCommand ~WriteTestClusterNullableInt32u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47214,9 +47214,9 @@ class ReportTestClusterNullableInt32u : public ModelCommand ~ReportTestClusterNullableInt32u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47256,9 +47256,9 @@ class ReadTestClusterNullableInt40u : public ModelCommand ~ReadTestClusterNullableInt40u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47284,9 +47284,9 @@ class WriteTestClusterNullableInt40u : public ModelCommand ~WriteTestClusterNullableInt40u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47312,9 +47312,9 @@ class ReportTestClusterNullableInt40u : public ModelCommand ~ReportTestClusterNullableInt40u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47354,9 +47354,9 @@ class ReadTestClusterNullableInt48u : public ModelCommand ~ReadTestClusterNullableInt48u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000800A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47382,9 +47382,9 @@ class WriteTestClusterNullableInt48u : public ModelCommand ~WriteTestClusterNullableInt48u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x0000800A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47410,9 +47410,9 @@ class ReportTestClusterNullableInt48u : public ModelCommand ~ReportTestClusterNullableInt48u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000800A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47452,9 +47452,9 @@ class ReadTestClusterNullableInt56u : public ModelCommand ~ReadTestClusterNullableInt56u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000800B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47480,9 +47480,9 @@ class WriteTestClusterNullableInt56u : public ModelCommand ~WriteTestClusterNullableInt56u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x0000800B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47508,9 +47508,9 @@ class ReportTestClusterNullableInt56u : public ModelCommand ~ReportTestClusterNullableInt56u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000800B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47550,9 +47550,9 @@ class ReadTestClusterNullableInt64u : public ModelCommand ~ReadTestClusterNullableInt64u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000800C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47578,9 +47578,9 @@ class WriteTestClusterNullableInt64u : public ModelCommand ~WriteTestClusterNullableInt64u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x0000800C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47606,9 +47606,9 @@ class ReportTestClusterNullableInt64u : public ModelCommand ~ReportTestClusterNullableInt64u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000800C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47648,9 +47648,9 @@ class ReadTestClusterNullableInt8s : public ModelCommand ~ReadTestClusterNullableInt8s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000800D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47676,9 +47676,9 @@ class WriteTestClusterNullableInt8s : public ModelCommand ~WriteTestClusterNullableInt8s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x0000800D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47704,9 +47704,9 @@ class ReportTestClusterNullableInt8s : public ModelCommand ~ReportTestClusterNullableInt8s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000800D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47746,9 +47746,9 @@ class ReadTestClusterNullableInt16s : public ModelCommand ~ReadTestClusterNullableInt16s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000800E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47774,9 +47774,9 @@ class WriteTestClusterNullableInt16s : public ModelCommand ~WriteTestClusterNullableInt16s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x0000800E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47802,9 +47802,9 @@ class ReportTestClusterNullableInt16s : public ModelCommand ~ReportTestClusterNullableInt16s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000800E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47844,9 +47844,9 @@ class ReadTestClusterNullableInt24s : public ModelCommand ~ReadTestClusterNullableInt24s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000800F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47872,9 +47872,9 @@ class WriteTestClusterNullableInt24s : public ModelCommand ~WriteTestClusterNullableInt24s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x0000800F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47900,9 +47900,9 @@ class ReportTestClusterNullableInt24s : public ModelCommand ~ReportTestClusterNullableInt24s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000800F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47942,9 +47942,9 @@ class ReadTestClusterNullableInt32s : public ModelCommand ~ReadTestClusterNullableInt32s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47970,9 +47970,9 @@ class WriteTestClusterNullableInt32s : public ModelCommand ~WriteTestClusterNullableInt32s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -47998,9 +47998,9 @@ class ReportTestClusterNullableInt32s : public ModelCommand ~ReportTestClusterNullableInt32s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48040,9 +48040,9 @@ class ReadTestClusterNullableInt40s : public ModelCommand ~ReadTestClusterNullableInt40s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48068,9 +48068,9 @@ class WriteTestClusterNullableInt40s : public ModelCommand ~WriteTestClusterNullableInt40s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48096,9 +48096,9 @@ class ReportTestClusterNullableInt40s : public ModelCommand ~ReportTestClusterNullableInt40s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48138,9 +48138,9 @@ class ReadTestClusterNullableInt48s : public ModelCommand ~ReadTestClusterNullableInt48s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48166,9 +48166,9 @@ class WriteTestClusterNullableInt48s : public ModelCommand ~WriteTestClusterNullableInt48s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48194,9 +48194,9 @@ class ReportTestClusterNullableInt48s : public ModelCommand ~ReportTestClusterNullableInt48s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48236,9 +48236,9 @@ class ReadTestClusterNullableInt56s : public ModelCommand ~ReadTestClusterNullableInt56s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008013) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48264,9 +48264,9 @@ class WriteTestClusterNullableInt56s : public ModelCommand ~WriteTestClusterNullableInt56s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008013) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48292,9 +48292,9 @@ class ReportTestClusterNullableInt56s : public ModelCommand ~ReportTestClusterNullableInt56s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008013) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48334,9 +48334,9 @@ class ReadTestClusterNullableInt64s : public ModelCommand ~ReadTestClusterNullableInt64s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008014) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48362,9 +48362,9 @@ class WriteTestClusterNullableInt64s : public ModelCommand ~WriteTestClusterNullableInt64s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008014) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48390,9 +48390,9 @@ class ReportTestClusterNullableInt64s : public ModelCommand ~ReportTestClusterNullableInt64s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008014) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48432,9 +48432,9 @@ class ReadTestClusterNullableEnum8 : public ModelCommand ~ReadTestClusterNullableEnum8() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008015) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48460,9 +48460,9 @@ class WriteTestClusterNullableEnum8 : public ModelCommand ~WriteTestClusterNullableEnum8() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008015) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48488,9 +48488,9 @@ class ReportTestClusterNullableEnum8 : public ModelCommand ~ReportTestClusterNullableEnum8() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008015) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48530,9 +48530,9 @@ class ReadTestClusterNullableEnum16 : public ModelCommand ~ReadTestClusterNullableEnum16() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008016) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48558,9 +48558,9 @@ class WriteTestClusterNullableEnum16 : public ModelCommand ~WriteTestClusterNullableEnum16() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008016) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48586,9 +48586,9 @@ class ReportTestClusterNullableEnum16 : public ModelCommand ~ReportTestClusterNullableEnum16() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008016) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48628,9 +48628,9 @@ class ReadTestClusterNullableFloatSingle : public ModelCommand ~ReadTestClusterNullableFloatSingle() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48656,9 +48656,9 @@ class WriteTestClusterNullableFloatSingle : public ModelCommand ~WriteTestClusterNullableFloatSingle() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48684,9 +48684,9 @@ class ReportTestClusterNullableFloatSingle : public ModelCommand ~ReportTestClusterNullableFloatSingle() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48726,9 +48726,9 @@ class ReadTestClusterNullableFloatDouble : public ModelCommand ~ReadTestClusterNullableFloatDouble() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008018) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48754,9 +48754,9 @@ class WriteTestClusterNullableFloatDouble : public ModelCommand ~WriteTestClusterNullableFloatDouble() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008018) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48782,9 +48782,9 @@ class ReportTestClusterNullableFloatDouble : public ModelCommand ~ReportTestClusterNullableFloatDouble() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008018) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48824,9 +48824,9 @@ class ReadTestClusterNullableOctetString : public ModelCommand ~ReadTestClusterNullableOctetString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008019) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48852,9 +48852,9 @@ class WriteTestClusterNullableOctetString : public ModelCommand ~WriteTestClusterNullableOctetString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008019) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48880,9 +48880,9 @@ class ReportTestClusterNullableOctetString : public ModelCommand ~ReportTestClusterNullableOctetString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008019) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48922,9 +48922,9 @@ class ReadTestClusterNullableCharString : public ModelCommand ~ReadTestClusterNullableCharString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000801E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48950,9 +48950,9 @@ class WriteTestClusterNullableCharString : public ModelCommand ~WriteTestClusterNullableCharString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x0000801E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -48978,9 +48978,9 @@ class ReportTestClusterNullableCharString : public ModelCommand ~ReportTestClusterNullableCharString() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000801E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49020,9 +49020,9 @@ class ReadTestClusterNullableEnumAttr : public ModelCommand ~ReadTestClusterNullableEnumAttr() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008024) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49049,9 +49049,9 @@ class WriteTestClusterNullableEnumAttr : public ModelCommand ~WriteTestClusterNullableEnumAttr() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008024) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49077,9 +49077,9 @@ class ReportTestClusterNullableEnumAttr : public ModelCommand ~ReportTestClusterNullableEnumAttr() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008024) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49120,9 +49120,9 @@ class ReadTestClusterNullableRangeRestrictedInt8u : public ModelCommand ~ReadTestClusterNullableRangeRestrictedInt8u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008026) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49148,9 +49148,9 @@ class WriteTestClusterNullableRangeRestrictedInt8u : public ModelCommand ~WriteTestClusterNullableRangeRestrictedInt8u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008026) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49176,9 +49176,9 @@ class ReportTestClusterNullableRangeRestrictedInt8u : public ModelCommand ~ReportTestClusterNullableRangeRestrictedInt8u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008026) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49218,9 +49218,9 @@ class ReadTestClusterNullableRangeRestrictedInt8s : public ModelCommand ~ReadTestClusterNullableRangeRestrictedInt8s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008027) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49246,9 +49246,9 @@ class WriteTestClusterNullableRangeRestrictedInt8s : public ModelCommand ~WriteTestClusterNullableRangeRestrictedInt8s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008027) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49274,9 +49274,9 @@ class ReportTestClusterNullableRangeRestrictedInt8s : public ModelCommand ~ReportTestClusterNullableRangeRestrictedInt8s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008027) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49316,9 +49316,9 @@ class ReadTestClusterNullableRangeRestrictedInt16u : public ModelCommand ~ReadTestClusterNullableRangeRestrictedInt16u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008028) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49344,9 +49344,9 @@ class WriteTestClusterNullableRangeRestrictedInt16u : public ModelCommand ~WriteTestClusterNullableRangeRestrictedInt16u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008028) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49372,9 +49372,9 @@ class ReportTestClusterNullableRangeRestrictedInt16u : public ModelCommand ~ReportTestClusterNullableRangeRestrictedInt16u() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008028) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49414,9 +49414,9 @@ class ReadTestClusterNullableRangeRestrictedInt16s : public ModelCommand ~ReadTestClusterNullableRangeRestrictedInt16s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x00008029) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49442,9 +49442,9 @@ class WriteTestClusterNullableRangeRestrictedInt16s : public ModelCommand ~WriteTestClusterNullableRangeRestrictedInt16s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) WriteAttribute (0x00008029) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49470,9 +49470,9 @@ class ReportTestClusterNullableRangeRestrictedInt16s : public ModelCommand ~ReportTestClusterNullableRangeRestrictedInt16s() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x00008029) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49512,9 +49512,9 @@ class ReadTestClusterAttributeList : public ModelCommand ~ReadTestClusterAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49542,9 +49542,9 @@ class ReportTestClusterAttributeList : public ModelCommand ~ReportTestClusterAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49584,9 +49584,9 @@ class ReadTestClusterClusterRevision : public ModelCommand ~ReadTestClusterClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49614,9 +49614,9 @@ class ReportTestClusterClusterRevision : public ModelCommand ~ReportTestClusterClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x0000050F) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x050F) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::TestClusterCluster cluster; cluster.Associate(device, endpointId); @@ -49682,9 +49682,9 @@ class ThermostatClearWeeklySchedule : public ModelCommand public: ThermostatClearWeeklySchedule() : ModelCommand("clear-weekly-schedule") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) command (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000201) command (0x00000003) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -49702,9 +49702,9 @@ class ThermostatGetRelayStatusLog : public ModelCommand public: ThermostatGetRelayStatusLog() : ModelCommand("get-relay-status-log") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) command (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000201) command (0x00000004) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnThermostatGetRelayStatusLogResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -49730,9 +49730,9 @@ class ThermostatGetWeeklySchedule : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000201) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnThermostatGetWeeklyScheduleResponseSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -49761,9 +49761,9 @@ class ThermostatSetWeeklySchedule : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000201) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -49786,9 +49786,9 @@ class ThermostatSetpointRaiseLower : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000201) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -49812,9 +49812,9 @@ class ReadThermostatLocalTemperature : public ModelCommand ~ReadThermostatLocalTemperature() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -49842,9 +49842,9 @@ class ReportThermostatLocalTemperature : public ModelCommand ~ReportThermostatLocalTemperature() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -49881,9 +49881,9 @@ class ReadThermostatAbsMinHeatSetpointLimit : public ModelCommand ~ReadThermostatAbsMinHeatSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -49911,9 +49911,9 @@ class ReportThermostatAbsMinHeatSetpointLimit : public ModelCommand ~ReportThermostatAbsMinHeatSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -49950,9 +49950,9 @@ class ReadThermostatAbsMaxHeatSetpointLimit : public ModelCommand ~ReadThermostatAbsMaxHeatSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -49980,9 +49980,9 @@ class ReportThermostatAbsMaxHeatSetpointLimit : public ModelCommand ~ReportThermostatAbsMaxHeatSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50019,9 +50019,9 @@ class ReadThermostatAbsMinCoolSetpointLimit : public ModelCommand ~ReadThermostatAbsMinCoolSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50049,9 +50049,9 @@ class ReportThermostatAbsMinCoolSetpointLimit : public ModelCommand ~ReportThermostatAbsMinCoolSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50088,9 +50088,9 @@ class ReadThermostatAbsMaxCoolSetpointLimit : public ModelCommand ~ReadThermostatAbsMaxCoolSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50118,9 +50118,9 @@ class ReportThermostatAbsMaxCoolSetpointLimit : public ModelCommand ~ReportThermostatAbsMaxCoolSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50157,9 +50157,9 @@ class ReadThermostatOccupiedCoolingSetpoint : public ModelCommand ~ReadThermostatOccupiedCoolingSetpoint() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50185,9 +50185,9 @@ class WriteThermostatOccupiedCoolingSetpoint : public ModelCommand ~WriteThermostatOccupiedCoolingSetpoint() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) WriteAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50213,9 +50213,9 @@ class ReportThermostatOccupiedCoolingSetpoint : public ModelCommand ~ReportThermostatOccupiedCoolingSetpoint() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50252,9 +50252,9 @@ class ReadThermostatOccupiedHeatingSetpoint : public ModelCommand ~ReadThermostatOccupiedHeatingSetpoint() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50280,9 +50280,9 @@ class WriteThermostatOccupiedHeatingSetpoint : public ModelCommand ~WriteThermostatOccupiedHeatingSetpoint() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) WriteAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50308,9 +50308,9 @@ class ReportThermostatOccupiedHeatingSetpoint : public ModelCommand ~ReportThermostatOccupiedHeatingSetpoint() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50347,9 +50347,9 @@ class ReadThermostatMinHeatSetpointLimit : public ModelCommand ~ReadThermostatMinHeatSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x00000015) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50375,9 +50375,9 @@ class WriteThermostatMinHeatSetpointLimit : public ModelCommand ~WriteThermostatMinHeatSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) WriteAttribute (0x00000015) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50403,9 +50403,9 @@ class ReportThermostatMinHeatSetpointLimit : public ModelCommand ~ReportThermostatMinHeatSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x00000015) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50442,9 +50442,9 @@ class ReadThermostatMaxHeatSetpointLimit : public ModelCommand ~ReadThermostatMaxHeatSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x00000016) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50470,9 +50470,9 @@ class WriteThermostatMaxHeatSetpointLimit : public ModelCommand ~WriteThermostatMaxHeatSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) WriteAttribute (0x00000016) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50498,9 +50498,9 @@ class ReportThermostatMaxHeatSetpointLimit : public ModelCommand ~ReportThermostatMaxHeatSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x00000016) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50537,9 +50537,9 @@ class ReadThermostatMinCoolSetpointLimit : public ModelCommand ~ReadThermostatMinCoolSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x00000017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50565,9 +50565,9 @@ class WriteThermostatMinCoolSetpointLimit : public ModelCommand ~WriteThermostatMinCoolSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) WriteAttribute (0x00000017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50593,9 +50593,9 @@ class ReportThermostatMinCoolSetpointLimit : public ModelCommand ~ReportThermostatMinCoolSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x00000017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50632,9 +50632,9 @@ class ReadThermostatMaxCoolSetpointLimit : public ModelCommand ~ReadThermostatMaxCoolSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x00000018) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50660,9 +50660,9 @@ class WriteThermostatMaxCoolSetpointLimit : public ModelCommand ~WriteThermostatMaxCoolSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) WriteAttribute (0x00000018) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50688,9 +50688,9 @@ class ReportThermostatMaxCoolSetpointLimit : public ModelCommand ~ReportThermostatMaxCoolSetpointLimit() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x00000018) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50727,9 +50727,9 @@ class ReadThermostatMinSetpointDeadBand : public ModelCommand ~ReadThermostatMinSetpointDeadBand() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x00000019) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50755,9 +50755,9 @@ class WriteThermostatMinSetpointDeadBand : public ModelCommand ~WriteThermostatMinSetpointDeadBand() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) WriteAttribute (0x00000019) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50783,9 +50783,9 @@ class ReportThermostatMinSetpointDeadBand : public ModelCommand ~ReportThermostatMinSetpointDeadBand() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x00000019) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50822,9 +50822,9 @@ class ReadThermostatControlSequenceOfOperation : public ModelCommand ~ReadThermostatControlSequenceOfOperation() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x0000001B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50850,9 +50850,9 @@ class WriteThermostatControlSequenceOfOperation : public ModelCommand ~WriteThermostatControlSequenceOfOperation() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) WriteAttribute (0x0000001B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50878,9 +50878,9 @@ class ReportThermostatControlSequenceOfOperation : public ModelCommand ~ReportThermostatControlSequenceOfOperation() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x0000001B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50917,9 +50917,9 @@ class ReadThermostatSystemMode : public ModelCommand ~ReadThermostatSystemMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x0000001C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50945,9 +50945,9 @@ class WriteThermostatSystemMode : public ModelCommand ~WriteThermostatSystemMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) WriteAttribute (0x0000001C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -50973,9 +50973,9 @@ class ReportThermostatSystemMode : public ModelCommand ~ReportThermostatSystemMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x0000001C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -51012,9 +51012,9 @@ class ReadThermostatStartOfWeek : public ModelCommand ~ReadThermostatStartOfWeek() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x00000020) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -51042,9 +51042,9 @@ class ReportThermostatStartOfWeek : public ModelCommand ~ReportThermostatStartOfWeek() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x00000020) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -51081,9 +51081,9 @@ class ReadThermostatNumberOfWeeklyTransitions : public ModelCommand ~ReadThermostatNumberOfWeeklyTransitions() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x00000021) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -51111,9 +51111,9 @@ class ReportThermostatNumberOfWeeklyTransitions : public ModelCommand ~ReportThermostatNumberOfWeeklyTransitions() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x00000021) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -51150,9 +51150,9 @@ class ReadThermostatNumberOfDailyTransitions : public ModelCommand ~ReadThermostatNumberOfDailyTransitions() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x00000022) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -51180,9 +51180,9 @@ class ReportThermostatNumberOfDailyTransitions : public ModelCommand ~ReportThermostatNumberOfDailyTransitions() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x00000022) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -51219,9 +51219,9 @@ class ReadThermostatAttributeList : public ModelCommand ~ReadThermostatAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -51249,9 +51249,9 @@ class ReportThermostatAttributeList : public ModelCommand ~ReportThermostatAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -51291,9 +51291,9 @@ class ReadThermostatFeatureMap : public ModelCommand ~ReadThermostatFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -51321,9 +51321,9 @@ class ReportThermostatFeatureMap : public ModelCommand ~ReportThermostatFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -51360,9 +51360,9 @@ class ReadThermostatClusterRevision : public ModelCommand ~ReadThermostatClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -51390,9 +51390,9 @@ class ReportThermostatClusterRevision : public ModelCommand ~ReportThermostatClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000201) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0201) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatCluster cluster; cluster.Associate(device, endpointId); @@ -51444,9 +51444,9 @@ class ReadThermostatUserInterfaceConfigurationTemperatureDisplayMode : public Mo ~ReadThermostatUserInterfaceConfigurationTemperatureDisplayMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000204) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0204) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatUserInterfaceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -51473,9 +51473,9 @@ class WriteThermostatUserInterfaceConfigurationTemperatureDisplayMode : public M ~WriteThermostatUserInterfaceConfigurationTemperatureDisplayMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000204) WriteAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0204) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatUserInterfaceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -51502,9 +51502,9 @@ class ReportThermostatUserInterfaceConfigurationTemperatureDisplayMode : public ~ReportThermostatUserInterfaceConfigurationTemperatureDisplayMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000204) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0204) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatUserInterfaceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -51545,9 +51545,9 @@ class ReadThermostatUserInterfaceConfigurationKeypadLockout : public ModelComman ~ReadThermostatUserInterfaceConfigurationKeypadLockout() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000204) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0204) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatUserInterfaceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -51574,9 +51574,9 @@ class WriteThermostatUserInterfaceConfigurationKeypadLockout : public ModelComma ~WriteThermostatUserInterfaceConfigurationKeypadLockout() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000204) WriteAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0204) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatUserInterfaceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -51603,9 +51603,9 @@ class ReportThermostatUserInterfaceConfigurationKeypadLockout : public ModelComm ~ReportThermostatUserInterfaceConfigurationKeypadLockout() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000204) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0204) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatUserInterfaceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -51646,9 +51646,9 @@ class ReadThermostatUserInterfaceConfigurationScheduleProgrammingVisibility : pu ~ReadThermostatUserInterfaceConfigurationScheduleProgrammingVisibility() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000204) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0204) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatUserInterfaceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -51676,9 +51676,9 @@ class WriteThermostatUserInterfaceConfigurationScheduleProgrammingVisibility : p ~WriteThermostatUserInterfaceConfigurationScheduleProgrammingVisibility() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000204) WriteAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0204) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatUserInterfaceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -51705,9 +51705,9 @@ class ReportThermostatUserInterfaceConfigurationScheduleProgrammingVisibility : ~ReportThermostatUserInterfaceConfigurationScheduleProgrammingVisibility() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000204) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0204) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatUserInterfaceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -51748,9 +51748,9 @@ class ReadThermostatUserInterfaceConfigurationAttributeList : public ModelComman ~ReadThermostatUserInterfaceConfigurationAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000204) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0204) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatUserInterfaceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -51779,9 +51779,9 @@ class ReportThermostatUserInterfaceConfigurationAttributeList : public ModelComm ~ReportThermostatUserInterfaceConfigurationAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000204) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0204) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatUserInterfaceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -51822,9 +51822,9 @@ class ReadThermostatUserInterfaceConfigurationClusterRevision : public ModelComm ~ReadThermostatUserInterfaceConfigurationClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000204) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0204) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatUserInterfaceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -51853,9 +51853,9 @@ class ReportThermostatUserInterfaceConfigurationClusterRevision : public ModelCo ~ReportThermostatUserInterfaceConfigurationClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000204) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0204) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThermostatUserInterfaceConfigurationCluster cluster; cluster.Associate(device, endpointId); @@ -51968,9 +51968,9 @@ class ThreadNetworkDiagnosticsResetCounts : public ModelCommand public: ThreadNetworkDiagnosticsResetCounts() : ModelCommand("reset-counts") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000035) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -51994,9 +51994,9 @@ class ReadThreadNetworkDiagnosticsConnectionStatus : public ModelCommand ~ReadThreadNetworkDiagnosticsConnectionStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52025,9 +52025,9 @@ class ReportThreadNetworkDiagnosticsConnectionStatus : public ModelCommand ~ReportThreadNetworkDiagnosticsConnectionStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52068,9 +52068,9 @@ class ReadThreadNetworkDiagnosticsChannel : public ModelCommand ~ReadThreadNetworkDiagnosticsChannel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52098,9 +52098,9 @@ class ReportThreadNetworkDiagnosticsChannel : public ModelCommand ~ReportThreadNetworkDiagnosticsChannel() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52137,9 +52137,9 @@ class ReadThreadNetworkDiagnosticsRoutingRole : public ModelCommand ~ReadThreadNetworkDiagnosticsRoutingRole() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52167,9 +52167,9 @@ class ReportThreadNetworkDiagnosticsRoutingRole : public ModelCommand ~ReportThreadNetworkDiagnosticsRoutingRole() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52206,9 +52206,9 @@ class ReadThreadNetworkDiagnosticsNetworkName : public ModelCommand ~ReadThreadNetworkDiagnosticsNetworkName() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52236,9 +52236,9 @@ class ReportThreadNetworkDiagnosticsNetworkName : public ModelCommand ~ReportThreadNetworkDiagnosticsNetworkName() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52278,9 +52278,9 @@ class ReadThreadNetworkDiagnosticsPanId : public ModelCommand ~ReadThreadNetworkDiagnosticsPanId() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52308,9 +52308,9 @@ class ReportThreadNetworkDiagnosticsPanId : public ModelCommand ~ReportThreadNetworkDiagnosticsPanId() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52347,9 +52347,9 @@ class ReadThreadNetworkDiagnosticsExtendedPanId : public ModelCommand ~ReadThreadNetworkDiagnosticsExtendedPanId() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52377,9 +52377,9 @@ class ReportThreadNetworkDiagnosticsExtendedPanId : public ModelCommand ~ReportThreadNetworkDiagnosticsExtendedPanId() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52419,9 +52419,9 @@ class ReadThreadNetworkDiagnosticsMeshLocalPrefix : public ModelCommand ~ReadThreadNetworkDiagnosticsMeshLocalPrefix() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52449,9 +52449,9 @@ class ReportThreadNetworkDiagnosticsMeshLocalPrefix : public ModelCommand ~ReportThreadNetworkDiagnosticsMeshLocalPrefix() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52491,9 +52491,9 @@ class ReadThreadNetworkDiagnosticsOverrunCount : public ModelCommand ~ReadThreadNetworkDiagnosticsOverrunCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52521,9 +52521,9 @@ class ReportThreadNetworkDiagnosticsOverrunCount : public ModelCommand ~ReportThreadNetworkDiagnosticsOverrunCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52563,9 +52563,9 @@ class ReadThreadNetworkDiagnosticsNeighborTableList : public ModelCommand ~ReadThreadNetworkDiagnosticsNeighborTableList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52596,9 +52596,9 @@ class ReportThreadNetworkDiagnosticsNeighborTableList : public ModelCommand ~ReportThreadNetworkDiagnosticsNeighborTableList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52640,9 +52640,9 @@ class ReadThreadNetworkDiagnosticsRouteTableList : public ModelCommand ~ReadThreadNetworkDiagnosticsRouteTableList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52672,9 +52672,9 @@ class ReportThreadNetworkDiagnosticsRouteTableList : public ModelCommand ~ReportThreadNetworkDiagnosticsRouteTableList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52716,9 +52716,9 @@ class ReadThreadNetworkDiagnosticsPartitionId : public ModelCommand ~ReadThreadNetworkDiagnosticsPartitionId() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52746,9 +52746,9 @@ class ReportThreadNetworkDiagnosticsPartitionId : public ModelCommand ~ReportThreadNetworkDiagnosticsPartitionId() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52785,9 +52785,9 @@ class ReadThreadNetworkDiagnosticsWeighting : public ModelCommand ~ReadThreadNetworkDiagnosticsWeighting() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52815,9 +52815,9 @@ class ReportThreadNetworkDiagnosticsWeighting : public ModelCommand ~ReportThreadNetworkDiagnosticsWeighting() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52854,9 +52854,9 @@ class ReadThreadNetworkDiagnosticsDataVersion : public ModelCommand ~ReadThreadNetworkDiagnosticsDataVersion() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52884,9 +52884,9 @@ class ReportThreadNetworkDiagnosticsDataVersion : public ModelCommand ~ReportThreadNetworkDiagnosticsDataVersion() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52923,9 +52923,9 @@ class ReadThreadNetworkDiagnosticsStableDataVersion : public ModelCommand ~ReadThreadNetworkDiagnosticsStableDataVersion() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52953,9 +52953,9 @@ class ReportThreadNetworkDiagnosticsStableDataVersion : public ModelCommand ~ReportThreadNetworkDiagnosticsStableDataVersion() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -52995,9 +52995,9 @@ class ReadThreadNetworkDiagnosticsLeaderRouterId : public ModelCommand ~ReadThreadNetworkDiagnosticsLeaderRouterId() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000000D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53025,9 +53025,9 @@ class ReportThreadNetworkDiagnosticsLeaderRouterId : public ModelCommand ~ReportThreadNetworkDiagnosticsLeaderRouterId() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000000D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53067,9 +53067,9 @@ class ReadThreadNetworkDiagnosticsDetachedRoleCount : public ModelCommand ~ReadThreadNetworkDiagnosticsDetachedRoleCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000000E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53097,9 +53097,9 @@ class ReportThreadNetworkDiagnosticsDetachedRoleCount : public ModelCommand ~ReportThreadNetworkDiagnosticsDetachedRoleCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000000E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53139,9 +53139,9 @@ class ReadThreadNetworkDiagnosticsChildRoleCount : public ModelCommand ~ReadThreadNetworkDiagnosticsChildRoleCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000000F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53169,9 +53169,9 @@ class ReportThreadNetworkDiagnosticsChildRoleCount : public ModelCommand ~ReportThreadNetworkDiagnosticsChildRoleCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000000F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53211,9 +53211,9 @@ class ReadThreadNetworkDiagnosticsRouterRoleCount : public ModelCommand ~ReadThreadNetworkDiagnosticsRouterRoleCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53241,9 +53241,9 @@ class ReportThreadNetworkDiagnosticsRouterRoleCount : public ModelCommand ~ReportThreadNetworkDiagnosticsRouterRoleCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53283,9 +53283,9 @@ class ReadThreadNetworkDiagnosticsLeaderRoleCount : public ModelCommand ~ReadThreadNetworkDiagnosticsLeaderRoleCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53313,9 +53313,9 @@ class ReportThreadNetworkDiagnosticsLeaderRoleCount : public ModelCommand ~ReportThreadNetworkDiagnosticsLeaderRoleCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53355,9 +53355,9 @@ class ReadThreadNetworkDiagnosticsAttachAttemptCount : public ModelCommand ~ReadThreadNetworkDiagnosticsAttachAttemptCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53385,9 +53385,9 @@ class ReportThreadNetworkDiagnosticsAttachAttemptCount : public ModelCommand ~ReportThreadNetworkDiagnosticsAttachAttemptCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53427,9 +53427,9 @@ class ReadThreadNetworkDiagnosticsPartitionIdChangeCount : public ModelCommand ~ReadThreadNetworkDiagnosticsPartitionIdChangeCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000013) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53457,9 +53457,9 @@ class ReportThreadNetworkDiagnosticsPartitionIdChangeCount : public ModelCommand ~ReportThreadNetworkDiagnosticsPartitionIdChangeCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000013) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53500,9 +53500,9 @@ class ReadThreadNetworkDiagnosticsBetterPartitionAttachAttemptCount : public Mod ~ReadThreadNetworkDiagnosticsBetterPartitionAttachAttemptCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000014) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53531,9 +53531,9 @@ class ReportThreadNetworkDiagnosticsBetterPartitionAttachAttemptCount : public M ~ReportThreadNetworkDiagnosticsBetterPartitionAttachAttemptCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000014) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53574,9 +53574,9 @@ class ReadThreadNetworkDiagnosticsParentChangeCount : public ModelCommand ~ReadThreadNetworkDiagnosticsParentChangeCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000015) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53604,9 +53604,9 @@ class ReportThreadNetworkDiagnosticsParentChangeCount : public ModelCommand ~ReportThreadNetworkDiagnosticsParentChangeCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000015) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53646,9 +53646,9 @@ class ReadThreadNetworkDiagnosticsTxTotalCount : public ModelCommand ~ReadThreadNetworkDiagnosticsTxTotalCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000016) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53676,9 +53676,9 @@ class ReportThreadNetworkDiagnosticsTxTotalCount : public ModelCommand ~ReportThreadNetworkDiagnosticsTxTotalCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000016) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53718,9 +53718,9 @@ class ReadThreadNetworkDiagnosticsTxUnicastCount : public ModelCommand ~ReadThreadNetworkDiagnosticsTxUnicastCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53748,9 +53748,9 @@ class ReportThreadNetworkDiagnosticsTxUnicastCount : public ModelCommand ~ReportThreadNetworkDiagnosticsTxUnicastCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53790,9 +53790,9 @@ class ReadThreadNetworkDiagnosticsTxBroadcastCount : public ModelCommand ~ReadThreadNetworkDiagnosticsTxBroadcastCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000018) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53820,9 +53820,9 @@ class ReportThreadNetworkDiagnosticsTxBroadcastCount : public ModelCommand ~ReportThreadNetworkDiagnosticsTxBroadcastCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000018) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53862,9 +53862,9 @@ class ReadThreadNetworkDiagnosticsTxAckRequestedCount : public ModelCommand ~ReadThreadNetworkDiagnosticsTxAckRequestedCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000019) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53892,9 +53892,9 @@ class ReportThreadNetworkDiagnosticsTxAckRequestedCount : public ModelCommand ~ReportThreadNetworkDiagnosticsTxAckRequestedCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000019) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53934,9 +53934,9 @@ class ReadThreadNetworkDiagnosticsTxAckedCount : public ModelCommand ~ReadThreadNetworkDiagnosticsTxAckedCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000001A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -53964,9 +53964,9 @@ class ReportThreadNetworkDiagnosticsTxAckedCount : public ModelCommand ~ReportThreadNetworkDiagnosticsTxAckedCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000001A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54006,9 +54006,9 @@ class ReadThreadNetworkDiagnosticsTxNoAckRequestedCount : public ModelCommand ~ReadThreadNetworkDiagnosticsTxNoAckRequestedCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000001B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54036,9 +54036,9 @@ class ReportThreadNetworkDiagnosticsTxNoAckRequestedCount : public ModelCommand ~ReportThreadNetworkDiagnosticsTxNoAckRequestedCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000001B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54079,9 +54079,9 @@ class ReadThreadNetworkDiagnosticsTxDataCount : public ModelCommand ~ReadThreadNetworkDiagnosticsTxDataCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000001C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54109,9 +54109,9 @@ class ReportThreadNetworkDiagnosticsTxDataCount : public ModelCommand ~ReportThreadNetworkDiagnosticsTxDataCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000001C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54148,9 +54148,9 @@ class ReadThreadNetworkDiagnosticsTxDataPollCount : public ModelCommand ~ReadThreadNetworkDiagnosticsTxDataPollCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000001D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54178,9 +54178,9 @@ class ReportThreadNetworkDiagnosticsTxDataPollCount : public ModelCommand ~ReportThreadNetworkDiagnosticsTxDataPollCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000001D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54220,9 +54220,9 @@ class ReadThreadNetworkDiagnosticsTxBeaconCount : public ModelCommand ~ReadThreadNetworkDiagnosticsTxBeaconCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000001E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54250,9 +54250,9 @@ class ReportThreadNetworkDiagnosticsTxBeaconCount : public ModelCommand ~ReportThreadNetworkDiagnosticsTxBeaconCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000001E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54292,9 +54292,9 @@ class ReadThreadNetworkDiagnosticsTxBeaconRequestCount : public ModelCommand ~ReadThreadNetworkDiagnosticsTxBeaconRequestCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000001F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54322,9 +54322,9 @@ class ReportThreadNetworkDiagnosticsTxBeaconRequestCount : public ModelCommand ~ReportThreadNetworkDiagnosticsTxBeaconRequestCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000001F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54365,9 +54365,9 @@ class ReadThreadNetworkDiagnosticsTxOtherCount : public ModelCommand ~ReadThreadNetworkDiagnosticsTxOtherCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000020) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54395,9 +54395,9 @@ class ReportThreadNetworkDiagnosticsTxOtherCount : public ModelCommand ~ReportThreadNetworkDiagnosticsTxOtherCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000020) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54437,9 +54437,9 @@ class ReadThreadNetworkDiagnosticsTxRetryCount : public ModelCommand ~ReadThreadNetworkDiagnosticsTxRetryCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000021) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54467,9 +54467,9 @@ class ReportThreadNetworkDiagnosticsTxRetryCount : public ModelCommand ~ReportThreadNetworkDiagnosticsTxRetryCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000021) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54509,9 +54509,9 @@ class ReadThreadNetworkDiagnosticsTxDirectMaxRetryExpiryCount : public ModelComm ~ReadThreadNetworkDiagnosticsTxDirectMaxRetryExpiryCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000022) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54540,9 +54540,9 @@ class ReportThreadNetworkDiagnosticsTxDirectMaxRetryExpiryCount : public ModelCo ~ReportThreadNetworkDiagnosticsTxDirectMaxRetryExpiryCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000022) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54583,9 +54583,9 @@ class ReadThreadNetworkDiagnosticsTxIndirectMaxRetryExpiryCount : public ModelCo ~ReadThreadNetworkDiagnosticsTxIndirectMaxRetryExpiryCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000023) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54614,9 +54614,9 @@ class ReportThreadNetworkDiagnosticsTxIndirectMaxRetryExpiryCount : public Model ~ReportThreadNetworkDiagnosticsTxIndirectMaxRetryExpiryCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000023) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54657,9 +54657,9 @@ class ReadThreadNetworkDiagnosticsTxErrCcaCount : public ModelCommand ~ReadThreadNetworkDiagnosticsTxErrCcaCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000024) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54687,9 +54687,9 @@ class ReportThreadNetworkDiagnosticsTxErrCcaCount : public ModelCommand ~ReportThreadNetworkDiagnosticsTxErrCcaCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000024) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54729,9 +54729,9 @@ class ReadThreadNetworkDiagnosticsTxErrAbortCount : public ModelCommand ~ReadThreadNetworkDiagnosticsTxErrAbortCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000025) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54759,9 +54759,9 @@ class ReportThreadNetworkDiagnosticsTxErrAbortCount : public ModelCommand ~ReportThreadNetworkDiagnosticsTxErrAbortCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000025) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54801,9 +54801,9 @@ class ReadThreadNetworkDiagnosticsTxErrBusyChannelCount : public ModelCommand ~ReadThreadNetworkDiagnosticsTxErrBusyChannelCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000026) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54831,9 +54831,9 @@ class ReportThreadNetworkDiagnosticsTxErrBusyChannelCount : public ModelCommand ~ReportThreadNetworkDiagnosticsTxErrBusyChannelCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000026) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54874,9 +54874,9 @@ class ReadThreadNetworkDiagnosticsRxTotalCount : public ModelCommand ~ReadThreadNetworkDiagnosticsRxTotalCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000027) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54904,9 +54904,9 @@ class ReportThreadNetworkDiagnosticsRxTotalCount : public ModelCommand ~ReportThreadNetworkDiagnosticsRxTotalCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000027) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54946,9 +54946,9 @@ class ReadThreadNetworkDiagnosticsRxUnicastCount : public ModelCommand ~ReadThreadNetworkDiagnosticsRxUnicastCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000028) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -54976,9 +54976,9 @@ class ReportThreadNetworkDiagnosticsRxUnicastCount : public ModelCommand ~ReportThreadNetworkDiagnosticsRxUnicastCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000028) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55018,9 +55018,9 @@ class ReadThreadNetworkDiagnosticsRxBroadcastCount : public ModelCommand ~ReadThreadNetworkDiagnosticsRxBroadcastCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000029) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55048,9 +55048,9 @@ class ReportThreadNetworkDiagnosticsRxBroadcastCount : public ModelCommand ~ReportThreadNetworkDiagnosticsRxBroadcastCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000029) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55090,9 +55090,9 @@ class ReadThreadNetworkDiagnosticsRxDataCount : public ModelCommand ~ReadThreadNetworkDiagnosticsRxDataCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000002A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55120,9 +55120,9 @@ class ReportThreadNetworkDiagnosticsRxDataCount : public ModelCommand ~ReportThreadNetworkDiagnosticsRxDataCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000002A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55159,9 +55159,9 @@ class ReadThreadNetworkDiagnosticsRxDataPollCount : public ModelCommand ~ReadThreadNetworkDiagnosticsRxDataPollCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000002B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55189,9 +55189,9 @@ class ReportThreadNetworkDiagnosticsRxDataPollCount : public ModelCommand ~ReportThreadNetworkDiagnosticsRxDataPollCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000002B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55231,9 +55231,9 @@ class ReadThreadNetworkDiagnosticsRxBeaconCount : public ModelCommand ~ReadThreadNetworkDiagnosticsRxBeaconCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000002C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55261,9 +55261,9 @@ class ReportThreadNetworkDiagnosticsRxBeaconCount : public ModelCommand ~ReportThreadNetworkDiagnosticsRxBeaconCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000002C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55303,9 +55303,9 @@ class ReadThreadNetworkDiagnosticsRxBeaconRequestCount : public ModelCommand ~ReadThreadNetworkDiagnosticsRxBeaconRequestCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000002D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55333,9 +55333,9 @@ class ReportThreadNetworkDiagnosticsRxBeaconRequestCount : public ModelCommand ~ReportThreadNetworkDiagnosticsRxBeaconRequestCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000002D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55376,9 +55376,9 @@ class ReadThreadNetworkDiagnosticsRxOtherCount : public ModelCommand ~ReadThreadNetworkDiagnosticsRxOtherCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000002E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55406,9 +55406,9 @@ class ReportThreadNetworkDiagnosticsRxOtherCount : public ModelCommand ~ReportThreadNetworkDiagnosticsRxOtherCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000002E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55448,9 +55448,9 @@ class ReadThreadNetworkDiagnosticsRxAddressFilteredCount : public ModelCommand ~ReadThreadNetworkDiagnosticsRxAddressFilteredCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000002F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55478,9 +55478,9 @@ class ReportThreadNetworkDiagnosticsRxAddressFilteredCount : public ModelCommand ~ReportThreadNetworkDiagnosticsRxAddressFilteredCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000002F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55521,9 +55521,9 @@ class ReadThreadNetworkDiagnosticsRxDestAddrFilteredCount : public ModelCommand ~ReadThreadNetworkDiagnosticsRxDestAddrFilteredCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000030) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55551,9 +55551,9 @@ class ReportThreadNetworkDiagnosticsRxDestAddrFilteredCount : public ModelComman ~ReportThreadNetworkDiagnosticsRxDestAddrFilteredCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000030) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55594,9 +55594,9 @@ class ReadThreadNetworkDiagnosticsRxDuplicatedCount : public ModelCommand ~ReadThreadNetworkDiagnosticsRxDuplicatedCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000031) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55624,9 +55624,9 @@ class ReportThreadNetworkDiagnosticsRxDuplicatedCount : public ModelCommand ~ReportThreadNetworkDiagnosticsRxDuplicatedCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000031) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55666,9 +55666,9 @@ class ReadThreadNetworkDiagnosticsRxErrNoFrameCount : public ModelCommand ~ReadThreadNetworkDiagnosticsRxErrNoFrameCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000032) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55696,9 +55696,9 @@ class ReportThreadNetworkDiagnosticsRxErrNoFrameCount : public ModelCommand ~ReportThreadNetworkDiagnosticsRxErrNoFrameCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000032) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55738,9 +55738,9 @@ class ReadThreadNetworkDiagnosticsRxErrUnknownNeighborCount : public ModelComman ~ReadThreadNetworkDiagnosticsRxErrUnknownNeighborCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000033) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55769,9 +55769,9 @@ class ReportThreadNetworkDiagnosticsRxErrUnknownNeighborCount : public ModelComm ~ReportThreadNetworkDiagnosticsRxErrUnknownNeighborCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000033) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55812,9 +55812,9 @@ class ReadThreadNetworkDiagnosticsRxErrInvalidSrcAddrCount : public ModelCommand ~ReadThreadNetworkDiagnosticsRxErrInvalidSrcAddrCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000034) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55842,9 +55842,9 @@ class ReportThreadNetworkDiagnosticsRxErrInvalidSrcAddrCount : public ModelComma ~ReportThreadNetworkDiagnosticsRxErrInvalidSrcAddrCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000034) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55885,9 +55885,9 @@ class ReadThreadNetworkDiagnosticsRxErrSecCount : public ModelCommand ~ReadThreadNetworkDiagnosticsRxErrSecCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000035) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55915,9 +55915,9 @@ class ReportThreadNetworkDiagnosticsRxErrSecCount : public ModelCommand ~ReportThreadNetworkDiagnosticsRxErrSecCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000035) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55957,9 +55957,9 @@ class ReadThreadNetworkDiagnosticsRxErrFcsCount : public ModelCommand ~ReadThreadNetworkDiagnosticsRxErrFcsCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000036) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -55987,9 +55987,9 @@ class ReportThreadNetworkDiagnosticsRxErrFcsCount : public ModelCommand ~ReportThreadNetworkDiagnosticsRxErrFcsCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000036) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56029,9 +56029,9 @@ class ReadThreadNetworkDiagnosticsRxErrOtherCount : public ModelCommand ~ReadThreadNetworkDiagnosticsRxErrOtherCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000037) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56059,9 +56059,9 @@ class ReportThreadNetworkDiagnosticsRxErrOtherCount : public ModelCommand ~ReportThreadNetworkDiagnosticsRxErrOtherCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000037) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56101,9 +56101,9 @@ class ReadThreadNetworkDiagnosticsActiveTimestamp : public ModelCommand ~ReadThreadNetworkDiagnosticsActiveTimestamp() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000038) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56131,9 +56131,9 @@ class ReportThreadNetworkDiagnosticsActiveTimestamp : public ModelCommand ~ReportThreadNetworkDiagnosticsActiveTimestamp() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000038) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56173,9 +56173,9 @@ class ReadThreadNetworkDiagnosticsPendingTimestamp : public ModelCommand ~ReadThreadNetworkDiagnosticsPendingTimestamp() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x00000039) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56203,9 +56203,9 @@ class ReportThreadNetworkDiagnosticsPendingTimestamp : public ModelCommand ~ReportThreadNetworkDiagnosticsPendingTimestamp() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x00000039) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56245,9 +56245,9 @@ class ReadThreadNetworkDiagnosticsDelay : public ModelCommand ~ReadThreadNetworkDiagnosticsDelay() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000003A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56275,9 +56275,9 @@ class ReportThreadNetworkDiagnosticsDelay : public ModelCommand ~ReportThreadNetworkDiagnosticsDelay() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000003A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56314,9 +56314,9 @@ class ReadThreadNetworkDiagnosticsSecurityPolicy : public ModelCommand ~ReadThreadNetworkDiagnosticsSecurityPolicy() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000003B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56347,9 +56347,9 @@ class ReportThreadNetworkDiagnosticsSecurityPolicy : public ModelCommand ~ReportThreadNetworkDiagnosticsSecurityPolicy() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000003B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56391,9 +56391,9 @@ class ReadThreadNetworkDiagnosticsChannelMask : public ModelCommand ~ReadThreadNetworkDiagnosticsChannelMask() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000003C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56421,9 +56421,9 @@ class ReportThreadNetworkDiagnosticsChannelMask : public ModelCommand ~ReportThreadNetworkDiagnosticsChannelMask() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000003C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56463,9 +56463,9 @@ class ReadThreadNetworkDiagnosticsOperationalDatasetComponents : public ModelCom ~ReadThreadNetworkDiagnosticsOperationalDatasetComponents() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000003D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56497,9 +56497,9 @@ class ReportThreadNetworkDiagnosticsOperationalDatasetComponents : public ModelC ~ReportThreadNetworkDiagnosticsOperationalDatasetComponents() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000003D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56543,9 +56543,9 @@ class ReadThreadNetworkDiagnosticsActiveNetworkFaultsList : public ModelCommand ~ReadThreadNetworkDiagnosticsActiveNetworkFaultsList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000003E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56575,9 +56575,9 @@ class ReportThreadNetworkDiagnosticsActiveNetworkFaultsList : public ModelComman ~ReportThreadNetworkDiagnosticsActiveNetworkFaultsList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000003E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56620,9 +56620,9 @@ class ReadThreadNetworkDiagnosticsAttributeList : public ModelCommand ~ReadThreadNetworkDiagnosticsAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56650,9 +56650,9 @@ class ReportThreadNetworkDiagnosticsAttributeList : public ModelCommand ~ReportThreadNetworkDiagnosticsAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56692,9 +56692,9 @@ class ReadThreadNetworkDiagnosticsFeatureMap : public ModelCommand ~ReadThreadNetworkDiagnosticsFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56722,9 +56722,9 @@ class ReportThreadNetworkDiagnosticsFeatureMap : public ModelCommand ~ReportThreadNetworkDiagnosticsFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56761,9 +56761,9 @@ class ReadThreadNetworkDiagnosticsClusterRevision : public ModelCommand ~ReadThreadNetworkDiagnosticsClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -56791,9 +56791,9 @@ class ReportThreadNetworkDiagnosticsClusterRevision : public ModelCommand ~ReportThreadNetworkDiagnosticsClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000035) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0035) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::ThreadNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -57204,9 +57204,9 @@ class ReadUserLabelLabelList : public ModelCommand ~ReadUserLabelLabelList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000041) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0041) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::UserLabelCluster cluster; cluster.Associate(device, endpointId); @@ -57236,9 +57236,9 @@ class ReportUserLabelLabelList : public ModelCommand ~ReportUserLabelLabelList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000041) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0041) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::UserLabelCluster cluster; cluster.Associate(device, endpointId); @@ -57280,9 +57280,9 @@ class ReadUserLabelClusterRevision : public ModelCommand ~ReadUserLabelClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000041) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0041) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::UserLabelCluster cluster; cluster.Associate(device, endpointId); @@ -57310,9 +57310,9 @@ class ReportUserLabelClusterRevision : public ModelCommand ~ReportUserLabelClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000041) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0041) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::UserLabelCluster cluster; cluster.Associate(device, endpointId); @@ -57362,9 +57362,9 @@ class ReadWakeOnLanWakeOnLanMacAddress : public ModelCommand ~ReadWakeOnLanWakeOnLanMacAddress() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000503) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0503) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WakeOnLanCluster cluster; cluster.Associate(device, endpointId); @@ -57392,9 +57392,9 @@ class ReportWakeOnLanWakeOnLanMacAddress : public ModelCommand ~ReportWakeOnLanWakeOnLanMacAddress() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000503) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0503) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WakeOnLanCluster cluster; cluster.Associate(device, endpointId); @@ -57431,9 +57431,9 @@ class ReadWakeOnLanAttributeList : public ModelCommand ~ReadWakeOnLanAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000503) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0503) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WakeOnLanCluster cluster; cluster.Associate(device, endpointId); @@ -57461,9 +57461,9 @@ class ReportWakeOnLanAttributeList : public ModelCommand ~ReportWakeOnLanAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000503) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0503) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WakeOnLanCluster cluster; cluster.Associate(device, endpointId); @@ -57503,9 +57503,9 @@ class ReadWakeOnLanClusterRevision : public ModelCommand ~ReadWakeOnLanClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000503) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0503) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WakeOnLanCluster cluster; cluster.Associate(device, endpointId); @@ -57533,9 +57533,9 @@ class ReportWakeOnLanClusterRevision : public ModelCommand ~ReportWakeOnLanClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000503) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0503) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WakeOnLanCluster cluster; cluster.Associate(device, endpointId); @@ -57596,9 +57596,9 @@ class WiFiNetworkDiagnosticsResetCounts : public ModelCommand public: WiFiNetworkDiagnosticsResetCounts() : ModelCommand("reset-counts") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000036) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -57622,9 +57622,9 @@ class ReadWiFiNetworkDiagnosticsDisconnection : public ModelCommand ~ReadWiFiNetworkDiagnosticsDisconnection() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -57653,9 +57653,9 @@ class ReportWiFiNetworkDiagnosticsDisconnection : public ModelCommand ~ReportWiFiNetworkDiagnosticsDisconnection() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportEvent (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -57695,9 +57695,9 @@ class ReadWiFiNetworkDiagnosticsAssociationFailure : public ModelCommand ~ReadWiFiNetworkDiagnosticsAssociationFailure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -57726,9 +57726,9 @@ class ReportWiFiNetworkDiagnosticsAssociationFailure : public ModelCommand ~ReportWiFiNetworkDiagnosticsAssociationFailure() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportEvent (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -57768,9 +57768,9 @@ class ReadWiFiNetworkDiagnosticsConnectionStatus : public ModelCommand ~ReadWiFiNetworkDiagnosticsConnectionStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadEvent (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadEvent on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -57799,9 +57799,9 @@ class ReportWiFiNetworkDiagnosticsConnectionStatus : public ModelCommand ~ReportWiFiNetworkDiagnosticsConnectionStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportEvent (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportEvent on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -57842,9 +57842,9 @@ class ReadWiFiNetworkDiagnosticsBssid : public ModelCommand ~ReadWiFiNetworkDiagnosticsBssid() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -57872,9 +57872,9 @@ class ReportWiFiNetworkDiagnosticsBssid : public ModelCommand ~ReportWiFiNetworkDiagnosticsBssid() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -57911,9 +57911,9 @@ class ReadWiFiNetworkDiagnosticsSecurityType : public ModelCommand ~ReadWiFiNetworkDiagnosticsSecurityType() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -57941,9 +57941,9 @@ class ReportWiFiNetworkDiagnosticsSecurityType : public ModelCommand ~ReportWiFiNetworkDiagnosticsSecurityType() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportAttribute (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -57980,9 +57980,9 @@ class ReadWiFiNetworkDiagnosticsWiFiVersion : public ModelCommand ~ReadWiFiNetworkDiagnosticsWiFiVersion() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58010,9 +58010,9 @@ class ReportWiFiNetworkDiagnosticsWiFiVersion : public ModelCommand ~ReportWiFiNetworkDiagnosticsWiFiVersion() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportAttribute (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58049,9 +58049,9 @@ class ReadWiFiNetworkDiagnosticsChannelNumber : public ModelCommand ~ReadWiFiNetworkDiagnosticsChannelNumber() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58079,9 +58079,9 @@ class ReportWiFiNetworkDiagnosticsChannelNumber : public ModelCommand ~ReportWiFiNetworkDiagnosticsChannelNumber() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58118,9 +58118,9 @@ class ReadWiFiNetworkDiagnosticsRssi : public ModelCommand ~ReadWiFiNetworkDiagnosticsRssi() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58148,9 +58148,9 @@ class ReportWiFiNetworkDiagnosticsRssi : public ModelCommand ~ReportWiFiNetworkDiagnosticsRssi() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58187,9 +58187,9 @@ class ReadWiFiNetworkDiagnosticsBeaconLostCount : public ModelCommand ~ReadWiFiNetworkDiagnosticsBeaconLostCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58217,9 +58217,9 @@ class ReportWiFiNetworkDiagnosticsBeaconLostCount : public ModelCommand ~ReportWiFiNetworkDiagnosticsBeaconLostCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportAttribute (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58259,9 +58259,9 @@ class ReadWiFiNetworkDiagnosticsBeaconRxCount : public ModelCommand ~ReadWiFiNetworkDiagnosticsBeaconRxCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58289,9 +58289,9 @@ class ReportWiFiNetworkDiagnosticsBeaconRxCount : public ModelCommand ~ReportWiFiNetworkDiagnosticsBeaconRxCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportAttribute (0x00000006) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58328,9 +58328,9 @@ class ReadWiFiNetworkDiagnosticsPacketMulticastRxCount : public ModelCommand ~ReadWiFiNetworkDiagnosticsPacketMulticastRxCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58358,9 +58358,9 @@ class ReportWiFiNetworkDiagnosticsPacketMulticastRxCount : public ModelCommand ~ReportWiFiNetworkDiagnosticsPacketMulticastRxCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58401,9 +58401,9 @@ class ReadWiFiNetworkDiagnosticsPacketMulticastTxCount : public ModelCommand ~ReadWiFiNetworkDiagnosticsPacketMulticastTxCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadAttribute (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58431,9 +58431,9 @@ class ReportWiFiNetworkDiagnosticsPacketMulticastTxCount : public ModelCommand ~ReportWiFiNetworkDiagnosticsPacketMulticastTxCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportAttribute (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58474,9 +58474,9 @@ class ReadWiFiNetworkDiagnosticsPacketUnicastRxCount : public ModelCommand ~ReadWiFiNetworkDiagnosticsPacketUnicastRxCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadAttribute (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58504,9 +58504,9 @@ class ReportWiFiNetworkDiagnosticsPacketUnicastRxCount : public ModelCommand ~ReportWiFiNetworkDiagnosticsPacketUnicastRxCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportAttribute (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58546,9 +58546,9 @@ class ReadWiFiNetworkDiagnosticsPacketUnicastTxCount : public ModelCommand ~ReadWiFiNetworkDiagnosticsPacketUnicastTxCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadAttribute (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58576,9 +58576,9 @@ class ReportWiFiNetworkDiagnosticsPacketUnicastTxCount : public ModelCommand ~ReportWiFiNetworkDiagnosticsPacketUnicastTxCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportAttribute (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58618,9 +58618,9 @@ class ReadWiFiNetworkDiagnosticsCurrentMaxRate : public ModelCommand ~ReadWiFiNetworkDiagnosticsCurrentMaxRate() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadAttribute (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58648,9 +58648,9 @@ class ReportWiFiNetworkDiagnosticsCurrentMaxRate : public ModelCommand ~ReportWiFiNetworkDiagnosticsCurrentMaxRate() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportAttribute (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58690,9 +58690,9 @@ class ReadWiFiNetworkDiagnosticsOverrunCount : public ModelCommand ~ReadWiFiNetworkDiagnosticsOverrunCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadAttribute (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58720,9 +58720,9 @@ class ReportWiFiNetworkDiagnosticsOverrunCount : public ModelCommand ~ReportWiFiNetworkDiagnosticsOverrunCount() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportAttribute (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58759,9 +58759,9 @@ class ReadWiFiNetworkDiagnosticsAttributeList : public ModelCommand ~ReadWiFiNetworkDiagnosticsAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58789,9 +58789,9 @@ class ReportWiFiNetworkDiagnosticsAttributeList : public ModelCommand ~ReportWiFiNetworkDiagnosticsAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58831,9 +58831,9 @@ class ReadWiFiNetworkDiagnosticsFeatureMap : public ModelCommand ~ReadWiFiNetworkDiagnosticsFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58861,9 +58861,9 @@ class ReportWiFiNetworkDiagnosticsFeatureMap : public ModelCommand ~ReportWiFiNetworkDiagnosticsFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58900,9 +58900,9 @@ class ReadWiFiNetworkDiagnosticsClusterRevision : public ModelCommand ~ReadWiFiNetworkDiagnosticsClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -58930,9 +58930,9 @@ class ReportWiFiNetworkDiagnosticsClusterRevision : public ModelCommand ~ReportWiFiNetworkDiagnosticsClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000036) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0036) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WiFiNetworkDiagnosticsCluster cluster; cluster.Associate(device, endpointId); @@ -59004,9 +59004,9 @@ class WindowCoveringDownOrClose : public ModelCommand public: WindowCoveringDownOrClose() : ModelCommand("down-or-close") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) command (0x00000001) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000102) command (0x00000001) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -59029,9 +59029,9 @@ class WindowCoveringGoToLiftPercentage : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) command (0x00000005) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000102) command (0x00000005) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -59053,9 +59053,9 @@ class WindowCoveringGoToLiftValue : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) command (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000102) command (0x00000004) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -59078,9 +59078,9 @@ class WindowCoveringGoToTiltPercentage : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) command (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000102) command (0x00000008) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -59102,9 +59102,9 @@ class WindowCoveringGoToTiltValue : public ModelCommand ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) command (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000102) command (0x00000007) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -59122,9 +59122,9 @@ class WindowCoveringStopMotion : public ModelCommand public: WindowCoveringStopMotion() : ModelCommand("stop-motion") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) command (0x00000002) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000102) command (0x00000002) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -59142,9 +59142,9 @@ class WindowCoveringUpOrOpen : public ModelCommand public: WindowCoveringUpOrOpen() : ModelCommand("up-or-open") { ModelCommand::AddArguments(); } - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) command (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x00000102) command (0x00000000) on endpoint %" PRIu8, endpointId); return chip::Controller::InvokeCommand(device, this, OnDefaultSuccess, OnDefaultFailure, endpointId, mRequest, mTimedInteractionTimeoutMs); @@ -59168,9 +59168,9 @@ class ReadWindowCoveringType : public ModelCommand ~ReadWindowCoveringType() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59198,9 +59198,9 @@ class ReportWindowCoveringType : public ModelCommand ~ReportWindowCoveringType() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x00000000) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59237,9 +59237,9 @@ class ReadWindowCoveringCurrentPositionLift : public ModelCommand ~ReadWindowCoveringCurrentPositionLift() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59267,9 +59267,9 @@ class ReportWindowCoveringCurrentPositionLift : public ModelCommand ~ReportWindowCoveringCurrentPositionLift() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x00000003) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59309,9 +59309,9 @@ class ReadWindowCoveringCurrentPositionTilt : public ModelCommand ~ReadWindowCoveringCurrentPositionTilt() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59339,9 +59339,9 @@ class ReportWindowCoveringCurrentPositionTilt : public ModelCommand ~ReportWindowCoveringCurrentPositionTilt() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x00000004) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59381,9 +59381,9 @@ class ReadWindowCoveringConfigStatus : public ModelCommand ~ReadWindowCoveringConfigStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59411,9 +59411,9 @@ class ReportWindowCoveringConfigStatus : public ModelCommand ~ReportWindowCoveringConfigStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x00000007) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59450,9 +59450,9 @@ class ReadWindowCoveringCurrentPositionLiftPercentage : public ModelCommand ~ReadWindowCoveringCurrentPositionLiftPercentage() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59480,9 +59480,9 @@ class ReportWindowCoveringCurrentPositionLiftPercentage : public ModelCommand ~ReportWindowCoveringCurrentPositionLiftPercentage() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x00000008) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59522,9 +59522,9 @@ class ReadWindowCoveringCurrentPositionTiltPercentage : public ModelCommand ~ReadWindowCoveringCurrentPositionTiltPercentage() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59552,9 +59552,9 @@ class ReportWindowCoveringCurrentPositionTiltPercentage : public ModelCommand ~ReportWindowCoveringCurrentPositionTiltPercentage() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x00000009) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59594,9 +59594,9 @@ class ReadWindowCoveringOperationalStatus : public ModelCommand ~ReadWindowCoveringOperationalStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59624,9 +59624,9 @@ class ReportWindowCoveringOperationalStatus : public ModelCommand ~ReportWindowCoveringOperationalStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x0000000A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59663,9 +59663,9 @@ class ReadWindowCoveringTargetPositionLiftPercent100ths : public ModelCommand ~ReadWindowCoveringTargetPositionLiftPercent100ths() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59693,9 +59693,9 @@ class ReportWindowCoveringTargetPositionLiftPercent100ths : public ModelCommand ~ReportWindowCoveringTargetPositionLiftPercent100ths() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x0000000B) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59736,9 +59736,9 @@ class ReadWindowCoveringTargetPositionTiltPercent100ths : public ModelCommand ~ReadWindowCoveringTargetPositionTiltPercent100ths() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59766,9 +59766,9 @@ class ReportWindowCoveringTargetPositionTiltPercent100ths : public ModelCommand ~ReportWindowCoveringTargetPositionTiltPercent100ths() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x0000000C) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59809,9 +59809,9 @@ class ReadWindowCoveringEndProductType : public ModelCommand ~ReadWindowCoveringEndProductType() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x0000000D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59839,9 +59839,9 @@ class ReportWindowCoveringEndProductType : public ModelCommand ~ReportWindowCoveringEndProductType() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x0000000D) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59878,9 +59878,9 @@ class ReadWindowCoveringCurrentPositionLiftPercent100ths : public ModelCommand ~ReadWindowCoveringCurrentPositionLiftPercent100ths() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x0000000E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59908,9 +59908,9 @@ class ReportWindowCoveringCurrentPositionLiftPercent100ths : public ModelCommand ~ReportWindowCoveringCurrentPositionLiftPercent100ths() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x0000000E) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59951,9 +59951,9 @@ class ReadWindowCoveringCurrentPositionTiltPercent100ths : public ModelCommand ~ReadWindowCoveringCurrentPositionTiltPercent100ths() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x0000000F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -59981,9 +59981,9 @@ class ReportWindowCoveringCurrentPositionTiltPercent100ths : public ModelCommand ~ReportWindowCoveringCurrentPositionTiltPercent100ths() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x0000000F) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60024,9 +60024,9 @@ class ReadWindowCoveringInstalledOpenLimitLift : public ModelCommand ~ReadWindowCoveringInstalledOpenLimitLift() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60054,9 +60054,9 @@ class ReportWindowCoveringInstalledOpenLimitLift : public ModelCommand ~ReportWindowCoveringInstalledOpenLimitLift() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x00000010) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60096,9 +60096,9 @@ class ReadWindowCoveringInstalledClosedLimitLift : public ModelCommand ~ReadWindowCoveringInstalledClosedLimitLift() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60126,9 +60126,9 @@ class ReportWindowCoveringInstalledClosedLimitLift : public ModelCommand ~ReportWindowCoveringInstalledClosedLimitLift() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x00000011) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60168,9 +60168,9 @@ class ReadWindowCoveringInstalledOpenLimitTilt : public ModelCommand ~ReadWindowCoveringInstalledOpenLimitTilt() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60198,9 +60198,9 @@ class ReportWindowCoveringInstalledOpenLimitTilt : public ModelCommand ~ReportWindowCoveringInstalledOpenLimitTilt() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x00000012) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60240,9 +60240,9 @@ class ReadWindowCoveringInstalledClosedLimitTilt : public ModelCommand ~ReadWindowCoveringInstalledClosedLimitTilt() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x00000013) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60270,9 +60270,9 @@ class ReportWindowCoveringInstalledClosedLimitTilt : public ModelCommand ~ReportWindowCoveringInstalledClosedLimitTilt() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x00000013) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60312,9 +60312,9 @@ class ReadWindowCoveringMode : public ModelCommand ~ReadWindowCoveringMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x00000017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60340,9 +60340,9 @@ class WriteWindowCoveringMode : public ModelCommand ~WriteWindowCoveringMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) WriteAttribute (0x00000017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) WriteAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60368,9 +60368,9 @@ class ReportWindowCoveringMode : public ModelCommand ~ReportWindowCoveringMode() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x00000017) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60407,9 +60407,9 @@ class ReadWindowCoveringSafetyStatus : public ModelCommand ~ReadWindowCoveringSafetyStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x0000001A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60437,9 +60437,9 @@ class ReportWindowCoveringSafetyStatus : public ModelCommand ~ReportWindowCoveringSafetyStatus() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x0000001A) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60476,9 +60476,9 @@ class ReadWindowCoveringAttributeList : public ModelCommand ~ReadWindowCoveringAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60506,9 +60506,9 @@ class ReportWindowCoveringAttributeList : public ModelCommand ~ReportWindowCoveringAttributeList() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x0000FFFB) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60548,9 +60548,9 @@ class ReadWindowCoveringFeatureMap : public ModelCommand ~ReadWindowCoveringFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60578,9 +60578,9 @@ class ReportWindowCoveringFeatureMap : public ModelCommand ~ReportWindowCoveringFeatureMap() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x0000FFFC) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60617,9 +60617,9 @@ class ReadWindowCoveringClusterRevision : public ModelCommand ~ReadWindowCoveringClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReadAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReadAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId); @@ -60647,9 +60647,9 @@ class ReportWindowCoveringClusterRevision : public ModelCommand ~ReportWindowCoveringClusterRevision() {} - CHIP_ERROR SendCommand(ChipDevice * device, chip::EndpointId endpointId) override + CHIP_ERROR SendCommand(ChipDevice * device, uint8_t endpointId) override { - ChipLogProgress(chipTool, "Sending cluster (0x00000102) ReportAttribute (0x0000FFFD) on endpoint %" PRIu16, endpointId); + ChipLogProgress(chipTool, "Sending cluster (0x0102) ReportAttribute on endpoint %" PRIu8, endpointId); chip::Controller::WindowCoveringCluster cluster; cluster.Associate(device, endpointId);