diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-04-13 11:19:04 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-04-13 11:19:04 +0000 |
commit | e55f33866334615e705ff68c0f3bea8e5b1b9b8b (patch) | |
tree | 35ee822c10f6453d4c162190e2a2488a9cc253e2 /Demos/Host/Incomplete/BluetoothHost/makefile | |
parent | 882ef0c983836f9a188ec1f4c86192c1af1c1344 (diff) | |
download | lufa-e55f33866334615e705ff68c0f3bea8e5b1b9b8b.tar.gz lufa-e55f33866334615e705ff68c0f3bea8e5b1b9b8b.tar.bz2 lufa-e55f33866334615e705ff68c0f3bea8e5b1b9b8b.zip |
Document the Bluetooth ACL layer. Remove unneeded parameters from the signalling command processing routines.
Change over the code so that the bluetooth packet data is read in by the stack rather than the user application, to make it more unform for sending/receiving, and so the library can handle incomming fragmentation in the future.
Start Service Discovery Protocol decoding and processing.
Diffstat (limited to 'Demos/Host/Incomplete/BluetoothHost/makefile')
-rw-r--r-- | Demos/Host/Incomplete/BluetoothHost/makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Demos/Host/Incomplete/BluetoothHost/makefile b/Demos/Host/Incomplete/BluetoothHost/makefile index e4b3f234c..1f2f26c93 100644 --- a/Demos/Host/Incomplete/BluetoothHost/makefile +++ b/Demos/Host/Incomplete/BluetoothHost/makefile @@ -135,6 +135,7 @@ SRC = $(TARGET).c \ Lib/BluetoothStack.c \
Lib/BluetoothHCICommands.c \
Lib/BluetoothACLPackets.c \
+ Lib/ServiceDiscoveryProtocol.c \
$(LUFA_PATH)/LUFA/Drivers/Peripheral/SerialStream.c \
$(LUFA_PATH)/LUFA/Drivers/Peripheral/Serial.c \
$(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/DevChapter9.c \
|