Device driver for the Novatel OEM615 GPS receiver

Revision:
1:12cc9d13cc48
Parent:
0:68a9bea384b5
Child:
2:35b6eb71a635
--- a/Oem615.h	Wed Apr 10 04:42:39 2013 +0000
+++ b/Oem615.h	Wed Apr 10 06:23:24 2013 +0000
@@ -66,12 +66,12 @@
     void disable(void);
     
     // rx data storage
-    #define RXBUF_SIZE (4096)
-    #define RXBUF_MASK (RXBUF_SIZE-1)
+    #define GPS_RXBUF_SIZE (4096)
+    #define GPS_RXBUF_MASK (GPS_RXBUF_SIZE-1)
     struct
     {
         volatile uint32_t loc;
-        volatile uint8_t data[RXBUF_SIZE];
+        volatile uint8_t data[GPS_RXBUF_SIZE];
     }_rxbuf;
     
 private: