We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 379b583 commit a43e13cCopy full SHA for a43e13c
drivers/esp-hosted/esp_hosted_netif.c
@@ -51,7 +51,7 @@
51
static err_t netif_struct_init(struct netif *netif) {
52
netif->linkoutput = esp_hosted_netif_output;
53
netif->output = etharp_output;
54
- netif->mtu = 1500;
+ netif->mtu = ESP_FRAME_MAX_PAYLOAD;
55
netif->flags = NETIF_FLAG_BROADCAST | NETIF_FLAG_ETHARP | NETIF_FLAG_ETHERNET | NETIF_FLAG_IGMP;
56
esp_hosted_wifi_get_mac(netif->name[1] - '0', netif->hwaddr);
57
netif->hwaddr_len = sizeof(netif->hwaddr);
0 commit comments