Skip to content

Commit 50eb243

Browse files
author
Seppo Takalo
committed
Don't consume 36 kB just for Ethernet buffers.
Kintis EMAC is consuming 16 rinbuffers for input, and 8 buffers for output. This is over-use because input packets are immediately allocated from heap when passed to LwIP. Therefore the number can be creatly reduced.
1 parent 51b8d6e commit 50eb243

File tree

1 file changed

+2
-2
lines changed
  • features/netsocket/emac-drivers/TARGET_Freescale_EMAC

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "kinetis-emac",
33
"config": {
4-
"rx-ring-len": 16,
5-
"tx-ring-len": 8
4+
"rx-ring-len": 2,
5+
"tx-ring-len": 1
66
}
77
}

0 commit comments

Comments
 (0)