Merge pull request #1185 from sumanpanchal/cc2520

Fixed the issue with CC2520_READ_REG macro to read correct value of register.
ico
Nicolas Tsiftes 2015-09-10 14:37:00 +02:00
commit 2ec3b1e973
1 changed files with 1 additions and 0 deletions

View File

@ -118,6 +118,7 @@ void cc2520_set_cca_threshold(int value);
CC2520_SPI_ENABLE(); \
SPI_WRITE((CC2520_INS_MEMRD | ((adr>>8)&0xFF))); \
SPI_WRITE((adr & 0xFF)); \
(void)SPI_RXBUF; \
SPI_READ(data); \
CC2520_SPI_DISABLE(); \
} while(0)