winc3400_driver.c
bool_t osSetEventFromIsr(OsEvent *event)
Set an event object to the signaled state from an interrupt service routine.
Definition: os_port_chibios.c:270
void nicNotifyLinkChange(NetInterface *interface)
Process link state change notification.
Definition: nic.c:559
void winc3400EventHandler(NetInterface *interface)
WINC3400 event handler.
Definition: winc3400_driver.c:234
error_t winc3400UpdateMacAddrFilter(NetInterface *interface)
Configure MAC address filtering.
Definition: winc3400_driver.c:305
void macAddrToEui64(const MacAddr *macAddr, Eui64 *interfaceId)
Map a MAC address to the IPv6 modified EUI-64 identifier.
Definition: ethernet.c:946
void winc3400AppWifiEvent(uint8_t msgType, void *msg)
Callback function that handles Wi-Fi events.
Definition: winc3400_driver.c:349
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 nicProcessPacket(NetInterface *interface, uint8_t *packet, size_t length, NetRxAncillary *ancillary)
Handle a packet received by the network controller.
Definition: nic.c:392
void winc3400DisableIrq(NetInterface *interface)
Disable interrupts.
Definition: winc3400_driver.c:202
error_t winc3400SendPacket(NetInterface *interface, const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary)
Send a packet.
Definition: winc3400_driver.c:251
error_t winc3400Init(NetInterface *interface)
WINC3400 initialization.
Definition: winc3400_driver.c:81
size_t netBufferGetLength(const NetBuffer *buffer)
Get the actual length of a multi-part buffer.
Definition: net_mem.c:297
WINC3400 Wi-Fi controller.
void winc3400AppEthEvent(uint8_t msgType, void *msg, void *ctrlBuf)
Callback function that handles events in bypass mode.
Definition: winc3400_driver.c:399
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
void osSetEvent(OsEvent *event)
Set the specified event object to the signaled state.
Definition: os_port_chibios.c:202
TCP/IP stack core.
Debugging facilities.