Adafruit-RGB_matrix_Panel(32*16)

Dependencies:   Adafruit-GFX

Revision:
4:0ff6053c4bb2
Parent:
3:aa3762e0dfee
Child:
5:1f8409ee8850
diff -r aa3762e0dfee -r 0ff6053c4bb2 RGBmatrixPanel.h
--- a/RGBmatrixPanel.h	Sat May 24 17:33:23 2014 +0000
+++ b/RGBmatrixPanel.h	Sun May 25 09:32:41 2014 +0000
@@ -39,10 +39,10 @@
     uint16_t ColorHSV(long hue, uint8_t sat, uint8_t val, bool gflag);
 
 private:
-    uint8_t         *matrixbuff[2];
-    uint8_t          nRows;
-    volatile uint8_t backindex;
-    volatile bool swapflag;
+    uint8_t *matrixbuff[2];
+    uint8_t nRows;
+    uint8_t backindex;
+    bool swapflag;
 
     // Init/alloc code common to both constructors:
     void init(uint8_t rows, bool dbuf);
@@ -51,6 +51,6 @@
     BusOut _dataBus,_rowBus;
     Ticker _refresh;
     // Counters/pointers for interrupt handler:
-    volatile uint8_t row, plane;
-    volatile uint8_t *buffptr;
+    uint8_t row, plane;
+    uint8_t *buffptr;
 };
\ No newline at end of file