You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: connectivity/netsocket/mbed_lib.json5
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,7 @@
83
83
"value": 592// LwIP default value (assuming default TCP MSS)
84
84
},
85
85
"emac-rx-pool-num-bufs": {
86
-
"help": "Number of buffers (of size netsocket.emac-rx-pool-buf-size) in the EMAC receive pool. This controls how much memory is preallocated for Ethernet reception. A larger number means that more Ethernet packets can be received per second without dropping any. Some EMACs need up to 4 extra buffers, so this should be set such that this value minus 4 times the buffer size is at least 1514 (so we can receive one full Ethernet frame).",
86
+
"help": "Number of buffers (of size netsocket.emac-rx-pool-buf-size) in the EMAC receive pool. This controls how much memory is preallocated for Ethernet reception. A larger number means that more Ethernet packets can be received per second without dropping any. Some EMACs need up to 4 extra buffers, so this should be set such that (this value minus 4) times the buffer size is at least 1514 (so we can receive one full Ethernet frame).",
Copy file name to clipboardExpand all lines: connectivity/netsocket/tests/TESTS/network/emac/emac_test_initialize.cpp
-3Lines changed: 0 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -36,9 +36,6 @@ void test_emac_initialize()
36
36
worker_loop_init();
37
37
mbed_trace_init();
38
38
39
-
// Set memory manager parameters
40
-
EmacTestMemoryManager::get_instance().set_alloc_unit(256); // Use a relatively small allocation unit size so packets have to be split up into a lot of buffers
0 commit comments