Skip to content

Commit 19ab15c

Browse files
kapbhNordicBuilder
authored andcommittedMar 19, 2025·
samples: treewide: Remove HEAP_MEM_POOL_SIZE config from samples
K_HEAP size can be determined by CONFIG_HEAP_MEM_POOL_ADD_SIZE* as configured by individual modules. Hence remove explicit definition of HEAP_MEM_POOL_SIZE in sample configs. Signed-off-by: Kapil Bhatt <kapil.bhatt@nordicsemi.no>
1 parent 39bcdd1 commit 19ab15c

File tree

17 files changed

+0
-32
lines changed

17 files changed

+0
-32
lines changed
 

‎samples/wifi/ble_coex/prj.conf

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ CONFIG_NET_PKT_RX_COUNT=2
6464
CONFIG_NET_PKT_TX_COUNT=24
6565
CONFIG_NET_BUF_RX_COUNT=2
6666
CONFIG_NET_BUF_TX_COUNT=48
67-
CONFIG_HEAP_MEM_POOL_SIZE=230000
6867

6968
CONFIG_WIFI_CREDENTIALS=y
7069
CONFIG_WIFI_CREDENTIALS_STATIC=y

‎samples/wifi/monitor/prj.conf

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ CONFIG_NET_PKT_TX_COUNT=3
2727
# tuned for performance, but this will be revisited in the future.
2828
CONFIG_NET_BUF_RX_COUNT=60
2929
CONFIG_NET_BUF_TX_COUNT=6
30-
CONFIG_HEAP_MEM_POOL_SIZE=230000
3130
CONFIG_NET_TC_TX_COUNT=1
3231

3332
CONFIG_INIT_STACKS=y

‎samples/wifi/offloaded_raw_tx/prj.conf

-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,3 @@ CONFIG_NRF70_OFFLOADED_RAW_TX=y
44

55
# Memories
66
CONFIG_MAIN_STACK_SIZE=5200
7-
CONFIG_HEAP_MEM_POOL_SIZE=18000
8-
CONFIG_HEAP_MEM_POOL_IGNORE_MIN=y

‎samples/wifi/promiscuous/prj.conf

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ CONFIG_NET_PKT_TX_COUNT=3
3939
# tuned for performance, but this will be revisited in the future.
4040
CONFIG_NET_BUF_RX_COUNT=60
4141
CONFIG_NET_BUF_TX_COUNT=6
42-
CONFIG_HEAP_MEM_POOL_SIZE=230000
4342
CONFIG_NET_TC_TX_COUNT=1
4443

4544
CONFIG_NET_IF_UNICAST_IPV4_ADDR_COUNT=1

‎samples/wifi/provisioning/ble/prj.conf

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ CONFIG_NET_PKT_TX_COUNT=8
3131
# tuned for performance, but this will be revisited in the future.
3232
CONFIG_NET_BUF_RX_COUNT=16
3333
CONFIG_NET_BUF_TX_COUNT=16
34-
CONFIG_HEAP_MEM_POOL_SIZE=183600
3534
CONFIG_NET_TC_TX_COUNT=1
3635

3736
CONFIG_NET_IF_UNICAST_IPV4_ADDR_COUNT=1

‎samples/wifi/provisioning/softap/prj.conf

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ CONFIG_PM_PARTITION_SIZE_TFM_SRAM=0xa000
1010
CONFIG_PM_PARTITION_SIZE_TFM=0x20000
1111

1212
# Optimize Wi-Fi stack to save some memory.
13-
CONFIG_HEAP_MEM_POOL_SIZE=120000
14-
CONFIG_HEAP_MEM_POOL_IGNORE_MIN=y
1513
CONFIG_NRF70_RX_NUM_BUFS=16
1614
CONFIG_NRF70_MAX_TX_AGGREGATION=4
1715

‎samples/wifi/radio_test/multi_domain/prj.conf

-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@ CONFIG_NRF70_SR_COEX=y
1414
# Memories
1515
CONFIG_MAIN_STACK_SIZE=5200
1616
CONFIG_SHELL_STACK_SIZE=5200
17-
#64K memory needed for IQ sample captures.
18-
CONFIG_HEAP_MEM_POOL_SIZE=98304
19-
CONFIG_HEAP_MEM_POOL_IGNORE_MIN=y
20-
2117

2218
# Debugging
2319
CONFIG_STACK_SENTINEL=y

‎samples/wifi/raw_tx_packet/prj.conf

-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ CONFIG_NET_PKT_TX_COUNT=8
3232
# tuned for performance, but this will be revisited in the future.
3333
CONFIG_NET_BUF_RX_COUNT=8
3434
CONFIG_NET_BUF_TX_COUNT=16
35-
CONFIG_HEAP_MEM_POOL_SIZE=105000
36-
CONFIG_HEAP_MEM_POOL_IGNORE_MIN=y
3735
CONFIG_NRF70_RX_NUM_BUFS=16
3836
CONFIG_NET_TC_TX_COUNT=1
3937

‎samples/wifi/scan/prj.conf

