Vodafone Test Suite

Dependencies:   mbed-rtos mbed HTTPClient VodafoneUSBModem

Tests/TestHelper.h

Committer:
ashleymills
Date:
2013-03-08
Revision:
70:619a2da3e40d
Parent:
69:4fc3b0ad12c7
Child:
71:0d1b99ae9b58

File content as of revision 70:619a2da3e40d:

#pragma once
bool connectToSocket(char *ipAddress, int port, int *sockfd);

#define APN_PAYG
//#define APN_GDSP
//#define APN_CONTRACT

#ifdef APN_GDSP
   #define APN "ppinternetd.gdsp" 
   #define APN_USERNAME ""
   #define APN_PASSWORD ""
#endif

#ifdef APN_CONTRACT
   #define APN "internet" 
   #define APN_USERNAME "web"
   #define APN_PASSWORD "web"
#endif

#ifdef APN_PAYG
   #define APN "smart" 
   #define APN_USERNAME "web"
   #define APN_PASSWORD "web"
#endif