diff options
author | Fede85 <f.vanzati@gmail.com> | 2013-07-03 22:55:18 +0200 |
---|---|---|
committer | Fede85 <f.vanzati@gmail.com> | 2013-07-03 22:55:18 +0200 |
commit | 21ca174dbe051346c94c857c39dff08c96fb5939 (patch) | |
tree | 43ddf0d7712393494498dbedad76582f58bf0497 /libraries/GSM/GSM3ShieldV1BaseProvider.cpp | |
parent | fd8c367304fe62a107332db19880c88f9ac0d082 (diff) |
GSM library to the new format and some strings adaptations
Diffstat (limited to 'libraries/GSM/GSM3ShieldV1BaseProvider.cpp')
-rw-r--r-- | libraries/GSM/GSM3ShieldV1BaseProvider.cpp | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/libraries/GSM/GSM3ShieldV1BaseProvider.cpp b/libraries/GSM/GSM3ShieldV1BaseProvider.cpp deleted file mode 100644 index d63967b..0000000 --- a/libraries/GSM/GSM3ShieldV1BaseProvider.cpp +++ /dev/null @@ -1,27 +0,0 @@ -#include <GSM3ShieldV1BaseProvider.h> -#include <GSM3ShieldV1ModemCore.h> -#include <Arduino.h> - -// Returns 0 if last command is still executing -// 1 if success -// >1 if error -int GSM3ShieldV1BaseProvider::ready() -{ - theGSM3ShieldV1ModemCore.manageReceivedData(); - - return theGSM3ShieldV1ModemCore.getCommandError(); -}; - -void GSM3ShieldV1BaseProvider::prepareAuxLocate(PROGMEM prog_char str[], char auxLocate[]) -{ - int i=0; - char c; - - do - { - c=pgm_read_byte_near(str + i); - auxLocate[i]=c; - i++; - } while (c!=0); -} - |