Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add functions to set TagList attribute in descriptor cluster #28753

Merged
merged 32 commits into from
Aug 25, 2023
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
0b6f894
Add TagList support feature in descriptor cluster
mideayanghui Aug 18, 2023
a963019
Restyled by clang-format
restyled-commits Aug 18, 2023
59579ee
Merge branch 'master' into feature/add-tag-list
mideayanghui Aug 22, 2023
02c067c
Add descriptor in all-cluster-app
mideayanghui Aug 22, 2023
dbef8aa
modify descriptor cluster's revision
mideayanghui Aug 22, 2023
1d182c0
Restyled by clang-format
restyled-commits Aug 22, 2023
b8f6cc4
Merge branch 'master' into feature/add-tag-list
mideayanghui Aug 23, 2023
82608ff
read featureMap before read tag attribute
mideayanghui Aug 23, 2023
68f08b9
Merge branch 'master' into feature/add-tag-list
mideayanghui Aug 23, 2023
8282bb0
Restyled by clang-format
restyled-commits Aug 23, 2023
9bd7d97
modify the namespace in descriptor cluster
mideayanghui Aug 23, 2023
a7bdccc
Restyled by clang-format
restyled-commits Aug 23, 2023
0cf99eb
Merge master branch to feature/add-tag-list branch
mideayanghui Aug 24, 2023
e82e0a0
Optimize the descriptor cluster with review suggestion
mideayanghui Aug 24, 2023
5127572
Optimize GetTagListFromEndpointAtIndex api and add ReadFeatureMap api
mideayanghui Aug 24, 2023
f38007a
Add read taglist and featureMap in TestDescriptorCluster.yaml
mideayanghui Aug 24, 2023
5fa0fe0
Merge branch 'master' into feature/add-tag-list
mideayanghui Aug 24, 2023
2ede867
zap regen
mideayanghui Aug 24, 2023
d784a89
Restyled by whitespace
restyled-commits Aug 24, 2023
fa25b61
Restyled by clang-format
restyled-commits Aug 24, 2023
056f8bf
Restyled by prettier-yaml
restyled-commits Aug 24, 2023
3ff3138
Merge branch 'master' into feature/add-tag-list
mideayanghui Aug 25, 2023
2d4f4f6
Add advice of review
mideayanghui Aug 25, 2023
89f5c22
update TestScript for descriptor cluster
mideayanghui Aug 25, 2023
ea5a654
Restyled by clang-format
restyled-commits Aug 25, 2023
2cb01b6
update read tagList step in Test_TC_DESC_2_1.yaml
mideayanghui Aug 25, 2023
f78d338
fixes spelling
mideayanghui Aug 25, 2023
367bbe6
resume featureMap setting in zap, set while set taglist
mideayanghui Aug 25, 2023
3e46fc1
fix read tagList step in Test_TC_DESC_2_1.yaml
mideayanghui Aug 25, 2023
f61f576
fix CI error
mideayanghui Aug 25, 2023
141dd00
fix CI error
mideayanghui Aug 25, 2023
2c61aba
Merge branch 'master' into feature/add-tag-list
mideayanghui Aug 25, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,7 @@ server cluster Descriptor = 29 {
readonly attribute CLUSTER_ID serverList[] = 1;
readonly attribute CLUSTER_ID clientList[] = 2;
readonly attribute ENDPOINT_NO partsList[] = 3;
readonly attribute SemanticTagStruct tagList[] = 4;
readonly attribute command_id generatedCommandList[] = 65528;
readonly attribute command_id acceptedCommandList[] = 65529;
readonly attribute event_id eventList[] = 65530;
Expand Down Expand Up @@ -6634,12 +6635,13 @@ endpoint 1 {
callback attribute serverList;
callback attribute clientList;
callback attribute partsList;
callback attribute tagList;
callback attribute generatedCommandList;
callback attribute acceptedCommandList;
callback attribute eventList;
callback attribute attributeList;
ram attribute featureMap default = 0;
callback attribute clusterRevision default = 1;
ram attribute featureMap default = 1;
callback attribute clusterRevision default = 2;
}

server cluster Binding {
Expand Down
Loading