Modularizando o src

Dependencies:   EALib EthernetInterface_vz mbed-rtos mbed

Fork of header_main_colinas_V0-20-09-14 by VZTECH

eth.h

Committer:
klauss
Date:
2015-05-08
Revision:
121:ee02790d00b7
Parent:
74:81c47fff88a5
Child:
122:480c44b0e205

File content as of revision 121:ee02790d00b7:

#ifndef __ETH_H__
#define __ETH_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