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

Diff of /smsdaemon/ModemTransceiver.cpp

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

revision 93 by torben, Mon Jun 16 11:39:33 2008 UTC revision 105 by torben, Tue Jun 17 17:47:37 2008 UTC
# Line 179  int  GsmModem::DeleteAllSms() Line 179  int  GsmModem::DeleteAllSms()
179    
180    
181    
182    void GsmModem::WaitForSimcard()
183    {
184            int start = time(0);
185            string result;
186    
187    
188            while (result != "^SSIM READY")
189            {
190                    result += GetResponse();
191                    result = Util::str_trim(result);
192    
193                    if ( (time(0) - start) > 10)
194                            throw std::runtime_error("Sim card timed out:");
195                    Util::Sleep(100);
196            }
197    
198    }
199    
200    void GsmModem::HandlePincode()
201    {
202            string result = Command("AT+CPIN?");
203            result = Util::str_trim(result);
204            result.erase(result.length() -2, 2); //remove trailing ok
205            result = Util::str_trim(result);
206            if (result != "+CPIN: READY")
207            {
208                    if (result == "+CPIN: SIM PIN")
209                    {
210                            Command("AT^SSET=1");
211                            result = Command("AT+CPIN=0067");
212                            if ( result.substr(result.length()-4, 4) != "OK\r\n")
213                                    throw std::runtime_error(string("Illegal pincode: ") + result);
214                            
215                            WaitForSimcard();
216                    }
217                    else
218                    {
219                            throw std::runtime_error(string("AT+CPIN? returned unhandled code: ") + result);
220                    }
221    
222            }
223    }
224    
225  void GsmModem::Init()  void GsmModem::Init()
226  {  {
227          Command( "AT" );          Command( "AT" );
# Line 197  void GsmModem::Init() Line 240  void GsmModem::Init()
240    
241          //Command("AT+CGSMS=2"); //SMS over GPRS preferred          //Command("AT+CGSMS=2"); //SMS over GPRS preferred
242    
243          //Set RealTimeClock ??          HandlePincode();
           
         //Enter pin code ??  
244  }  }
245    
246    

Legend:
Removed from v.93  
changed lines
  Added in v.105

  ViewVC Help
Powered by ViewVC 1.1.20