9ceb218f80
Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
198 B
C
12 lines
198 B
C
#ifndef __ETHERNETIF_H__
|
|
#define __ETHERNETIF_H__
|
|
|
|
|
|
#include "lwip/err.h"
|
|
#include "lwip/netif.h"
|
|
|
|
err_t ethernetif_init(struct netif *netif);
|
|
void ethernetif_input( void * pvParameters );
|
|
|
|
#endif
|