TCP Official Tx Benchmark
Dependencies: PicoTCP lpc1768-picotcp-eth mbed-rtos mbed
This project represents a the official TCP Tx Benchmark for the PicoTCP library.
The mbed board is sending one Megabyte to the other side and we measure how fast it does that.
The result:
PicoTCP TX Throughput: 1048576 bytes in < 1 seconds (10.097)Mbits/s
The python script used (which you should rename it to PicoTCP_Official_TCP_Tx_Benchmark.py)
#!/usr/bin/python import sys, socket import random, string import select from time import time ECHO_SERVER_ADDRESS = "192.168.100.12" ECHO_SERVER_PORT = 7 N_PACKETS = 1024 LEN_PACKET = 1024 TOT_BITS = (LEN_PACKET * N_PACKETS * 8) # TX bits PACKET = ''.join(random.choice(string.ascii_uppercase+string.digits) for _ in range(LEN_PACKET)) MEGA = 1024 * 1024. UPDATE_STEP = (N_PACKETS/20) # Make the update step such as one step = 5% UPDATE_R_STEP = (N_PACKETS/100) #Make the update step such as one step = 1% s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((ECHO_SERVER_ADDRESS, ECHO_SERVER_PORT)) start = time() rx_total = 0 tx_total = 0 data = '' i = 0 lp = [] p = select.poll() while(True): # keeping this in for robustness testing, when the test will run for days #Stage II - receving data from the mbed board print "Started receiving data...." while(len(data) < N_PACKETS * LEN_PACKET): p.register(s, select.POLLIN) lp = p.poll(1) if(len(lp) > 0): r = s.recv(LEN_PACKET) if (r != ''): data += r if (len(data) / LEN_PACKET) % UPDATE_R_STEP: print "recvd %d/%d (%.2f%%)" % (len(data)/LEN_PACKET, N_PACKETS, float(len(data))/ float(N_PACKETS * LEN_PACKET) * 100.) else: print "Error receiving !" sys.exit(1) print "Test was finished!" break; t = time() - start s.close() print "PicoTCP TX Throughput: %d bytes in %d seconds (%.3f)Mbits/s" % (TOT_BITS / 8, t, ((TOT_BITS / t) / MEGA))
This test is based on the following libraries
Import librarylpc1768-picotcp-eth
A PicoTCP driver for the lpc1768 mbed board
Import libraryPicoTCP
Free (GPLv2) TCP/IP stack developed by TASS Belgium
Import librarymbed-rtos
Official mbed Real Time Operating System based on the RTX implementation of the CMSIS-RTOS API open standard.
main.cpp
- Committer:
- tass
- Date:
- 2013-10-02
- Revision:
- 0:5c0efd6f5ec6
File content as of revision 0:5c0efd6f5ec6:
#include <mbed.h>
#include <stdarg.h>
#include "EthernetInterface.h"
#define ECHO_SERVER_PORT 7
#define BUFFER_QUANTITY (1024*1024)
#define BUFFER_SIZE (1024)
EthernetInterface eth;
int main()
{
TCPSocketServer server;
printf("Started PicoTCP Tx Benchmark....\n");
eth.init();
printf("Waiting for DHCP server to give IP...\n");
while(eth.connect() != 0);
printf("IP address assigned : %s\n",eth.getIPAddress());
server.bind(ECHO_SERVER_PORT);
server.listen();
printf("Local server listening on port : %d\n",ECHO_SERVER_PORT);
while (true) {
printf("\n>>> You can start PicoTCP_Official_TCP_Tx_Benchmark.py\n");
TCPSocketConnection client;
server.accept(client);
client.set_blocking(false, 1500); // Timeout after (1.5)s
char buffer[BUFFER_SIZE];
int dataSent = 0;
while(dataSent < BUFFER_QUANTITY)
{
int n = client.send_all(buffer, sizeof(buffer));
if (n <= 0) {
break;
}
dataSent += n;
}
if(dataSent == BUFFER_QUANTITY)
{
printf("You can read the Tx Throughput now \n");
}
else
{
printf("Benchmark failed !\n");
}
}
}
TASS Belgium


