Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Telink] Add support for groups multicast control #36290

Merged
merged 1 commit into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion config/telink/chip-module/Kconfig.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,12 @@ config COMMON_LIBC_MALLOC_ARENA_SIZE
default 12288

config NET_IPV6_MLD
default n
default n if PM
default y

config NET_IF_MCAST_IPV6_ADDR_COUNT
default 8 if PM
default 15

# Network buffers
config NET_PKT_RX_COUNT
Expand Down Expand Up @@ -272,6 +277,10 @@ config OPENTHREAD_DEFAULT_TX_POWER
default 3 if PM
default 9

config OPENTHREAD_IP6_MAX_EXT_MCAST_ADDRS
default 2 if PM
default 8

endif # NET_L2_OPENTHREAD

config NET_TX_STACK_SIZE
Expand Down
6 changes: 6 additions & 0 deletions examples/lighting-app/telink/include/CHIPProjectConfig.h
interfer marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,9 @@
// Until this is improved in OpenThread we need to increase the retransmission
// interval to survive the stall.
#define CHIP_CONFIG_MRP_LOCAL_ACTIVE_RETRY_INTERVAL (1000_ms32)

// ========== Multicast groups Configuration Overrides =========
#undef CHIP_CONFIG_MAX_GROUP_ENDPOINTS_PER_FABRIC
#define CHIP_CONFIG_MAX_GROUP_ENDPOINTS_PER_FABRIC 2

#define CHIP_CONFIG_EXAMPLE_ACCESS_CONTROL_MAX_SUBJECTS_PER_ENTRY (4 * CHIP_CONFIG_MAX_GROUP_ENDPOINTS_PER_FABRIC)
Loading