renet driver for the ENC424J600 SPI Ethernet controller
 
 
 
 
Go to file
Harry Ho d399ebc3df Add nix-shell for Rust with OpenOCD & ITM; tcp example IP can be changed
* The user can now run a Nix shell to run the examples, OpenOCD and `itmdump` with Shell script binaries; use `run-help` for the list of these binaries.
* This includes a `itmdump` v0.3.1 binary re-compiled with patches for Rust >=1.41.0.
2020-06-24 15:38:57 +08:00
.cargo Add tx_stm32f407 example 2020-06-18 15:06:55 +08:00
examples Add nix-shell for Rust with OpenOCD & ITM; tcp example IP can be changed 2020-06-24 15:38:57 +08:00
nix Add nix-shell for Rust with OpenOCD & ITM; tcp example IP can be changed 2020-06-24 15:38:57 +08:00
src Add smoltcp Phy impls 2020-06-24 14:17:07 +08:00
Cargo.lock Add smoltcp Phy impls 2020-06-24 14:17:07 +08:00
Cargo.toml Add smoltcp Phy impls 2020-06-24 14:17:07 +08:00
README.md Add nix-shell for Rust with OpenOCD & ITM; tcp example IP can be changed 2020-06-24 15:38:57 +08:00
memory.x Add tx_stm32f407 example 2020-06-18 15:06:55 +08:00
openocd.gdb Add nix-shell for Rust with OpenOCD & ITM; tcp example IP can be changed 2020-06-24 15:38:57 +08:00
shell.nix Add nix-shell for Rust with OpenOCD & ITM; tcp example IP can be changed 2020-06-24 15:38:57 +08:00

README.md

ENC424J600 Driver

Examples

Endless Pinging - tx_stm32f407

This program demonstrates the Ethernet TX capability on an STM32F407 board connected to an ENC424J600 module via SPI. Once loaded and initialised, a specific ping packet is sent (broadcasted) every 100ms. Such a packet has the following properties:

  • Destination MAC Address: ff-ff-ff-ff-ff-ff
  • Source MAC Address: 08-60-6e-44-42-95
  • Destination IP Address: 192.168.1.231
  • Source IP Address: 192.168.1.100
  • Frame Length in Bytes: 64

This program assumes that GPIO PA1 is connected to SPISEL of the Ethernet module. The program output is logged via ITM.

How-to

  1. On a console window, run OpenOCD and debug the example program:

    $ nix-shell
    [nix-shell]$ run-openocd-f4x
    [nix-shell]$ tx_stm32f407
    
  2. On a separate console window, run itmdump to observe the output:

    $ nix-shell
    [nix-shell]$ run-itmdump-follow
    

Expected Output

(Note: the MAC address is an example only.)

Eth TX Pinging on STM32-F407 via NIC100/ENC424J600
Ethernet initialised.
MAC Address = 04-91-62-3e-fc-1e
Promiscuous Mode ON
Sending packet (len=64): dest=ff-ff-ff-ff-ff-ff src=08-60-6e-44-42-95 data=08060001 08000604 ...
Packet sent
Sending packet (len=64): dest=ff-ff-ff-ff-ff-ff src=08-60-6e-44-42-95 data=08060001 08000604 ...
Packet sent
...

TCP Echoing & Greeting - tcp_stm32f407

This program demonstrates the TCP connectivity using smoltcp on an STM32F407 board connected to an ENC424J600 module via SPI. Once loaded and initialised, two TCP sockets will be opened on a specific IPv4 address. These sockets are:

  1. Echoing port - 1234
    • This socket receives raw data on all incoming TCP packets on the said port and prints them back on the output.
    • Note that this socket has a time-out of 10s.
  2. Greeting port - 4321
    • This socket waits for a single incoming TCP packet on the said port, and sends a TCP packet holding a text of greeting on the port.
    • Note that once a greeting is sent, the port is closed immediately. Further packets received by the controller are dropped until the initiator closes the port.

This program assumes that GPIO PA1 is connected to SPISEL of the Ethernet module. The program output is logged via ITM.

How-to

  1. On a console window, run OpenOCD and debug the example program. Choose your own IPv4 address and prefix length:

    $ nix-shell
    [nix-shell]$ run-openocd-f4x
    [nix-shell]$ tcp_stm32f407 <ip> <prefix>
    
  2. On a separate console window, run itmdump to observe the output:

    $ nix-shell
    [nix-shell]$ run-itmdump-follow
    
  3. To test the TCP ports, open another console window and use utilities like NetCat (nc):

    $ nc <ip> <port-number>
    

    Multiple instances of Netcat can run to use all the ports simultaneously. Use Ctrl+C to close the port manually (especially for the greeting port).

Expected Output

(Note: the IP address, MAC address and timestamps shown below are examples only.)

ITM output at the initial state:

Eth TCP Server on STM32-F407 via NIC100/ENC424J600
Ethernet initialised.
Timer initialised.
MAC Address = 04-91-62-3e-fc-1e
TCP sockets will listen at 192.168.1.77/24
[0.0s] Listening to port 1234 for echoing, auto-closing in 10s
[0.0s] Listening to port 4321 for greeting, please open the port

The user opens port 1234 and sends two packets with the following commands:

$ nc 192.168.1.77 1234
Hello World!
Bye World!

The following is appended to the ITM output:

[12.950s] Received packet: Ok("Hello world!\n")
[19.0s] Received packet: Ok("Bye world!\n")

The user then opens port 4321 with the following command, and immediately receives the following message on their console:

$ nc 192.168.1.77 4321
Welcome to the server demo for STM32-F407!

The following is appended to the ITM output:

[24.200s] Greeting sent, socket closed

After 10 seconds of the user not sending any more packets on port 1234, the following is appended to the ITM output; meanwhile, port 1234 is closed by nc for the user:

[29.0s] Listening to port 1234 for echoing, auto-closing in 10s

The user can now re-open port 1234 again.

For port 4321, without closing the port by exiting nc, the user keeps sending any packets with the utility. Since the Ethernet controller has already closed the port, these new packets are dropped and the following error messages are appended to the ITM output:

[35.950s] Poll error: Dropped
[36.150s] Poll error: Dropped
...

The user then closes port 4321 by exiting nc, and the following message is appended to the ITM output:

[40.200s] Listening to port 4321 for greeting, please open the port

The user can now re-open port 4321 again.