20 #include "rtos/Mutex.h"    51     virtual void get_ifname(
char *name, uint8_t size) 
const;
    95     virtual bool link_out(emac_mem_buf_t *buf);
   150     ETH_HandleTypeDef EthHandle;
   154     bool low_level_init_successful();
   156     int low_level_input(emac_mem_buf_t **buf);
   157     static void thread_function(
void *pvParameters);
   158     static void rmii_watchdog_thread_function(
void *pvParameters);
   160     void enable_interrupts();
   161     void disable_interrupts();
   163     mbed_rtos_storage_thread_t thread_cb;
   164 #if defined (STM32F767xx) || defined (STM32F769xx) || defined (STM32F777xx)\   165     || defined (STM32F779xx)   166     mbed_rtos_storage_thread_t rmii_watchdog_thread_cb;
   167     osThreadId_t rmii_watchdog_thread; 
 
virtual void set_all_multicast(bool all)
Request reception of all multicast packets. 
virtual void set_link_input_cb(emac_link_input_cb_t input_cb)
Sets a callback that needs to be called for packets received for that interface. 
virtual void remove_multicast_group(const uint8_t *address)
Remove device from a multicast group. 
virtual bool get_hwaddr(uint8_t *addr) const 
Return interface-supplied HW address. 
virtual void set_hwaddr(const uint8_t *addr)
Set HW address for interface. 
virtual uint32_t get_mtu_size() const 
Return maximum transmission unit. 
virtual void add_multicast_group(const uint8_t *address)
Add device to a multicast group. 
virtual void get_ifname(char *name, uint8_t size) const 
Return interface name. 
virtual bool power_up()
Initializes the HW. 
virtual void set_link_state_cb(emac_link_state_change_cb_t state_cb)
Sets a callback that needs to be called on link status changes for given interface. 
virtual uint32_t get_align_preference() const 
Gets memory buffer alignment preference. 
mbed::Callback< void(emac_mem_buf_t *buf)> emac_link_input_cb_t
Callback to be register with EMAC interface and to be called for received packets. 
osThreadId_t thread
Processing thread. 
virtual void power_down()
Deinitializes the HW. 
The Mutex class is used to synchronize the execution of threads. 
virtual uint8_t get_hwaddr_size() const 
Returns size of the underlying interface HW address size. 
This interface should be used to abstract low level access to networking hardware All operations rece...
virtual void set_memory_manager(EMACMemoryManager &mem_mngr)
Sets memory manager that is used to handle memory buffers. 
virtual bool link_out(emac_mem_buf_t *buf)
Sends the packet over the link. 
Callback class based on template specialization.