AT91SAM7X: add TCP/IP echo server example
[bertos.git] / boards / at91sam7x-ek / examples / tcp_server / .spec
1 name = 'TCP/IP echo server'
2 description="""
3 <h2>Overview</h2>
4 <p>
5 This example application demonstrates the usage of the lwIP TCP/IP stack with
6 BeRTOS.
7 <\p>
8 <p>
9 The DHCP protocol is used to obtain an IP address from an external DHCP server
10 connected via ethernet.
11 <\p>
12 <p>
13 The application then starts a TCP server listening on port 80. The server acts
14 as a TCP echo service, sending back to the clients all the submitted requests.
15 </p>
16 <p>
17 On the debugging console are reported the measured total requests and total
18 requests per second (reqs/s) served by the TCP service, together with the stack
19 usage of each process.
20 </p>
21 """