esp8266_driver.c
void nicNotifyLinkChange(NetInterface *interface)
Process link state change notification.
Definition: nic.c:559
void ethernetif_input(struct netif *netif, struct pbuf *p)
Process incoming packets.
Definition: esp8266_driver.c:385
void esp8266WifiEventHandler(NetInterface *interface)
ESP8266 Wi-Fi event handler.
Definition: esp8266_driver.c:217
void macAddrToEui64(const MacAddr *macAddr, Eui64 *interfaceId)
Map a MAC address to the IPv6 modified EUI-64 identifier.
Definition: ethernet.c:946
size_t netBufferRead(void *dest, const NetBuffer *src, size_t srcOffset, size_t length)
Read data from a multi-part buffer.
Definition: net_mem.c:690
void esp8266WifiDisableIrq(NetInterface *interface)
Disable interrupts.
Definition: esp8266_driver.c:207
void nicProcessPacket(NetInterface *interface, uint8_t *packet, size_t length, NetRxAncillary *ancillary)
Handle a packet received by the network controller.
Definition: nic.c:392
void esp8266WifiTick(NetInterface *interface)
ESP8266 Wi-Fi timer handler.
Definition: esp8266_driver.c:187
void esp8266WifiEnableIrq(NetInterface *interface)
Enable interrupts.
Definition: esp8266_driver.c:197
size_t netBufferGetLength(const NetBuffer *buffer)
Get the actual length of a multi-part buffer.
Definition: net_mem.c:297
void osAcquireMutex(OsMutex *mutex)
Acquire ownership of the specified mutex object.
Definition: os_port_chibios.c:396
void osReleaseMutex(OsMutex *mutex)
Release ownership of the specified mutex object.
Definition: os_port_chibios.c:408
error_t esp8266WifiInit(NetInterface *interface)
ESP8266_WIFI initialization.
Definition: esp8266_driver.c:103
error_t esp8266WifiSendPacket(NetInterface *interface, const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary)
Send a packet.
Definition: esp8266_driver.c:232
void osSetEvent(OsEvent *event)
Set the specified event object to the signaled state.
Definition: os_port_chibios.c:202
TCP/IP stack core.
error_t esp8266WifiUpdateMacAddrFilter(NetInterface *interface)
Configure MAC address filtering.
Definition: esp8266_driver.c:294
ESP8266 Wi-Fi controller.
Debugging facilities.