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
5296c166
Commit
5296c166
authored
Sep 26, 2015
by
TMRh20
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'Updates'
parents
ded7e1bc
869a2c2f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
6 deletions
+15
-6
RF24.cpp
RF24.cpp
+1
-1
RF24_config.h
RF24_config.h
+10
-2
arch/BBB/spi.cpp
arch/BBB/spi.cpp
+4
-3
No files found.
RF24.cpp
View file @
5296c166
...
@@ -32,7 +32,7 @@ void RF24::csn(bool mode)
...
@@ -32,7 +32,7 @@ void RF24::csn(bool mode)
// Return, CSN toggle complete
// Return, CSN toggle complete
return
;
return
;
#elif defined(ARDUINO)
#elif defined(ARDUINO)
&& !defined (RF24_SPI_TRANSACTIONS)
// Minimum ideal SPI bus speed is 2x data rate
// Minimum ideal SPI bus speed is 2x data rate
// If we assume 2Mbs data rate and 16Mhz clock, a
// If we assume 2Mbs data rate and 16Mhz clock, a
// divider of 4 is the minimum we want.
// divider of 4 is the minimum we want.
...
...
RF24_config.h
View file @
5296c166
...
@@ -115,9 +115,17 @@
...
@@ -115,9 +115,17 @@
// Progmem is Arduino-specific
// Progmem is Arduino-specific
// Arduino DUE is arm and does not include avr/pgmspace
// Arduino DUE is arm and does not include avr/pgmspace
#if defined (ARDUINO_ARCH_ESP8266)
#if defined (ARDUINO_ARCH_ESP8266)
#include <pgmspace.h>
#include <pgmspace.h>
#define PRIPSTR "%s"
typedef
uint16_t
prog_uint16_t
;
#define PSTR(x) (x)
#define printf_P printf
#define printf_P printf
#define strlen_P strlen
#define PROGMEM
#define pgm_read_byte(addr) (*(const unsigned char *)(addr))
#define pgm_read_word(p) (*(p))
#define PRIPSTR "%s"
#elif defined(ARDUINO) && ! defined(__arm__) && !defined (__ARDUINO_X86__)
#elif defined(ARDUINO) && ! defined(__arm__) && !defined (__ARDUINO_X86__)
#include <avr/pgmspace.h>
#include <avr/pgmspace.h>
#define PRIPSTR "%S"
#define PRIPSTR "%S"
...
...
arch/BBB/spi.cpp
View file @
5296c166
...
@@ -25,7 +25,7 @@ void SPI::begin(int busNo){
...
@@ -25,7 +25,7 @@ void SPI::begin(int busNo){
}
}
//RPi:
//RPi:
/*
if(!busNo){
/*
if(!busNo){
this->device = "/dev/spidev0.0";;
this->device = "/dev/spidev0.0";;
}else{
}else{
this->device = "/dev/spidev0.1";;
this->device = "/dev/spidev0.1";;
...
@@ -110,7 +110,8 @@ uint8_t SPI::transfer(uint8_t tx_)
...
@@ -110,7 +110,8 @@ uint8_t SPI::transfer(uint8_t tx_)
int
ret
;
int
ret
;
uint8_t
tx
[
1
]
=
{
tx_
};
uint8_t
tx
[
1
]
=
{
tx_
};
uint8_t
rx
[
1
];
uint8_t
rx
[
1
];
this
->
init
();
struct
spi_ioc_transfer
tr
=
{
struct
spi_ioc_transfer
tr
=
{
tr
.
tx_buf
=
(
unsigned
long
)
&
tx
[
0
],
tr
.
tx_buf
=
(
unsigned
long
)
&
tx
[
0
],
tr
.
rx_buf
=
(
unsigned
long
)
&
rx
[
0
],
tr
.
rx_buf
=
(
unsigned
long
)
&
rx
[
0
],
...
@@ -151,7 +152,7 @@ void SPI::transfernb(char* tbuf, char* rbuf, uint32_t len)
...
@@ -151,7 +152,7 @@ void SPI::transfernb(char* tbuf, char* rbuf, uint32_t len)
{
{
int
ret
;
int
ret
;
this
->
init
();
struct
spi_ioc_transfer
tr
=
{
struct
spi_ioc_transfer
tr
=
{
tr
.
tx_buf
=
(
unsigned
long
)
tbuf
,
tr
.
tx_buf
=
(
unsigned
long
)
tbuf
,
tr
.
rx_buf
=
(
unsigned
long
)
rbuf
,
tr
.
rx_buf
=
(
unsigned
long
)
rbuf
,
...
...
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