cueOS  2.4
cueOS - Universal Show Control OS for ARM
ethernet_driver.h
1
28#ifndef __ETHERNETIF_H__
29#define __ETHERNETIF_H__
30
31#include "lwip/err.h"
32#include "lwip/netif.h"
33#include "cmsis_os.h"
34
35/* Exported types ------------------------------------------------------------*/
39struct link_str {
40 struct netif *netif;
41 osSemaphoreId semaphore;
42};
43
44/* Within 'USER CODE' section, code will be kept by default at each generation */
45/* USER CODE BEGIN 0 */
46
47/* USER CODE END 0 */
48
49/* Exported functions ------------------------------------------------------- */
50err_t ethernetif_init(struct netif *netif);
51void ethernetif_input(void * argument);
52void ethernetif_set_link(void *argument);
53void ethernetif_update_config(struct netif *netif);
54void ethernetif_notify_conn_changed(struct netif *netif);
55
56u32_t sys_jiffies(void);
57u32_t sys_now(void);
58
59/* USER CODE BEGIN 1 */
60
61/* USER CODE END 1 */
62#endif
63
64/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
65
u32_t sys_now(void)
Returns the current time in milliseconds when LWIP_TIMERS == 1 and NO_SYS == 1.
void ethernetif_notify_conn_changed(struct netif *netif)
Function called on ethernet interface link change.
Definition: net.c:214
err_t ethernetif_init(struct netif *netif)
void ethernetif_set_link(void *argument)
This function sets the netif link status.
void ethernetif_input(void *argument)
u32_t sys_jiffies(void)
Returns the current time in milliseconds when LWIP_TIMERS == 1 and NO_SYS == 1.