return the frequency deviation (in Hz)
| 175 | |
| 176 | // return the frequency deviation (in Hz) |
| 177 | uint32_t RFM69::getFrequencyDeviation() { |
| 178 | return RF69_FSTEP * ((readReg(REG_FDEVMSB) << 8) | readReg(REG_FDEVLSB)); |
| 179 | } |
| 180 | |
| 181 | uint32_t RFM69::getBitRate() { |
| 182 | return RF69_FXOSC / ((readReg(REG_BITRATEMSB) << 8) | readReg(REG_BITRATELSB)); |
nothing calls this directly
no outgoing calls
no test coverage detected