Skip to content

Commit 0242577

Browse files
restyled-commitsarun-silabs
authored andcommitted
Restyled by clang-format
1 parent 95421c7 commit 0242577

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

examples/oven-app/oven-app-common/include/CookTopEndpoint.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ class CookTopEndpoint
4242
* @brief Handle the "off" command for the cooktop.
4343
*/
4444
void HandleOffCommand();
45-
4645
};
4746

4847
} // namespace CookTop

examples/oven-app/oven-app-common/include/OvenEndpoint.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ class OvenEndpoint
4141
* @return CHIP_ERROR indicating success or failure of the initialization.
4242
*/
4343
CHIP_ERROR Init();
44-
4544
};
4645

4746
} // namespace Oven

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ struct EndpointPair
4040
uint8_t mSize;
4141

4242
EndpointPair(EndpointId aEndpointId, CharSpan * aTemperatureLevels, uint8_t aSize) :
43-
mEndpointId(aEndpointId), mTemperatureLevels(aTemperatureLevels), mSize(aSize)
43+
mEndpointId(aEndpointId), mTemperatureLevels(aTemperatureLevels), mSize(aSize)
4444
{}
4545
};
4646

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626

2727
#pragma once
2828

29+
#include "AppSupportedTemperatureLevelsDelegate.h"
2930
#include "CookSurfaceEndpoint.h"
3031
#include "CookTopEndpoint.h"
3132
#include "OvenEndpoint.h"
3233
#include "TemperatureControlledCabinetEndpoint.h"
33-
#include "AppSupportedTemperatureLevelsDelegate.h"
3434
#include <lib/core/DataModelTypes.h>
3535

3636
class OvenManager

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ void OvenManager::Init()
3434
DeviceLayer::PlatformMgr().LockChipStack();
3535
// Endpoint initializations
3636
VerifyOrReturn(mOvenEndpoint1.Init() == CHIP_NO_ERROR, ChipLogError(AppServer, "OvenEndpoint1 Init failed"));
37-
VerifyOrReturn(mTemperatureControlledCabinetEndpoint2.Init() == CHIP_NO_ERROR, ChipLogError(AppServer, "TemperatureControlledCabinetEndpoint2 Init failed"));
37+
VerifyOrReturn(mTemperatureControlledCabinetEndpoint2.Init() == CHIP_NO_ERROR,
38+
ChipLogError(AppServer, "TemperatureControlledCabinetEndpoint2 Init failed"));
3839
VerifyOrReturn(mCookTopEndpoint3.Init() == CHIP_NO_ERROR, ChipLogError(AppServer, "CookTopEndpoint3 Init failed"));
3940
// Temperature Control Delegate set
4041
TemperatureControl::SetInstance(&mTemperatureControlDelegate);

0 commit comments

Comments
 (0)