A blog about electronics and programming
Home Electronics Adding ethernet connectivity to a STM32-Nucleo

Adding ethernet connectivity to a STM32-Nucleo

by Carmine Noviello
Published: Last Updated on 25 comments 4.2K views 24 minutes read

One drawback of the Nucleo ecosystem is the lack of a version with ethernet connectivity or a dedicated shield officially supported by ST. There are 90 different STM32 MCUs available that provide an Ethernet MAC interface (this means that only an external ethernet transceiver - also called phyter - and few other things are required to bring your MCU to the IoT world). STM32Cube (the HAL officially supported by ST) also provides support for lwIP stack. But, all the current Nucleo boards are designed with a MCU without an Ethernet interface (I think that the main reason is that only two STM32 MCUs with Ethernet MAC are available in LQFP-64 package and the Nucleo boards are designed to be pin-to-pin compatible between its releases - L0, F1, etc). This means that without a dedicated expansion shield it is impossible to add network connectivity to our Nucleo. And this is a sin considering what that MCU can do.

In the Arduino world the official Ethernet Shield is the most popular solution to add Internet connectivity to Arduino. The ethernet shield is based on a network processor become really popular thanks to its diffusion in the Arduino community: W5100 from WIZnet.

WIZNet is a Korean company specialized in producing monolithic network processors. A network processors is a sort of black box that provides hardware capabilities (a ethernet pyther, for example) and all the network stack required to connect a MCU to the Internet. The MCU interacts with the network processor through a bus interface. SPI is the most used solution since almost every MCU provides at least one SPI master interface.

From a theoretical point of view, the way the MCU interacts with the network processor is really simple. Sending specific sets of commands and changing some internal registers, the network processor is able to configure the IP parameters (IP address, netmask, etc), to open sockets and to establish connections to remote peers, either using TCP or UDP. All the implementation details about the TCP/IP stack are "hardcoded" inside the MCU. Programmers should "only" take care about application logic and how to exchange data with the remote peer using TCP or UDP sockets. This approach has several key benefits:

  • Simplified hardware design: these chips are developed so that only some external passives and an ethernet port with magnetics are required on the board.
  • Reduced firmware size: since the entire TCP/IP stack is included inside the network processor, the firmware occupies a smaller amount of bytes; this allows selecting a MCU with less flash and less demanding hardware capabilities, reducing the BOM cost.
  • Fast time to market: programmers work is simplified by the fact that there is no need to fight against TCP/IP implementation details; all the dirty job is done by the network processors, and they can focus on the specific application (this is the main reason of the success of the PIC18 and PIC32 family, according to me, and the related free TCP/IP stack provided by Microchip).

However, in the first days of W5100 chips (and later derivative IC like the W5200 and so on) it was really complex to deal with these IC. The official documentation was only reduced by a small sized datasheet (also containing several errors...). The best "C" library around was only the Arduino Ethernet library, designed to work with the ATMega8 family from AVR. However, WIZNet worked hard in the last few years to improve the quality of their official code (but there is still a strong lack of good documentation...). They've recently released a complete library, called ioLibrary, on their github account. The library was designed to be sufficiently generic to work with several HALs, and it's possible to use it with the STM32Cube HAL with a very little effort. The library provides support to the "low-level" functionalities of the W5x00 chips (IP configuration, sockets, etc) as well as the implementation of some popular network protocols like the HTTP.

In this first part of the series I'll show how to use the Arduino Ethernet shield on a STM32 Nucleo board. I'll show all the required hardware configuration steps. I'll also show how to import the WIZNet ioLibrary inside a fresh new STM32 project and how to configure the library to start working with this shield. In a next article we'll see how to enable a DHCP client and we'll made a simple web server that allows to interact with our Nucleo using a web interface.

Hardware and software requirements

