41 lines
1.2 KiB
C
41 lines
1.2 KiB
C
/**
|
|
******************************************************************************
|
|
* @file ethernetif.h
|
|
* @author MCD Application Team
|
|
* @brief Ethernet interface header file.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2017 STMicroelectronics.
|
|
* All rights reserved.
|
|
*
|
|
* This software is licensed under terms that can be found in the LICENSE file
|
|
* in the root directory of this software component.
|
|
* If no LICENSE file comes with this software, it is provided AS-IS.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef __ETHERNETIF_H__
|
|
#define __ETHERNETIF_H__
|
|
|
|
|
|
#include "lwip/err.h"
|
|
#include "lwip/netif.h"
|
|
#include "cmsis_os.h"
|
|
|
|
/* Exported types ------------------------------------------------------------*/
|
|
|
|
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);
|
|
|
|
u32_t sys_now(void);
|
|
#endif
|