summaryrefslogtreecommitdiffabout
path: root/gammu/emb/common/protocol/at/at.h
Unidiff
Diffstat (limited to 'gammu/emb/common/protocol/at/at.h') (more/less context) (ignore whitespace changes)
-rw-r--r--gammu/emb/common/protocol/at/at.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/gammu/emb/common/protocol/at/at.h b/gammu/emb/common/protocol/at/at.h
new file mode 100644
index 0000000..e200646
--- a/dev/null
+++ b/gammu/emb/common/protocol/at/at.h
@@ -0,0 +1,36 @@
1/* (c) 2002-2003 by Marcin Wiacek and Michal Cihar */
2
3#ifndef at_h
4#define at_h
5
6#include "../protocol.h"
7
8typedef struct {
9 GSM_Protocol_Message Msg;
10 bool wascrlf;
11 int LineStart,LineEnd;
12 int SpecialAnswerLines,SpecialAnswerStart;
13
14 bool EditMode;/* wait for modem answer or not */
15 bool FastWrite;
16} GSM_Protocol_ATData;
17
18#ifndef GSM_USED_SERIALDEVICE
19# define GSM_USED_SERIALDEVICE
20#endif
21#if defined(GSM_ENABLE_BLUEAT)
22# ifndef GSM_USED_BLUETOOTHDEVICE
23# define GSM_USED_BLUETOOTHDEVICE
24# endif
25#endif
26#if defined(GSM_ENABLE_IRDAAT)
27# ifndef GSM_USED_IRDADEVICE
28# define GSM_USED_IRDADEVICE
29# endif
30#endif
31
32#endif
33
34/* How should editor hadle tabs in this file? Add editor commands here.
35 * vim: noexpandtab sw=8 ts=8 sts=8:
36 */