Skip to content

Commit c400248

Browse files
committed
[Telink] fixed status-led for Lighting app
related to PWM pull: [Telink] Lighting app build with disabled CONFIG_PWM project-chip#35621
1 parent 3015ffe commit c400248

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

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

+7-3
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,11 @@ void AppTask::PowerOnFactoryResetTimerEvent(struct k_timer * timer)
252252

253253
void AppTask::LinkLeds(LedManager & ledManager)
254254
{
255-
#if (!CONFIG_PWM)
256-
ledManager.linkLed(LedManager::EAppLed_App0, 0);
257-
#endif // !CONFIG_PWM
255+
#if CONFIG_CHIP_ENABLE_APPLICATION_STATUS_LED
256+
ledManager.linkLed(LedManager::EAppLed_Status, 0);
257+
#endif
258+
259+
#if !CONFIG_PWM
260+
ledManager.linkLed(LedManager::EAppLed_App0, 1);
261+
#endif /* !CONFIG_PWM */
258262
}

examples/platform/telink/common.cmake

+4-7
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
# limitations under the License.
1515

1616
string(REPLACE "_retention" "" BASE_BOARD ${BOARD})
17+
string(REGEX REPLACE "_v[0-9]+" "" BASE_BOARD ${BASE_BOARD})
1718

1819
if(NOT FLASH_SIZE)
19-
if(${BASE_BOARD} MATCHES "tlsr9118bdk40d" OR ${BASE_BOARD} MATCHES "tlsr9118bdk40d_v1"
20-
OR ${BASE_BOARD} MATCHES "tlsr9118bdk40d_v2")
20+
if(${BASE_BOARD} MATCHES "tlsr9118bdk40d")
2121
set(FLASH_SIZE "3m")
2222
else()
2323
set(FLASH_SIZE "2m")
@@ -99,11 +99,8 @@ endif()
9999

100100
set(FLASH_DTC_OVERLAY_FILE "${CHIP_ROOT}/src/platform/telink/${BASE_BOARD}_${FLASH_SIZE}_flash.overlay")
101101
if(NOT EXISTS "${FLASH_DTC_OVERLAY_FILE}")
102-
if(${BASE_BOARD} MATCHES "tlsr9118bdk40d_v1" OR ${BASE_BOARD} MATCHES "tlsr9118bdk40d_v2")
103-
set(FLASH_DTC_OVERLAY_FILE "${CHIP_ROOT}/src/platform/telink/tlsr9118bdk40d_${FLASH_SIZE}_flash.overlay")
104-
else()
105-
message(FATAL_ERROR "${FLASH_DTC_OVERLAY_FILE} doesn't exist")
106-
endif()
102+
message(STATUS "${FLASH_DTC_OVERLAY_FILE} doesn't exist")
103+
unset(FLASH_DTC_OVERLAY_FILE)
107104
endif()
108105

109106
if(DTC_OVERLAY_FILE)

examples/platform/telink/common/src/AppTaskCommon.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,9 @@ void AppTaskCommon::InitPwms()
416416

417417
void AppTaskCommon::LinkPwms(PwmManager & pwmManager)
418418
{
419-
#if CONFIG_WS2812_STRIP
419+
#if CONFIG_BOARD_TLSR9118BDK40D_V1 && CONFIG_PWM // TLSR9118BDK40D_V1 EVK supports single LED PWM channel
420+
pwmManager.linkPwm(PwmManager::EAppPwm_Red, 0);
421+
#elif CONFIG_WS2812_STRIP
420422
pwmManager.linkPwm(PwmManager::EAppPwm_Red, 0);
421423
pwmManager.linkPwm(PwmManager::EAppPwm_Green, 1);
422424
pwmManager.linkPwm(PwmManager::EAppPwm_Blue, 2);

0 commit comments

Comments
 (0)