Skip to content

Commit 50bfb9c

Browse files
restyled-commitsarun-silabs
authored andcommitted
Restyled by whitespace
1 parent 232fe4f commit 50bfb9c

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ class CookSurfaceEndpoint
5858
/**
5959
* @brief Set On/Off state for the CookSurface.
6060
* @param state Desired On/Off state.
61-
*
61+
*
6262
* Note: This helper writes the OnOff attribute to the CHIP attribute storage and
6363
* therefore must be invoked from the CHIP/DeviceLayer task context or while holding
6464
* the CHIP stack lock (DeviceLayer::PlatformMgr().LockChipStack()). Calling this
6565
* API from an arbitrary thread can cause asserts / crashes in the CHIP stack.
6666
* If you are not in the CHIP task, schedule work onto the CHIP task using
6767
* PlatformMgr().ScheduleWork(...) and call this helper from there.
68-
*
68+
*
6969
* @return Returns Status::Success on success, or an error code on failure.
7070
*/
7171
chip::Protocols::InteractionModel::Status SetOnOffState(bool state);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class CookTopEndpoint
4848
* API from an arbitrary thread can cause asserts / crashes in the CHIP stack.
4949
* If you are not in the CHIP task, schedule work onto the CHIP task using
5050
* PlatformMgr().ScheduleWork(...) and call this helper from there.
51-
*
51+
*
5252
* @return Returns Status::Success on success, or an error code on failure.
5353
*/
5454
chip::Protocols::InteractionModel::Status SetOnOffState(bool state);

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,3 @@ void AppTask::ButtonEventHandler(uint8_t button, uint8_t btnAction)
128128
button_event.Handler = BaseApplication::ButtonHandler;
129129
AppTask::GetAppTask().PostEvent(&button_event);
130130
}
131-

0 commit comments

Comments
 (0)