portable version of the cumulocity demo

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Cumulocity Official

Committer:
vwochnik
Date:
Mon May 26 08:10:27 2014 +0000
Revision:
29:853741b9ea3b
Parent:
23:0a48eebaaba8
minor fixes for modem connection

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