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

Contents of /smsdaemon/ModemTransceiver.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 105 - (show annotations) (download)
Tue Jun 17 17:47:37 2008 UTC (15 years, 11 months ago) by torben
Original Path: smsdaemon/GsmModem.h
File MIME type: text/plain
File size: 1204 byte(s)
Handle pincode

1 #ifndef __GSMMODEM_H__
2 #define __GSMMODEM_H__
3
4 /* using http://sourceforge.net/projects/libserial/
5 */
6
7 #include "IGsmModem.h"
8
9 #include <string>
10 #include <vector>
11
12 #include "Sms.h"
13
14 class SerialPort;
15
16
17 class GsmModem : public IGsmModem
18 {
19 public:
20 GsmModem(SerialPort& serialport);
21 virtual ~GsmModem() {}
22
23 void Init();
24
25 virtual void SendSms(std::string to, std::string message, bool allowMultipart);
26 void SendSmsPdu(std::string pdu, int len);
27
28 std::vector<SMS> ReadSms(bool readAll=false);
29 void DeleteSms(std::string smsIndex);
30 int DeleteAllSms();
31 private:
32 std::string GetResponse();
33 std::string Command(std::string command, std::string term = "OK\r\n");
34
35 void HandlePincode();
36 void WaitForSimcard();
37
38 bool _timeout;
39 SerialPort& m_port;
40 };
41
42 class DebugGsmModem : public IGsmModem
43 {
44 public:
45 DebugGsmModem() : _print(false) {}
46 DebugGsmModem(bool print) : _print(print) {}
47
48
49 virtual void SendSms(std::string to, std::string message, bool allowMultipart);
50
51 std::string GetTo() {return _to;}
52 std::string GetMessage() {return _message;}
53 bool GetMultipart() {return _multipart;}
54 private:
55 std::string _to;
56 std::string _message;
57 bool _multipart;
58 bool _print;
59 };
60
61 #endif // __GSMMODEM_H__

  ViewVC Help
Powered by ViewVC 1.1.20