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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers tcpTests.h Source File

tcpTests.h

00001 #ifndef TCPTESTS_H
00002 #define TCPTESTS_H
00003 
00004 void HttpClientTest ( void );
00005 void WebSocketTest ( void );
00006 void TcpClientTest ( void );
00007 void TcpServerTest ( void );
00008 
00009 extern const char *ECHO_SERVER_ADDRESS;
00010 extern const int ECHO_SERVER_PORT_TCP = 80;
00011 extern char *hello;
00012 
00013 #endif