/** 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