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

Committer:
vwochnik
Date:
Thu Jul 03 18:52:04 2014 +0000
Revision:
35:ee1c6289e617
Parent:
29:853741b9ea3b
official cumulocity library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
vwochnik 23:0a48eebaaba8 1 #ifndef APNDB_H
vwochnik 23:0a48eebaaba8 2 #define APNDb_H
vwochnik 23:0a48eebaaba8 3
vwochnik 23:0a48eebaaba8 4 // Defiles the base type for storing mcc/mnc-apn/user/pass tuples
vwochnik 23:0a48eebaaba8 5 typedef struct
vwochnik 23:0a48eebaaba8 6 {
vwochnik 29:853741b9ea3b 7 const char *mcc; // mobile country code
vwochnik 29:853741b9ea3b 8 const char *mnc; // mobile network code
vwochnik 29:853741b9ea3b 9 const char *carrier;
vwochnik 29:853741b9ea3b 10 const char *apn;
vwochnik 23:0a48eebaaba8 11 } apndb_t;
vwochnik 23:0a48eebaaba8 12
vwochnik 23:0a48eebaaba8 13 apndb_t * apndb_get(const char * imsi);
vwochnik 23:0a48eebaaba8 14
vwochnik 23:0a48eebaaba8 15 #endif