diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-07-11 15:05:56 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-07-11 15:05:56 +0000 |
| commit | a199d96761281b5357da52e28ece97f6ca97282b (patch) | |
| tree | 7c12ca6cbb651560a90c5a625228c65b3c1efcb9 /Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothStack.h | |
| parent | d7db2b0a7ba348b27695b9bd40a8c2bcf3bdf07a (diff) | |
Added incomplete PrinterHost demo application.
Seperated out Lib components of the incomplete BluetoothHost demo application out into a seperate Lib subfolder.
Changed F_CLOCK entries in project makefiles to alias to F_CPU by default, as this is the most common case.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@639 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothStack.h')
| -rw-r--r-- | Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothStack.h | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothStack.h b/Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothStack.h new file mode 100644 index 00000000..dc397eca --- /dev/null +++ b/Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothStack.h @@ -0,0 +1,96 @@ +/*
+ LUFA Library
+ Copyright (C) Dean Camera, 2009.
+
+ dean [at] fourwalledcubicle [dot] com
+ www.fourwalledcubicle.com
+*/
+
+/*
+ Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
+
+ Permission to use, copy, modify, and distribute this software
+ and its documentation for any purpose and without fee is hereby
+ granted, provided that the above copyright notice appear in all
+ copies and that both that the copyright notice and this
+ permission notice and warranty disclaimer appear in supporting
+ documentation, and that the name of the author not be used in
+ advertising or publicity pertaining to distribution of the
+ software without specific, written prior permission.
+
+ The author disclaim all warranties with regard to this
+ software, including all implied warranties of merchantability
+ and fitness. In no event shall the author be liable for any
+ special, indirect or consequential damages or any damages
+ whatsoever resulting from loss of use, data or profits, whether
+ in an action of contract, negligence or other tortious action,
+ arising out of or in connection with the use or performance of
+ this software.
+*/
+
+#ifndef _BLUETOOTH_STACK_
+#define _BLUETOOTH_STACK_
+
+ /* Includes: */
+ #include <LUFA/Drivers/USB/USB.h> +
+ #include "BluetoothHost.h"
+ #include "BluetoothHCICommands.h"
+ #include "BluetoothACLPackets.h"
+
+ /* Macros: */
+ #define BLUETOOTH_MAX_OPEN_CHANNELS 2
+ #define BLUETOOTH_CHANNELNUMBER_BASEOFFSET 0x0040
+
+ #define CHANNEL_LOOKUP_BY_SOURCE true
+ #define CHANNEL_LOOKUP_BY_DESTINATION false
+
+ #define BT_DEBUG(s, ...) printf_P(PSTR(s "\r\n"), __VA_ARGS__)
+
+ /* Enums: */
+ enum Bluetooth_Channel_State_t
+ {
+ Channel_Closed = 0,
+ Channel_WaitConnect = 1,
+ Channel_WaitConnectRsp = 2,
+ Channel_Config = 3,
+ Channel_Open = 4,
+ Channel_WaitDisconnect = 5,
+ };
+
+ /* Type Defines: */
+ typedef struct
+ {
+ uint8_t State;
+ uint16_t LocalNumber;
+ uint16_t RemoteNumber;
+ uint16_t PSM;
+ uint16_t MTU;
+ } Bluetooth_Channel_t;
+
+ typedef struct
+ {
+ bool IsConnected;
+ uint16_t ConnectionHandle;
+ uint8_t DeviceAddress[6];
+ Bluetooth_Channel_t Channels[BLUETOOTH_MAX_OPEN_CHANNELS];
+ } Bluetooth_Connection_t;
+
+ typedef struct
+ {
+ uint32_t Class;
+ char PINCode[16];
+ char Name[];
+ } Bluetooth_Device_t;
+
+ /* Function Prototypes: */
+ Bluetooth_Channel_t* Bluetooth_GetChannelData(uint16_t ChannelNumber, bool SearchBySource);
+ Bluetooth_Channel_t* Bluetooth_InitChannelData(uint16_t RemoteChannelNumber, uint16_t PSM);
+
+ void Bluetooth_Stack_Task(void);
+
+ /* External Variables: */
+ extern Bluetooth_Device_t Bluetooth_DeviceConfiguration;
+ extern Bluetooth_Connection_t Bluetooth_Connection;
+
+#endif
|
