Skip to content

Commit

Permalink
[Telink] Zephyr revision update
Browse files Browse the repository at this point in the history
After merge updates.
Kconfig change to fix TL3218 commissioning
  • Loading branch information
interfer committed Dec 12, 2024
1 parent 14259cf commit a48b82c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/chef.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
platform: telink
- name: Update Zephyr to specific revision (for developers purpose)
shell: bash
run: scripts/run_in_build_env.sh "python3 scripts/tools/telink/update_zephyr.py 80ba99a8fd90427d10513255c25104d8ea94b3b1"
run: scripts/run_in_build_env.sh "python3 scripts/tools/telink/update_zephyr.py a207b2cbc7d12de37d75b45b5025e8035bbc4bac"
- name: CI Examples Telink
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/examples-telink.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
gh-context: ${{ toJson(github) }}

- name: Update Zephyr to specific revision (for developers purpose)
run: scripts/run_in_build_env.sh "python3 scripts/tools/telink/update_zephyr.py 80ba99a8fd90427d10513255c25104d8ea94b3b1"
run: scripts/run_in_build_env.sh "python3 scripts/tools/telink/update_zephyr.py a207b2cbc7d12de37d75b45b5025e8035bbc4bac"

- name: Build example Telink (B92 retention) Air Quality Sensor App
# Run test for master and s07641069 PRs
Expand Down
8 changes: 5 additions & 3 deletions config/telink/chip-module/Kconfig.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ config HEAP_MEM_POOL_SIZE
default 1280

config COMMON_LIBC_MALLOC_ARENA_SIZE
default 20716 if SOC_RISCV_TELINK_TL321X || SOC_SERIES_RISCV_TELINK_B9X_RETENTION
default 20716 if SOC_SERIES_RISCV_TELINK_B9X_RETENTION
default 12288

config NET_IPV6_MLD
Expand All @@ -96,19 +96,21 @@ config NET_IF_MCAST_IPV6_ADDR_COUNT

# Network buffers
config NET_PKT_RX_COUNT
default 4 if PM
default 4 if PM || SOC_RISCV_TELINK_TL321X
default 8

config NET_PKT_TX_COUNT
default 4 if PM
default 4 if PM || SOC_RISCV_TELINK_TL321X
default 8

config NET_BUF_RX_COUNT
default 4 if PM
default 16 if SOC_RISCV_TELINK_TL321X
default 32

config NET_BUF_TX_COUNT
default 4 if PM
default 16 if SOC_RISCV_TELINK_TL321X
default 32

config GPIO
Expand Down

0 comments on commit a48b82c

Please sign in to comment.