diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-03-31 14:32:03 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-03-31 14:32:03 +0000 |
commit | a2e6d54336144f7fa3cc1d77f887cc9e20631771 (patch) | |
tree | dffbe49e1a90c1067cccb515377b80bf5de27bee /Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothStack.h | |
parent | c9148f9b473187163f9b1384b993315e39a14711 (diff) | |
download | lufa-a2e6d54336144f7fa3cc1d77f887cc9e20631771.tar.gz lufa-a2e6d54336144f7fa3cc1d77f887cc9e20631771.tar.bz2 lufa-a2e6d54336144f7fa3cc1d77f887cc9e20631771.zip |
Massive cleanups to the incomplete BluetoothHost demo, to make the HCL layer code much easier to read, block less and work correctly.
Diffstat (limited to 'Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothStack.h')
-rw-r--r-- | Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothStack.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothStack.h b/Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothStack.h index a7323fac4..0fc2dd2c2 100644 --- a/Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothStack.h +++ b/Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothStack.h @@ -72,7 +72,7 @@ {
bool IsConnected;
uint16_t ConnectionHandle;
- uint8_t DeviceAddress[6];
+ uint8_t RemoteAddress[6];
Bluetooth_Channel_t Channels[BLUETOOTH_MAX_OPEN_CHANNELS];
} Bluetooth_Connection_t;
@@ -87,6 +87,7 @@ Bluetooth_Channel_t* Bluetooth_GetChannelData(uint16_t ChannelNumber, bool SearchBySource);
Bluetooth_Channel_t* Bluetooth_InitChannelData(uint16_t RemoteChannelNumber, uint16_t PSM);
+ void Bluetooth_State_Init(void);
void Bluetooth_Stack_Task(void);
/* External Variables: */
|