diff --git a/RF24.cpp b/RF24.cpp index e20200f..5d8cb60 100644 --- a/RF24.cpp +++ b/RF24.cpp @@ -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); diff --git a/RF24.h b/RF24.h index 308232c..8ae96f5 100644 --- a/RF24.h +++ b/RF24.h @@ -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. diff --git a/examples/pingpair/pingpair.pde b/examples/pingpair/pingpair.pde index 3041e56..46ff5b2 100644 --- a/examples/pingpair/pingpair.pde +++ b/examples/pingpair/pingpair.pde @@ -133,7 +133,7 @@ void setup(void) // Dump the configuration of the rf unit for debugging // - radio.print_details(); + radio.printDetails(); } void loop(void)