| 98 | } |
| 99 | |
| 100 | void SmartRC_CC1101::SpiStrobe(byte strobe) { |
| 101 | SpiStart(); |
| 102 | if (WaitMiso()) { |
| 103 | SPI.transfer(strobe); |
| 104 | } |
| 105 | SpiEnd(); |
| 106 | } |
| 107 | |
| 108 | void SmartRC_CC1101::SpiWriteBurstReg(byte addr, byte *buffer, byte num) { |
| 109 | SpiStart(); |
nothing calls this directly
no outgoing calls
no test coverage detected