Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed-rtos mbed HTTPClient VodafoneUSBModem
Tests/TestHelper.h
- Committer:
- ashleymills
- Date:
- 2014-01-29
- Revision:
- 74:e52ac9624f7f
- Parent:
- 72:0e8e769fcf76
File content as of revision 74:e52ac9624f7f:
#pragma once bool connectToSocket(char *ipAddress, int port, int *sockfd); //#define APN_PAYG //#define APN_CUSTOM //#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 #ifdef APN_CUSTOM #define APN "" #define APN_USERNAME "" #define APN_PASSWORD "" #endif