From 62181147f30d715713ae1185f1d965fd5c6b9d94 Mon Sep 17 00:00:00 2001 From: duff2013 Date: Sun, 30 Nov 2014 11:43:37 -0500 Subject: [PATCH] fix include guard errors --- OctoWS2811.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/OctoWS2811.h b/OctoWS2811.h index bec29ec..cee2881 100644 --- a/OctoWS2811.h +++ b/OctoWS2811.h @@ -21,6 +21,8 @@ THE SOFTWARE. */ +#ifndef OctoWS2811_h +#define OctoWS2811_h #include #include "DMAChannel.h" @@ -72,3 +74,4 @@ class OctoWS2811 { static void isr(void); }; +#endif