Ethernet library

With the TM4C1294 Connected LaunchPad (EK-TM4C1294XL) this Ethernet library allows to you connect to the internet. It can serve as either a server accepting connections or a client making connections to a server. Multiple server or client connections are supported so that you can access the board with multiple clients when in server mode or make multiple connections to a single or multiple servers when in client mode. This library includes several examples that show how to use the library in both client and server mode as well as how to configure the IP address settings for either static or DHCP mode.

Ethernet class

The Ethernet class initializes the ethernet library and network settings.

IPAddress class

The IPAddress class works with local and remote IP addressing.

Server class

The Server class can be used to create servers to which clients can connect. Once connected, server and client can send data to and receive data from each other.

Client class

The Client class can be used to create clients that can then connect to servers. Once connected the client and server can send and receive data to each other.

EthernetUDP

The Ethernet UDP class enables UDP message to be sent and received.

Examples

Guide Home