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.
pull/9183/head
Seppo Takalo 2018-12-21 15:07:43 +02:00
parent 51b8d6e59d
commit 50eb243762
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{
"name": "kinetis-emac",
"config": {
"rx-ring-len": 16,
"tx-ring-len": 8
"rx-ring-len": 2,
"tx-ring-len": 1
}
}