Make MAC address configurable using hw files.
[bertos.git] / bertos / drv / eth.h
index a5f0c2d5a713f53d2db1c7f60b09867dafdc2f1b..786e7979c2ee303293ac5f72f1a91ca239c92b2c 100644 (file)
  *
  * $WIZ$ module_name = "eth"
  * $WIZ$ module_configuration = "bertos/cfg/cfg_eth.h"
- * $WIZ$ module_supports = "at91"
+ * $WIZ$ module_supports = "at91sam7x or sam3x"
+ * $WIZ$ module_hw = "bertos/hw/hw_eth.h", "bertos/hw/hw_eth.c"
  */
 
 #ifndef DRV_ETH_H
 #define DRV_ETH_H
 
+#include "hw/hw_eth.h"
 #include <cpu/types.h>
 
 #define ETH_ADDR_LEN   6
@@ -119,10 +121,15 @@ INLINE bool eth_addrCmp(const uint8_t *addr1, const uint8_t *addr2)
                        (addr1[5] ^ addr2[5]));
 }
 
+ssize_t eth_putFrame(const uint8_t *buf, size_t len);
+void eth_sendFrame(void);
+
+size_t eth_getFrameLen(void);
+ssize_t eth_getFrame(uint8_t *buf, size_t len);
+
 ssize_t eth_send(const uint8_t *buf, size_t len);
 ssize_t eth_recv(uint8_t *buf, size_t len);
-int eth_init(void);
 
-extern uint8_t mac_addr[ETH_ADDR_LEN];
+int eth_init(void);
 
 #endif /* DRV_ETH_H */