aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/Incomplete/BluetoothHost/BluetoothEvents.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-07-11 07:29:27 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-07-11 07:29:27 +0000
commit6276d5f82a600c9047df4a8894a257181abad5e7 (patch)
treecb4184a26017b1d4c1e7008d62b0b92c198722a9 /Demos/Host/Incomplete/BluetoothHost/BluetoothEvents.h
parentba711d6759c6e15e93557fe5d401cc61a31dfff6 (diff)
downloadlufa-6276d5f82a600c9047df4a8894a257181abad5e7.tar.gz
lufa-6276d5f82a600c9047df4a8894a257181abad5e7.tar.bz2
lufa-6276d5f82a600c9047df4a8894a257181abad5e7.zip
Rename Bluetooth stack function parameters to clearly indicate what sort of Bluetooth channel (ACL, RFCOMM) is required for each parameter, to make the code easier to read.
Add a new RFCOMM_ChannelSignalsReceived() Bluetooth stack callback from the RFCOMM layer for when the remote device sends new terminal control signals. Fix RFCOMM_SendData() not aborting correctly when the requested RFCOMM channel is not found.
Diffstat (limited to 'Demos/Host/Incomplete/BluetoothHost/BluetoothEvents.h')
-rw-r--r--Demos/Host/Incomplete/BluetoothHost/BluetoothEvents.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Demos/Host/Incomplete/BluetoothHost/BluetoothEvents.h b/Demos/Host/Incomplete/BluetoothHost/BluetoothEvents.h
index 1cb104a93..336f61d5e 100644
--- a/Demos/Host/Incomplete/BluetoothHost/BluetoothEvents.h
+++ b/Demos/Host/Incomplete/BluetoothHost/BluetoothEvents.h
@@ -65,6 +65,7 @@
#define LEDMASK_USB_BUSY LEDS_LED2
/* External Variables: */
- extern Bluetooth_Channel_t* RFCOMMChannel;
+ extern Bluetooth_Channel_t* SerialChannel_ACL;
+ extern RFCOMM_Channel_t* SerialChannel_RFCOMM;
#endif