esp_wifi: Fix some wifi bugs 1117

1. Optimize WiFi debug log
2. WiFi IRAM optimization
3. Update WiFi toolchain to 1.22.0-97-gc752ad5
4. Optimize WiFi TX performance
This commit is contained in:
xiehang
2020-11-20 16:03:05 +08:00
parent c2b6a2d24f
commit c088c19322
10 changed files with 151 additions and 29 deletions

View File

@@ -764,6 +764,22 @@ esp_err_t tcpip_adapter_clear_default_wifi_handlers();
*/
int tcpip_adapter_get_netif_index(tcpip_adapter_if_t tcpip_if);
/**
* @brief increase the reference counter of net stack buffer
*
* @param[in] netstack_buf the net stack buffer
*
*/
void esp_netif_netstack_buf_ref(void *netstack_buf);
/**
* @brief free the netstack buffer
*
* @param[in] netstack_buf the net stack buffer
*
*/
void esp_netif_netstack_buf_free(void *netstack_buf);
#ifdef __cplusplus
}
#endif