MCPcopy Create free account
hub / github.com/LowPowerLab/RFM69 / getFrequencyDeviation

Method getFrequencyDeviation

RFM69.cpp:177–179  ·  view source on GitHub ↗

return the frequency deviation (in Hz)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected