Skip to content

Commit

Permalink
Fix packet size check on transmit
Browse files Browse the repository at this point in the history
  • Loading branch information
Extrems committed Jul 27, 2023
1 parent 693091b commit 62193c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lwip/arch/gc/netif/gcif.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
#define BBA_INIT_RWP BBA_INIT_BP
#define BBA_INIT_RRP BBA_INIT_BP

#define BBA_TX_MAX_PACKET_SIZE (1518) /* 14+1500+4 */
#define BBA_TX_MAX_PACKET_SIZE (1536) /* 6 pages * 256 bytes */
#define BBA_RX_MAX_PACKET_SIZE (2048) /* 8 pages * 256 bytes */

#define BBA_NAPI_WEIGHT 16
Expand Down

0 comments on commit 62193c7

Please sign in to comment.