set the slave select (CS) pin
| 641 | |
| 642 | // set the slave select (CS) pin |
| 643 | void RFM69::setCS(uint8_t newSPISlaveSelect) { |
| 644 | _slaveSelectPin = newSPISlaveSelect; |
| 645 | digitalWrite(_slaveSelectPin, HIGH); |
| 646 | pinMode(_slaveSelectPin, OUTPUT); |
| 647 | } |
| 648 | |
| 649 | // set the IRQ pin |
| 650 | bool RFM69::setIrq(uint8_t newIRQPin) { |
nothing calls this directly
no outgoing calls
no test coverage detected