From 0dc43ab8722c74c8efd9a960014219805407ebcf Mon Sep 17 00:00:00 2001 From: maniacbug Date: Sat, 19 Mar 2011 13:19:17 -0700 Subject: [PATCH] Changed name of print_details to comply with the overall naming convention --- RF24.cpp | 2 +- RF24.h | 2 +- examples/pingpair/pingpair.pde | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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)