mongoose/mip
Sergio R. Caprile 419dd50255
Fix Ethernet buffer size
1500 bytes is payload size, which is OK for tx. On the rx side, a full 802.1Q-tagged frame size is 1522 bytes, without the 4-byte CRC = 1518 bytes (1514 for non-VLAN-tagged frames).
2022-09-06 16:53:26 -03:00
..
driver_enc28j60.c Refactor W5500 driver, add arduino w5500 example 2022-09-02 12:58:54 +01:00
driver_stm32.c Use single-line comments 2022-09-03 09:49:41 +01:00
driver_w5500.c Refactor W5500 driver, add arduino w5500 example 2022-09-02 12:58:54 +01:00
mip.c Fix Ethernet buffer size 2022-09-06 16:53:26 -03:00
mip.h Refactor W5500 driver, add arduino w5500 example 2022-09-02 12:58:54 +01:00
README.md Fix typo 2022-06-11 17:40:48 +01:00

MIP - experimental TCP/IP stack for Mongoose Library

This bare-metal embedded TCP/IP stack is designed specifically for Mongoose. It does not implement BSD sockets interface - instead, it implements an event-based API tailored for Mongoose Library. As a result, it does not need to use synchronisation primitives. It is very fast, and can work with or without RTOS.

See example usage at examples/stm32/nucleo-f746zg-baremetal