aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothACLPackets.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-05-29 07:51:01 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-05-29 07:51:01 +0000
commitc1daecf18b25566da50beb3afdcbc3e5d49d3b48 (patch)
tree62fb587af37686f49b65250572295cf88bac4e2f /Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothACLPackets.c
parent3b95b8dedced6c118cfb2cd7fc72c696c076119e (diff)
downloadlufa-c1daecf18b25566da50beb3afdcbc3e5d49d3b48.tar.gz
lufa-c1daecf18b25566da50beb3afdcbc3e5d49d3b48.tar.bz2
lufa-c1daecf18b25566da50beb3afdcbc3e5d49d3b48.zip
Fixed incorrect signature for the ATMEGA32U2 in the DFU bootloader (thanks to Axel Rohde).
Partial fix to the Bluetooth SDP code - data should be encoded in big endian, not little endian.
Diffstat (limited to 'Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothACLPackets.c')
-rw-r--r--Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothACLPackets.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothACLPackets.c b/Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothACLPackets.c
index e58a001eb..ba5170127 100644
--- a/Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothACLPackets.c
+++ b/Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothACLPackets.c
@@ -192,7 +192,7 @@ static void Bluetooth_ProcessIncommingACLPackets(void)
Pipe_Read_Stream_LE(PacketData, DataHeader.PayloadLength);
Pipe_ClearIN();
Pipe_Freeze();
-
+
Bluetooth_PacketReceived(PacketData, DataHeader.PayloadLength,
Bluetooth_GetChannelData(DataHeader.DestinationChannel, CHANNEL_SEARCH_LOCALNUMBER));
}