Dependents:   SimpleLCDClock readCard2Twitter_http AnalogClock_StepperMotor_NTP ServoCamV1

Committer:
donatien
Date:
Mon May 24 10:23:42 2010 +0000
Revision:
0:3717b703f76d
Child:
1:e52ec2a24c6a

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
donatien 0:3717b703f76d 1 #ifndef ETHDRV_H
donatien 0:3717b703f76d 2 #define ETHDRV_H
donatien 0:3717b703f76d 3
donatien 0:3717b703f76d 4 #ifdef __cplusplus
donatien 0:3717b703f76d 5 extern "C" {
donatien 0:3717b703f76d 6 #endif
donatien 0:3717b703f76d 7
donatien 0:3717b703f76d 8 void eth_poll();
donatien 0:3717b703f76d 9 err_t eth_init(struct netif* netif);
donatien 0:3717b703f76d 10 void eth_address(char* mac);
donatien 0:3717b703f76d 11 void eth_free();
donatien 0:3717b703f76d 12
donatien 0:3717b703f76d 13 #ifdef __cplusplus
donatien 0:3717b703f76d 14 };
donatien 0:3717b703f76d 15 #endif
donatien 0:3717b703f76d 16
donatien 0:3717b703f76d 17 #endif