Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lufa
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Erik Strand
lufa
Commits
23f3c3de
Commit
23f3c3de
authored
15 years ago
by
Dean Camera
Browse files
Options
Downloads
Patches
Plain Diff
Fixed compilation error in incomplete BluetoothHost demo.
parent
e0af6014
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothACLPackets.c
+1
-1
1 addition, 1 deletion
...s/Host/Incomplete/BluetoothHost/Lib/BluetoothACLPackets.c
Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothStack.h
+1
-1
1 addition, 1 deletion
Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothStack.h
with
2 additions
and
2 deletions
Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothACLPackets.c
+
1
−
1
View file @
23f3c3de
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothStack.h
+
1
−
1
View file @
23f3c3de
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment