1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #ifndef __ETHERNETIF_H__
- #define __ETHERNETIF_H__
- #include "lwip/err.h"
- #include "lwip/netif.h"
- #include "cmsis_os.h"
- #include "node-red-config.h"
- err_t ethernetif_init(struct netif *netif);
- void ethernetif_input(void* argument);
- void ethernet_link_thread(void* argument );
- void ethernetif_notify_conn_changed(struct netif *netif);
- void Error_Handler(void);
- u32_t sys_jiffies(void);
- u32_t sys_now(void);
- #endif
|