Add isValid

This commit is contained in:
maniacbug 2013-10-03 06:53:28 -07:00
parent 8eaad77b2c
commit ebcd0d1d0b
1 changed files with 9 additions and 0 deletions

9
RF24.h
View File

@ -637,6 +637,15 @@ public:
*/
bool testRPD(void) ;
/**
* Test whether this is a real radio, or a mock shim for
* debugging. Setting either pin to 0xff is the way to
* indicate that this is not a real radio.
*
* @return true if this is a legitimate radio
*/
bool isValid() { return ce_pin != 0xff && csn_pin != 0xff; }
/**@}*/
};