mirror of
https://github.com/taubel/sdk-ameba-v4.0b-gcc.git
synced 2026-07-06 03:15:42 +00:00
14 lines
No EOL
296 B
C
14 lines
No EOL
296 B
C
#ifndef __MII_ETHERNETIF_H__
|
|
#define __MII_ETHERNETIF_H__
|
|
|
|
#include "lwip_netconf.h"
|
|
|
|
#define MII_TX_DESC_CNT 4
|
|
#define MII_RX_DESC_CNT 10
|
|
|
|
#define ETHERNET_IDX (NET_IF_NUM - 1)
|
|
#define WLAN_IDX 0
|
|
|
|
typedef void (*link_up_down_callback)(int blinkup);
|
|
|
|
#endif // __MII_ETHERNETIF_H__
|