*/\r
static inline void Dataflash_SendAddressBytes(uint16_t PageAddress, const uint16_t BufferByte)\r
{ \r
- Dataflash_SendByte(PageAddress >> 5);\r
- Dataflash_SendByte((PageAddress << 3) | (BufferByte >> 8));\r
+ Dataflash_SendByte(PageAddress >> 6);\r
+ Dataflash_SendByte((PageAddress << 2) | (BufferByte >> 8));\r
Dataflash_SendByte(BufferByte);\r
}\r
\r