In this post I'll assume you have:

  • One of the STM32Nucleo boards available on the market - I've successfully tested the code both on a Nucleo-F401RE and a Nucleo-F103RB board.
  • An Arduino Ethernet Shield, or one of its clones available on eBay for less than $10.
  • Some patch cables to reroute Arduino ICSP pins to Nucleo morpho headers - more about this later.
  • A complete Eclipse/GCC ARM tool-chain with required plugins as described in this post. I’ll assume that the whole tool-chain in installed in C:\STM32Toolchain or ~/STM32Toolchain if you have a UNIX-like system.
  • A basic test project for your Nucleo version as described in this post.

I won't show the needed steps to create a bare bone project using Eclipse and the latest version of the HAL from ST, because I've already covered this aspect several times on my blog. You can find these posts looking for the most popular ones on the left side of this page.

More about the W5100 chip

As I've said before, the W5100 chip is a networked TCP/IP embedded Ethernet controller that simplifies the process of adding ethernet connectivity to a MCU. W5100 provides in a single chip a 10/100 Ethernet MAC, a phyter, and a complete TCP/IP stack with support to TCP, UDP, IPv4, ICMP, ARP, IGMP, and PPPoE. W5100 uses a 16 bytes internal buffer to exchange data between internal chip memory and MCU. It is possible to use 4 independent hardware sockets simultaneously. For each socket user can define the amount of buffer memory for TX and RX. BUS (Direct & Indirect) & SPI (Serial Peripheral Interface) are provided for easy integration with the external MCU.

The programming process of a W5100 chip involves these steps:

  • Configure the SPI bus according the MCU and the W5100 specifications. The W5100 operates as SPI Slave device and supports the most common modes - SPI Mode 0
    and 3. 
    Schermata 2015-08-13 alle 08.20.01
  • Setup the MAC Address, IP Address, netmask and gateway. As we'll se in a next article, W5100 doesn't support by itself the DHCP protocol, but WIZnet provides a library that uses RAW sockets to implement the DHCP discovering protocol.
  • Configure the internal socket buffers for TX and RX. User can decide to expand this memory independently from 0K to 8K. Please, be aware that the memory for TX and RX is shared among all 4 socket, and 8K is the total amount for each buffer (8K for TX and 8K for RX). Default configuration uses 2K bytes for each socket both for TX and RX buffers.
  • Configure the sockets we need in our application. This means to decide the type of socket (TCP, UDP, IP RAW, etc) and so on.
  • Use the socket issuing commands that put the socket in a given state according this state diagram
    Schermata 2015-08-13 alle 08.25.23

Fortunately, we don't need to deal with these low-level aspects of W5100 chip. Thanks to the ioLibrary by WIZNet, and a little bit of "glue" to adapt it to the STM32Cube HAL, we can develop IoT applications with our favorite STM32 MCU in a really simple way.

Hardware setup

Unfortunately, we can use the Arduino Ethernet Shield on our STM32 Nucleo easily. The reason is that the shield uses the Arduino ICSP connector as a source for the SPI pins (MISO, MOSI and SCK - SS is mapped to D10 pin), as shown in the following picture.

arduino-eth-shield-schema

The Nucleo doesn't provide that connector. This means that we need to "reroute" those pins to other pins. Looking to the Nucleo-F401RE pinout, we can use the pins on the morpho connector associated to the SPI2 peripheral, as shown below.

xnucleo64_revc_f401re_mbed_pinout_v2_morpho.png.pagespeed.ic.-vtjy5PI6L

Se, we need to do this association:

  1. Arduino ICSP PIN 1 (MISO) to Nucleo PIN PB_14.
  2. Arduino ICSP PIN 4 (MOSI) to Nucleo PIN PB_15.
  3. Arduino ICSP PIN 3 (SCK) to Nucleo PIN PB_13.
  4. Arduino D10 PIN (SS) to Nucleo PIN PB_12.

The following fritzing schema can help understanding the connection.

eth shield_bb

I've used 4 patches (those used for breadboard connections) as shown in the following image.

2015-08-13 15.12.44

 

Importing the ioLibrary in Eclipse

Ok. Let's the fun part begins. First, we need a bare bone project to start with. If you don't know how-to generate one, you can follow this tutorial. Next, we need to download the latest ioLibrary from WIZNet github repository. Unpack it in a convenient place, rename the main folder from ioLibrary_Driver-master to ioLibrary_Driver and drag it inside the Eclipse project. Now we need to enable compilation of the added folder. Click with the right mouse button on ioLibrary_Driver folder and choose Resource Configurations->Exclude from builds.. and uncheck both Debug and Release items.

