lwip_freertos.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2022 Raspberry Pi (Trading) Ltd.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef _PICO_LWIP_FREERTOS_H
8 #define _PICO_LWIP_FREERTOS_H
9 
10 #include "pico.h"
11 #include "pico/async_context.h"
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
34 bool lwip_freertos_init(async_context_t *context);
35 
47 
48 #ifdef __cplusplus
49 }
50 #endif
51 #endif
void lwip_freertos_deinit(async_context_t *context)
De-initialize lwIP (NO_SYS=0 mode) support for FreeRTOSNote that since lwIP may only be initialized o...
Base structure type of all async_contexts. For details about its use, see pico_async_context.Individual async_context_types with additional state, should contain this structure at the start.
Definition: async_context.h:175
bool lwip_freertos_init(async_context_t *context)
Initializes lwIP (NO_SYS=0 mode) support support for FreeRTOS using the provided async_contextIf the ...
Definition: lwip_freertos.c:29