From aa7a7c647ae5700d7a3e47f2fe713fd87e6f477b Mon Sep 17 00:00:00 2001 From: maniacbug Date: Sat, 25 Jun 2011 21:24:42 -0700 Subject: [PATCH] Cleaned up some reinterpret casts to use new-style casts --- RF24.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/RF24.cpp b/RF24.cpp index 1e4eabf..8874820 100644 --- a/RF24.cpp +++ b/RF24.cpp @@ -106,7 +106,7 @@ uint8_t RF24::write_payload(const void* buf, uint8_t len) { uint8_t status; - const uint8_t* current = (const uint8_t*)buf; + const uint8_t* current = reinterpret_cast(buf); csn(LOW); status = SPI.transfer( W_TX_PAYLOAD ); @@ -127,7 +127,7 @@ uint8_t RF24::write_payload(const void* buf, uint8_t len) uint8_t RF24::read_payload(void* buf, uint8_t len) { uint8_t status; - uint8_t* current = (uint8_t*)buf; + uint8_t* current = reinterpret_cast(buf); csn(LOW); status = SPI.transfer( R_RX_PAYLOAD ); @@ -577,7 +577,7 @@ void RF24::enableAckPayload(void) void RF24::writeAckPayload(uint8_t pipe, const void* buf, uint8_t len) { - const uint8_t* current = (const uint8_t*)buf; + const uint8_t* current = reinterpret_cast(buf); csn(LOW); SPI.transfer( W_ACK_PAYLOAD | ( pipe & B111 ) );