Revision:
2:d6e572640dcc
Parent:
1:9d081c7fff45
Child:
4:545e25d4c3d8
--- a/globaldefs.h	Wed Dec 29 11:48:54 2010 +0000
+++ b/globaldefs.h	Thu Dec 30 16:49:46 2010 +0000
@@ -1,20 +1,20 @@
-#ifndef GLOBALDEFS_H
-#define GLOBALDEFS_H
-
-/// SPI frequency for method DogMLCD::Flush()
-#define DOGMLCD_MHZ 5000000
-
-#ifndef ORDER
-    #define ORDER(a,b) if( a > b ) { int c = a; a = b; b = c; }
-#endif
-#ifndef BOUND
-    #define BOUND(a,b,c) if( a < b ) a = b; else if( a > c ) a = c;
-#endif
-
-const unsigned char DOGMLCD_on[] = { 1, 2, 4, 8, 16, 32, 64, 128 };
-const unsigned char DOGMLCD_off[]= { 254, 253, 251, 247, 239, 223, 191, 127 };
-
-/// Bit mpath operation (raster)
-typedef enum{ poke, wipe, inv} doggy_op;
-
+#ifndef GLOBALDEFS_H
+#define GLOBALDEFS_H
+
+/// SPI frequency for method DogMLCD::Flush()
+#define DOGMLCD_MHZ 5000000
+
+#ifndef ORDER
+    #define ORDER(a,b) if( a > b ) { int c = a; a = b; b = c; }
+#endif
+#ifndef BOUND
+    #define BOUND(a,b,c) if( a < b ) a = b; else if( a > c ) a = c;
+#endif
+
+const unsigned char DOGMLCD_on[] = { 1, 2, 4, 8, 16, 32, 64, 128 };
+const unsigned char DOGMLCD_off[]= { 254, 253, 251, 247, 239, 223, 191, 127 };
+
+/// Bit mpath operation (raster)
+typedef enum{ poke, wipe, inv } doggy_op;
+
 #endif
\ No newline at end of file