mirror of
https://github.com/drasko/open-ameba.git
synced 2024-11-22 22:14:17 +00:00
12 lines
346 B
C
12 lines
346 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
|
|
#if CONFIG_ETHERNET
|
|
extern s8 rltk_mii_send(struct eth_drv_sg *sg_list, int sg_len, int total_len);
|
|
extern void rltk_mii_recv(struct eth_drv_sg *sg_list, int sg_len);
|
|
#endif
|
|
#endif // __MII_ETHERNETIF_H__
|