Instead of having a single config specifying the memory pool size for variable-sized net buffers, have a separate one for TX and RX for better configuration granularity when optimizing memory usage of the application. Deprecate the old configuration but use its value as a default (for now) for the new configs. This will need to change when the config is deleted. Signed-off-by: Robert Lubos <robert.lubos@nordicsemi.no>
19 lines
426 B
YAML
19 lines
426 B
YAML
common:
|
|
tags:
|
|
- net
|
|
- 6loWPAN
|
|
min_ram: 32
|
|
depends_on: netif
|
|
tests:
|
|
net.6lo:
|
|
extra_configs:
|
|
- CONFIG_NET_TC_THREAD_COOPERATIVE=y
|
|
net.6lo.preempt:
|
|
extra_configs:
|
|
- CONFIG_NET_TC_THREAD_PREEMPTIVE=y
|
|
net.6lo.variable_buf_size:
|
|
extra_configs:
|
|
- CONFIG_NET_BUF_VARIABLE_DATA_SIZE=y
|
|
- CONFIG_NET_PKT_BUF_RX_DATA_POOL_SIZE=4096
|
|
- CONFIG_NET_PKT_BUF_TX_DATA_POOL_SIZE=4096
|