-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
CONFIG_WIFI=y
77
CONFIG_WIFI_NRF70=y
88
CONFIG_NET_L2_WIFI_MGMT=y
9-
CONFIG_HEAP_MEM_POOL_SIZE=25000
10-
CONFIG_HEAP_MEM_POOL_IGNORE_MIN=y
119

1210
# System settings
1311
CONFIG_ASSERT=y

‎samples/wifi/shell/prj.conf

-3
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ CONFIG_NET_BUF_RX_COUNT=16
3434
CONFIG_NET_BUF_TX_COUNT=16
3535
CONFIG_NRF70_RX_NUM_BUFS=16
3636
CONFIG_NRF70_MAX_TX_AGGREGATION=4
37-
# nRF700x is main consumer: (16 + 8) * 1600 = ~40KB + ~40KB control path (experimental)
38-
CONFIG_HEAP_MEM_POOL_SIZE=100000
39-
CONFIG_HEAP_MEM_POOL_IGNORE_MIN=y
4037
CONFIG_NET_TC_TX_COUNT=1
4138

4239
CONFIG_NET_IF_UNICAST_IPV6_ADDR_COUNT=4

‎samples/wifi/shutdown/prj.conf

-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
CONFIG_WIFI=y
77
CONFIG_WIFI_NRF70=y
88
CONFIG_NET_L2_WIFI_MGMT=y
9-
CONFIG_HEAP_MEM_POOL_SIZE=25000
10-
CONFIG_HEAP_MEM_POOL_IGNORE_MIN=y
119

1210
# Networking
1311
CONFIG_NETWORKING=y

‎samples/wifi/softap/prj.conf

-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ CONFIG_NET_PKT_TX_COUNT=8
3232
CONFIG_NET_BUF_RX_COUNT=8
3333
CONFIG_NET_BUF_TX_COUNT=16
3434
CONFIG_NRF70_RX_NUM_BUFS=16
35-
CONFIG_HEAP_MEM_POOL_SIZE=115000
36-
CONFIG_HEAP_MEM_POOL_IGNORE_MIN=y
3735
CONFIG_NET_TC_TX_COUNT=1
3836

3937
CONFIG_NET_IF_UNICAST_IPV4_ADDR_COUNT=1

‎samples/wifi/sta/prj.conf

-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ CONFIG_NRF70_RX_NUM_BUFS=16
3333
# tuned for performance, but this will be revisited in the future.
3434
CONFIG_NET_BUF_RX_COUNT=16
3535
CONFIG_NET_BUF_TX_COUNT=32
36-
CONFIG_HEAP_MEM_POOL_SIZE=105000
37-
CONFIG_HEAP_MEM_POOL_IGNORE_MIN=y
3836
CONFIG_NET_TC_TX_COUNT=1
3937

4038
CONFIG_NET_IF_UNICAST_IPV4_ADDR_COUNT=1

‎samples/wifi/thread_coex/prj.conf

-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ CONFIG_ZVFS_OPEN_MAX=16
5656

5757
# Optimized networking settings for performance
5858
CONFIG_NET_TC_TX_COUNT=1
59-
CONFIG_HEAP_MEM_POOL_SIZE=230000
6059

6160
# Below Wi-Fi configs need to be modified based on security
6261
CONFIG_WIFI_CREDENTIALS=y

‎samples/wifi/throughput/prj.conf

-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ CONFIG_NET_BUF_RX_COUNT=16
3636
CONFIG_NET_BUF_TX_COUNT=16
3737
CONFIG_NRF70_RX_NUM_BUFS=16
3838
CONFIG_NRF70_MAX_TX_AGGREGATION=4
39-
# nRF700x is main consumer: (16 + 8) * 1600 = ~40KB + ~40KB control path (experimental)
40-
CONFIG_HEAP_MEM_POOL_SIZE=110000
41-
CONFIG_HEAP_MEM_POOL_IGNORE_MIN=y
4239
CONFIG_NET_TC_TX_COUNT=1
4340

4441
CONFIG_NET_IF_UNICAST_IPV6_ADDR_COUNT=4

‎samples/wifi/twt/prj.conf

-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ CONFIG_NET_PKT_TX_COUNT=8
2929
CONFIG_NET_PKT_RX_COUNT=16
3030
CONFIG_NET_BUF_TX_COUNT=16
3131
CONFIG_NET_BUF_RX_COUNT=16
32-
CONFIG_HEAP_MEM_POOL_SIZE=105000
33-
CONFIG_HEAP_MEM_POOL_IGNORE_MIN=y
3432
CONFIG_NRF70_RX_NUM_BUFS=16
3533
#CONFIG_SPEED_OPTIMIZATIONS=y
3634
#CONFIG_NRF70_MAX_TX_AGGREGATION=9

‎samples/wifi/wfa_qt_app/prj.conf

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ CONFIG_NET_PKT_TX_COUNT=8
4242
# tuned for performance, but this will be revisited in the future.
4343
CONFIG_NET_BUF_RX_COUNT=16
4444
CONFIG_NET_BUF_TX_COUNT=16
45-
CONFIG_HEAP_MEM_POOL_SIZE=183600
4645
CONFIG_NET_TC_TX_COUNT=1
4746

4847
CONFIG_NET_IF_UNICAST_IPV6_ADDR_COUNT=4

0 commit comments

Comments
 (0)