@@ -31,7 +31,6 @@ using namespace chip::Protocols::InteractionModel;
31
31
namespace chip {
32
32
namespace app {
33
33
namespace Clusters {
34
- // / @brief
35
34
namespace Thermostat {
36
35
37
36
extern ThermostatAttrAccess gThermostatAttrAccess ;
@@ -103,7 +102,7 @@ ScopedNodeId GetSourceScopedNodeId(CommandHandler * commandObj)
103
102
* @return true if the attribute list was counted
104
103
* @return false if there was an error reading the list
105
104
*/
106
- bool countAttributeRequests (const DataModel::DecodableList<chip::AttributeId> attributeRequests, size_t & attributeRequestCount,
105
+ bool CountAttributeRequests (const DataModel::DecodableList<chip::AttributeId> attributeRequests, size_t & attributeRequestCount,
107
106
bool & requestedPresets, bool & requestedSchedules)
108
107
{
109
108
attributeRequestCount = 0 ;
@@ -136,7 +135,7 @@ bool countAttributeRequests(const DataModel::DecodableList<chip::AttributeId> at
136
135
// / @param attributeStatuses The status of each requested attribute, plus additional attributes if needed
137
136
// / @param requireAll Whether the caller requires all atomic attributes to be represented in attributeRequests
138
137
// / @return Status::Success if the request is valid, an error status if it is not
139
- Status buildAttributeStatuses (const EndpointId endpoint, const DataModel::DecodableList<chip::AttributeId> attributeRequests,
138
+ Status BuildAttributeStatuses (const EndpointId endpoint, const DataModel::DecodableList<chip::AttributeId> attributeRequests,
140
139
size_t & attributeStatusCount,
141
140
Platform::ScopedMemoryBuffer<AtomicAttributeStatusStruct::Type> & attributeStatuses, bool requireAll)
142
141
{
@@ -145,7 +144,7 @@ Status buildAttributeStatuses(const EndpointId endpoint, const DataModel::Decoda
145
144
attributeStatusCount = 0 ;
146
145
if (!countAttributeRequests (attributeRequests, attributeStatusCount, requestedPresets, requestedSchedules))
147
146
{
148
- // Either we errored reading the list, or one of the attributes is not supported on this server
147
+ // We errored reading the list
149
148
return Status::InvalidCommand;
150
149
}
151
150
if (attributeStatusCount == 0 )
@@ -156,6 +155,7 @@ Status buildAttributeStatuses(const EndpointId endpoint, const DataModel::Decoda
156
155
if (requestedPresets ^ requestedSchedules)
157
156
{
158
157
// Client requested presets or schedules, but not both, so we need an extra status
158
+ // because we will in fact treat the atomic request as applying to both.
159
159
attributeStatusCount++;
160
160
}
161
161
attributeStatuses.Alloc (attributeStatusCount);
@@ -272,9 +272,9 @@ ScopedNodeId ThermostatAttrAccess::GetAtomicWriteOriginatorScopedNodeId(const En
272
272
return originatorNodeId;
273
273
}
274
274
275
- void sendAtomicResponse (CommandHandler * commandObj, const ConcreteCommandPath & commandPath, Status status,
275
+ void SendAtomicResponse (CommandHandler * commandObj, const ConcreteCommandPath & commandPath, Status status,
276
276
const Platform::ScopedMemoryBuffer<AtomicAttributeStatusStruct::Type> & attributeStatuses,
277
- size_t & attributeRequestCount, Optional<uint16_t > timeout = NullOptional)
277
+ size_t attributeRequestCount, Optional<uint16_t > timeout = NullOptional)
278
278
{
279
279
Commands::AtomicResponse::Type response;
280
280
response.statusCode = to_underlying (status);
0 commit comments