Skip to content

Commit 7f2085b

Browse files
restyled-commitsarun-silabs
authored andcommitted
Restyled by whitespace
1 parent f44bcdd commit 7f2085b

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

examples/oven-app/oven-app-common/src/OvenEndpoint.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,4 +161,3 @@ bool OvenModeDelegate::IsSupportedMode(uint8_t mode)
161161
}
162162
return false;
163163
}
164-

examples/oven-app/silabs/include/OvenManager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class OvenManager
8787
* @param size Size of the new value.
8888
*/
8989
void TempCtrlAttributeChangeHandler(chip::EndpointId endpointId, chip::AttributeId attributeId, uint8_t * value, uint16_t size);
90-
90+
9191
/**
9292
* @brief Handles on/off attribute changes.
9393
*

examples/oven-app/silabs/src/OvenManager.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ void OvenManager::OnOffAttributeChangeHandler(EndpointId endpointId, AttributeId
156156
if (endpointId == kCookTopEndpoint3)
157157
{
158158
InitiateAction(AppEvent::kEventType_Oven, *value ? OvenManager::ON_ACTION : OvenManager::OFF_ACTION, value);
159-
159+
160160
// Update CookSurface states accordingly
161161
mCookSurfaceEndpoint4.SetOnOffState(*value);
162162
mCookSurfaceEndpoint5.SetOnOffState(*value);
@@ -177,7 +177,7 @@ void OvenManager::OnOffAttributeChangeHandler(EndpointId endpointId, AttributeId
177177

178178
void OvenManager::OvenModeAttributeChangeHandler(chip::EndpointId endpointId, chip::AttributeId attributeId, uint8_t * value, uint16_t size)
179179
{
180-
VerifyOrReturn(endpointId == kTemperatureControlledCabinetEndpoint2,
180+
VerifyOrReturn(endpointId == kTemperatureControlledCabinetEndpoint2,
181181
ChipLogError(AppServer, "Command received over Unsupported Endpoint"));
182182
// TODO: Update the LCD with the new Oven Mode
183183
return;

0 commit comments

Comments
 (0)