stm32_eth.h
1 /*
2  *
3  * @file
4  * @brief Interface definition for the stm32 ethernet driver
5  *
6  * @author Robin Lösch <robin@chilio.net>
7  *
8  * @{
9  */
10 
11 #ifndef STM32_ETH_H
12 #define STM32_ETH_H
13 
14 #include "net/netdev.h"
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19 
24 void stm32_eth_netdev_setup(netdev_t *netdev);
25 
26 #ifdef __cplusplus
27 }
28 #endif
29 
30 #endif /* STM32_ETH_H */
31 /* @} */
netdev.h
Definitions low-level network driver interface.
netdev
Structure to hold driver state.
Definition: netdev.h:302