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 main.h Source File

main.h

00001 
00002 #ifndef MAIN_H
00003 #define MAIN_H
00004 
00005 #define SERIAL_BAUD_RATE    115200
00006 
00007 typedef enum MENU_LEVEL
00008 {
00009     MENU_TOP = 0,
00010     MENU_CONNECTION,
00011     MENU_TCP,
00012     MENU_UDP    
00013 } MENU_LEVEL;
00014 
00015 extern cc3000 wifi;
00016 
00017 #endif