| 604 | } |
| 605 | |
| 606 | bool RFM69::isSyncOn() { |
| 607 | return readReg(REG_SYNCCONFIG) >> 7; |
| 608 | } |
| 609 | |
| 610 | uint8_t RFM69::getSyncSize() { |
| 611 | return (readReg(REG_SYNCCONFIG) & 0b00111000) >> 3; |
nothing calls this directly
no outgoing calls
no test coverage detected