Select one of the symbols to view example projects that use it.
 
Outline
#include <stdio.h>
#include <string.h>
#include "lwip/opt.h"
#include "lwip/pbuf.h"
#include "lwip/snmp.h"
#include "lwip/ethip6.h"
#include "netif/etharp.h"
#include "esp_netif.h"
#include "esp_netif_net_stack.h"
#include "lwip/esp_netif_net_stack.h"
#include "esp_compiler.h"
#include "lwip/esp_pbuf_ref.h"
#include "esp_netif_types.h"
low_level_init(struct netif *)
low_level_output(struct netif *, struct pbuf *)
wlanif_input(void *, void *, size_t, void *)
wlanif_init(struct netif *)
wlanif_init_sta(struct netif *)
wlanif_init_ap(struct netif *)
wlanif_init_nan(struct netif *)
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_netif/lwip/netif/wlanif.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2001-2004 Swedish Institute of Computer Science * * SPDX-License-Identifier: BSD-3-Clause * * SPDX-FileContributor: 2015-2022 Espressif Systems (Shanghai) CO LTD *//* ... */ /** * @file * Ethernet Interface Skeleton used for WiFi * *//* ... */ #include <stdio.h> #include <string.h> #include "lwip/opt.h" #include "lwip/pbuf.h" #include "lwip/snmp.h" #include "lwip/ethip6.h" #include "netif/etharp.h" #include "esp_netif.h" #include "esp_netif_net_stack.h" #include "lwip/esp_netif_net_stack.h" #include "esp_compiler.h" #include "lwip/esp_pbuf_ref.h" #include "esp_netif_types.h"13 includes /** * In this function, the hardware should be initialized. * Called from wlanif_input(). * * @param netif the already initialized lwip network interface structure * for this wlanif *//* ... */ static void low_level_init(struct netif *netif) { /* set MAC hardware address length */ netif->hwaddr_len = ETH_HWADDR_LEN; /* set MAC hardware address */ /* maximum transfer unit */ netif->mtu = 1500; /* device capabilities */ /* don't set NETIF_FLAG_ETHARP if this device is not an ethernet one */ netif->flags = NETIF_FLAG_BROADCAST | NETIF_FLAG_ETHARP | NETIF_FLAG_ETHERNET; #if ESP_LWIP #if LWIP_IGMP netif->flags |= NETIF_FLAG_IGMP; #endif/* ... */ #endif #if ESP_IPV6 #if LWIP_IPV6 && LWIP_IPV6_MLD netif->flags |= NETIF_FLAG_MLD6; #endif/* ... */ #endif }{ ... } /** * This function should do the actual transmission of the packet. The packet is * contained in the pbuf that is passed to the function. This pbuf * might be chained. * * @param netif the lwip network interface structure for this wlanif * @param p the MAC packet to send (e.g. IP packet including MAC addresses and type) * @return ERR_OK if the packet could be sent * an err_t value if the packet couldn't be sent * * @note Returning ERR_MEM here if a DMA queue of your MAC is full can lead to * strange results. You might consider waiting for space in the DMA queue * to become available since the stack doesn't retry to send a packet * dropped because of memory failure (except for the TCP timers). *//* ... */ static err_t low_level_output(struct netif *netif, struct pbuf *p) { esp_netif_t *esp_netif = netif->state; if (esp_netif == NULL) { return ERR_IF; }{...} struct pbuf *q = p; esp_err_t netif_ret = ESP_FAIL; err_t ret = ERR_IF; if(q->next == NULL) { netif_ret = esp_netif_transmit_wrap(esp_netif, q->payload, q->len, q); }{...} else { LWIP_DEBUGF(PBUF_DEBUG, ("low_level_output: pbuf is a list, application may has bug")); q = pbuf_alloc(PBUF_RAW_TX, p->tot_len, PBUF_RAM); if (q != NULL) { pbuf_copy(q, p); }{...} else { return ERR_MEM; }{...} netif_ret = esp_netif_transmit_wrap(esp_netif, q->payload, q->len, q); pbuf_free(q); }{...} /* translate netif_ret to lwip supported return value */ switch (netif_ret) { case ESP_OK: ret = ERR_OK; break; ... case ESP_ERR_NO_MEM: ret = ERR_MEM; break; ... case ESP_ERR_ESP_NETIF_TX_FAILED: ret = ERR_BUF; break; ... case ESP_ERR_INVALID_ARG: ret = ERR_ARG; break; ... default: ret = ERR_IF; break;... }{...} return ret; }{ ... } /** * This function should be called when a packet is ready to be read * from the interface. It uses the function low_level_input() that * should handle the actual reception of bytes from the network * interface. Then the type of the received packet is determined and * the appropriate input function is called. * * @param h lwip network interface structure (struct netif) for this ethernetif * @param buffer wlan buffer * @param len length of buffer * @param l2_buff wlan's L2 buffer pointer *//* ... */ esp_netif_recv_ret_t wlanif_input(void *h, void *buffer, size_t len, void* l2_buff) { struct netif * netif = h; esp_netif_t *esp_netif = netif->state; struct pbuf *p; if(unlikely(!buffer || !netif_is_up(netif))) { if (l2_buff) { esp_netif_free_rx_buffer(esp_netif, l2_buff); }{...} return ESP_NETIF_OPTIONAL_RETURN_CODE(ESP_FAIL); }{...} #ifdef CONFIG_LWIP_L2_TO_L3_COPY p = pbuf_alloc(PBUF_RAW, len, PBUF_RAM); if (p == NULL) { esp_netif_free_rx_buffer(esp_netif, l2_buff); return ESP_NETIF_OPTIONAL_RETURN_CODE(ESP_ERR_NO_MEM); }{...} memcpy(p->payload, buffer, len); esp_netif_free_rx_buffer(esp_netif, l2_buff);/* ... */ #else p = esp_pbuf_allocate(esp_netif, buffer, len, l2_buff); if (p == NULL) { esp_netif_free_rx_buffer(esp_netif, l2_buff); return ESP_NETIF_OPTIONAL_RETURN_CODE(ESP_ERR_NO_MEM); }{...} /* ... */#endif /* full packet send to tcpip_thread to process */ if (unlikely(netif->input(p, netif) != ERR_OK)) { LWIP_DEBUGF(NETIF_DEBUG, ("wlanif_input: IP input error\n")); pbuf_free(p); return ESP_NETIF_OPTIONAL_RETURN_CODE(ESP_FAIL); }{...} return ESP_NETIF_OPTIONAL_RETURN_CODE(ESP_OK); }{ ... } /** * Should be called at the beginning of the program to set up the * network interface. It calls the function low_level_init() to do the * actual setup of the hardware. * * This function should be passed as a parameter to netif_add(). * * @param netif the lwip network interface structure for this wlanif * @return ERR_OK if the loopif is initialized * ERR_MEM if private data couldn't be allocated * any other err_t on error *//* ... */ err_t wlanif_init(struct netif *netif) { LWIP_ASSERT("netif != NULL", (netif != NULL)); #if LWIP_NETIF_HOSTNAME /* Initialize interface hostname */ #if ESP_LWIP if (esp_netif_get_hostname(netif->state, &netif->hostname) != ESP_OK) { netif->hostname = CONFIG_LWIP_LOCAL_HOSTNAME; }{...} #else/* ... */ netif->hostname = "lwip"; #endif /* ... */ #endif /* LWIP_NETIF_HOSTNAME */ /* * Initialize the snmp variables and counters inside the struct netif. * The last argument should be replaced with your link speed, in units * of bits per second. *//* ... */ NETIF_INIT_SNMP(netif, snmp_ifType_ethernet_csmacd, 100); /* We directly use etharp_output() here to save a function call. * You can instead declare your own function an call etharp_output() * from it if you have to do some checks before sending (e.g. if link * is available...) *//* ... */ #if LWIP_IPV4 netif->output = etharp_output; #endif #if LWIP_IPV6 netif->output_ip6 = ethip6_output; #endif /* LWIP_IPV6 */ netif->linkoutput = low_level_output; /* initialize the hardware */ low_level_init(netif); return ERR_OK; }{ ... } err_t wlanif_init_sta(struct netif *netif) { netif->name[0] = 's'; netif->name[1] = 't'; return wlanif_init(netif); }{ ... } err_t wlanif_init_ap(struct netif *netif) { netif->name[0] = 'a'; netif->name[1] = 'p'; return wlanif_init(netif); }{ ... } err_t wlanif_init_nan(struct netif *netif) { netif->name[0] = 'n'; netif->name[1] = 'a'; return wlanif_init(netif); }{ ... }
Details