| 179 | } |
| 180 | |
| 181 | uint32_t RFM69::getBitRate() { |
| 182 | return RF69_FXOSC / ((readReg(REG_BITRATEMSB) << 8) | readReg(REG_BITRATELSB)); |
| 183 | } |
| 184 | |
| 185 | void RFM69::setMode(uint8_t newMode) { |
| 186 | if (newMode == _mode) |
nothing calls this directly
no outgoing calls
no test coverage detected