Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
maniacbug committed Jul 10, 2011
1 parent 774f53d commit ccf3289
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions RF24.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,14 @@ uint8_t RF24::write_payload(const void* buf, uint8_t len)
csn(LOW);
status = SPI.transfer( W_TX_PAYLOAD );
uint8_t data_len = min(len,payload_size);
//uint8_t blank_len = payload_size - data_len;
while ( data_len-- )
SPI.transfer(*current++);

// This does not seem to be needed. Keeping it here in case
// removing it does cause problems for static payloads
//
// Send blanks out to the chip to finish off the payload
//uint8_t blank_len = payload_size - data_len;
//while ( blank_len-- )
// SPI.transfer(0);

Expand All @@ -132,11 +137,18 @@ uint8_t RF24::read_payload(void* buf, uint8_t len)
csn(LOW);
status = SPI.transfer( R_RX_PAYLOAD );
uint8_t data_len = min(len,payload_size);
//uint8_t blank_len = payload_size - data_len;
while ( data_len-- )
*current++ = SPI.transfer(0xff);

// This does not seem to be needed. Keeping it here in case
// removing it does cause problems for static payloads
//
// Read the remaining payload off the chip, even though we will
// throw it away.
//uint8_t blank_len = payload_size - data_len;
//while ( blank_len-- )
// SPI.transfer(0xff);

csn(HIGH);

return status;
Expand Down

0 comments on commit ccf3289

Please sign in to comment.