Fix XPLAIN Dataflash and LED drivers.
[pub/lufa.git] / LUFA / Drivers / Board / XPLAIN / Dataflash.h
index d793d30..de71f29 100644 (file)
@@ -72,7 +72,7 @@
                        /** Mask for the first dataflash chip selected. */\r
                        #define DATAFLASH_CHIP1                      (1 << 5)\r
 \r
-                       #if BOAD == XPLAIN_REV1\r
+                       #if (BOARD == BOARD_XPLAIN_REV1)\r
                                #define DATAFLASH_PAGE_SIZE              256\r
 \r
                                #define DATAFLASH_PAGES                  2048                                                   \r
                         *  \param[in] BufferByte   Address within the dataflash's buffer\r
                         */\r
                        static inline void Dataflash_SendAddressBytes(uint16_t PageAddress, const uint16_t BufferByte)\r
-                       {       \r
-                               PageAddress >>= 1;\r
-                               \r
+                       {\r
                                Dataflash_SendByte(PageAddress >> 5);\r
                                Dataflash_SendByte((PageAddress << 3) | (BufferByte >> 8));\r
                                Dataflash_SendByte(BufferByte);\r