Changed name of print_details to comply with the overall naming convention
This commit is contained in:
parent
5ba21261bb
commit
0dc43ab872
2
RF24.cpp
2
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 buffer[5];
|
||||||
uint8_t status = read_register(RX_ADDR_P0,buffer,5);
|
uint8_t status = read_register(RX_ADDR_P0,buffer,5);
|
||||||
|
|
2
RF24.h
2
RF24.h
|
@ -198,7 +198,7 @@ public:
|
||||||
*
|
*
|
||||||
* @warning Does nothing if stdout is not defined. See fdevopen in stdio.h
|
* @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.
|
* Start listening on the pipes opened for reading.
|
||||||
|
|
|
@ -133,7 +133,7 @@ void setup(void)
|
||||||
// Dump the configuration of the rf unit for debugging
|
// Dump the configuration of the rf unit for debugging
|
||||||
//
|
//
|
||||||
|
|
||||||
radio.print_details();
|
radio.printDetails();
|
||||||
}
|
}
|
||||||
|
|
||||||
void loop(void)
|
void loop(void)
|
||||||
|
|
Loading…
Reference in New Issue