2024-11-10 20:53:01 +01:00
|
|
|
#ifndef FEMTO_CONFIG_H
|
|
|
|
#define FEMTO_CONFIG_H
|
|
|
|
|
2024-11-16 07:34:11 +01:00
|
|
|
#define ETHERNET
|
2024-11-10 20:53:01 +01:00
|
|
|
#define LINK_MTU 1536
|
|
|
|
|
|
|
|
#define MAX_TCPSOCKETS 4
|
|
|
|
#define MAX_UDPSOCKETS 2
|
|
|
|
#define RXBUF_SIZE LINK_MTU * 8
|
|
|
|
#define TXBUF_SIZE LINK_MTU * 2
|
|
|
|
|
|
|
|
#define MAX_NEIGHBORS 16
|
|
|
|
|
|
|
|
#endif
|