Skip to content
Snippets Groups Projects
Commit 23f3c3de authored by Dean Camera's avatar Dean Camera
Browse files

Fixed compilation error in incomplete BluetoothHost demo.

parent e0af6014
No related branches found
No related tags found
No related merge requests found
...@@ -69,7 +69,7 @@ void Bluetooth_ProcessACLPackets(void) ...@@ -69,7 +69,7 @@ void Bluetooth_ProcessACLPackets(void)
Bluetooth_ProcessSignalPacket_ConfigurationRequest(&ACLPacketHeader, &DataHeader, &SignalCommandHeader); Bluetooth_ProcessSignalPacket_ConfigurationRequest(&ACLPacketHeader, &DataHeader, &SignalCommandHeader);
break; break;
case BLUETOOTH_SIGNAL_INFORMATION_REQUEST: case BLUETOOTH_SIGNAL_INFORMATION_REQUEST:
BT_DEBUG("(ACL) -- Information Request, Discarded"); BT_DEBUG("(ACL) -- Information Request, Discarded", NULL);
Pipe_Discard_Stream(ACLPacketHeader.DataLength); Pipe_Discard_Stream(ACLPacketHeader.DataLength);
Pipe_ClearIN(); Pipe_ClearIN();
......
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
#define CHANNEL_LOOKUP_BY_SOURCE true #define CHANNEL_LOOKUP_BY_SOURCE true
#define CHANNEL_LOOKUP_BY_DESTINATION false #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: */ /* Enums: */
enum Bluetooth_Channel_State_t enum Bluetooth_Channel_State_t
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment