Add some more documentation to the half-completed Bluetooth Host demo, fix the OpenCh...
[pub/USBasp.git] / Demos / Host / Incomplete / BluetoothHost / Lib / BluetoothACLPackets.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_ACLPACKETS_
32 #define _BLUETOOTH_ACLPACKETS_
33
34 /* Includes: */
35 #include <avr/io.h>
36 #include <string.h>
37 #include <stdbool.h>
38
39 #include <LUFA/Drivers/USB/USB.h>
40
41 #include "BluetoothStack.h"
42
43 /* Macros: */
44 #define BT_ACL_DEBUG(l, s, ...) do { if (ACL_DEBUG_LEVEL >= l) printf_P(PSTR("(ACL) " s "\r\n"), __VA_ARGS__); } while (0)
45 #define ACL_DEBUG_LEVEL 2
46
47 #define BT_CHANNELNUMBER_BASEOFFSET 0x0040
48
49 #define BT_CHANNEL_SIGNALING 0x0001
50 #define BT_CHANNEL_CONNECTIONLESS 0x0002
51
52 #define BT_SIGNAL_COMMAND_REJECT 0x01
53 #define BT_SIGNAL_CONNECTION_REQUEST 0x02
54 #define BT_SIGNAL_CONNECTION_RESPONSE 0x03
55 #define BT_SIGNAL_CONFIGURATION_REQUEST 0x04
56 #define BT_SIGNAL_CONFIGURATION_RESPONSE 0x05
57 #define BT_SIGNAL_DISCONNECTION_REQUEST 0x06
58 #define BT_SIGNAL_DISCONNECTION_RESPONSE 0x07
59 #define BT_SIGNAL_ECHO_REQUEST 0x08
60 #define BT_SIGNAL_ECHO_RESPONSE 0x09
61 #define BT_SIGNAL_INFORMATION_REQUEST 0x0A
62 #define BT_SIGNAL_INFORMATION_RESPONSE 0x0B
63
64 #define BT_INFOREQ_MTU 0x0001
65 #define BT_INFOREQ_EXTENDEDFEATURES 0x0002
66
67 #define BT_INFORMATION_SUCCESSFUL 0x0000
68 #define BT_INFORMATION_NOTSUPPORTED 0x0001
69
70 #define BT_CONNECTION_SUCCESSFUL 0x0000
71 #define BT_CONNECTION_REFUSED_RESOURCES 0x0004
72
73 #define BT_CONFIGURATION_SUCCESSFUL 0x0000
74 #define BT_CONFIGURATION_REJECTED 0x0002
75 #define BT_CONFIGURATION_UNKNOWNOPTIONS 0x0003
76
77 #define BT_CONFIG_OPTION_MTU 1
78
79 #define BT_ACL_FIRST_AUTOFLUSH (1 << 13)
80
81 /* Type Defines: */
82 typedef struct
83 {
84 uint16_t ConnectionHandle;
85 uint16_t DataLength;
86 } BT_ACL_Header_t;
87
88 typedef struct
89 {
90 uint16_t PayloadLength;
91 uint16_t DestinationChannel;
92 } BT_DataPacket_Header_t;
93
94 typedef struct
95 {
96 uint8_t Code;
97 uint8_t Identifier;
98 uint16_t Length;
99 } BT_Signal_Header_t;
100
101 typedef struct
102 {
103 uint16_t PSM;
104 uint16_t SourceChannel;
105 } BT_Signal_ConnectionReq_t;
106
107 typedef struct
108 {
109 uint16_t DestinationChannel;
110 uint16_t SourceChannel;
111 uint16_t Result;
112 uint16_t Status;
113 } BT_Signal_ConnectionResp_t;
114
115 typedef struct
116 {
117 uint16_t DestinationChannel;
118 uint16_t SourceChannel;
119 } BT_Signal_DisconnectionReq_t;
120
121 typedef struct
122 {
123 uint16_t DestinationChannel;
124 uint16_t SourceChannel;
125 } BT_Signal_DisconnectionResp_t;
126
127 typedef struct
128 {
129 uint16_t DestinationChannel;
130 uint16_t Flags;
131 } BT_Signal_ConfigurationReq_t;
132
133 typedef struct
134 {
135 uint16_t SourceChannel;
136 uint16_t Flags;
137 uint16_t Result;
138 } BT_Signal_ConfigurationResp_t;
139
140 typedef struct
141 {
142 uint16_t InfoType;
143 } BT_Signal_InformationReq_t;
144
145 typedef struct
146 {
147 uint16_t InfoType;
148 uint16_t Result;
149 } BT_Signal_InformationResp_t;
150
151 typedef struct
152 {
153 uint8_t Type;
154 uint8_t Length;
155 } BT_Config_Option_Header_t;
156
157 /* Function Prototypes: */
158 void Bluetooth_ACLTask(void);
159
160 #if defined(INCLUDE_FROM_BLUETOOTH_ACLPACKETS_C)
161 static void Bluetooth_ProcessACLPackets(void);
162
163 static inline void Bluetooth_Signal_ConnectionReq(BT_ACL_Header_t* ACLPacketHeader,
164 BT_DataPacket_Header_t* DataHeader,
165 BT_Signal_Header_t* SignalCommandHeader);
166 static inline void Bluetooth_Signal_ConnectionResp(BT_ACL_Header_t* ACLPacketHeader,
167 BT_DataPacket_Header_t* DataHeader,
168 BT_Signal_Header_t* SignalCommandHeader);
169 static inline void Bluetooth_Signal_EchoReq(BT_ACL_Header_t* ACLPacketHeader,
170 BT_DataPacket_Header_t* DataHeader,
171 BT_Signal_Header_t* SignalCommandHeader);
172 static inline void Bluetooth_Signal_ConfigurationReq(BT_ACL_Header_t* ACLPacketHeader,
173 BT_DataPacket_Header_t* DataHeader,
174 BT_Signal_Header_t* SignalCommandHeader);
175 static inline void Bluetooth_Signal_ConfigurationResp(BT_ACL_Header_t* ACLPacketHeader,
176 BT_DataPacket_Header_t* DataHeader,
177 BT_Signal_Header_t* SignalCommandHeader);
178 static inline void Bluetooth_Signal_DisconnectionReq(BT_ACL_Header_t* ACLPacketHeader,
179 BT_DataPacket_Header_t* DataHeader,
180 BT_Signal_Header_t* SignalCommandHeader);
181 static inline void Bluetooth_Signal_DisconnectionResp(BT_ACL_Header_t* ACLPacketHeader,
182 BT_DataPacket_Header_t* DataHeader,
183 BT_Signal_Header_t* SignalCommandHeader);
184 static inline void Bluetooth_Signal_InformationReq(BT_ACL_Header_t* ACLPacketHeader,
185 BT_DataPacket_Header_t* DataHeader,
186 BT_Signal_Header_t* SignalCommandHeader);
187 #endif
188
189 #endif