From 2f27101279ea9b708bf0661404e7ff9ea57c43ac Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Tue, 17 Sep 2024 11:59:43 +0000 Subject: [PATCH] Restyled by whitespace --- examples/lighting-app/telink/src/AppTask.cpp | 2 +- examples/platform/telink/common/src/AppTaskCommon.cpp | 2 +- examples/platform/telink/util/include/PWMManager.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/lighting-app/telink/src/AppTask.cpp b/examples/lighting-app/telink/src/AppTask.cpp index d2b209a3dff506..8a01e1a9d2c0b0 100644 --- a/examples/lighting-app/telink/src/AppTask.cpp +++ b/examples/lighting-app/telink/src/AppTask.cpp @@ -59,7 +59,7 @@ CHIP_ERROR AppTask::Init(void) { SetExampleButtonCallbacks(LightingActionEventHandler); InitCommonParts(); -#if (!CONFIG_PWM) +#if (!CONFIG_PWM) LedManager::getInstance().linkLed(LedManager::EAppLed_App0, 1); #endif Protocols::InteractionModel::Status status; diff --git a/examples/platform/telink/common/src/AppTaskCommon.cpp b/examples/platform/telink/common/src/AppTaskCommon.cpp index e6e7b81a7b1b8f..8b67c403a8194c 100644 --- a/examples/platform/telink/common/src/AppTaskCommon.cpp +++ b/examples/platform/telink/common/src/AppTaskCommon.cpp @@ -422,7 +422,7 @@ void AppTaskCommon::LinkPwms(PwmManager & pwmManager) pwmManager.linkPwm(PwmManager::EAppPwm_Red, 0); pwmManager.linkPwm(PwmManager::EAppPwm_Green, 1); pwmManager.linkPwm(PwmManager::EAppPwm_Blue, 2); -#elif CONFIG_PWM +#elif CONFIG_PWM pwmManager.linkPwm(PwmManager::EAppPwm_Indication, 0); pwmManager.linkPwm(PwmManager::EAppPwm_Red, 1); pwmManager.linkPwm(PwmManager::EAppPwm_Green, 2); diff --git a/examples/platform/telink/util/include/PWMManager.h b/examples/platform/telink/util/include/PWMManager.h index f650d301fb01ad..005e3eb4122fd7 100644 --- a/examples/platform/telink/util/include/PWMManager.h +++ b/examples/platform/telink/util/include/PWMManager.h @@ -150,7 +150,7 @@ class PwmPool : public PwmBackend PwmPool(){}; }; -#else +#else class PwmDummy : public PwmBackend {