Skip to content

Commit

Permalink
Merge branch 'master' of github.com:maniacbug/RF24
Browse files Browse the repository at this point in the history
  • Loading branch information
maniacbug committed Dec 21, 2011
2 parents 5cb32c9 + de994ba commit 238e9d2
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 11 deletions.
3 changes: 1 addition & 2 deletions RF24.cpp
Expand Up @@ -480,15 +480,14 @@ void RF24::startWrite( const void* buf, uint8_t len )
{
// Transmitter power-up
write_register(CONFIG, ( read_register(CONFIG) | _BV(PWR_UP) ) & ~_BV(PRIM_RX) );
delay(2);
delayMicroseconds(150);

// Send the payload
write_payload( buf, len );

// Allons!
ce(HIGH);
delayMicroseconds(15);
delay(2);
ce(LOW);
}

Expand Down
2 changes: 1 addition & 1 deletion examples/led_remote/led_remote.pde
Expand Up @@ -34,7 +34,7 @@
// Hardware configuration
//

// Set up nRF24L01 radio on SPI bus plus pins 8 & 9
// Set up nRF24L01 radio on SPI bus plus pins 9 & 10

RF24 radio(9,10);

Expand Down
2 changes: 1 addition & 1 deletion examples/pingpair/pingpair.pde
Expand Up @@ -24,7 +24,7 @@
// Hardware configuration
//

// Set up nRF24L01 radio on SPI bus plus pins 8 & 9
// Set up nRF24L01 radio on SPI bus plus pins 9 & 10

RF24 radio(9,10);

Expand Down
2 changes: 1 addition & 1 deletion examples/pingpair_dyn/pingpair_dyn.pde
Expand Up @@ -21,7 +21,7 @@
// Hardware configuration
//

// Set up nRF24L01 radio on SPI bus plus pins 8 & 9
// Set up nRF24L01 radio on SPI bus plus pins 9 & 10

RF24 radio(9,10);

Expand Down
2 changes: 1 addition & 1 deletion examples/pingpair_irq/pingpair_irq.pde
Expand Up @@ -22,7 +22,7 @@
// Hardware configuration
//

// Set up nRF24L01 radio on SPI bus plus pins 8 & 9
// Set up nRF24L01 radio on SPI bus plus pins 9 & 10

RF24 radio(9,10);

Expand Down
2 changes: 1 addition & 1 deletion examples/pingpair_pl/pingpair_pl.pde
Expand Up @@ -24,7 +24,7 @@
// Hardware configuration
//

// Set up nRF24L01 radio on SPI bus plus pins 8 & 9
// Set up nRF24L01 radio on SPI bus plus pins 9 & 10

RF24 radio(9,10);

Expand Down
2 changes: 1 addition & 1 deletion examples/pingpair_sleepy/pingpair_sleepy.pde
Expand Up @@ -31,7 +31,7 @@
// Hardware configuration
//

// Set up nRF24L01 radio on SPI bus plus pins 8 & 9
// Set up nRF24L01 radio on SPI bus plus pins 9 & 10

RF24 radio(9,10);

Expand Down
3 changes: 1 addition & 2 deletions examples/scanner/scanner.pde
@@ -1,4 +1,3 @@

/*
Copyright (C) 2011 James Coliz, Jr. <maniacbug@ymail.com>
Expand Down Expand Up @@ -27,7 +26,7 @@
// Hardware configuration
//

// Set up nRF24L01 radio on SPI bus plus pins 8 & 9
// Set up nRF24L01 radio on SPI bus plus pins 9 & 10

RF24 radio(9,10);

Expand Down
2 changes: 1 addition & 1 deletion examples/starping/starping.pde
Expand Up @@ -31,7 +31,7 @@
// Hardware configuration
//

// Set up nRF24L01 radio on SPI bus plus pins 8 & 9
// Set up nRF24L01 radio on SPI bus plus pins 9 & 10

RF24 radio(9,10);

Expand Down

0 comments on commit 238e9d2

Please sign in to comment.