| 112 | } |
| 113 | |
| 114 | void powerDOWN() { |
| 115 | uint8_t config = readRegister(NRF24_CONFIG); |
| 116 | writeRegister(NRF24_CONFIG, config & ~0x02); |
| 117 | } |
| 118 | |
| 119 | void startListening() { |
| 120 | digitalWrite(CE, HIGH); |
nothing calls this directly
no test coverage detected