Changed name of print_details to comply with the overall naming convention

This commit is contained in:
maniacbug 2011-03-19 13:19:17 -07:00
parent 5ba21261bb
commit 0dc43ab872
3 changed files with 3 additions and 3 deletions

View File

@ -209,7 +209,7 @@ uint8_t RF24::getPayloadSize(void)
/******************************************************************/
void RF24::print_details(void)
void RF24::printDetails(void)
{
uint8_t buffer[5];
uint8_t status = read_register(RX_ADDR_P0,buffer,5);

2
RF24.h
View File

@ -198,7 +198,7 @@ public:
*
* @warning Does nothing if stdout is not defined. See fdevopen in stdio.h
*/
void print_details(void) ;
void printDetails(void) ;
/**
* Start listening on the pipes opened for reading.

View File

@ -133,7 +133,7 @@ void setup(void)
// Dump the configuration of the rf unit for debugging
//
radio.print_details();
radio.printDetails();
}
void loop(void)