2011-03-19 03:32:34 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 2011 James Coliz, Jr. <maniacbug@ymail.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
version 2 as published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <WProgram.h>
|
|
|
|
#include <SPI.h>
|
|
|
|
#include "nRF24L01.h"
|
2011-06-27 20:02:33 +00:00
|
|
|
#include "RF24.h"
|
2011-03-19 03:32:34 +00:00
|
|
|
|
2011-05-11 02:34:22 +00:00
|
|
|
#undef SERIAL_DEBUG
|
2011-03-19 03:32:34 +00:00
|
|
|
#ifdef SERIAL_DEBUG
|
|
|
|
#define IF_SERIAL_DEBUG(x) (x)
|
|
|
|
#else
|
|
|
|
#define IF_SERIAL_DEBUG(x)
|
|
|
|
#endif
|
|
|
|
|
2011-05-26 03:46:31 +00:00
|
|
|
// Avoid spurious warnings
|
|
|
|
#undef PROGMEM
|
|
|
|
#define PROGMEM __attribute__(( section(".progmem.data") ))
|
|
|
|
#undef PSTR
|
|
|
|
#define PSTR(s) (__extension__({static prog_char __c[] PROGMEM = (s); &__c[0];}))
|
|
|
|
|
2011-03-19 03:32:34 +00:00
|
|
|
/******************************************************************/
|
|
|
|
|
2011-07-16 16:36:10 +00:00
|
|
|
void RF24::csn(int mode) const
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
2011-07-18 20:37:30 +00:00
|
|
|
SPI.setBitOrder(MSBFIRST);
|
2011-04-24 19:56:43 +00:00
|
|
|
SPI.setDataMode(SPI_MODE0);
|
2011-07-18 20:37:30 +00:00
|
|
|
SPI.setClockDivider(SPI_CLOCK_DIV2);
|
2011-03-19 03:32:34 +00:00
|
|
|
digitalWrite(csn_pin,mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-07-16 16:36:10 +00:00
|
|
|
void RF24::ce(int level) const
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
2011-07-16 15:36:36 +00:00
|
|
|
digitalWrite(ce_pin,level);
|
2011-03-19 03:32:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-07-16 16:36:10 +00:00
|
|
|
uint8_t RF24::read_register(uint8_t reg, uint8_t* buf, uint8_t len) const
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
|
|
|
uint8_t status;
|
|
|
|
|
|
|
|
csn(LOW);
|
|
|
|
status = SPI.transfer( R_REGISTER | ( REGISTER_MASK & reg ) );
|
|
|
|
while ( len-- )
|
|
|
|
*buf++ = SPI.transfer(0xff);
|
|
|
|
|
|
|
|
csn(HIGH);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-07-16 16:36:10 +00:00
|
|
|
uint8_t RF24::read_register(uint8_t reg) const
|
2011-04-30 22:31:04 +00:00
|
|
|
{
|
|
|
|
csn(LOW);
|
|
|
|
SPI.transfer( R_REGISTER | ( REGISTER_MASK & reg ) );
|
|
|
|
uint8_t result = SPI.transfer(0xff);
|
|
|
|
|
|
|
|
csn(HIGH);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-07-16 16:36:10 +00:00
|
|
|
uint8_t RF24::write_register(uint8_t reg, const uint8_t* buf, uint8_t len) const
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
|
|
|
uint8_t status;
|
|
|
|
|
|
|
|
csn(LOW);
|
|
|
|
status = SPI.transfer( W_REGISTER | ( REGISTER_MASK & reg ) );
|
|
|
|
while ( len-- )
|
|
|
|
SPI.transfer(*buf++);
|
|
|
|
|
|
|
|
csn(HIGH);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-07-16 16:36:10 +00:00
|
|
|
uint8_t RF24::write_register(uint8_t reg, uint8_t value) const
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
|
|
|
uint8_t status;
|
|
|
|
|
2011-04-26 03:29:57 +00:00
|
|
|
IF_SERIAL_DEBUG(printf_P(PSTR("write_register(%02x,%02x)\n\r"),reg,value));
|
|
|
|
|
2011-03-19 03:32:34 +00:00
|
|
|
csn(LOW);
|
|
|
|
status = SPI.transfer( W_REGISTER | ( REGISTER_MASK & reg ) );
|
|
|
|
SPI.transfer(value);
|
|
|
|
csn(HIGH);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-04-01 04:32:45 +00:00
|
|
|
uint8_t RF24::write_payload(const void* buf, uint8_t len)
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
|
|
|
uint8_t status;
|
|
|
|
|
|
|
|
const uint8_t* current = (const uint8_t*)buf;
|
|
|
|
|
|
|
|
csn(LOW);
|
|
|
|
status = SPI.transfer( W_TX_PAYLOAD );
|
2011-04-01 04:32:45 +00:00
|
|
|
uint8_t data_len = min(len,payload_size);
|
|
|
|
uint8_t blank_len = payload_size - data_len;
|
|
|
|
while ( data_len-- )
|
2011-03-19 03:32:34 +00:00
|
|
|
SPI.transfer(*current++);
|
2011-04-01 04:32:45 +00:00
|
|
|
while ( blank_len-- )
|
|
|
|
SPI.transfer(0);
|
2011-03-19 03:32:34 +00:00
|
|
|
|
|
|
|
csn(HIGH);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-04-01 04:32:45 +00:00
|
|
|
uint8_t RF24::read_payload(void* buf, uint8_t len)
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
|
|
|
uint8_t status;
|
|
|
|
uint8_t* current = (uint8_t*)buf;
|
|
|
|
|
|
|
|
csn(LOW);
|
|
|
|
status = SPI.transfer( R_RX_PAYLOAD );
|
2011-04-01 04:32:45 +00:00
|
|
|
uint8_t data_len = min(len,payload_size);
|
|
|
|
uint8_t blank_len = payload_size - data_len;
|
|
|
|
while ( data_len-- )
|
2011-03-19 03:32:34 +00:00
|
|
|
*current++ = SPI.transfer(0xff);
|
2011-04-01 04:32:45 +00:00
|
|
|
while ( blank_len-- )
|
|
|
|
SPI.transfer(0xff);
|
2011-03-19 03:32:34 +00:00
|
|
|
csn(HIGH);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-06-21 19:36:02 +00:00
|
|
|
uint8_t RF24::flush_rx(void) const
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
|
|
|
uint8_t status;
|
|
|
|
|
|
|
|
csn(LOW);
|
|
|
|
status = SPI.transfer( FLUSH_RX );
|
|
|
|
csn(HIGH);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-06-21 19:36:02 +00:00
|
|
|
uint8_t RF24::flush_tx(void) const
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
|
|
|
uint8_t status;
|
|
|
|
|
|
|
|
csn(LOW);
|
|
|
|
status = SPI.transfer( FLUSH_TX );
|
|
|
|
csn(HIGH);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-06-21 19:36:02 +00:00
|
|
|
uint8_t RF24::get_status(void) const
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
|
|
|
uint8_t status;
|
|
|
|
|
|
|
|
csn(LOW);
|
|
|
|
status = SPI.transfer( NOP );
|
|
|
|
csn(HIGH);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-06-21 19:36:02 +00:00
|
|
|
void RF24::print_status(uint8_t status) const
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
2011-04-26 03:40:51 +00:00
|
|
|
printf_P(PSTR("STATUS=%02x: RX_DR=%x TX_DS=%x MAX_RT=%x RX_P_NO=%x TX_FULL=%x\n\r"),
|
2011-03-19 03:32:34 +00:00
|
|
|
status,
|
|
|
|
(status & _BV(RX_DR))?1:0,
|
|
|
|
(status & _BV(TX_DS))?1:0,
|
|
|
|
(status & _BV(MAX_RT))?1:0,
|
|
|
|
((status >> RX_P_NO) & B111),
|
|
|
|
(status & _BV(TX_FULL))?1:0
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-06-21 19:36:02 +00:00
|
|
|
void RF24::print_observe_tx(uint8_t value) const
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
2011-04-26 03:40:51 +00:00
|
|
|
printf_P(PSTR("OBSERVE_TX=%02x: POLS_CNT=%x ARC_CNT=%x\n\r"),
|
2011-03-19 03:32:34 +00:00
|
|
|
value,
|
|
|
|
(value >> PLOS_CNT) & B1111,
|
|
|
|
(value >> ARC_CNT) & B1111
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-07-16 16:36:10 +00:00
|
|
|
RF24::RF24(uint8_t _cepin, uint8_t _cspin):
|
2011-06-27 20:02:33 +00:00
|
|
|
ce_pin(_cepin), csn_pin(_cspin), wide_band(true), p_variant(false),
|
|
|
|
payload_size(32), ack_payload_available(false)
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-07-16 16:36:10 +00:00
|
|
|
void RF24::setChannel(uint8_t channel)
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
2011-06-21 19:36:02 +00:00
|
|
|
if( wide_band ) {
|
|
|
|
write_register(RF_CH,min(channel,127));
|
|
|
|
} else {
|
|
|
|
write_register(RF_CH,min(channel,127));
|
|
|
|
}
|
2011-03-19 03:32:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-07-16 16:36:10 +00:00
|
|
|
void RF24::setPayloadSize(uint8_t size)
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
|
|
|
payload_size = min(size,32);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
|
|
|
uint8_t RF24::getPayloadSize(void)
|
|
|
|
{
|
|
|
|
return payload_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-06-21 19:36:02 +00:00
|
|
|
void RF24::printDetails(void) const
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
|
|
|
uint8_t buffer[5];
|
|
|
|
uint8_t status = read_register(RX_ADDR_P0,buffer,5);
|
|
|
|
print_status(status);
|
2011-04-26 03:40:51 +00:00
|
|
|
printf_P(PSTR("RX_ADDR_P0 = 0x"));
|
2011-03-19 03:32:34 +00:00
|
|
|
uint8_t *bufptr = buffer + 5;
|
|
|
|
while( bufptr-- > buffer )
|
2011-04-26 03:40:51 +00:00
|
|
|
printf_P(PSTR("%02x"),*bufptr);
|
|
|
|
printf_P(PSTR("\n\r"));
|
2011-03-19 03:32:34 +00:00
|
|
|
|
|
|
|
status = read_register(RX_ADDR_P1,buffer,5);
|
2011-04-26 03:40:51 +00:00
|
|
|
printf_P(PSTR("RX_ADDR_P1 = 0x"));
|
2011-03-19 03:32:34 +00:00
|
|
|
bufptr = buffer + 5;
|
|
|
|
while( bufptr-- > buffer )
|
2011-04-26 03:40:51 +00:00
|
|
|
printf_P(PSTR("%02x"),*bufptr);
|
|
|
|
printf_P(PSTR("\n\r"));
|
2011-03-19 03:32:34 +00:00
|
|
|
|
2011-04-02 05:55:33 +00:00
|
|
|
status = read_register(RX_ADDR_P2,buffer,1);
|
2011-04-26 03:40:51 +00:00
|
|
|
printf_P(PSTR("RX_ADDR_P2 = 0x%02x"),*buffer);
|
|
|
|
printf_P(PSTR("\n\r"));
|
2011-04-02 05:55:33 +00:00
|
|
|
|
|
|
|
status = read_register(RX_ADDR_P3,buffer,1);
|
2011-04-26 03:40:51 +00:00
|
|
|
printf_P(PSTR("RX_ADDR_P3 = 0x%02x"),*buffer);
|
|
|
|
printf_P(PSTR("\n\r"));
|
2011-04-02 05:55:33 +00:00
|
|
|
|
2011-07-18 20:37:30 +00:00
|
|
|
status = read_register(RX_ADDR_P4,buffer,1);
|
|
|
|
printf_P(PSTR("RX_ADDR_P4 = 0x%02x"),*buffer);
|
|
|
|
printf_P(PSTR("\n\r"));
|
|
|
|
|
|
|
|
status = read_register(RX_ADDR_P5,buffer,1);
|
|
|
|
printf_P(PSTR("RX_ADDR_P5 = 0x%02x"),*buffer);
|
|
|
|
printf_P(PSTR("\n\r"));
|
|
|
|
|
2011-03-19 03:32:34 +00:00
|
|
|
status = read_register(TX_ADDR,buffer,5);
|
2011-04-26 03:40:51 +00:00
|
|
|
printf_P(PSTR("TX_ADDR = 0x"));
|
2011-03-19 03:32:34 +00:00
|
|
|
bufptr = buffer + 5;
|
|
|
|
while( bufptr-- > buffer )
|
2011-04-26 03:40:51 +00:00
|
|
|
printf_P(PSTR("%02x"),*bufptr);
|
|
|
|
printf_P(PSTR("\n\r"));
|
2011-04-26 03:29:57 +00:00
|
|
|
|
|
|
|
status = read_register(RX_PW_P0,buffer,1);
|
2011-04-26 03:40:51 +00:00
|
|
|
printf_P(PSTR("RX_PW_P0 = 0x%02x\n\r"),*buffer);
|
2011-04-26 03:29:57 +00:00
|
|
|
|
|
|
|
status = read_register(RX_PW_P1,buffer,1);
|
2011-04-26 03:40:51 +00:00
|
|
|
printf_P(PSTR("RX_PW_P1 = 0x%02x\n\r"),*buffer);
|
2011-03-19 03:32:34 +00:00
|
|
|
|
|
|
|
read_register(EN_AA,buffer,1);
|
2011-06-27 20:02:33 +00:00
|
|
|
printf_P(PSTR("EN_AA = 0x%02x\n\r"),*buffer);
|
2011-03-19 03:32:34 +00:00
|
|
|
|
|
|
|
read_register(EN_RXADDR,buffer,1);
|
2011-06-27 20:02:33 +00:00
|
|
|
printf_P(PSTR("EN_RXADDR = 0x%02x\n\r"),*buffer);
|
2011-03-19 03:32:34 +00:00
|
|
|
|
|
|
|
read_register(RF_CH,buffer,1);
|
2011-06-27 20:02:33 +00:00
|
|
|
printf_P(PSTR("RF_CH = 0x%02x\n\r"),*buffer);
|
|
|
|
|
|
|
|
read_register(RF_SETUP,buffer,1);
|
|
|
|
printf_P(PSTR("RF_SETUP = 0x%02x (data rate: %d)\n\r"),*buffer,getDataRate());
|
|
|
|
printf_P(PSTR("Hardware; isPVariant: %d\n\r"),isPVariant());
|
2011-07-18 20:37:30 +00:00
|
|
|
|
|
|
|
read_register(CONFIG,buffer,1);
|
|
|
|
printf_P(PSTR("CONFIG = 0x%02x (CRC enable: %d; CRC16: %d)\n\r"),
|
|
|
|
*buffer,(*buffer)&_BV(EN_CRC)?1:0,
|
|
|
|
(*buffer)&_BV(CRCO)?1:0);
|
2011-03-19 03:32:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
|
|
|
void RF24::begin(void)
|
|
|
|
{
|
2011-07-18 20:37:30 +00:00
|
|
|
// Initialize pins
|
2011-03-19 03:32:34 +00:00
|
|
|
pinMode(ce_pin,OUTPUT);
|
|
|
|
pinMode(csn_pin,OUTPUT);
|
|
|
|
|
2011-07-18 20:37:30 +00:00
|
|
|
// Initialize SPI bus
|
|
|
|
// Minimum ideal SPI bus speed is 2x data rate
|
|
|
|
// If we assume 2Mbs data rate and 16Mhz clock, a
|
|
|
|
// divider of 4 is the minimum we want.
|
|
|
|
// CLK:BUS 8Mhz:2Mhz, 16Mhz:4Mhz, or 20Mhz:5Mhz
|
|
|
|
// We'll use a divider of 2 which will work up to
|
|
|
|
// MCU speeds of 20Mhz.
|
|
|
|
// CLK:BUS 8Mhz:4Mhz, 16Mhz:8Mhz, or 20Mhz:10Mhz (max)
|
2011-07-16 15:36:36 +00:00
|
|
|
SPI.begin();
|
2011-03-19 03:32:34 +00:00
|
|
|
SPI.setBitOrder(MSBFIRST);
|
|
|
|
SPI.setDataMode(SPI_MODE0);
|
2011-07-18 20:37:30 +00:00
|
|
|
SPI.setClockDivider(SPI_CLOCK_DIV2);
|
|
|
|
|
|
|
|
ce(LOW);
|
|
|
|
csn(HIGH);
|
|
|
|
|
|
|
|
// Must allow the radio time to settle else configuration bits will not necessarily stick.
|
|
|
|
// This is actually only required following power up but some settling time also appears to
|
|
|
|
// be required after resets too. For full coverage, we'll always assume the worst.
|
|
|
|
// Enabling 16b CRC is by far the most obvious case if the wrong timing is used - or skipped.
|
|
|
|
// Technically we require 4.5ms + 14us as a worst case. We'll just call it 5ms for good measure.
|
|
|
|
// WARNING: Delay is based on P-variant whereby non-P *may* require different timing.
|
|
|
|
delay( 5 ) ;
|
2011-03-19 03:32:34 +00:00
|
|
|
|
2011-06-27 20:02:33 +00:00
|
|
|
// Set 1500uS (minimum for 32B payload in ESB@250KBPS) timeouts, to make testing a little easier
|
|
|
|
// WARNING: If this is ever lowered, either 250KBS mode with AA is broken or maximum packet
|
|
|
|
// sizes must never be used. See documentation for a more complete explanation.
|
|
|
|
write_register(SETUP_RETR,(B0100 << ARD) | (B1111 << ARC));
|
2011-03-19 03:32:34 +00:00
|
|
|
|
2011-07-18 20:37:30 +00:00
|
|
|
// Restore our default PA level
|
|
|
|
setPALevel( RF24_PA_MAX ) ;
|
2011-06-27 20:02:33 +00:00
|
|
|
|
|
|
|
// Determine if this is a p or non-p RF24 module and then
|
|
|
|
// reset our data rate back to default value. This works
|
|
|
|
// because a non-P variant won't allow the data rate to
|
2011-07-16 15:36:36 +00:00
|
|
|
// be set to 250Kbps.
|
2011-06-27 20:02:33 +00:00
|
|
|
if( setDataRate( RF24_250KBPS ) ) {
|
|
|
|
p_variant = true ;
|
|
|
|
}
|
|
|
|
setDataRate( RF24_2MBPS ) ;
|
2011-07-18 20:37:30 +00:00
|
|
|
|
|
|
|
// Initialize CRC and request 2-byte (16bit) CRC
|
|
|
|
setCRCLength( RF24_CRC_16 ) ;
|
|
|
|
|
|
|
|
// Reset current status
|
|
|
|
// Notice reset and flush is the last thing we do
|
|
|
|
write_register(STATUS,_BV(RX_DR) | _BV(TX_DS) | _BV(MAX_RT) );
|
|
|
|
|
|
|
|
// Flush buffers
|
|
|
|
flush_rx();
|
|
|
|
flush_tx();
|
2011-03-19 03:32:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-06-21 19:36:02 +00:00
|
|
|
void RF24::startListening(void) const
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
2011-05-28 02:32:59 +00:00
|
|
|
write_register(CONFIG, read_register(CONFIG) | _BV(PWR_UP) | _BV(PRIM_RX));
|
2011-03-19 03:32:34 +00:00
|
|
|
write_register(STATUS, _BV(RX_DR) | _BV(TX_DS) | _BV(MAX_RT) );
|
2011-05-15 14:21:11 +00:00
|
|
|
|
|
|
|
// Restore the pipe0 adddress
|
2011-06-21 19:36:02 +00:00
|
|
|
write_register(RX_ADDR_P0, reinterpret_cast<const uint8_t*>(&pipe0_reading_address), 5);
|
2011-03-19 03:32:34 +00:00
|
|
|
|
|
|
|
// Flush buffers
|
|
|
|
flush_rx();
|
|
|
|
|
|
|
|
// Go!
|
|
|
|
ce(HIGH);
|
|
|
|
|
|
|
|
// wait for the radio to come up (130us actually only needed)
|
2011-05-26 05:22:21 +00:00
|
|
|
delayMicroseconds(130);
|
2011-03-19 03:32:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-06-21 19:36:02 +00:00
|
|
|
void RF24::stopListening(void) const
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
|
|
|
ce(LOW);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-06-21 19:36:02 +00:00
|
|
|
void RF24::powerDown(void) const
|
2011-05-10 22:16:06 +00:00
|
|
|
{
|
2011-05-28 02:32:59 +00:00
|
|
|
write_register(CONFIG,read_register(CONFIG) & ~_BV(PWR_UP));
|
2011-05-10 22:16:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-04-01 04:32:45 +00:00
|
|
|
boolean RF24::write( const void* buf, uint8_t len )
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
|
|
|
boolean result = false;
|
|
|
|
|
|
|
|
// Transmitter power-up
|
2011-05-28 02:32:59 +00:00
|
|
|
write_register(CONFIG, ( read_register(CONFIG) | _BV(PWR_UP) ) & ~_BV(PRIM_RX) );
|
2011-04-30 22:31:04 +00:00
|
|
|
delay(2);
|
2011-03-19 03:32:34 +00:00
|
|
|
|
|
|
|
// Send the payload
|
2011-04-01 04:32:45 +00:00
|
|
|
write_payload( buf, len );
|
2011-03-19 03:32:34 +00:00
|
|
|
|
|
|
|
// Allons!
|
|
|
|
ce(HIGH);
|
|
|
|
|
|
|
|
// IN the end, the send should be blocking. It comes back in 60ms worst case, or much faster
|
2011-06-27 20:02:33 +00:00
|
|
|
// if I tighted up the retry logic. (Default settings will be 1500us.
|
2011-03-19 03:32:34 +00:00
|
|
|
// Monitor the send
|
|
|
|
uint8_t observe_tx;
|
|
|
|
uint8_t status;
|
2011-04-30 22:31:04 +00:00
|
|
|
uint8_t retries = 255;
|
2011-03-19 03:32:34 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
status = read_register(OBSERVE_TX,&observe_tx,1);
|
|
|
|
IF_SERIAL_DEBUG(Serial.print(status,HEX));
|
|
|
|
IF_SERIAL_DEBUG(Serial.print(observe_tx,HEX));
|
2011-04-30 22:31:04 +00:00
|
|
|
if ( ! retries-- )
|
|
|
|
{
|
|
|
|
IF_SERIAL_DEBUG(printf("ABORTED: too many retries\n\r"));
|
|
|
|
break;
|
|
|
|
}
|
2011-03-19 03:32:34 +00:00
|
|
|
}
|
|
|
|
while( ! ( status & ( _BV(TX_DS) | _BV(MAX_RT) ) ) );
|
|
|
|
|
|
|
|
if ( status & _BV(TX_DS) )
|
|
|
|
result = true;
|
2011-04-30 22:31:04 +00:00
|
|
|
|
|
|
|
IF_SERIAL_DEBUG(Serial.print(result?"...OK.":"...Failed"));
|
|
|
|
|
2011-05-10 21:39:01 +00:00
|
|
|
ack_payload_available = ( status & _BV(RX_DR) );
|
|
|
|
if ( ack_payload_available )
|
2011-04-30 22:31:04 +00:00
|
|
|
{
|
|
|
|
write_register(STATUS,_BV(RX_DR) );
|
2011-05-10 21:39:01 +00:00
|
|
|
ack_payload_length = read_payload_length();
|
2011-04-30 22:31:04 +00:00
|
|
|
IF_SERIAL_DEBUG(Serial.print("[AckPacket]/"));
|
2011-05-10 21:39:01 +00:00
|
|
|
IF_SERIAL_DEBUG(Serial.println(ack_payload_length,DEC));
|
2011-04-30 22:31:04 +00:00
|
|
|
}
|
2011-03-19 03:32:34 +00:00
|
|
|
|
|
|
|
// Yay, we are done.
|
|
|
|
ce(LOW);
|
|
|
|
|
|
|
|
// Power down
|
2011-05-28 02:32:59 +00:00
|
|
|
write_register(CONFIG,read_register(CONFIG) & ~_BV(PWR_UP));
|
2011-03-19 03:32:34 +00:00
|
|
|
|
|
|
|
// Reset current status
|
|
|
|
write_register(STATUS,_BV(RX_DR) | _BV(TX_DS) | _BV(MAX_RT) );
|
|
|
|
|
|
|
|
// Flush buffers
|
|
|
|
flush_tx();
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2011-05-10 21:39:01 +00:00
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
|
|
|
uint8_t RF24::read_payload_length(void)
|
|
|
|
{
|
|
|
|
uint8_t result = 0;
|
|
|
|
|
|
|
|
csn(LOW);
|
|
|
|
SPI.transfer( R_RX_PL_WID );
|
|
|
|
result = SPI.transfer(0xff);
|
|
|
|
csn(HIGH);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-03-19 03:32:34 +00:00
|
|
|
/******************************************************************/
|
|
|
|
|
2011-06-21 19:36:02 +00:00
|
|
|
boolean RF24::available(void) const
|
2011-04-02 05:55:33 +00:00
|
|
|
{
|
|
|
|
return available(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-06-21 19:36:02 +00:00
|
|
|
boolean RF24::available(uint8_t* pipe_num) const
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
|
|
|
uint8_t status = get_status();
|
2011-04-30 22:31:04 +00:00
|
|
|
IF_SERIAL_DEBUG(print_status(status));
|
2011-03-19 03:32:34 +00:00
|
|
|
boolean result = ( status & _BV(RX_DR) );
|
|
|
|
|
|
|
|
if (result)
|
|
|
|
{
|
2011-04-02 05:55:33 +00:00
|
|
|
// If the caller wants the pipe number, include that
|
|
|
|
if ( pipe_num )
|
|
|
|
*pipe_num = ( status >> RX_P_NO ) & B111;
|
|
|
|
|
2011-03-19 03:32:34 +00:00
|
|
|
// Clear the status bit
|
2011-04-02 05:55:33 +00:00
|
|
|
|
|
|
|
// ??? Should this REALLY be cleared now? Or wait until we
|
|
|
|
// actually READ the payload?
|
|
|
|
|
2011-03-19 03:32:34 +00:00
|
|
|
write_register(STATUS,_BV(RX_DR) );
|
2011-04-30 22:31:04 +00:00
|
|
|
|
|
|
|
// Handle ack payload receipt
|
|
|
|
if ( status & _BV(TX_DS) )
|
|
|
|
{
|
|
|
|
write_register(STATUS,_BV(TX_DS));
|
|
|
|
}
|
2011-03-19 03:32:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-04-01 04:32:45 +00:00
|
|
|
boolean RF24::read( void* buf, uint8_t len )
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
|
|
|
// was this the last of the data available?
|
|
|
|
boolean result = false;
|
|
|
|
|
|
|
|
// Fetch the payload
|
2011-04-01 04:32:45 +00:00
|
|
|
read_payload( buf, len );
|
2011-03-19 03:32:34 +00:00
|
|
|
|
|
|
|
uint8_t fifo_status;
|
|
|
|
read_register(FIFO_STATUS,&fifo_status,1);
|
|
|
|
if ( fifo_status & _BV(RX_EMPTY) )
|
|
|
|
result = true;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
|
|
|
void RF24::openWritingPipe(uint64_t value)
|
|
|
|
{
|
2011-06-21 19:36:02 +00:00
|
|
|
// Note that AVR 8-bit uC's store this LSB first, and the NRF24L01(+)
|
2011-03-19 03:32:34 +00:00
|
|
|
// expects it LSB first too, so we're good.
|
|
|
|
|
|
|
|
write_register(RX_ADDR_P0, reinterpret_cast<uint8_t*>(&value), 5);
|
|
|
|
write_register(TX_ADDR, reinterpret_cast<uint8_t*>(&value), 5);
|
2011-04-01 04:32:45 +00:00
|
|
|
write_register(RX_PW_P0,min(payload_size,32));
|
2011-03-19 03:32:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-07-16 16:36:10 +00:00
|
|
|
void RF24::openReadingPipe(uint8_t child, uint64_t address)
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
|
|
|
const uint8_t child_pipe[] = {
|
2011-05-13 04:46:27 +00:00
|
|
|
RX_ADDR_P0, RX_ADDR_P1, RX_ADDR_P2, RX_ADDR_P3, RX_ADDR_P4, RX_ADDR_P5 };
|
2011-03-19 03:32:34 +00:00
|
|
|
const uint8_t child_payload_size[] = {
|
2011-05-13 04:46:27 +00:00
|
|
|
RX_PW_P0, RX_PW_P1, RX_PW_P2, RX_PW_P3, RX_PW_P4, RX_PW_P5 };
|
2011-03-19 03:32:34 +00:00
|
|
|
const uint8_t child_pipe_enable[] = {
|
2011-05-13 04:46:27 +00:00
|
|
|
ERX_P0, ERX_P1, ERX_P2, ERX_P3, ERX_P4, ERX_P5 };
|
2011-03-19 03:32:34 +00:00
|
|
|
|
2011-05-15 14:21:11 +00:00
|
|
|
// If this is pipe 0, cache the address. This is needed because
|
|
|
|
// openWritingPipe() will overwrite the pipe 0 address, so
|
|
|
|
// startListening() will have to restore it.
|
|
|
|
if (child == 0)
|
2011-06-21 19:36:02 +00:00
|
|
|
pipe0_reading_address = address;
|
2011-05-15 14:21:11 +00:00
|
|
|
|
2011-06-21 15:26:16 +00:00
|
|
|
if (child < 6)
|
2011-03-19 03:32:34 +00:00
|
|
|
{
|
2011-04-02 05:55:33 +00:00
|
|
|
// For pipes 2-5, only write the LSB
|
2011-05-13 04:46:27 +00:00
|
|
|
if ( child < 2 )
|
2011-06-21 19:36:02 +00:00
|
|
|
write_register(child_pipe[child], reinterpret_cast<const uint8_t*>(&address), 5);
|
2011-04-02 05:55:33 +00:00
|
|
|
else
|
2011-06-21 19:36:02 +00:00
|
|
|
write_register(child_pipe[child], reinterpret_cast<const uint8_t*>(&address), 1);
|
2011-04-02 05:55:33 +00:00
|
|
|
|
2011-03-19 03:32:34 +00:00
|
|
|
write_register(child_payload_size[child],payload_size);
|
|
|
|
|
2011-06-21 15:26:16 +00:00
|
|
|
// Note this is kind of an inefficient way to set up these enable bits, but I thought it made
|
2011-03-19 03:32:34 +00:00
|
|
|
// the calling code more simple
|
2011-04-02 05:55:33 +00:00
|
|
|
uint8_t en_rx;
|
|
|
|
read_register(EN_RXADDR,&en_rx,1);
|
|
|
|
en_rx |= _BV(child_pipe_enable[child]);
|
|
|
|
write_register(EN_RXADDR,en_rx);
|
2011-03-19 03:32:34 +00:00
|
|
|
}
|
|
|
|
}
|
2011-04-30 22:31:04 +00:00
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-06-21 19:36:02 +00:00
|
|
|
void RF24::toggle_features(void) const
|
2011-04-30 22:31:04 +00:00
|
|
|
{
|
|
|
|
csn(LOW);
|
|
|
|
SPI.transfer( ACTIVATE );
|
|
|
|
SPI.transfer( 0x73 );
|
|
|
|
csn(HIGH);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-06-21 19:36:02 +00:00
|
|
|
void RF24::enableAckPayload(void) const
|
2011-04-30 22:31:04 +00:00
|
|
|
{
|
|
|
|
//
|
|
|
|
// enable ack payload and dynamic payload features
|
|
|
|
//
|
|
|
|
|
|
|
|
write_register(FEATURE,read_register(FEATURE) | _BV(EN_ACK_PAY) | _BV(EN_DPL) );
|
|
|
|
|
|
|
|
// If it didn't work, the features are not enabled
|
|
|
|
if ( ! read_register(FEATURE) )
|
|
|
|
{
|
|
|
|
// So enable them and try again
|
|
|
|
toggle_features();
|
|
|
|
write_register(FEATURE,read_register(FEATURE) | _BV(EN_ACK_PAY) | _BV(EN_DPL) );
|
|
|
|
}
|
|
|
|
|
|
|
|
IF_SERIAL_DEBUG(printf("FEATURE=%i\n\r",read_register(FEATURE)));
|
|
|
|
|
|
|
|
//
|
|
|
|
// Enable dynamic payload on pipe 0
|
|
|
|
//
|
|
|
|
|
|
|
|
write_register(DYNPD,read_register(DYNPD) | _BV(DPL_P1) | _BV(DPL_P0));
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-07-16 16:36:10 +00:00
|
|
|
void RF24::writeAckPayload(uint8_t pipe, const void* buf, uint8_t len) const
|
2011-04-30 22:31:04 +00:00
|
|
|
{
|
|
|
|
const uint8_t* current = (const uint8_t*)buf;
|
|
|
|
|
|
|
|
csn(LOW);
|
|
|
|
SPI.transfer( W_ACK_PAYLOAD | ( pipe & B111 ) );
|
|
|
|
uint8_t data_len = min(len,32);
|
|
|
|
while ( data_len-- )
|
|
|
|
SPI.transfer(*current++);
|
|
|
|
|
|
|
|
csn(HIGH);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
|
|
|
boolean RF24::isAckPayloadAvailable(void)
|
|
|
|
{
|
2011-05-10 21:39:01 +00:00
|
|
|
boolean result = ack_payload_available;
|
|
|
|
ack_payload_available = false;
|
2011-04-30 22:31:04 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-05-26 05:22:21 +00:00
|
|
|
/******************************************************************/
|
|
|
|
|
2011-06-27 20:02:33 +00:00
|
|
|
boolean RF24::isPVariant(void) const {
|
|
|
|
return p_variant ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-07-16 16:36:10 +00:00
|
|
|
void RF24::setAutoAck(bool enable) const
|
2011-05-26 05:22:21 +00:00
|
|
|
{
|
|
|
|
if ( enable )
|
|
|
|
write_register(EN_AA, B111111);
|
|
|
|
else
|
|
|
|
write_register(EN_AA, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-07-16 16:36:10 +00:00
|
|
|
void RF24::setAutoAck( uint8_t pipe, bool enable ) const
|
2011-06-21 19:36:02 +00:00
|
|
|
{
|
|
|
|
uint8_t en_aa = read_register( EN_AA ) ;
|
2011-07-16 15:36:36 +00:00
|
|
|
if( enable ) {
|
|
|
|
en_aa |= _BV(pipe) ;
|
|
|
|
} else {
|
|
|
|
en_aa &= ~_BV(pipe) ;
|
|
|
|
}
|
2011-06-21 19:36:02 +00:00
|
|
|
write_register( EN_AA, en_aa ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
|
|
|
boolean RF24::testCarrier(void) const
|
2011-05-26 05:22:21 +00:00
|
|
|
{
|
|
|
|
return ( read_register(CD) & 1 );
|
|
|
|
}
|
|
|
|
|
2011-05-27 03:48:30 +00:00
|
|
|
/******************************************************************/
|
|
|
|
|
2011-06-21 19:36:02 +00:00
|
|
|
boolean RF24::testRPD(void) const
|
2011-06-21 15:26:16 +00:00
|
|
|
{
|
|
|
|
return ( read_register(RPD) & 1 ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-07-16 16:36:10 +00:00
|
|
|
void RF24::setPALevel(rf24_pa_dbm_e level) const
|
2011-06-21 15:26:16 +00:00
|
|
|
{
|
|
|
|
uint8_t setup = read_register(RF_SETUP) ;
|
|
|
|
setup &= ~(_BV(RF_PWR_LOW) | _BV(RF_PWR_HIGH)) ;
|
|
|
|
|
|
|
|
switch( level )
|
|
|
|
{
|
|
|
|
case RF24_PA_MAX:
|
2011-06-27 20:02:33 +00:00
|
|
|
setup |= (_BV(RF_PWR_LOW) | _BV(RF_PWR_HIGH)) ;
|
2011-06-21 15:26:16 +00:00
|
|
|
break ;
|
|
|
|
|
|
|
|
case RF24_PA_HIGH:
|
2011-06-27 20:02:33 +00:00
|
|
|
setup |= _BV(RF_PWR_HIGH) ;
|
2011-06-21 15:26:16 +00:00
|
|
|
break ;
|
|
|
|
|
|
|
|
case RF24_PA_LOW:
|
2011-06-27 20:02:33 +00:00
|
|
|
setup |= _BV(RF_PWR_LOW) ;
|
2011-06-21 15:26:16 +00:00
|
|
|
break ;
|
|
|
|
|
|
|
|
case RF24_PA_MIN:
|
|
|
|
break ;
|
2011-06-21 19:36:02 +00:00
|
|
|
|
|
|
|
case RF24_PA_ERROR:
|
|
|
|
// On error, go to maximum PA
|
2011-06-27 20:02:33 +00:00
|
|
|
setup |= (_BV(RF_PWR_LOW) | _BV(RF_PWR_HIGH)) ;
|
2011-06-21 19:36:02 +00:00
|
|
|
break ;
|
2011-06-21 15:26:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
write_register( RF_SETUP, setup ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-06-21 19:36:02 +00:00
|
|
|
rf24_pa_dbm_e RF24::getPALevel(void) const
|
2011-06-21 15:26:16 +00:00
|
|
|
{
|
|
|
|
rf24_pa_dbm_e result = RF24_PA_ERROR ;
|
2011-06-27 20:02:33 +00:00
|
|
|
uint8_t power = read_register(RF_SETUP) & (_BV(RF_PWR_LOW) | _BV(RF_PWR_HIGH)) ;
|
2011-06-21 15:26:16 +00:00
|
|
|
|
|
|
|
switch( power )
|
|
|
|
{
|
2011-06-27 20:02:33 +00:00
|
|
|
case (_BV(RF_PWR_LOW) | _BV(RF_PWR_HIGH)):
|
2011-06-21 15:26:16 +00:00
|
|
|
result = RF24_PA_MAX ;
|
|
|
|
break ;
|
|
|
|
|
2011-06-27 20:02:33 +00:00
|
|
|
case _BV(RF_PWR_HIGH):
|
2011-06-21 15:26:16 +00:00
|
|
|
result = RF24_PA_HIGH ;
|
|
|
|
break ;
|
|
|
|
|
2011-06-27 20:02:33 +00:00
|
|
|
case _BV(RF_PWR_LOW):
|
2011-06-21 15:26:16 +00:00
|
|
|
result = RF24_PA_LOW ;
|
|
|
|
break ;
|
|
|
|
|
2011-06-27 20:02:33 +00:00
|
|
|
default:
|
2011-06-21 15:26:16 +00:00
|
|
|
result = RF24_PA_MIN ;
|
|
|
|
break ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-07-16 16:36:10 +00:00
|
|
|
boolean RF24::setDataRate(rf24_datarate_e speed)
|
2011-05-27 03:48:30 +00:00
|
|
|
{
|
2011-06-21 15:26:16 +00:00
|
|
|
uint8_t setup = read_register(RF_SETUP) ;
|
2011-05-28 03:09:29 +00:00
|
|
|
|
2011-06-21 15:26:16 +00:00
|
|
|
// HIGH and LOW '00' is 1Mbs - our default
|
2011-06-21 19:36:02 +00:00
|
|
|
wide_band = false ;
|
2011-06-21 15:26:16 +00:00
|
|
|
setup &= ~(_BV(RF_DR_LOW) | _BV(RF_DR_HIGH)) ;
|
|
|
|
if( speed == RF24_250KBPS )
|
|
|
|
{
|
|
|
|
// Must set the RF_DR_LOW to 1; RF_DR_HIGH (used to be RF_DR) is already 0
|
|
|
|
// Making it '10'.
|
2011-06-27 20:02:33 +00:00
|
|
|
wide_band = false ;
|
2011-06-21 15:26:16 +00:00
|
|
|
setup |= _BV( RF_DR_LOW ) ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Set 2Mbs, RF_DR (RF_DR_HIGH) is set 1
|
|
|
|
// Making it '01'
|
|
|
|
if ( speed == RF24_2MBPS )
|
|
|
|
{
|
2011-06-27 20:02:33 +00:00
|
|
|
wide_band = true ;
|
|
|
|
setup |= _BV(RF_DR_HIGH);
|
|
|
|
} else {
|
|
|
|
// 1Mbs
|
|
|
|
wide_band = false ;
|
2011-06-21 15:26:16 +00:00
|
|
|
}
|
2011-06-27 20:02:33 +00:00
|
|
|
}
|
|
|
|
write_register(RF_SETUP,setup);
|
2011-06-21 15:26:16 +00:00
|
|
|
|
2011-06-27 20:02:33 +00:00
|
|
|
// Verify our result
|
|
|
|
setup = read_register(RF_SETUP) ;
|
|
|
|
if( setup == setup ) {
|
|
|
|
return true ;
|
2011-06-21 15:26:16 +00:00
|
|
|
}
|
|
|
|
|
2011-06-27 20:02:33 +00:00
|
|
|
wide_band = false ;
|
|
|
|
return false ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
|
|
|
rf24_datarate_e RF24::getDataRate( void ) const {
|
|
|
|
rf24_datarate_e result ;
|
|
|
|
uint8_t setup = read_register(RF_SETUP) ;
|
|
|
|
|
|
|
|
// Order matters in our case below
|
|
|
|
switch( setup & (_BV(RF_DR_LOW) | _BV(RF_DR_HIGH)) ) {
|
|
|
|
case _BV(RF_DR_LOW):
|
|
|
|
// '10' = 250KBPS
|
|
|
|
result = RF24_250KBPS ;
|
|
|
|
break ;
|
|
|
|
|
|
|
|
case _BV(RF_DR_HIGH):
|
|
|
|
// '01' = 2MBPS
|
|
|
|
result = RF24_2MBPS ;
|
|
|
|
break ;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// '00' = 1MBPS
|
|
|
|
result = RF24_1MBPS ;
|
|
|
|
break ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result ;
|
2011-05-28 03:09:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
|
2011-07-16 16:36:10 +00:00
|
|
|
void RF24::setCRCLength(rf24_crclength_e length) const
|
2011-05-28 03:09:29 +00:00
|
|
|
{
|
2011-07-18 20:37:30 +00:00
|
|
|
uint8_t config = read_register(CONFIG) & ~_BV(CRCO) ;
|
|
|
|
|
|
|
|
// Always make sure CRC hardware validation is actually on
|
|
|
|
config |= _BV(EN_CRC) ;
|
|
|
|
|
|
|
|
// Now config 8 or 16 bit CRCs - only 16bit need be turned on
|
|
|
|
// 8b is the default.
|
|
|
|
if( length == RF24_CRC_16 ) {
|
|
|
|
config |= _BV( CRCO ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
write_register( CONFIG, config ) ;
|
2011-05-27 03:48:30 +00:00
|
|
|
}
|
|
|
|
|
2011-07-18 20:37:30 +00:00
|
|
|
/******************************************************************/
|
|
|
|
|
|
|
|
void RF24::disableCRC( void ) const
|
|
|
|
{
|
|
|
|
uint8_t disable = read_register(CONFIG) & ~_BV(EN_CRC) ;
|
|
|
|
write_register( CONFIG, disable ) ;
|
|
|
|
}
|
2011-04-24 18:24:21 +00:00
|
|
|
// vim:ai:cin:sts=2 sw=2 ft=cpp
|
2011-04-02 05:55:33 +00:00
|
|
|
|