fd

Dependents:   xtoff3 CYS_Receiver

Fork of RF24Network by Akash Vibhute

Committer:
akashvibhute
Date:
Mon Jul 06 05:11:06 2015 +0000
Revision:
0:c3db0798d9aa
Child:
2:a5f8e04bd02b
working RF24Network maniacbug library; tested on nucleo f411

Who changed what in which revision?

UserRevisionLine numberNew contents of line
akashvibhute 0:c3db0798d9aa 1
akashvibhute 0:c3db0798d9aa 2 /*
akashvibhute 0:c3db0798d9aa 3 Copyright (C) 2011 James Coliz, Jr. <maniacbug@ymail.com>
akashvibhute 0:c3db0798d9aa 4
akashvibhute 0:c3db0798d9aa 5 This program is free software; you can redistribute it and/or
akashvibhute 0:c3db0798d9aa 6 modify it under the terms of the GNU General Public License
akashvibhute 0:c3db0798d9aa 7 version 2 as published by the Free Software Foundation.
akashvibhute 0:c3db0798d9aa 8 */
akashvibhute 0:c3db0798d9aa 9
akashvibhute 0:c3db0798d9aa 10 #ifndef __RF24_CONFIG_H__
akashvibhute 0:c3db0798d9aa 11 #define __RF24_CONFIG_H__
akashvibhute 0:c3db0798d9aa 12
akashvibhute 0:c3db0798d9aa 13 #include "mbed.h"
akashvibhute 0:c3db0798d9aa 14
akashvibhute 0:c3db0798d9aa 15 #include <stddef.h>
akashvibhute 0:c3db0798d9aa 16 #include <stdint.h>
akashvibhute 0:c3db0798d9aa 17 #include <stdio.h>
akashvibhute 0:c3db0798d9aa 18 #include <string.h>
akashvibhute 0:c3db0798d9aa 19 #define _BV(x) (1<<(x))
akashvibhute 0:c3db0798d9aa 20
akashvibhute 0:c3db0798d9aa 21
akashvibhute 0:c3db0798d9aa 22 #endif // __RF24_CONFIG_H__
akashvibhute 0:c3db0798d9aa 23 // vim:ai:cin:sts=2 sw=2 ft=cpp