Skip to content

Commit

Permalink
Remove some 1.0-only backwards-compat hacks from chip-tool. (#23094)
Browse files Browse the repository at this point in the history
These were just there to avoid changing some command lines from SVE2
to 1.0, but at this point those should be updated as needed.

Fixes #22507
Fixes #22341
  • Loading branch information
bzbarsky-apple authored and pull[bot] committed Feb 23, 2023
1 parent fb8e443 commit 05582d9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 20 deletions.
16 changes: 0 additions & 16 deletions examples/chip-tool/templates/commands.zapt
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,6 @@ void registerCluster{{asUpperCamelCase name}}(Commands & commands, CredentialIss
make_unique<ReadAttribute>(Id, credsIssuerConfig), //
{{#zcl_attributes_server}}
make_unique<ReadAttribute>(Id, "{{cleanse_label_as_kebab_case (asUpperCamelCase name)}}", Attributes::{{asUpperCamelCase name}}::Id, credsIssuerConfig), //
{{! TODO: Remove after 1.0. See https://github.com/project-chip/connectedhomeip/issues/22341 }}
{{#if (isStrEqual (asUpperCamelCase name) "ColorTemperatureMireds")}}
make_unique<ReadAttribute>(Id, "color-temperature", Attributes::{{asUpperCamelCase name}}::Id, credsIssuerConfig), //
{{/if}}
{{! TODO: Remove after 1.0. See https://github.com/project-chip/connectedhomeip/issues/22507 }}
{{#if (isStrEqual (asUpperCamelCase name) "DeviceTypeList")}}
make_unique<ReadAttribute>(Id, "device-list", Attributes::{{asUpperCamelCase name}}::Id, credsIssuerConfig), //
{{/if}}
{{/zcl_attributes_server}}
make_unique<WriteAttribute<>>(Id, credsIssuerConfig), //
{{#zcl_attributes_server}}
Expand All @@ -115,14 +107,6 @@ void registerCluster{{asUpperCamelCase name}}(Commands & commands, CredentialIss
{{#zcl_attributes_server}}
{{#if isReportable}}
make_unique<SubscribeAttribute>(Id, "{{cleanse_label_as_kebab_case (asUpperCamelCase name)}}", Attributes::{{asUpperCamelCase name}}::Id, credsIssuerConfig), //
{{! TODO: Remove after 1.0. See https://github.com/project-chip/connectedhomeip/issues/22341 }}
{{#if (isStrEqual (asUpperCamelCase name) "ColorTemperatureMireds")}}
make_unique<SubscribeAttribute>(Id, "color-temperature", Attributes::{{asUpperCamelCase name}}::Id, credsIssuerConfig), //
{{/if}}
{{! TODO: Remove after 1.0. See https://github.com/project-chip/connectedhomeip/issues/22507 }}
{{#if (isStrEqual (asUpperCamelCase name) "DeviceTypeList")}}
make_unique<SubscribeAttribute>(Id, "device-list", Attributes::{{asUpperCamelCase name}}::Id, credsIssuerConfig), //
{{/if}}
{{/if}}
{{/zcl_attributes_server}}
//
Expand Down
4 changes: 0 additions & 4 deletions zzz_generated/chip-tool/zap-generated/cluster/Commands.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 05582d9

Please sign in to comment.