From a4cabc66a2b15c45182718c9302385d7378b4447 Mon Sep 17 00:00:00 2001 From: Greg Copeland Date: Wed, 17 Aug 2011 12:02:51 -0500 Subject: [PATCH] Yet more merge cleanup. Changes default channel to be US/Internationally legal while ensuring no spectrum bleed. --- RF24.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/RF24.cpp b/RF24.cpp index 35eab2b..1e87ef6 100644 --- a/RF24.cpp +++ b/RF24.cpp @@ -370,7 +370,9 @@ void RF24::begin(void) write_register(STATUS,_BV(RX_DR) | _BV(TX_DS) | _BV(MAX_RT) ); // Set up default configuration. Callers can always change it later. - setChannel(100); + // This channel should be universally safe and not bleed over into adjacent + // spectrum. + setChannel(76); // Flush buffers flush_rx();