WiFi DipCortex / CC3000 Demo - Contains a menu driven set of tests to initalise and control the CC3000 radio. Also allowing you to test various TCP and UDP connections.

Dependencies:   NTPClient WebSocketClient cc3000_hostdriver_mbedsocket mbed HTTPClient

http://www.soldersplash.co.uk/products/wifi-dipcortex/

Please Note, this example uses the serial port so you will need an external RS232 TTL to USB adapter.

tcpTests.h

Committer:
SolderSplashLabs
Date:
2013-10-09
Revision:
4:4e5e094a81c0

File content as of revision 4:4e5e094a81c0:

#ifndef TCPTESTS_H
#define TCPTESTS_H

void HttpClientTest ( void );
void WebSocketTest ( void );
void TcpClientTest ( void );
void TcpServerTest ( void );

extern const char *ECHO_SERVER_ADDRESS;
extern const int ECHO_SERVER_PORT_TCP = 80;
extern char *hello;

#endif