@web-font-path: "roboto-debian.css";
Loading...
Searching...
No Matches
lwip_nosys.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_NOSYS_H
8#define _PICO_LWIP_NOSYS_H
9
10#include "pico.h"
11#include "pico/async_context.h"
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
32bool lwip_nosys_init(async_context_t *context);
33
45
46#ifdef __cplusplus
47}
48#endif
49#endif
void lwip_nosys_deinit(async_context_t *context)
De-initialize lwIP (NO_SYS=1 mode) support.
Definition lwip_nosys.c:56
bool lwip_nosys_init(async_context_t *context)
Initializes lwIP (NO_SYS=1 mode) support support using the provided async_context.
Definition lwip_nosys.c:44
Base structure type of all async_contexts. For details about its use, see pico_async_context.
Definition async_context.h:179