a97ac089a5c50a14f70e7b798772d0975daccd3f
[pub/USBasp.git] / Demos / Host / Incomplete / BluetoothHost / Lib / BluetoothStack.h
1 /*
2 LUFA Library
3 Copyright (C) Dean Camera, 2010.
4
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
7 */
8
9 /*
10 Copyright 2010 Dean Camera (dean [at] fourwalledcubicle [dot] com)
11
12 Permission to use, copy, modify, distribute, and sell this
13 software and its documentation for any purpose is hereby granted
14 without fee, provided that the above copyright notice appear in
15 all copies and that both that the copyright notice and this
16 permission notice and warranty disclaimer appear in supporting
17 documentation, and that the name of the author not be used in
18 advertising or publicity pertaining to distribution of the
19 software without specific, written prior permission.
20
21 The author disclaim all warranties with regard to this
22 software, including all implied warranties of merchantability
23 and fitness. In no event shall the author be liable for any
24 special, indirect or consequential damages or any damages
25 whatsoever resulting from loss of use, data or profits, whether
26 in an action of contract, negligence or other tortious action,
27 arising out of or in connection with the use or performance of
28 this software.
29 */
30
31 #ifndef _BLUETOOTH_STACK_
32 #define _BLUETOOTH_STACK_
33
34 /* Includes: */
35 #include <LUFA/Drivers/USB/USB.h>
36
37 /* Macros: */
38 #define BLUETOOTH_DATA_IN_PIPE 1
39 #define BLUETOOTH_DATA_OUT_PIPE 2
40 #define BLUETOOTH_EVENTS_PIPE 3
41
42 #define BLUETOOTH_MAX_OPEN_CHANNELS 6
43
44 #define CHANNEL_PSM_SDP 0x0001
45 #define CHANNEL_PSM_UDP 0x0002
46 #define CHANNEL_PSM_RFCOMM 0x0003
47 #define CHANNEL_PSM_TCP 0x0004
48 #define CHANNEL_PSM_IP 0x0009
49 #define CHANNEL_PSM_FTP 0x000A
50 #define CHANNEL_PSM_HTTP 0x000C
51 #define CHANNEL_PSM_UPNP 0x0010
52 #define CHANNEL_PSM_HIDP 0x0011
53
54 #define MAXIMUM_CHANNEL_MTU 255
55
56 /* Enums: */
57 /** Enum for the possible states for a bluetooth ACL channel. */
58 enum BT_ChannelStates_t
59 {
60 Channel_Closed = 0, /**< Channel is closed and inactive. No data may be sent or received. */
61 Channel_WaitConnect = 1, /**< A connection request has been received, but a response has not been sent. */
62 Channel_WaitConnectRsp = 2, /**< A connection request has been sent, but a response has not been received. */
63 Channel_Config_WaitConfig = 3, /**< Channel has been connected, but not yet configured on either end. */
64 Channel_Config_WaitSendConfig = 4, /**< Channel configuration has been received and accepted, but not yet sent. */
65 Channel_Config_WaitReqResp = 5, /**< Channel configuration has been sent but not responded to, and a configuration
66 request from the remote end has not yet been received. */
67 Channel_Config_WaitResp = 6, /**< Channel configuration has been sent but not accepted, but a configuration request
68 from the remote end has been accepted. */
69 Channel_Config_WaitReq = 7, /**< Channel configuration has been sent and accepted, but a configuration request
70 from the remote end has not yet been accepted. */
71 Channel_Open = 8, /**< Channel is open and ready to send or receive data */
72 Channel_WaitDisconnect = 9, /**< A disconnection request has been sent, but not yet acknowledged. */
73 };
74
75 /** Enum for the possible error codes returned by the \ref Bluetooth_SendPacket() function. */
76 enum BT_SendPacket_ErrorCodes_t
77 {
78 BT_SENDPACKET_NoError = 0, /**< The packet was sent sucessfully. */
79 BT_SENDPACKET_NotConnected = 1, /**< The bluetooth stack is not currently connected to a remote device. */
80 BT_SENDPACKET_ChannelNotOpen = 2, /**< The given channel is not currently in the Open state. */
81 };
82
83 /* Type Defines: */
84 /** Type define for a Bluetooth ACL channel information structure. This structure contains all the relevent
85 * information on an ACL channel for data transmission and reception by the stack.
86 */
87 typedef struct
88 {
89 uint8_t State;
90 uint16_t LocalNumber;
91 uint16_t RemoteNumber;
92 uint16_t PSM;
93 uint16_t LocalMTU;
94 uint16_t RemoteMTU;
95 } Bluetooth_Channel_t;
96
97 /** Type define for a Bluetooth device connection information structure. This structure contains all the
98 * information needed to maintain a connection to a remote Bluetooth device via the Bluetooth stack.
99 */
100 typedef struct
101 {
102 bool IsConnected; /**< Indicates if the stack is currently connected to a remote device - if this value is
103 * false, the remaining elements are invalid.
104 */
105 uint16_t ConnectionHandle; /**< Connection handle to the remote device, used internally in the stack. */
106 uint8_t RemoteAddress[6]; /**< Bluetooth device address of the attached remote device. */
107 Bluetooth_Channel_t Channels[BLUETOOTH_MAX_OPEN_CHANNELS]; /**< Channel information structures for the connection. */
108 uint8_t SignallingIdentifier; /**< Next Signalling Channel unique command sequence identifier. */
109 } Bluetooth_Connection_t;
110
111 /** Local Bluetooth device information structure, for the defining of local device characteristics for the Bluetooth stack. */
112 typedef struct
113 {
114 uint32_t Class; /**< Class of the local device, a mask of DEVICE_CLASS_* masks. */
115 char PINCode[16]; /**< Pin code required to send or receive in order to authenticate with a remote device. */
116 char Name[]; /**< Name of the local bluetooth device, up to 248 characters. */
117 } Bluetooth_Device_t;
118
119 /* Includes: */
120 #include "BluetoothHCICommands.h"
121 #include "BluetoothACLPackets.h"
122
123 /* Function Prototypes: */
124 void Bluetooth_Stack_Init(void);
125 void Bluetooth_Stack_USBTask(void);
126
127 bool Bluetooth_ConnectionRequest(const uint8_t* RemoteAddress);
128 void Bluetooth_ConnectionComplete(void);
129 void Bluetooth_DisconnectionComplete(void);
130 bool Bluetooth_ChannelConnectionRequest(const uint16_t PSM);
131 void Bluetooth_PacketReceived(void* Data, uint16_t DataLen, Bluetooth_Channel_t* const Channel);
132 Bluetooth_Channel_t* Bluetooth_GetChannelData(const uint16_t ChannelNumber, const bool SearchByRemoteChannel);
133 Bluetooth_Channel_t* Bluetooth_OpenChannel(const uint16_t PSM);
134 void Bluetooth_CloseChannel(Bluetooth_Channel_t* const Channel);
135 uint8_t Bluetooth_SendPacket(void* Data, uint16_t DataLen, Bluetooth_Channel_t* const Channel);
136
137 /* External Variables: */
138 extern Bluetooth_Device_t Bluetooth_DeviceConfiguration;
139 extern Bluetooth_Connection_t Bluetooth_Connection;
140
141 #endif