Skip to content

Commit a276825

Browse files
committed
[Telink] Added W91 v2.1 board configuration
1 parent e103352 commit a276825

File tree

5 files changed

+16
-49
lines changed

5 files changed

+16
-49
lines changed

config/telink/chip-module/Kconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ config CHIP_IPV4
180180

181181
config CHIP_BUTTON_MANAGER_IRQ_MODE
182182
bool "Use GPIO in an IRQ mode instead of polling the GPIO"
183-
default PM
183+
default y if BOARD_TLSR9118BDK40D_V2
184184
help
185185
Use GPIO in an IRQ mode to avoid button polling loop and extend the battery lifetime by waking up by GPIO event.
186186
GPIO events are working only with GPIO IRQ. This option changes button matrix configuration.

config/telink/chip-module/Kconfig.defaults

+3-2
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,8 @@ config PWM
180180
endif
181181

182182
# Board non-retention config
183-
if BOARD_TLSR9118BDK40D || BOARD_TLSR9528A || BOARD_TLSR9258A || BOARD_TLSR9518ADK80D
183+
if BOARD_TLSR9118BDK40D_V1 || BOARD_TLSR9118BDK40D_V2 || \
184+
BOARD_TLSR9528A || BOARD_TLSR9258A || BOARD_TLSR9518ADK80D
184185
config PWM
185186
default y
186187
endif
@@ -292,7 +293,7 @@ config NET_CONFIG_INIT_TIMEOUT
292293

293294
config CHIP_WIFI
294295
bool "Enable Telink Wi-Fi support"
295-
default y if BOARD_TLSR9118BDK40D
296+
default y if BOARD_TLSR9118BDK40D_V1 || BOARD_TLSR9118BDK40D_V2
296297
select WIFI_W91
297298
select WIFI
298299
select NET_STATISTICS

examples/platform/telink/common.cmake

+11-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
string(REPLACE "_retention" "" BASE_BOARD ${BOARD})
1717

1818
if(NOT FLASH_SIZE)
19-
if(${BASE_BOARD} MATCHES "tlsr9118bdk40d")
19+
if(${BASE_BOARD} MATCHES "tlsr9118bdk40d" OR ${BASE_BOARD} MATCHES "tlsr9118bdk40d_v1"
20+
OR ${BASE_BOARD} MATCHES "tlsr9118bdk40d_v2")
2021
set(FLASH_SIZE "3m")
2122
else()
2223
set(FLASH_SIZE "2m")
@@ -86,17 +87,23 @@ endif()
8687

8788
set(GLOBAL_BOOT_DTC_OVERLAY_FILE "${CHIP_ROOT}/src/platform/telink/${BASE_BOARD}.overlay")
8889
if(NOT EXISTS "${GLOBAL_BOOT_DTC_OVERLAY_FILE}")
89-
message(FATAL_ERROR "${GLOBAL_BOOT_DTC_OVERLAY_FILE} doesn't exist")
90+
message(STATUS "${GLOBAL_BOOT_DTC_OVERLAY_FILE} doesn't exist")
91+
unset(GLOBAL_BOOT_DTC_OVERLAY_FILE)
9092
endif()
9193

9294
set(GLOBAL_DTC_OVERLAY_FILE "${CHIP_ROOT}/src/platform/telink/${BOARD}.overlay")
9395
if(NOT EXISTS "${GLOBAL_DTC_OVERLAY_FILE}")
94-
message(FATAL_ERROR "${GLOBAL_DTC_OVERLAY_FILE} doesn't exist")
96+
message(STATUS "${GLOBAL_DTC_OVERLAY_FILE} doesn't exist")
97+
unset(GLOBAL_DTC_OVERLAY_FILE)
9598
endif()
9699

97100
set(FLASH_DTC_OVERLAY_FILE "${CHIP_ROOT}/src/platform/telink/${BASE_BOARD}_${FLASH_SIZE}_flash.overlay")
98101
if(NOT EXISTS "${FLASH_DTC_OVERLAY_FILE}")
99-
message(FATAL_ERROR "${FLASH_DTC_OVERLAY_FILE} doesn't exist")
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()
100107
endif()
101108

102109
if(DTC_OVERLAY_FILE)

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

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

415415
void AppTaskCommon::LinkPwms(PwmManager & pwmManager)
416416
{
417-
#if CONFIG_BOARD_TLSR9118BDK40D // TLSR9118BDK40D EVK supports only 1 PWM channel connected to LED
418-
pwmManager.linkPwm(PwmManager::EAppPwm_Red, 0);
419-
#elif CONFIG_WS2812_STRIP
417+
#if CONFIG_WS2812_STRIP
420418
pwmManager.linkPwm(PwmManager::EAppPwm_Red, 0);
421419
pwmManager.linkPwm(PwmManager::EAppPwm_Green, 1);
422420
pwmManager.linkPwm(PwmManager::EAppPwm_Blue, 2);

src/platform/telink/tlsr9118bdk40d.overlay

-39
This file was deleted.

0 commit comments

Comments
 (0)