PHS module APM-002 library. see: https://developer.mbed.org/users/phsfan/notebook/abitusbmodem/

Dependencies:   Socket lwip-sys lwip

Fork of AbitUSBModem by phs fan

Revision:
97:7d9cc95e2ea7
Parent:
96:b50f5f795684
Child:
100:dbd92e9515ef
--- a/at/ATCommandsInterface.cpp	Wed Feb 18 09:40:07 2015 +0000
+++ b/at/ATCommandsInterface.cpp	Wed Feb 18 14:11:24 2015 +0000
@@ -1,4 +1,7 @@
 /* ATCommandsInterface.cpp */
+/* Modified by 2015 phsfan
+ *  for ABIT SMA-01
+ */
 /* Copyright (C) 2012 mbed.org, MIT License
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
@@ -74,7 +77,7 @@
 // initialize AT link & start events processing
 int ATCommandsInterface::init()
 {
-  DBG("Sending ATZ E1 V1");
+  DBG("Sending ATZ");
   
   //Lock transaction mutex
   m_transactionMtx.lock();
@@ -95,7 +98,7 @@
   } while(err && tries--);
   if( err )
   {
-    ERR("Sending ATZ E1 V1 returned with err code %d", err);
+    ERR("Sending ATZ returned with err code %d", err);
     m_transactionMtx.unlock();
     return err;
   }