Mbed library for ENC28J60 Ethernet modules. Full support for TCP/IP and UDP Server, Client and HTTP server (webserver). DHCP and DNS is included.

Dependents:   mBuino_ENC28_MQTT Nucleo_Web_ENC28J60 Nucleo_Web_ENC28J60_ADC Serial_over_Ethernet ... more

Library for ENC28J60 Ethernet modules.

/media/uploads/hudakz/enc28j60_module01.jpg

Ported to mbed from Norbert Truchsess's UIPEthernet library for Arduino. Thank you Norbert!

  • Full support for persistent (streaming) TCP/IP and UDP connections Client and Server each, ARP, ICMP, DHCP and DNS.
  • Works with both Mbed OS 2 and Mbed OS 5.

Usage:

  • Import the library into your project.
  • Add #include "UipEthernet.h" to main.cpp
  • Create one instance of the UipEthernet class initialized with the MAC address you'd like to use and SPI pins of the connected Mbed board.

Example programs:

Import programWebSwitch_ENC28J60

HTTP Server serving a simple webpage which enables to remotely turn a digital output on/off. Compile, download, run and type 'IP_address/secret/' (don't forget the last '/') into your web browser and hit ENTER.

Import programHTTPServer_Echo_ENC28J60

A simple HTTP server echoing received requests. Ethernet connection is over an ENC28J60 board. Usage: Type the server's IP address into you web browser and hit <ENTER>.

Import programTcpServer_ENC28J60

Simple TCP/IP Server using the UIPEthernet library for ENC28J60 Ethernet boards.

Import programTcpClient_ENC28J60

Simple TCP/IP Client using the UIPEthernet library for ENC28J60 Ethernet boards.

Import programUdpServer_ENC28J60

Simple UDP Server using the UIPEthernet library for ENC28J60 Ethernet boards.

Import programUdpClient_ENC28J60

Simple UDP Client using the UIPEthernet library for ENC28J60 Ethernet boards.

Import programMQTT_Hello_ENC28J60

MQTT Client example program. Ethernet connection is via an ENC28J60 module.

Revision:
8:4acb22344932
Parent:
4:d774541a34da
--- a/UIPEthernet.h	Tue Apr 26 18:37:14 2016 +0000
+++ b/UIPEthernet.h	Fri Jun 30 19:51:28 2017 +0000
@@ -1,5 +1,5 @@
 /*
- UIPEthernet.h - Arduino implementation of a uIP wrapper class.
+ UIPEthernet.h - Arduino implementation of a UIP wrapper class.
  Copyright (c) 2013 Norbert Truchsess <norbert.truchsess@t-online.de>
  All rights reserved.
 
@@ -19,56 +19,53 @@
  along with this program.  If not, see <http://www.gnu.org/licenses/>.
   */
 #ifndef UIPETHERNET_H
-    #define UIPETHERNET_H
+#define UIPETHERNET_H
 
 //#define UIPETHERNET_DEBUG
 
 //#define UIPETHERNET_DEBUG_CHKSUM
 //#define UIPETHERNET_DEBUG_UDP
 //#define UIPETHERNET_DEBUG_CLIENT
-    #include "ethernet_comp.h"
-    #include <mbed.h>
-    #include "Dhcp.h"
-    #include "IPAddress.h"
-    #include "utility/Enc28J60Network.h"
-    #include "UIPClient.h"
-    #include "UIPServer.h"
-    #include "UIPUdp.h"
+#include "ethernet_comp.h"
+#include "mbed.h"
+#include "Dhcp.h"
+#include "IPAddress.h"
+#include "utility/Enc28J60Network.h"
+#include "UIPClient.h"
+#include "UIPServer.h"
+#include "UIPUdp.h"
 
 extern "C"
 {
-    #include "utility/uip_timer.h"
-    #include "utility/uip.h"
+#include "utility/uip_timer.h"
+#include "utility/uip.h"
 }
-    #define UIPETHERNET_FREEPACKET  1
-    #define UIPETHERNET_SENDPACKET  2
-    #define UIPETHERNET_BUFFERREAD  4
+#define UIPETHERNET_FREEPACKET  1
+#define UIPETHERNET_SENDPACKET  2
 
-    #define uip_ip_addr(addr, ip) \
-    do \
-    { \
+#define uip_ip_addr(addr, ip) \
+    do { \
         ((u16_t *) (addr))[0] = HTONS(((ip[0]) << 8) | (ip[1])); \
         ((u16_t *) (addr))[1] = HTONS(((ip[2]) << 8) | (ip[3])); \
-    } while(0)
-    #define ip_addr_uip(a)  IPAddress(a[0] & 0xFF, a[0] >> 8, a[1] & 0xFF, a[1] >> 8)   //TODO this is not IPV6 capable
+    } while (0)
+#define ip_addr_uip(a)  IPAddress(a[0] & 0xFF, a[0] >> 8, a[1] & 0xFF, a[1] >> 8)   //TODO this is not IPV6 capable
 
-    #define uip_seteth_addr(eaddr) \
-    do \
-    { \
+#define uip_seteth_addr(eaddr) \
+    do { \
         uip_ethaddr.addr[0] = eaddr[0]; \
         uip_ethaddr.addr[1] = eaddr[1]; \
         uip_ethaddr.addr[2] = eaddr[2]; \
         uip_ethaddr.addr[3] = eaddr[3]; \
         uip_ethaddr.addr[4] = eaddr[4]; \
         uip_ethaddr.addr[5] = eaddr[5]; \
-    } while(0)
-    #define BUF ((struct uip_tcpip_hdr*) &uip_buf[UIP_LLH_LEN])
-        class   UIPEthernetClass
+    } while (0)
+#define BUF ((struct uip_tcpip_hdr*) &uip_buf[UIP_LLH_LEN])
+        class   UIPEthernet
     {
     public:
         Enc28J60Network network;
 
-        UIPEthernetClass(PinName mosi, PinName miso, PinName sck, PinName cs);
+        UIPEthernet(PinName mosi, PinName miso, PinName sck, PinName cs);
 
         int         begin(const uint8_t* mac);
         void        begin(const uint8_t* mac, IPAddress ip);
@@ -111,9 +108,9 @@
 
         static uint16_t         chksum(uint16_t sum, const uint8_t* data, uint16_t len);
         static uint16_t         ipchksum(void);
-    #if UIP_UDP
+#if UIP_UDP
         uint16_t                upper_layer_chksum(uint8_t proto);
-    #endif
+#endif
         friend uint16_t         uip_ipchksum(void);
         friend uint16_t         uip_tcpchksum(void);
         friend uint16_t         uip_udpchksum(void);
@@ -121,10 +118,10 @@
         friend void             uipclient_appcall(void);
         friend void             uipudp_appcall(void);
 
-    #if UIP_CONF_IPV6
+#if UIP_CONF_IPV6
         uint16_t                uip_icmp6chksum(void);
-    #endif /* UIP_CONF_IPV6 */
+#endif /* UIP_CONF_IPV6 */
     };
 
-extern UIPEthernetClass UIPEthernet;
+extern UIPEthernet  uIPEthernet;
 #endif