Modularizando o src
Dependencies: EALib EthernetInterface_vz mbed-rtos mbed
Fork of header_main_colinas_V0-20-09-14 by
eth.h
- Committer:
- klauss
- Date:
- 2015-11-24
- Revision:
- 137:32dd35a6dbc9
- Parent:
- 132:05cd37f7e007
File content as of revision 137:32dd35a6dbc9:
#ifndef __ETH_H__
#define __ETH_H__
#include "EthernetInterface.h"
#include "mbed.h"
#include "debug.h"
%: include "shared_variables.h"
%: include "config_manager.h"
#include "vz_protocol.h"
extern EthernetInterface eth;
///< Representa o link com o mundo externo.
/**
* @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 );
void __reconnect ( void );
#endif
