mirror of
https://github.com/STMicroelectronics/STM32CubeF7.git
synced 2025-05-05 19:30:14 +08:00
23 lines
677 B
C
23 lines
677 B
C
![]() |
#ifndef __ETHERNETIF_H__
|
||
|
#define __ETHERNETIF_H__
|
||
|
|
||
|
|
||
|
#include "lwip/err.h"
|
||
|
#include "lwip/netif.h"
|
||
|
#include "cmsis_os.h"
|
||
|
|
||
|
/* Exported types ------------------------------------------------------------*/
|
||
|
/* Structure that include link thread parameters */
|
||
|
struct link_str {
|
||
|
struct netif *netif;
|
||
|
osSemaphoreId semaphore;
|
||
|
};
|
||
|
/* Exported functions ------------------------------------------------------- */
|
||
|
err_t ethernetif_init(struct netif *netif);
|
||
|
void ethernetif_set_link(void const *argument);
|
||
|
void ethernetif_update_config(struct netif *netif);
|
||
|
void ethernetif_notify_conn_changed(struct netif *netif);
|
||
|
void ETHERNET_IRQHandler(void);
|
||
|
u32_t sys_now(void);
|
||
|
#endif
|