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