/** ****************************************************************************** * @file LwIP/LwIP_HTTP_Server_Netconn_RTOS/Inc/ethernetif.h * @author MCD Application Team * @brief Header for ethernetif.c module ****************************************************************************** * @attention * *

© Copyright (c) 2017 STMicroelectronics. * All rights reserved.

* * This software component is licensed by ST under Ultimate Liberty license * SLA0044, the "License"; You may not use this file except in compliance with * the License. You may obtain a copy of the License at: * www.st.com/SLA0044 * ****************************************************************************** */ #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 */ /* Exported functions ------------------------------------------------------- */ err_t ethernetif_init(struct netif *netif); void ethernet_link_thread( void const * argument ); #endif