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/9370/head
Seppo Takalo 2018-12-21 15:07:43 +02:00 committed by adbridge
parent 03058ba4e1
commit f5ac84bd40
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
}
}