f7af527259982d172fc34062d5f74006e8658c21
[goodfet] / firmware / include / nrf.h
1 /*! \file nrf.h
2   \author Travis Goodspeed
3   \brief Constants for NRF Driver
4 */
5
6 //Nordic RF Instructions
7 #define NRF_R_REGISTER   0x00
8 #define NRF_W_REGISTER   0x20
9 #define NRF_R_RX_PAYLOAD 0x60
10 #define NRF_W_TX_PAYLOAD 0xA0
11 #define NRF_FLUSH_TX     0xE0
12 #define NRF_FLUSH_RX     0xE1
13 #define NRF_REUSE_TX_PL  0xE2
14 #define NRF_NOP          0xFF
15
16
17