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

drivers/eth_driver.h

Committer:
mbed_official
Date:
2017-03-09
Revision:
0:85f4174a8e29

File content as of revision 0:85f4174a8e29:

#ifndef ETH_DRIVER_H
#define ETH_DRIVER_H

/**
 * Initialize Ethernet PHY driver and register itself to MAC.
 *
 * Must follow C calling conventions.
 *
 * \param mac_ptr Pointer to EIU-48 address
 * \param app_ipv6_init_cb Callback to receive link status and interface id
 */


extern "C" void arm_eth_phy_device_register(uint8_t *mac_ptr, void (*app_ipv6_init_cb)(uint8_t, int8_t));

#endif