-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Attribute Type Information in Cluster Objects #10398
Merged
mrjerryjohns
merged 7 commits into
project-chip:master
from
mrjerryjohns:attribute-types
Oct 14, 2021
Merged
Attribute Type Information in Cluster Objects #10398
mrjerryjohns
merged 7 commits into
project-chip:master
from
mrjerryjohns:attribute-types
Oct 14, 2021
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
woody-apple
approved these changes
Oct 11, 2021
mrjerryjohns
force-pushed
the
attribute-types
branch
from
October 11, 2021 22:23
83f2556
to
ab48324
Compare
Create a 'TypeInfo' struct for each attribute in the generated cluster objects that contains both the type of the attribute as well as its Attribute and Cluster ID. This will be useful later when implementing Reads/Writes that utilize this information during template specialization to avoid the caller/application having to provide this information.
mrjerryjohns
force-pushed
the
attribute-types
branch
from
October 11, 2021 22:24
ab48324
to
23b8e02
Compare
pullapprove
bot
requested review from
austinh0,
cecille,
chrisdecenzo,
Damian-Nordic,
emargolis,
erjiaqing,
hawk248,
holbrookt,
jelderton,
jepenven-silabs,
jmartinez-silabs,
kpschoedel,
LuDuda,
mlepage-google,
msandstedt,
robszewczyk,
saurabhst,
tcarmelveilleux and
yunhanw-google
October 11, 2021 22:25
bzbarsky-apple
approved these changes
Oct 11, 2021
erjiaqing
reviewed
Oct 12, 2021
yunhanw-google
approved these changes
Oct 12, 2021
LuDuda
approved these changes
Oct 12, 2021
erjiaqing
reviewed
Oct 13, 2021
mrjerryjohns
force-pushed
the
attribute-types
branch
from
October 13, 2021 22:17
11eb59d
to
9142fd2
Compare
bzbarsky-apple
approved these changes
Oct 13, 2021
Co-authored-by: Boris Zbarsky <bzbarsky@apple.com>
mrjerryjohns
force-pushed
the
attribute-types
branch
from
October 13, 2021 23:38
1a5be31
to
b8a56dd
Compare
PR #10398: Size comparison from 24ad104 to b8a56dd 34 builds
|
PR #10398: Size comparison from aeca9b0 to 1a5be31 8 builds
|
PR #10398: Size comparison from aeca9b0 to 9142fd2 24 builds
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Emit a
TypeInfo
struct for each attribute in the generated cluster objects that contains both the type of the attribute as well as its Attribute and Cluster ID. This will be useful later when implementing Reads/Writes that utilize this information during template specialization to avoid the caller/application having to provide this information.