Modularizando o src

Dependencies:   EALib EthernetInterface_vz mbed-rtos mbed

Fork of header_main_colinas_V0-20-09-14 by VZTECH

Revision:
74:81c47fff88a5
Child:
121:ee02790d00b7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eth.h	Mon Nov 24 16:43:16 2014 +0000
@@ -0,0 +1,27 @@
+#ifndef __ETH_H__
+#define __ETH_H__
+
+#include "mbed.h"
+#include "EthernetInterface.h"
+#include "debug.h"
+#include "vz_protocol.h"
+#include "wdt_manager.h"
+
+/**
+ * @Synopsis Responsavel por inicializar as configurações iniciais de conexão eth
+ *
+ * @return 0 ( zero ) caso tenha uma execução bem sucedida, um numero negativo, caso contrário.
+ *
+ * Exemplo:
+ * @code
+ * ...
+ *   int eth_status = __init_eth__();
+ * ...
+ * @endcode
+ */
+int __init_eth__( void );
+
+extern EthernetInterface eth;
+///< Representa o link com o mundo externo.
+
+#endif
\ No newline at end of file