Skip to content

Commit 38cdc4f

Browse files
restyled-commitsarun-silabs
authored andcommitted
Restyled by whitespace
1 parent f49ba2f commit 38cdc4f

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
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
@@ -163,4 +163,3 @@ bool OvenModeDelegate::IsSupportedMode(uint8_t mode)
163163
}
164164
return false;
165165
}
166-

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

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

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ void OvenManager::OnOffAttributeChangeHandler(EndpointId endpointId, AttributeId
121121
if (endpointId == kCookTopEndpoint3)
122122
{
123123
InitiateAction(AppEvent::kEventType_Oven, *value ? OvenManager::ON_ACTION : OvenManager::OFF_ACTION, value);
124-
124+
125125
// Update CookSurface states accordingly
126126
mCookSurfaceEndpoint4.SetOnOffState(*value);
127127
mCookSurfaceEndpoint5.SetOnOffState(*value);
@@ -142,7 +142,7 @@ void OvenManager::OnOffAttributeChangeHandler(EndpointId endpointId, AttributeId
142142

143143
void OvenManager::OvenModeAttributeChangeHandler(chip::EndpointId endpointId, chip::AttributeId attributeId, uint8_t * value, uint16_t size)
144144
{
145-
VerifyOrReturn(endpointId == kTemperatureControlledCabinetEndpoint2,
145+
VerifyOrReturn(endpointId == kTemperatureControlledCabinetEndpoint2,
146146
ChipLogError(AppServer, "Command received over Unsupported Endpoint"));
147147
// TODO: Update the LCD with the new Oven Mode
148148
return;
@@ -298,4 +298,3 @@ void OvenManager::ProcessOvenModeChange(chip::EndpointId endpointId, uint8_t new
298298
}
299299
response.status = to_underlying(ModeBase::StatusCode::kSuccess);
300300
}
301-

0 commit comments

Comments
 (0)