/[projects]/smsdaemon/ModemTransceiver.cpp
ViewVC logotype

Diff of /smsdaemon/ModemTransceiver.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 50 by torben, Wed Jun 11 10:31:42 2008 UTC revision 57 by torben, Wed Jun 11 16:08:37 2008 UTC
# Line 26  using namespace std; Line 26  using namespace std;
26  GsmModem::GsmModem(SerialPort& serialport)  GsmModem::GsmModem(SerialPort& serialport)
27  : m_port(serialport)  : m_port(serialport)
28  {  {
         Init();  
29  }  }
30    
31    
# Line 49  string GsmModem::Command(string command, Line 48  string GsmModem::Command(string command,
48  {  {
49          time_t  start,now;          time_t  start,now;
50          start = time(0);          start = time(0);
51            _timeout = false;
52    
53          if (term != "> ")          if (term != "> ")
54                  command.append("\r"); //Dont append CarriageReturn if sending SMS                  command.append("\r"); //Dont append CarriageReturn if sending SMS
# Line 74  string GsmModem::Command(string command, Line 74  string GsmModem::Command(string command,
74          if ( (now-start) > 10 )          if ( (now-start) > 10 )
75          {          {
76                  Common::instance()->logMessage( string("GsmModem::Command time out --") + command);                  Common::instance()->logMessage( string("GsmModem::Command time out --") + command);
77                            _timeout = true;
78              break;              break;
79          }          }
80          }          }
# Line 170  int  GsmModem::DeleteAllSms() Line 171  int  GsmModem::DeleteAllSms()
171  void GsmModem::Init()  void GsmModem::Init()
172  {  {
173          Command( "ATZ" ); //Reset any previous setup          Command( "ATZ" ); //Reset any previous setup
174            if (_timeout)
175                    throw std::runtime_error("Modem did not respond!");
176    
177          Command( "AT\\Q3" ); //Hardware flow control          Command( "AT\\Q3" ); //Hardware flow control
178    
179          Command( "ATE0" ); //Disable echo          Command( "ATE0" ); //Disable echo

Legend:
Removed from v.50  
changed lines
  Added in v.57

  ViewVC Help
Powered by ViewVC 1.1.20