blob: 2df2833dfe9f3c5e03de75241159421d54a312a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#define NET_SIZE_BUF 1500
#define NET_SIZE_BUFQ 2
#define NET_PIN_RTS 20
#define NET_PIN_CTS 22
#define NET_PIN_CS 10
#define NET_IDX_SS 3
#define NET_FLAG_RDY 0x01
#define NET_FLAG_RST 0x02
#define NET_FLAG_RTS 0x04
#define NET_FLAG_CTS 0x08
#define NET_FLAG_INIT 0x10
#define NET_FLAG_ONEW 0x20
|