Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
RF24
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
RF24
Commits
f57b3830
Commit
f57b3830
authored
Mar 04, 2015
by
TMRh20
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix isAckPayloadAvailable() per @jorihardman
- Push fix to updates branch
https://github.com/TMRh20/RF24/pull/83
parent
4120b183
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
RF24.cpp
RF24.cpp
+1
-1
No files found.
RF24.cpp
View file @
f57b3830
...
...
@@ -1383,7 +1383,7 @@ void RF24::writeAckPayload(uint8_t pipe, const void* buf, uint8_t len)
bool
RF24
::
isAckPayloadAvailable
(
void
)
{
return
!
read_register
(
FIFO_STATUS
)
&
_BV
(
RX_EMPTY
);
return
!
(
read_register
(
FIFO_STATUS
)
&
_BV
(
RX_EMPTY
)
);
}
/****************************************************************************/
...
...
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