Nanostack Border Router is a generic mbed border router implementation that provides the 6LoWPAN ND or Thread border router initialization logic.

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers eth_driver.h Source File

eth_driver.h

00001 #ifndef ETH_DRIVER_H
00002 #define ETH_DRIVER_H
00003 
00004 /**
00005  * Initialize Ethernet PHY driver and register itself to MAC.
00006  *
00007  * Must follow C calling conventions.
00008  *
00009  * \param mac_ptr Pointer to EIU-48 address
00010  * \param app_ipv6_init_cb Callback to receive link status and interface id
00011  */
00012 
00013 
00014 extern "C" void arm_eth_phy_device_register(uint8_t *mac_ptr, void (*app_ipv6_init_cb)(uint8_t, int8_t));
00015 
00016 #endif