mirror of https://github.com/ARMmbed/mbed-os.git
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
parent
51b8d6e59d
commit
50eb243762
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "kinetis-emac",
|
||||
"config": {
|
||||
"rx-ring-len": 16,
|
||||
"tx-ring-len": 8
|
||||
"rx-ring-len": 2,
|
||||
"tx-ring-len": 1
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue