9ceb218f80
Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
307 B
C
19 lines
307 B
C
/*!
|
|
\file net_init.h
|
|
\brief deferred Ethernet + lwIP bring-up (FreeRTOS task)
|
|
*/
|
|
|
|
#ifndef NET_INIT_H
|
|
#define NET_INIT_H
|
|
|
|
#include "FreeRTOS.h"
|
|
#include "task.h"
|
|
|
|
#ifndef NET_INIT_DELAY_MS
|
|
#define NET_INIT_DELAY_MS 1000U
|
|
#endif
|
|
|
|
BaseType_t net_init_task_create(void);
|
|
|
|
#endif /* NET_INIT_H */
|