Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
23f3c3de
Commit
23f3c3de
authored
Jul 11, 2009
by
Dean Camera
Browse files
Fixed compilation error in incomplete BluetoothHost demo.
parent
e0af6014
Changes
2
Hide whitespace changes
Inline
Side-by-side
Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothACLPackets.c
View file @
23f3c3de
...
...
@@ -69,7 +69,7 @@ void Bluetooth_ProcessACLPackets(void)
Bluetooth_ProcessSignalPacket_ConfigurationRequest
(
&
ACLPacketHeader
,
&
DataHeader
,
&
SignalCommandHeader
);
break
;
case
BLUETOOTH_SIGNAL_INFORMATION_REQUEST
:
BT_DEBUG
(
"(ACL) -- Information Request, Discarded"
);
BT_DEBUG
(
"(ACL) -- Information Request, Discarded"
,
NULL
);
Pipe_Discard_Stream
(
ACLPacketHeader
.
DataLength
);
Pipe_ClearIN
();
...
...
Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothStack.h
View file @
23f3c3de
...
...
@@ -45,7 +45,7 @@
#define CHANNEL_LOOKUP_BY_SOURCE true
#define CHANNEL_LOOKUP_BY_DESTINATION false
#define BT_DEBUG(s, ...) printf_P(PSTR(s "\r\n"), __VA_ARGS__)
#define BT_DEBUG(s, ...)
printf_P(PSTR(s "\r\n"), __VA_ARGS__)
/* Enums: */
enum
Bluetooth_Channel_State_t
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment