| 731 | } |
| 732 | |
| 733 | uint8_t LoRaClass::singleTransfer(uint8_t address, uint8_t value) |
| 734 | { |
| 735 | uint8_t response; |
| 736 | |
| 737 | digitalWrite(_ss, LOW); |
| 738 | |
| 739 | _spi->beginTransaction(_spiSettings); |
| 740 | _spi->transfer(address); |
| 741 | response = _spi->transfer(value); |
| 742 | _spi->endTransaction(); |
| 743 | |
| 744 | digitalWrite(_ss, HIGH); |
| 745 | |
| 746 | return response; |
| 747 | } |
| 748 | |
| 749 | ISR_PREFIX void LoRaClass::onDio0Rise() |
| 750 | { |
nothing calls this directly
no outgoing calls
no test coverage detected