support library for C027 helper functions for Buffer Pipes, Buffered Serial Port (rtos capable) and GPS parsing. It includes modem APIs for USSD, SMS and Sockets.

Dependents:   HTTPClient_Cellular_HelloWorld Cellular_HelloMQTT MbedSmartRestMain Car_Bon_car_module ... more

This library is intended to be used with u-blox products such as the C027 or a shield with u-blox cellular and GPS modules like the cellular and positioning shield from Embedded Artist.

For 2G/GSM and 3G/UMTS you need to:

  • have a SIM card and know its PIN number
  • need to know you network operators APN setting These setting should be passed to the connect or init and join functions. You can also extend the APN database in MDMAPN.h.

For CDMA products you need to make sure that you have provisioned and activated the modem with either Sprint or Verizon.

Revision:
89:ea396f9f90a2
Parent:
88:135fb4bb7aac
Child:
90:3915192f6d7e
--- a/MDMAPN.h	Fri Jun 06 10:33:13 2014 +0000
+++ b/MDMAPN.h	Fri Jun 06 10:42:47 2014 +0000
@@ -32,21 +32,29 @@
 //! default APN settings used by many networks
 static const char* apndef = _APN("internet",,); 
 
-//! this is a list of special APNs for different network operators 
+/*! this is a list of special APNs for different network operators 
+    There is no need to enter the default apn internet in the table; 
+    apndef will be used if no entry matches. 
+*/
 static const APN_t apnlut[] = {
 // MCC Country
 //  { /* Operator */ "MCC-MNC[,MNC]" _APN(APN,USERNAME,PASSWORD) },
 // MCC must be 3 digits
 // MNC must be either 2 or 3 digits
 
-// 262 Germany 
+// 262 Germany - DE
     { /* T-Mobile */ "262-01",  _APN("internet.t-mobile","t-mobile","tm") },
 
-// 222 Italy
+// 222 Italy - IT
     { /* TIM */      "222-01",  _APN("ibox.tim.it",,) },
     { /* Vodafone */ "222-10",  _APN("web.omnitel.it",,) },
+    { /* Wind */     "222-88",  _APN("internet.wind.biz",,) },
 
-// 228 Switzerland
+// 293 Slovenia - SI
+    { /* Si.mobil */ "293-40",  _APN("internet.simobil.si",,) },
+    { /* Tusmobil */ "293-70",  _APN("internet.tusmobil.si",,) },
+
+// 228 Switzerland - CH
     { /* Swisscom */ "228-01",  _APN("gprs.swisscom.ch",,) },
     { /* Orange */   "228-03",  _APN("internet",,) /* contract */ 
                                 _APN("click",,)    /* pre-pay */ },
@@ -59,7 +67,7 @@
     { /* Vodafone */ "234-15",  _APN("internet","web","web")          /* contract */
                                 _APN("pp.vodafone.co.uk","wap","wap")  /* pre-pay */ },
 
-// 310 USA
+// 310 United States of America - US
     { /* T-Mobile */ "310-026,260,490",
                                 _APN("epc.tmobile.com",,) 
                                 _APN("fast.tmobile.com",,) /* LTE */ },