Next we need to add proper include folders inside the project settings. We need to add these Eclipse folders:

  • "../ioLibrary_Driver/Ethernet"
  • "../ioLibrary_Driver/Ethernet/W5100"

inside Project Settings->C/C++ Build->Settings->Cross ARM C Compiler->Includes as shown below.

Schermata 2015-08-13 alle 19.40.10

Repeat the same step for the Cross ARM C++ Compiler->Includes section. Finally, we need to set the proper WIZNet chip (the ioLibrary is designed to be used with all W5X00 chips). Open the file ioLibrary_Driver/Ethernet/wizchip_conf.c and change the _WIZCHIP_ macro to 5100 (the macro is defined around the line 64).

Configuring SPI interface

Ok. Now we can start coding serious things 🙂 The first step is to configure the SPI interface associated to PB_12..15 pins: SPI2. I've to say that the simpler way to do this is to use the STM32CubeMX tool. It automatically generates all the needed stuff to proper configure SPI port. However, the code generated by CubeMX is a little bit articulated in several routines and source files. So it's not practical to use it here, as it would make this tutorial too much complicated to follow. I've defined this function in the main.c file:

This routine does two things. First, it properly configures the SPI interface to work with the W5100 chip. This is done setting the hspi2 variable, which type is  SPI_HandleTypeDef. The variable is defined as global variable inside the main.c file, since we'll use it in other routines. Second, the routine configures the pins associated to the SPI2 interface: PB12 to PB15. Pins PB13 to PB15 are configured as Alternate Function (AF) pins, since they will be used as SPI interface; Pin PB12 is the Chip Select (CS) pin, and it's configured as Output Pin in pull-up mode (this prevents pins to be "low" when floating).

Configuring USART

In this project we'll use the USART associated to the ST-Link interface to output some messages on the Virtual COM Port. You can find more about this here. Before we can print messages on the serial, we need to configure USART2 interface accordingly. This work is accomplished by the following function, defined in main.c file.

As we have done for the SPI interface, we first need to configure the USART2 peripheral (chosen parameters are: baudrate 115200, 8bit, 1 stop bit, no parity, no hardware flow control). Next, we need to configure the associated pin (PA2 and PA3) as Alternate Function pins.

Configure ioLibrary

The WIZnet ioLibrary is designed so that it can be used with the majority of MCU (and HAL) on the market. This means that it was designed in an abstract way so that it's user responsibility to supply the specific code that works with the hardware. In our case we need to supply 4 custom functions:

  • A function to select the slave chip during SPI transfer (that is, a function that pull low the GPIO pin associated to CS - PB_12 in our case).
  • A function to deselect the slave chip.
  • A function to write 1 byte on the SPI interface.
  • A function to read 1 byte on the SPI interface.

[box type="info" align="" class="" width=""]ioLibrary requires other two functions to write/read on the SPI interface using burst mode. Bust mode is a mode used by modern and fast SPI devices to transfer chunks of bytes one shot, that is without doing X complete transfers. Burst mode allows to speed up the transfer between the MCU and the SPI chip, especially if the MCU support SPI DMA mode (like the STM32 does). However, the W5100 doesn't support this transfer mode (other W5x00 chips do). This means that we don't need to provide these other custom functions.[/box]

So, we have to define these four functions in our main.c file.

The functions are really self-explaining. cs_sel() and cs_desel() simply pull PB12 pin low and high using the HAL_GPIO_WritePin() function. spi_rb() function is used to read 1 byte on the SPI interface using the HAL_SPI_Receive() function. In the same way, spi_wb() write 1 byte on the SPI.

Once we have defined the custom hardware related functions, we have to "pass" them to the ioLibrary. This work is done inside the main() function.

