SmartREST client reference implementation for the u-blox C027 mbed compatible device.

Dependencies:   C027 C027_Support mbed mbed-rtos MbedSmartRest LM75B MMA7660 C12832

Fork of MbedSmartRestTest by Vincent Wochnik

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers apndb.h Source File

apndb.h

00001 #ifndef APNDB_H
00002 #define APNDb_H
00003 
00004 // Defiles the base type for storing mcc/mnc-apn/user/pass tuples
00005 typedef struct
00006 {
00007     const char *mcc; // mobile country code
00008     const char *mnc; // mobile network code
00009     const char *carrier;
00010     const char *apn;
00011 } apndb_t;
00012 
00013 apndb_t * apndb_get(const char * imsi);
00014 
00015 #endif