summaryrefslogtreecommitdiffabout
path: root/gammu/emb/common/protocol/nokia/phonet.h
blob: e750bbd126ef0cd5fdb68b5622f37e7d4b02b4fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* (c) 2002-2003 by Marcin Wiacek */
/* Based on some work from Gnokii (www.gnokii.org)
 * (C) 1999-2000 Hugh Blemings & Pavel Janik ml. (C) 2001-2004 Pawel Kot 
 * GNU GPL version 2 or later
 */

#ifndef PHONET_h
#define PHONET_h

#include "../protocol.h"

#define PHONET_FRAME_ID      	0x14
#define PHONET_BLUE_FRAME_ID	0x19
#define PHONET_DEVICE_PHONE   	0x00 /* Nokia mobile phone */
#define PHONET_DEVICE_PC      	0x0c /* Our PC */
#define PHONET_BLUE_DEVICE_PC   0x10 /* Our PC */

typedef struct {
	int			MsgRXState;
	GSM_Protocol_Message	Msg;
} GSM_Protocol_PHONETData;

#if defined(GSM_ENABLE_IRDAPHONET)
#  ifndef GSM_USED_IRDADEVICE
#    define GSM_USED_IRDADEVICE
#  endif
#endif
#if defined(GSM_ENABLE_BLUEPHONET)
#  ifndef GSM_USED_BLUETOOTHDEVICE
#    define GSM_USED_BLUETOOTHDEVICE
#  endif
#endif

#endif

/* How should editor hadle tabs in this file? Add editor commands here.
 * vim: noexpandtab sw=8 ts=8 sts=8:
 */