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
d6a9c3d3
Commit
d6a9c3d3
authored
Oct 11, 2014
by
TMRh20
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Built-in support multiple radios on RPi
per req. from sergio m.
parent
8be1be0c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
10 deletions
+25
-10
RPi/RF24/RF24.cpp
RPi/RF24/RF24.cpp
+24
-10
RPi/RF24/RF24.h
RPi/RF24/RF24.h
+1
-0
No files found.
RPi/RF24/RF24.cpp
View file @
d6a9c3d3
...
@@ -19,6 +19,15 @@ TMRh20 2014: Updated to work with optimized RF24 and RF24 Network Arduino libs.
...
@@ -19,6 +19,15 @@ TMRh20 2014: Updated to work with optimized RF24 and RF24 Network Arduino libs.
#include "./nRF24L01.h"
#include "./nRF24L01.h"
void
RF24
::
spiSettings
(){
bcm2835_spi_setBitOrder
(
BCM2835_SPI_BIT_ORDER_MSBFIRST
);
bcm2835_spi_setDataMode
(
BCM2835_SPI_MODE0
);
// Set SPI bus Speed
bcm2835_spi_setClockDivider
(
spi_speed
);
// Choose hardware CSN pin
bcm2835_spi_chipSelect
(
csn_pin
);
}
/****************************************************************************/
/****************************************************************************/
uint8_t
RF24
::
read_register
(
uint8_t
reg
,
uint8_t
*
buf
,
uint8_t
len
)
uint8_t
RF24
::
read_register
(
uint8_t
reg
,
uint8_t
*
buf
,
uint8_t
len
)
{
{
...
@@ -31,6 +40,8 @@ uint8_t RF24::read_register(uint8_t reg, uint8_t* buf, uint8_t len)
...
@@ -31,6 +40,8 @@ uint8_t RF24::read_register(uint8_t reg, uint8_t* buf, uint8_t len)
while
(
len
--
){
while
(
len
--
){
*
ptx
++
=
NOP
;
// Dummy operation, just for reading
*
ptx
++
=
NOP
;
// Dummy operation, just for reading
}
}
spiSettings
();
bcm2835_spi_transfernb
(
(
char
*
)
spi_txbuff
,
(
char
*
)
spi_rxbuff
,
size
);
bcm2835_spi_transfernb
(
(
char
*
)
spi_txbuff
,
(
char
*
)
spi_rxbuff
,
size
);
status
=
*
prx
++
;
// status is 1st byte of receive buffer
status
=
*
prx
++
;
// status is 1st byte of receive buffer
...
@@ -54,6 +65,7 @@ uint8_t RF24::read_register(uint8_t reg)
...
@@ -54,6 +65,7 @@ uint8_t RF24::read_register(uint8_t reg)
*
ptx
++
=
(
R_REGISTER
|
(
REGISTER_MASK
&
reg
)
);
*
ptx
++
=
(
R_REGISTER
|
(
REGISTER_MASK
&
reg
)
);
*
ptx
++
=
NOP
;
// Dummy operation, just for reading
*
ptx
++
=
NOP
;
// Dummy operation, just for reading
spiSettings
();
bcm2835_spi_transfernb
(
(
char
*
)
spi_txbuff
,
(
char
*
)
spi_rxbuff
,
2
);
bcm2835_spi_transfernb
(
(
char
*
)
spi_txbuff
,
(
char
*
)
spi_rxbuff
,
2
);
result
=
*++
prx
;
// result is 2nd byte of receive buffer
result
=
*++
prx
;
// result is 2nd byte of receive buffer
...
@@ -73,6 +85,7 @@ uint8_t RF24::write_register(uint8_t reg, uint8_t value)
...
@@ -73,6 +85,7 @@ uint8_t RF24::write_register(uint8_t reg, uint8_t value)
*
ptx
++
=
(
W_REGISTER
|
(
REGISTER_MASK
&
reg
)
);
*
ptx
++
=
(
W_REGISTER
|
(
REGISTER_MASK
&
reg
)
);
*
ptx
=
value
;
*
ptx
=
value
;
spiSettings
();
bcm2835_spi_transfernb
(
(
char
*
)
spi_txbuff
,
(
char
*
)
spi_rxbuff
,
2
);
bcm2835_spi_transfernb
(
(
char
*
)
spi_txbuff
,
(
char
*
)
spi_rxbuff
,
2
);
status
=
*
prx
++
;
// status is 1st byte of receive buffer
status
=
*
prx
++
;
// status is 1st byte of receive buffer
...
@@ -96,6 +109,7 @@ uint8_t RF24::write_register(uint8_t reg, const uint8_t* buf, uint8_t len)
...
@@ -96,6 +109,7 @@ uint8_t RF24::write_register(uint8_t reg, const uint8_t* buf, uint8_t len)
while
(
len
--
)
while
(
len
--
)
*
ptx
++
=
*
buf
++
;
*
ptx
++
=
*
buf
++
;
spiSettings
();
bcm2835_spi_transfernb
(
(
char
*
)
spi_txbuff
,
(
char
*
)
spi_rxbuff
,
size
);
bcm2835_spi_transfernb
(
(
char
*
)
spi_txbuff
,
(
char
*
)
spi_rxbuff
,
size
);
status
=
*
prx
;
// status is 1st byte of receive buffer
status
=
*
prx
;
// status is 1st byte of receive buffer
...
@@ -129,6 +143,7 @@ uint8_t RF24::write_payload(const void* buf, uint8_t len, const uint8_t writeTyp
...
@@ -129,6 +143,7 @@ uint8_t RF24::write_payload(const void* buf, uint8_t len, const uint8_t writeTyp
while
(
blank_len
--
)
while
(
blank_len
--
)
*
ptx
++
=
0
;
*
ptx
++
=
0
;
spiSettings
();
bcm2835_spi_transfernb
(
(
char
*
)
spi_txbuff
,
(
char
*
)
spi_rxbuff
,
size
);
bcm2835_spi_transfernb
(
(
char
*
)
spi_txbuff
,
(
char
*
)
spi_rxbuff
,
size
);
status
=
*
prx
;
// status is 1st byte of receive buffer
status
=
*
prx
;
// status is 1st byte of receive buffer
...
@@ -163,6 +178,7 @@ uint8_t RF24::read_payload(void* buf, uint8_t len)
...
@@ -163,6 +178,7 @@ uint8_t RF24::read_payload(void* buf, uint8_t len)
// Size has been lost during while, re affect
// Size has been lost during while, re affect
size
=
data_len
+
blank_len
+
1
;
// Add register value to transmit buffer
size
=
data_len
+
blank_len
+
1
;
// Add register value to transmit buffer
spiSettings
();
bcm2835_spi_transfernb
(
(
char
*
)
spi_txbuff
,
(
char
*
)
spi_rxbuff
,
size
);
bcm2835_spi_transfernb
(
(
char
*
)
spi_txbuff
,
(
char
*
)
spi_rxbuff
,
size
);
// 1st byte is status
// 1st byte is status
...
@@ -181,6 +197,7 @@ uint8_t RF24::flush_rx(void)
...
@@ -181,6 +197,7 @@ uint8_t RF24::flush_rx(void)
{
{
uint8_t
status
;
uint8_t
status
;
spiSettings
();
status
=
bcm2835_spi_transfer
(
FLUSH_RX
);
status
=
bcm2835_spi_transfer
(
FLUSH_RX
);
return
status
;
return
status
;
...
@@ -192,6 +209,7 @@ uint8_t RF24::flush_tx(void)
...
@@ -192,6 +209,7 @@ uint8_t RF24::flush_tx(void)
{
{
uint8_t
status
;
uint8_t
status
;
spiSettings
();
status
=
bcm2835_spi_transfer
(
FLUSH_TX
);
status
=
bcm2835_spi_transfer
(
FLUSH_TX
);
return
status
;
return
status
;
...
@@ -201,6 +219,7 @@ uint8_t RF24::flush_tx(void)
...
@@ -201,6 +219,7 @@ uint8_t RF24::flush_tx(void)
uint8_t
RF24
::
get_status
(
void
)
uint8_t
RF24
::
get_status
(
void
)
{
{
spiSettings
();
return
bcm2835_spi_transfer
(
NOP
);
return
bcm2835_spi_transfer
(
NOP
);
}
}
...
@@ -433,15 +452,6 @@ bool RF24::begin(void)
...
@@ -433,15 +452,6 @@ bool RF24::begin(void)
// start the SPI library:
// start the SPI library:
// Note the NRF24 wants mode 0, MSB first and default to 1 Mbps
// Note the NRF24 wants mode 0, MSB first and default to 1 Mbps
bcm2835_spi_setBitOrder
(
BCM2835_SPI_BIT_ORDER_MSBFIRST
);
bcm2835_spi_setDataMode
(
BCM2835_SPI_MODE0
);
// Set SPI bus Speed
bcm2835_spi_setClockDivider
(
spi_speed
);
// Choose hardware CSN pin
bcm2835_spi_chipSelect
(
csn_pin
);
// Initialise the CE pin of NRF24 (chip enable) after the CSN pin, so that
// Initialise the CE pin of NRF24 (chip enable) after the CSN pin, so that
// The input mode is not changed if using one of the hardware CE pins
// The input mode is not changed if using one of the hardware CE pins
...
@@ -654,6 +664,7 @@ bool RF24::writeBlocking( const void* buf, uint8_t len, uint32_t timeout )
...
@@ -654,6 +664,7 @@ bool RF24::writeBlocking( const void* buf, uint8_t len, uint32_t timeout )
void
RF24
::
reUseTX
(){
void
RF24
::
reUseTX
(){
write_register
(
STATUS
,
_BV
(
MAX_RT
)
);
//Clear max retry flag
write_register
(
STATUS
,
_BV
(
MAX_RT
)
);
//Clear max retry flag
//spiTrans( REUSE_TX_PL );
//spiTrans( REUSE_TX_PL );
spiSettings
();
bcm2835_spi_transfer
(
REUSE_TX_PL
);
bcm2835_spi_transfer
(
REUSE_TX_PL
);
bcm2835_gpio_write
(
ce_pin
,
LOW
);
//Re-Transfer packet
bcm2835_gpio_write
(
ce_pin
,
LOW
);
//Re-Transfer packet
bcm2835_gpio_write
(
ce_pin
,
HIGH
);
bcm2835_gpio_write
(
ce_pin
,
HIGH
);
...
@@ -796,6 +807,7 @@ uint8_t RF24::getDynamicPayloadSize(void)
...
@@ -796,6 +807,7 @@ uint8_t RF24::getDynamicPayloadSize(void)
spi_txbuff
[
0
]
=
R_RX_PL_WID
;
spi_txbuff
[
0
]
=
R_RX_PL_WID
;
spi_rxbuff
[
1
]
=
0xff
;
spi_rxbuff
[
1
]
=
0xff
;
spiSettings
();
bcm2835_spi_transfernb
(
(
char
*
)
spi_txbuff
,
(
char
*
)
spi_rxbuff
,
2
);
bcm2835_spi_transfernb
(
(
char
*
)
spi_txbuff
,
(
char
*
)
spi_rxbuff
,
2
);
if
(
spi_rxbuff
[
1
]
>
32
)
{
flush_rx
();
delay
(
2
);
return
0
;
}
if
(
spi_rxbuff
[
1
]
>
32
)
{
flush_rx
();
delay
(
2
);
return
0
;
}
...
@@ -974,6 +986,7 @@ void RF24::closeReadingPipe( uint8_t pipe )
...
@@ -974,6 +986,7 @@ void RF24::closeReadingPipe( uint8_t pipe )
void
RF24
::
toggle_features
(
void
)
void
RF24
::
toggle_features
(
void
)
{
{
spiSettings
();
bcm2835_spi_transfer
(
ACTIVATE
);
bcm2835_spi_transfer
(
ACTIVATE
);
bcm2835_spi_transfer
(
0x73
);
bcm2835_spi_transfer
(
0x73
);
}
}
...
@@ -1057,6 +1070,7 @@ void RF24::writeAckPayload(uint8_t pipe, const void* buf, uint8_t len)
...
@@ -1057,6 +1070,7 @@ void RF24::writeAckPayload(uint8_t pipe, const void* buf, uint8_t len)
while
(
data_len
--
){
while
(
data_len
--
){
*
ptx
++
=
*
current
++
;
*
ptx
++
=
*
current
++
;
}
}
spiSettings
();
bcm2835_spi_transfern
(
(
char
*
)
spi_txbuff
,
size
);
bcm2835_spi_transfern
(
(
char
*
)
spi_txbuff
,
size
);
}
}
...
...
RPi/RF24/RF24.h
View file @
d6a9c3d3
...
@@ -79,6 +79,7 @@ private:
...
@@ -79,6 +79,7 @@ private:
uint8_t
ce_pin
;
/**< "Chip Enable" pin, activates the RX or TX role */
uint8_t
ce_pin
;
/**< "Chip Enable" pin, activates the RX or TX role */
uint8_t
csn_pin
;
/**< SPI Chip select */
uint8_t
csn_pin
;
/**< SPI Chip select */
uint16_t
spi_speed
;
/**< SPI Bus Speed */
uint16_t
spi_speed
;
/**< SPI Bus Speed */
void
spiSettings
();
/**< Enable dual SPI devices with separate settings */
bool
wide_band
;
/* 2Mbs data rate in use? */
bool
wide_band
;
/* 2Mbs data rate in use? */
bool
p_variant
;
/* False for RF24L01 and true for RF24L01P */
bool
p_variant
;
/* False for RF24L01 and true for RF24L01P */
uint8_t
payload_size
;
/**< Fixed size of payloads */
uint8_t
payload_size
;
/**< Fixed size of payloads */
...
...
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