mirror of
https://github.com/mist-devel/mist-firmware.git
synced 2026-03-10 20:23:47 +00:00
12 lines
153 B
C
12 lines
153 B
C
#ifndef ETH_H
|
|
#define ETH_H
|
|
|
|
#include <stdint.h>
|
|
|
|
int eth_init();
|
|
int eth_poll();
|
|
void eth_get_mac(uint8_t* mac);
|
|
uint8_t eth_get_link_status();
|
|
|
|
#endif
|