Cellular library for MTS Socket Modem Arduino Shield devices from Multi-Tech Systems

Dependents:   mtsas mtsas mtsas mtsas

Revision:
10:c188cc05aed5
Parent:
9:1a03e3f3e7fe
Child:
11:4e428f689069
--- a/Cellular/Cellular.h	Wed May 21 15:39:35 2014 -0500
+++ b/Cellular/Cellular.h	Wed May 21 15:45:05 2014 -0500
@@ -293,7 +293,7 @@
     * carriage return (CR).  Does not append any character if esc == 0.
     * @returns all data received from the radio after the command as a string.
     */
-    virtual std::string sendCommand(const std::string& command, unsigned int timeoutMillis, char esc = CR) = 0;
+    virtual std::string sendCommand(const std::string& command, unsigned int timeoutMillis, char esc = CR);
 
     /** A method for sending a basic AT command to the radio. A basic AT command is
     * one that simply has a response of either OK or ERROR without any other information.
@@ -305,7 +305,7 @@
     * carriage return (CR).
     * @returns the standard Code enumeration.
     */
-    virtual Code sendBasicCommand(const std::string& command, unsigned int timeoutMillis, char esc = CR) = 0;
+    virtual Code sendBasicCommand(const std::string& command, unsigned int timeoutMillis, char esc = CR);
 
     /** A static method for getting a string representation for the Registration
     * enumeration.