Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 20a74bf

Browse files
restyled-commitsBorysNykytiuk
authored andcommittedSep 17, 2024·
Restyled by clang-format
1 parent 2f27101 commit 20a74bf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎examples/lighting-app/telink/src/AppTask.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
#include <app/server/Server.h>
2121

2222
#include "ColorFormat.h"
23-
#include "PWMManager.h"
2423
#include "LEDManager.h"
24+
#include "PWMManager.h"
2525

2626
#include <app-common/zap-generated/attributes/Accessors.h>
2727

@@ -60,7 +60,7 @@ CHIP_ERROR AppTask::Init(void)
6060
SetExampleButtonCallbacks(LightingActionEventHandler);
6161
InitCommonParts();
6262
#if (!CONFIG_PWM)
63-
LedManager::getInstance().linkLed(LedManager::EAppLed_App0, 1);
63+
LedManager::getInstance().linkLed(LedManager::EAppLed_App0, 1);
6464
#endif
6565
Protocols::InteractionModel::Status status;
6666

‎examples/platform/telink/util/include/PWMManager.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ class PwmDummy : public PwmBackend
163163
void setPwmHWBlink(size_t pwm, size_t onMs, size_t offMs);
164164
void setPwmHWBreath(size_t pwm, size_t breathMs);
165165

166-
PwmDummy(PwmDummy const &) = delete;
166+
PwmDummy(PwmDummy const &) = delete;
167167
void operator=(PwmDummy const &) = delete;
168168

169169
private:

0 commit comments

Comments
 (0)
Please sign in to comment.