File tree 3 files changed +18
-3
lines changed
config/telink/chip-module
3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ jobs:
111
111
platform : telink
112
112
- name : Update Zephyr to specific revision (for developers purpose)
113
113
shell : bash
114
- run : scripts/run_in_build_env.sh "python3 scripts/tools/telink/update_zephyr.py 5e1c91c9fb0c0a9b32bb075283e5f7cb77606d74 "
114
+ run : scripts/run_in_build_env.sh "python3 scripts/tools/telink/update_zephyr.py e8f404c8dd3ddca76e862fbfd395f2b38fabc8b5 "
115
115
- name : CI Examples Telink
116
116
shell : bash
117
117
run : |
Original file line number Diff line number Diff line change 58
58
gh-context : ${{ toJson(github) }}
59
59
60
60
- name : Update Zephyr to specific revision (for developers purpose)
61
- run : scripts/run_in_build_env.sh "python3 scripts/tools/telink/update_zephyr.py 5e1c91c9fb0c0a9b32bb075283e5f7cb77606d74 "
61
+ run : scripts/run_in_build_env.sh "python3 scripts/tools/telink/update_zephyr.py e8f404c8dd3ddca76e862fbfd395f2b38fabc8b5 "
62
62
63
63
- name : Build example Telink (B92 retention) Air Quality Sensor App
64
64
# Run test for master and s07641069 PRs
Original file line number Diff line number Diff line change @@ -88,7 +88,9 @@ config HEAP_MEM_POOL_SIZE
88
88
default 1280
89
89
90
90
config COMMON_LIBC_MALLOC_ARENA_SIZE
91
- default 20716 if SOC_SERIES_RISCV_TELINK_B9X_RETENTION || (SOC_RISCV_TELINK_TL321X && ZEPHYR_VERSION_3_3)
91
+ default 20716 if SOC_SERIES_RISCV_TELINK_B9X_RETENTION || \
92
+ (SOC_RISCV_TELINK_TL321X && ZEPHYR_VERSION_3_3) || \
93
+ (SOC_RISCV_TELINK_TL721X && SOC_SERIES_RISCV_TELINK_TLX_RETENTION)
92
94
default 16384 if SOC_RISCV_TELINK_TL721X || (SOC_RISCV_TELINK_TL321X && !ZEPHYR_VERSION_3_3)
93
95
default 12288
94
96
@@ -301,6 +303,19 @@ endchoice
301
303
config CHIP_ENABLE_ICD_SUPPORT
302
304
default y if CHIP_THREAD_DEVICE_ROLE_SLEEPY_END_DEVICE
303
305
306
+ config OPENTHREAD_CSMABACKOFF_OPTIMIZATION
307
+ bool "Skip initial CSMA-CA backoff when sending data requests"
308
+ depends on CHIP_ENABLE_ICD_SUPPORT
309
+ default n
310
+ help
311
+ Skip the first CSMA backoff period when sending data requests over IEEE 802.15.4.
312
+
313
+ config IEEE802154_TLX_OPTIMIZATION
314
+ bool "Optimize 802.15.4 RF performance for TLX SoCs"
315
+ default n
316
+ help
317
+ Improve RF performance in IEEE 802.15.4 communication on TLX SoCs.
318
+
304
319
config OPENTHREAD_THREAD_STACK_SIZE
305
320
default 2400 if PM || SOC_RISCV_TELINK_TL321X
306
321
You can’t perform that action at this time.
0 commit comments