1
0
mirror of https://github.com/mist-devel/mist-firmware.git synced 2026-03-10 20:23:47 +00:00
Files
Gyorgy Szombathelyi ceb1fc0271 Add a SAMV71 port
2024-03-11 08:53:34 +01:00

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