This is the very first part of our main() function. First, we need to initialize the HAL, the system clock, GPIO pins (I've omitted to describe the MX_GPIO_Init() functions, since it simply configures the pins associated to LED LD2 and user button - the blue one - on the Nucleo), SPI and USART. Next, we configure the ioLibrary to use our custom functions using reg_wizchip_cs_cbfunc() and reg_wizchip_spi_cbfunc() functions.

Building a bare bone IoT app

Ok. We can finally start coding the core of our example application. I will show you a really simple application: a TCP server that accepts connections on port 5000. Every time a connection is established with a remote peer, it sends a welcome message on the socket and automatically closes the connection. It's simply a test program that allows us to check if all works well with the Arduino Ethernet shield.

Let's analyze the code.

First, we need to initialize the W5100 chip passing the dimension of TX and RX memory buffers for each socket. In this case, we choose a standard configuration where each socket has a buffer with 2kbytes (remember that the W5100 chip has 8kbytes for TX buffers and 8k for RX ones; this space is subdivided between 4 different sockets). Next, thanks to the wiz_NetInfo structure we pass the setup of the ethernet interface, composed by the MAC address, the IP, the Subnet Mask configuration and the router address (please, arrange network addresses according your network configuration).

[box type="warning" align="" class="" width=""]Please, take note that we are using a "random" MAC address in this example. This procedure is OK for a "private" environment, but it's completely forbidden if you are planning to sell your W5100 based product. In this case, you have to buy a valid pool of MAC address from IEEE (pools starts from batches of 4096 addresses for a price of about 650$). [/box]

Using the wizchip_setnetinfo() function we send commands to W5100 to setup these parameters. If you want, you can skip the remaining lines of code (maybe adding a while(1); just after line 142) and start checking if all goes well doing a "ping 192.168.2.192".

The remaining part of the main() function is dedicated to the "core" application. We first configure the socket 0 (one of the 4 available sockets) and open it on port 5000; then we put the socket listening for remote connections (lines 146-151). When a remote peer establishes the connection (line 155), we retrieve its IP and port and print them on the VCP (lines 156-152); then we send to remote peer a welcome message (defined by macro GREETING_MSG) and we close the socket immediately (lines 164 and lines 187-189). The rest of the code is dedicated to handle failure situations (remote socked closed by peer before we send data, and so on).

To test if application works well we can use a web browser or the telnet command, as shown below:

If you want to access to the full main, you can see it directly on my github account.

In a next post I'll show how to build a complete web server that interacts with the Nucleo peripherals. Stay tuned 😉


You may also like

25 comments

Kevin September 8, 2015 - 7:16 am

Great!
I think it is a very good tutorial for Arduino Ethernet Shield and ARM mbed users.

Reply
Mark October 28, 2015 - 1:02 pm

Ah, great work. Thanks mate.

Reply
Arun Kapur December 13, 2015 - 9:01 pm

I bought your book, Mastering STM32 and I hope that yo will also fully cover the topic of connecting the STM32 to the web since the Web has become an intergal part of any design that requires connectivity and communications.

Reply
Carmine Noviello December 14, 2015 - 8:43 am

Hi Arun,
Thank you for supporting my project.

Yes, my idea is to cover topics about the IoT too. But these will come at the end of the book, so during the next year.

Reply
Kansai January 14, 2016 - 8:11 am

Excellent Tutorial. Thank you 🙂
One question: I am using mbed online compiler to program my Nucleo.
Can I use these libraries over there too?

Reply
Carmine Noviello January 14, 2016 - 8:14 am

Unfortunately, I've never seen how mbed works and I have no idea if you can do that.

Reply
Arun February 8, 2016 - 3:50 pm

Just wondering when you will be adding the second part to this great article.

Reply
Akhi February 25, 2016 - 2:08 pm

thanks great tutorial
Cant connect for the second time just throws me out what can i do about it tried a lot of ways

Reply
Azhari November 29, 2016 - 11:26 pm

Great tutorial! Thank you Carmine.

Reply
Sachin June 10, 2017 - 12:02 am

Hi Carmine,

I am setting static IP to W5100 ethernet shield from STM32L476RG Nucleo board using wizchip_setnetinfo(&netInfo) API.

wizchip_init() retVal = 0

Network configuration:
MAC ADDRESS: 0:0:50:ba:fb:d8
IP ADDRESS: 192.168.6.192
NETMASK: 255.255.0.0
GATEWAY: 192.168.3.1

When I am calling
wizchip_getnetinfo(&netInfo);
PRINT_NETINFO(netInfo);

I am getting below values which are not valid.

Network configuration:
MAC ADDRESS: 0:0:28:dd:fd:ec
IP ADDRESS: 225.0.3.224
NETMASK: 255.255.0.0
GATEWAY: 224.213.1.1

Any suggestion why these unknown values are comming.

Reply
WowaWhite October 23, 2019 - 7:15 am

Looks like your wiring is fine because the wiznet get config data. Did you check the spi frequency? In Your main.c have a look at (for spi1):

hspi1.Init.BaudRatePrescaler = SPI_BAUDRATEPRESCALER_XX;

where XX is the spi prescaller value or check out the cubeMX graphical pin config > Connectivity> "your SPI" > Parameter Settings > Clock Parameters > Prescaller. Try to reduce spi baud rate.
Check also your MCU clock configuration.

Reply
Bruno Guimarães Bitencourt August 7, 2021 - 6:26 am

Hi I have same problem … did u solve it

Reply
Toldo September 7, 2017 - 6:52 am

Is anyone tried this with CMSIS RTOS?

Reply
Dave September 28, 2017 - 5:17 am

Is it possible to use the Arduino Ethernet Shield 2 on a STM32 L053R8 Nucleo board ?

Reply
pineau April 4, 2018 - 7:22 am

Bonjour

dans le cadre d'un projet j'utilise une carte NUCLEO-F767ZI, es que je peux utiliser votre tutoriel sur ce type de carte

cordialement

Reply
rubber vagina June 15, 2018 - 6:04 am

cheap pocket pussy

Reply
knightd June 17, 2019 - 4:49 pm

Hi,
I'm using this example with NUCLEO-F411RE but I have a problem.

The code execute the function PRINT_HEADER() correctly and print this
=============================================
Welcome to STM32Nucleo Ethernet configuration
=============================================
Network configuration:
MAC ADDRESS: ff:ff:ff:ff:ff:ff
IP ADDRESS: 255.255.255.255
NETMASK: 255.255.255.255
GATEWAY: 255.255.255.255
However after the code above I don't get any print (apparently doesn't execute the print_netinfo). Can anyone help me?
wizchip_setnetinfo(&netInfo);
wizchip_getnetinfo(&netInfo);
PRINT_NETINFO(netInfo);

