Basic port of the gcopeland nRF24L01 library

Dependencies:   mbed

Committer:
iforce2d
Date:
Mon Mar 25 07:35:02 2019 +0000
Revision:
2:75a5b58b2338
Basic port of gcopeland nRF24L01 library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
iforce2d 2:75a5b58b2338 1
iforce2d 2:75a5b58b2338 2 /*
iforce2d 2:75a5b58b2338 3 Copyright (C) 2011 J. Coliz <maniacbug@ymail.com>
iforce2d 2:75a5b58b2338 4
iforce2d 2:75a5b58b2338 5 This program is free software; you can redistribute it and/or
iforce2d 2:75a5b58b2338 6 modify it under the terms of the GNU General Public License
iforce2d 2:75a5b58b2338 7 version 2 as published by the Free Software Foundation.
iforce2d 2:75a5b58b2338 8 */
iforce2d 2:75a5b58b2338 9
iforce2d 2:75a5b58b2338 10 #ifndef __RF24_CONFIG_H__
iforce2d 2:75a5b58b2338 11 #define __RF24_CONFIG_H__
iforce2d 2:75a5b58b2338 12
iforce2d 2:75a5b58b2338 13
iforce2d 2:75a5b58b2338 14
iforce2d 2:75a5b58b2338 15 #define _BV(x) (1<<(x))
iforce2d 2:75a5b58b2338 16
iforce2d 2:75a5b58b2338 17 #endif // __RF24_CONFIG_H__
iforce2d 2:75a5b58b2338 18 // vim:ai:cin:sts=2 sw=2 ft=cpp