Ported it to c without arduino dependencies. Switched from printf to a
[RF24-C.git] / RF24_config.h
blob9b871b8bf531af1aef18f0658d53b97bc0d8a2d5
1 /*
2 Copyright (C) 2011,2012 J. Coliz <maniacbug@ymail.com>, jaseg <s@jaseg.de>
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 version 3 as published by the Free Software Foundation.
7 */
9 #ifndef __RF24_CONFIG_H__
10 #define __RF24_CONFIG_H__
12 #define CE_PORT PORTB
13 #define CE_DDR DDRB
14 #define CE_PIN 0
16 #define CSN_PORT PORTL
17 #define CSN_DDR DDRL
18 #define CSN_PIN 0
20 #define MAX_PAYLOAD_SIZE 32
22 //typedef char const char;
24 #endif // __RF24_CONFIG_H__