-
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
(Temporary) OTA: change protocolsSupported to single value instead of list #8632
(Temporary) OTA: change protocolsSupported to single value instead of list #8632
Conversation
(#8605): protocolsSupported should be list of OTADownloadProtocol enums, not uint8_tconnectedhomeip/src/app/clusters/ota-provider/ota-provider-delegate.h Lines 34 to 39 in ce7dfec
This comment was generated by todo based on a
|
(#8605): change this to list */ uint8_t protocolsSupported,connectedhomeip/src/app/clusters/ota-provider/ota-provider.cpp Lines 157 to 162 in ce7dfec
This comment was generated by todo based on a
|
(#8605): add array="true" when lists are supported -->
This comment was generated by todo based on a
|
(#8605): add array="true" when lists are supported -->
This comment was generated by todo based on a
|
(#8605): add array="true" when lists are supported -->
This comment was generated by todo based on a
|
/rebase |
(#8605): add array="true" when lists are supported -->
This comment was generated by todo based on a
|
Size increase report for "esp32-example-build" from 3d8d542
Full report output
|
@Damian-Nordic @LuDuda @andy31415 @mspang @msandstedt @saurabhst Please take a look? |
… list (project-chip#8632) * change protocolsSupported to single value instead of list * generate missing zap file
Problem
List arguments in cluster commands are not yet fully supported, and this means that such commands will fail to be parsed on the receiving end.
QueryImage
is one of these commands, with the list argumentprotocolsSupported
. In the meantime, we can makeprotocolsSupported
a single value instead of a list in order to unblock QueryImage command receiving.Change overview
QueryImage
andprotocolsSupported
argumentTesting
all-clusters-app
andchip-tool
. Confirmed thatQueryImage
message is received and parsed successfully