3 Copyright (C) Dean Camera, 2010.
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
10 Copyright 2010 Dean Camera (dean [at] fourwalledcubicle [dot] com)
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.
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
33 * Header file for RFCOMMControl.c.
36 #ifndef _RFCOMM_CONTROL_H_
37 #define _RFCOMM_CONTROL_H_
41 #include <avr/pgmspace.h>
46 #include <LUFA/Common/Common.h>
47 #include <LUFA/Drivers/Peripheral/SerialStream.h>
49 #include "BluetoothStack.h"
53 #define RFCOMM_SIGNAL_FC (1 << 1)
54 #define RFCOMM_SIGNAL_RTC (1 << 2)
55 #define RFCOMM_SIGNAL_RTR (1 << 3)
56 #define RFCOMM_SIGNAL_IC (1 << 6)
57 #define RFCOMM_SIGNAL_DV (1 << 7)
59 #define RFCOMM_CONFIG_REMOTESIGNALS (1 << 0)
60 #define RFCOMM_CONFIG_LOCALSIGNALS (1 << 1)
61 #define RFCOMM_CONFIG_LOCALSIGNALSSENT (1 << 2)
64 enum RFCOMM_Control_Commands_t
66 RFCOMM_Control_Test
= (0x20 >> 2),
67 RFCOMM_Control_FlowControlEnable
= (0xA0 >> 2),
68 RFCOMM_Control_FlowControlDisable
= (0x60 >> 2),
69 RFCOMM_Control_ModemStatus
= (0xE0 >> 2),
70 RFCOMM_Control_RemotePortNegotiation
= (0x90 >> 2),
71 RFCOMM_Control_RemoteLineStatus
= (0x50 >> 2),
72 RFCOMM_Control_DLCParameterNegotiation
= (0x80 >> 2),
73 RFCOMM_Control_NonSupportedCommand
= (0x10 >> 2),
81 unsigned char DLCI
: 6;
86 RFCOMM_Address_t Address
;
94 unsigned char Command
: 6;
100 unsigned char FrameType
: 4;
101 unsigned char ConvergenceLayer
: 4;
103 uint8_t ACKTimerTicks
;
104 uint16_t MaximumFrameSize
;
105 uint8_t MaxRetransmissions
;
106 uint8_t RecoveryWindowSize
;
107 } RFCOMM_DPN_Parameters_t
;
111 RFCOMM_Address_t Channel
;
114 } RFCOMM_MSC_Parameters_t
;
116 /* Function Prototypes: */
117 void RFCOMM_ProcessControlCommand(const uint8_t* Command
, Bluetooth_Channel_t
* const Channel
);
119 #if defined(INCLUDE_FROM_RFCOMM_CONTROL_C)
120 static void RFCOMM_ProcessTestCommand(const RFCOMM_Command_t
* const CommandHeader
, const uint8_t CommandDataLen
,
121 const uint8_t* CommandData
, Bluetooth_Channel_t
* const Channel
);
122 static void RFCOMM_ProcessFCECommand(const RFCOMM_Command_t
* const CommandHeader
, const uint8_t* CommandData
,
123 Bluetooth_Channel_t
* const Channel
);
124 static void RFCOMM_ProcessFCDCommand(const RFCOMM_Command_t
* const CommandHeader
, const uint8_t* CommandData
,
125 Bluetooth_Channel_t
* const Channel
);
126 static void RFCOMM_ProcessMSCCommand(const RFCOMM_Command_t
* const CommandHeader
, const uint8_t CommandDataLen
,
127 const uint8_t* CommandData
, Bluetooth_Channel_t
* const Channel
);
128 static void RFCOMM_ProcessRPNCommand(const RFCOMM_Command_t
* const CommandHeader
, const uint8_t* CommandData
,
129 Bluetooth_Channel_t
* const Channel
);
130 static void RFCOMM_ProcessRLSCommand(const RFCOMM_Command_t
* const CommandHeader
, const uint8_t* CommandData
,
131 Bluetooth_Channel_t
* const Channel
);
132 static void RFCOMM_ProcessDPNCommand(const RFCOMM_Command_t
* const CommandHeader
, const uint8_t* CommandData
,
133 Bluetooth_Channel_t
* const Channel
);