From a783ed38da19d781a3863215d47a2e59a0b2754e Mon Sep 17 00:00:00 2001 From: maniacbug Date: Sun, 10 Jul 2011 20:55:25 -0700 Subject: [PATCH] Fixed missing includes, thanks to Spoiler for reporting the problem. --- RF24.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/RF24.h b/RF24.h index 1f28ef8..2c218b9 100644 --- a/RF24.h +++ b/RF24.h @@ -9,7 +9,8 @@ #ifndef __RF24_H__ #define __RF24_H__ -#include +#include +#include typedef enum { RF24_1MBPS = 0, RF24_2MBPS } rf24_datarate_e; typedef enum { RF24_CRC_8 = 0, RF24_CRC_16 } rf24_crclength_e;