Best Regards,
knightd

Reply
Re Er September 3, 2020 - 3:10 pm Reply
Arek September 16, 2022 - 4:19 pm

I have the same issue. IP changes, I can ping it on my network bu looksl like wizchip_getnetinfo(&netInfo); is not working. I tried changing baudrates etc. no avail.

Reply
gaijingeek January 3, 2021 - 3:43 am

Hello, thank you for your interesting post.
Where did you find the STM32F401 part files for fritzing? I can't seem to find them anywhere, I've been searching for days and reupdated the part libraries twice to no avail... 🙁

Reply
Ahmet January 27, 2021 - 1:21 pm

when debug, everything is good and working. but If I shut down the computer then I cannot connect to the processor again. When you enter the ethernet settings from the control panel and turn the ethernet off and on, it works normally again. how to solve this error. can you help me

Reply
Bruno Guimarães Bitencourt August 5, 2021 - 3:14 am

Hi. Does it work with the STM32F103B ?

Reply
Estevão January 12, 2022 - 5:31 pm

Thank you Sir.! You help me a lot! I will try it with STM32F103C8 and so STM32F401. Congratulations.

Reply
Estevão January 27, 2022 - 1:56 pm

Hello Mr.,

Thank you for shown that tutorial.

Unfortunelly, I could not adapt this model to the UDP protocol.

Could you provide a simple example of socket to UDP protocol?

Looking about this thema, another people have the same difficult. So, I tink that your UDP tutorial will have a massive amount visualization!

I thank you in advance!

Reply

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.