fd

Dependents:   xtoff3 CYS_Receiver

Fork of RF24Network by Akash Vibhute

Revision:
3:dfc8da7ac18c
Parent:
2:a5f8e04bd02b
Child:
4:75c5aa56411f
--- a/RF24Network_config.h	Thu Nov 05 05:40:44 2015 +0000
+++ b/RF24Network_config.h	Thu Nov 05 05:54:47 2015 +0000
@@ -6,36 +6,27 @@
  modify it under the terms of the GNU General Public License
  version 2 as published by the Free Software Foundation.
  */
+ 
+ /*
+ * Mbed support added by Akash Vibhute <akash.roboticist@gmail.com>
+ * Porting completed on Nov/05/2015
+ *
+ * Updated with TMRh20's RF24 library on Nov/04/2015 from https://github.com/TMRh20
+ *
+ */
 
 #ifndef __RF24NETWORK_CONFIG_H__
 #define __RF24NETWORK_CONFIG_H__
 
 #include "mbed.h"
-
-
-
 #include <stdint.h>
 #include <stdio.h>
 #include <string.h>
 #define _BV(x) (1<<(x))
 
-
-
-
-
-
-
-
-
-
 #include <stddef.h>
 
 
-
-
-
-/********** USER CONFIG - non ATTiny **************/
-
 //#define DUAL_HEAD_RADIO
 //#define ENABLE_SLEEP_MODE  //AVR only
 #define RF24NetworkMulticast
@@ -78,22 +69,6 @@
 /*************************************/
 
 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
 #ifndef rf24_max
 #define rf24_max(a,b) (a>b?a:b)
 #endif
@@ -102,18 +77,6 @@
 #endif
 
 
-
-
-
-
-
-
-
-
-
-
-
-
 #if defined (SERIAL_DEBUG_MINIMAL)
 #define IF_SERIAL_DEBUG_MINIMAL(x) ({x;})
 #else