fix(wifi): Fix wifi tx error issue

wifi tx buffer should not be in iRAM.

internal: 61bf6590
This commit is contained in:
Espressif Systems
2018-01-08 10:43:21 +08:00
parent db4e3d8fcd
commit 46e208bdc4
3 changed files with 6 additions and 1 deletions

View File

@ -13,7 +13,7 @@ gwen:
gitlab:
espconn: 3a998034
freertos: ac047746
lwip: 94e6ac0e
lwip: bfdb6ec2
driver: 7bee5263
mbedtls: 1ac9f1f4
ssl: eefb383a

Binary file not shown.

View File

@ -392,6 +392,11 @@ pbuf_alloc(pbuf_layer layer, u16_t length, pbuf_type type)
/* set flags */
p->flags = 0;
LWIP_DEBUGF(PBUF_DEBUG | LWIP_DBG_TRACE, ("pbuf_alloc(length=%"U16_F") == %p\n", length, (void *)p));
if ((int)p > 0x40000000) {
pbuf_free(p);
p = NULL;
}
return p;
}