diff --git a/_s_x1272_8h_source.html b/_s_x1272_8h_source.html index 1736d7e6..653b780f 100644 --- a/_s_x1272_8h_source.html +++ b/_s_x1272_8h_source.html @@ -215,49 +215,50 @@ $(document).ready(function(){initNavTree('_s_x1272_8h_source.html',''); initResi
224 
232  int16_t setDataShapingOOK(uint8_t sh);
233 
-
240  float getRSSI(bool packet = true, bool skipReceive = false);
-
241 
-
250  int16_t setCRC(bool enable, bool mode = false);
-
251 
-
258  int16_t forceLDRO(bool enable);
-
259 
-
265  int16_t autoLDRO();
+
239  float getRSSI();
+
240 
+
247  float getRSSI(bool packet, bool skipReceive = false);
+
248 
+
257  int16_t setCRC(bool enable, bool mode = false);
+
258 
+
265  int16_t forceLDRO(bool enable);
266 
-
272  int16_t implicitHeader(size_t len);
+
272  int16_t autoLDRO();
273 
-
278  int16_t explicitHeader();
-
279 
-
280 #if !RADIOLIB_GODMODE
-
281  protected:
-
282 #endif
-
283  int16_t setBandwidthRaw(uint8_t newBandwidth);
-
284  int16_t setSpreadingFactorRaw(uint8_t newSpreadingFactor);
-
285  int16_t setCodingRateRaw(uint8_t newCodingRate);
-
286  int16_t setHeaderType(uint8_t headerType, size_t len = 0xFF);
-
287 
-
288  int16_t configFSK();
-
289  void errataFix(bool rx);
-
290 
-
291 #if !RADIOLIB_GODMODE
-
292  private:
-
293 #endif
-
294  bool ldroAuto = true;
-
295  bool ldroEnabled = false;
-
296 
-
297 };
-
298 
-
299 #endif
-
300 
-
301 #endif
+
279  int16_t implicitHeader(size_t len);
+
280 
+
285  int16_t explicitHeader();
+
286 
+
287 #if !RADIOLIB_GODMODE
+
288  protected:
+
289 #endif
+
290  int16_t setBandwidthRaw(uint8_t newBandwidth);
+
291  int16_t setSpreadingFactorRaw(uint8_t newSpreadingFactor);
+
292  int16_t setCodingRateRaw(uint8_t newCodingRate);
+
293  int16_t setHeaderType(uint8_t headerType, size_t len = 0xFF);
+
294 
+
295  int16_t configFSK();
+
296  void errataFix(bool rx);
+
297 
+
298 #if !RADIOLIB_GODMODE
+
299  private:
+
300 #endif
+
301  bool ldroAuto = true;
+
302  bool ldroEnabled = false;
+
303 
+
304 };
+
305 
+
306 #endif
+
307 
+
308 #endif
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:68
-
PhysicalLayer::getRSSI
virtual float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: PhysicalLayer.cpp:289
SX1272
Derived class for SX1272 modules. Also used as base class for SX1273. Both modules use the same basic...
Definition: SX1272.h:94
SX1272::reset
void reset() override
Reset method. Will reset the chip to the default state using RST pin.
Definition: SX1272.cpp:76
SX1272::setBandwidth
int16_t setBandwidth(float bw)
Sets LoRa link bandwidth. Allowed values are 125, 250 and 500 kHz. Only available in LoRa mode.
Definition: SX1272.cpp:96
SX1272::checkDataRate
int16_t checkDataRate(DataRate_t dr) override
Check the data rate can be configured by this module.
Definition: SX1272.cpp:255
SX1272::setDataShapingOOK
int16_t setDataShapingOOK(uint8_t sh)
Sets filter cutoff frequency that will be used for data shaping. Allowed values are 1 for frequency e...
Definition: SX1272.cpp:388
-
SX1272::forceLDRO
int16_t forceLDRO(bool enable)
Forces LoRa low data rate optimization. Only available in LoRa mode. After calling this method,...
Definition: SX1272.cpp:455
-
SX1272::implicitHeader
int16_t implicitHeader(size_t len)
Set implicit header mode for future reception/transmission. Required for spreading factor 6.
Definition: SX1272.cpp:478
+
SX1272::forceLDRO
int16_t forceLDRO(bool enable)
Forces LoRa low data rate optimization. Only available in LoRa mode. After calling this method,...
Definition: SX1272.cpp:459
+
SX1272::implicitHeader
int16_t implicitHeader(size_t len)
Set implicit header mode for future reception/transmission. Required for spreading factor 6.
Definition: SX1272.cpp:482
SX1272::setDataRate
int16_t setDataRate(DataRate_t dr) override
Set data.
Definition: SX1272.cpp:226
SX1272::setSpreadingFactor
int16_t setSpreadingFactor(uint8_t sf)
Sets LoRa link spreading factor. Allowed values range from 6 to 12. Only available in LoRa mode.
Definition: SX1272.cpp:134
SX1272::beginFSK
int16_t beginFSK(float freq=915.0, float br=4.8, float freqDev=5.0, float rxBw=125.0, int8_t power=10, uint16_t preambleLength=16, bool enableOOK=false)
FSK modem initialization method. Must be called at least once from Arduino sketch to initialize the m...
Definition: SX1272.cpp:41
@@ -265,13 +266,14 @@ $(document).ready(function(){initNavTree('_s_x1272_8h_source.html',''); initResi
SX1272::setCodingRate
int16_t setCodingRate(uint8_t cr)
Sets LoRa link coding rate denominator. Allowed values range from 5 to 8. Only available in LoRa mode...
Definition: SX1272.cpp:188
SX1272::SX1272
SX1272(Module *mod)
Default constructor. Called from Arduino sketch when creating new LoRa instance.
Definition: SX1272.cpp:5
SX1272::setBitRate
int16_t setBitRate(float br) override
Sets FSK bit rate. Allowed values range from 0.5 to 300 kbps. Only available in FSK mode.
Definition: SX1272.cpp:222
-
SX1272::autoLDRO
int16_t autoLDRO()
Re-enables automatic LDRO configuration. Only available in LoRa mode. After calling this method,...
Definition: SX1272.cpp:469
-
SX1272::setCRC
int16_t setCRC(bool enable, bool mode=false)
Enables/disables CRC check of received packets.
Definition: SX1272.cpp:426
+
SX1272::autoLDRO
int16_t autoLDRO()
Re-enables automatic LDRO configuration. Only available in LoRa mode. After calling this method,...
Definition: SX1272.cpp:473
+
SX1272::setCRC
int16_t setCRC(bool enable, bool mode=false)
Enables/disables CRC check of received packets.
Definition: SX1272.cpp:430
SX1272::setGain
int16_t setGain(uint8_t gain)
Sets gain of receiver LNA (low-noise amplifier). Can be set to any integer in range 1 to 6 where 1 is...
Definition: SX1272.cpp:320
-
SX1272::explicitHeader
int16_t explicitHeader()
Set explicit header mode for future reception/transmission.
Definition: SX1272.cpp:482
+
SX1272::explicitHeader
int16_t explicitHeader()
Set explicit header mode for future reception/transmission.
Definition: SX1272.cpp:486
SX1272::begin
int16_t begin(float freq=915.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_SX127X_SYNC_WORD, int8_t power=10, uint16_t preambleLength=8, uint8_t gain=0)
LoRa modem initialization method. Must be called at least once from Arduino sketch to initialize the ...
Definition: SX1272.cpp:9
SX1272::setOutputPower
int16_t setOutputPower(int8_t power) override
Sets transmission output power. Allowed values range from -1 to 14 dBm (RFO pin) or +2 to +20 dBm (PA...
Definition: SX1272.cpp:278
SX1272::setFrequency
int16_t setFrequency(float freq)
Sets carrier frequency. Allowed values range from 860.0 MHz to 1020.0 MHz.
Definition: SX1272.cpp:85
+
SX1272::getRSSI
float getRSSI()
Gets recorded signal strength indicator. Overload with packet mode enabled for PhysicalLayer compatib...
Definition: SX1272.cpp:422
SX127x
Base class for SX127x series. All derived classes for SX127x (e.g. SX1278 or SX1272) inherit from thi...
Definition: SX127x.h:583
DataRate_t
Common data rate structure.
Definition: PhysicalLayer.h:38
diff --git a/_s_x1278_8h_source.html b/_s_x1278_8h_source.html index 78bf030c..29943565 100644 --- a/_s_x1278_8h_source.html +++ b/_s_x1278_8h_source.html @@ -226,63 +226,65 @@ $(document).ready(function(){initNavTree('_s_x1278_8h_source.html',''); initResi
236 
244  int16_t setDataShapingOOK(uint8_t sh);
245 
-
252  float getRSSI(bool packet = true, bool skipReceive = false);
-
253 
-
261  int16_t setCRC(bool enable, bool mode = false);
-
262 
-
270  int16_t forceLDRO(bool enable);
-
271 
-
277  int16_t autoLDRO();
+
251  float getRSSI();
+
252 
+
259  float getRSSI(bool packet, bool skipReceive = false);
+
260 
+
268  int16_t setCRC(bool enable, bool mode = false);
+
269 
+
277  int16_t forceLDRO(bool enable);
278 
-
284  int16_t implicitHeader(size_t len);
+
284  int16_t autoLDRO();
285 
-
290  int16_t explicitHeader();
-
291 
-
292 #if !RADIOLIB_GODMODE
-
293  protected:
-
294 #endif
-
295  int16_t setBandwidthRaw(uint8_t newBandwidth);
-
296  int16_t setSpreadingFactorRaw(uint8_t newSpreadingFactor);
-
297  int16_t setCodingRateRaw(uint8_t newCodingRate);
-
298  int16_t setHeaderType(uint8_t headerType, size_t len = 0xFF);
-
299 
-
300  int16_t configFSK();
-
301  void errataFix(bool rx);
-
302 
-
303 #if !RADIOLIB_GODMODE
-
304  private:
-
305 #endif
-
306  bool ldroAuto = true;
-
307  bool ldroEnabled = false;
-
308 
-
309 };
-
310 
-
315 RADIOLIB_TYPE_ALIAS(SX1278, RFM98)
-
316 
-
317 #endif
-
318 
-
319 #endif
+
291  int16_t implicitHeader(size_t len);
+
292 
+
297  int16_t explicitHeader();
+
298 
+
299 #if !RADIOLIB_GODMODE
+
300  protected:
+
301 #endif
+
302  int16_t setBandwidthRaw(uint8_t newBandwidth);
+
303  int16_t setSpreadingFactorRaw(uint8_t newSpreadingFactor);
+
304  int16_t setCodingRateRaw(uint8_t newCodingRate);
+
305  int16_t setHeaderType(uint8_t headerType, size_t len = 0xFF);
+
306 
+
307  int16_t configFSK();
+
308  void errataFix(bool rx);
+
309 
+
310 #if !RADIOLIB_GODMODE
+
311  private:
+
312 #endif
+
313  bool ldroAuto = true;
+
314  bool ldroEnabled = false;
+
315 
+
316 };
+
317 
+
322 RADIOLIB_TYPE_ALIAS(SX1278, RFM98)
+
323 
+
324 #endif
+
325 
+
326 #endif
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:68
-
PhysicalLayer::getRSSI
virtual float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: PhysicalLayer.cpp:289
RFM98
Only exists as alias for SX1278, since there seems to be no difference between RFM98 and SX1278 modul...
SX1278
Derived class for SX1278 modules. Also used as base class for SX1276, SX1277, SX1279,...
Definition: SX1278.h:105
SX1278::SX1278
SX1278(Module *mod)
Default constructor. Called from Arduino sketch when creating new LoRa instance.
Definition: SX1278.cpp:5
+
SX1278::getRSSI
float getRSSI()
Gets recorded signal strength indicator. Overload with packet mode enabled for PhysicalLayer compatib...
Definition: SX1278.cpp:451
SX1278::setDataShapingOOK
int16_t setDataShapingOOK(uint8_t sh)
Sets filter cutoff frequency that will be used for data shaping. Allowed values are 1 for frequency e...
Definition: SX1278.cpp:418
SX1278::setDataRate
int16_t setDataRate(DataRate_t dr) override
Set data.
Definition: SX1278.cpp:240
SX1278::setBandwidth
int16_t setBandwidth(float bw)
Sets LoRa link bandwidth. Allowed values are 10.4, 15.6, 20.8, 31.25, 41.7, 62.5, 125,...
Definition: SX1278.cpp:96
-
SX1278::implicitHeader
int16_t implicitHeader(size_t len)
Set implicit header mode for future reception/transmission. Required for spreading factor 6.
Definition: SX1278.cpp:511
+
SX1278::implicitHeader
int16_t implicitHeader(size_t len)
Set implicit header mode for future reception/transmission. Required for spreading factor 6.
Definition: SX1278.cpp:515
SX1278::setFrequency
int16_t setFrequency(float freq)
Sets carrier frequency. Allowed values range from 137.0 MHz to 525.0 MHz.
Definition: SX1278.cpp:85
SX1278::setOutputPower
int16_t setOutputPower(int8_t power) override
Sets transmission output power. Allowed values range from -3 to 15 dBm (RFO pin) or +2 to +17 dBm (PA...
Definition: SX1278.cpp:292
SX1278::reset
void reset() override
Reset method. Will reset the chip to the default state using RST pin.
Definition: SX1278.cpp:76
-
SX1278::forceLDRO
int16_t forceLDRO(bool enable)
Forces LoRa low data rate optimization. Only available in LoRa mode. After calling this method,...
Definition: SX1278.cpp:488
-
SX1278::explicitHeader
int16_t explicitHeader()
Set explicit header mode for future reception/transmission.
Definition: SX1278.cpp:515
+
SX1278::forceLDRO
int16_t forceLDRO(bool enable)
Forces LoRa low data rate optimization. Only available in LoRa mode. After calling this method,...
Definition: SX1278.cpp:492
+
SX1278::explicitHeader
int16_t explicitHeader()
Set explicit header mode for future reception/transmission.
Definition: SX1278.cpp:519
SX1278::checkDataRate
int16_t checkDataRate(DataRate_t dr) override
Check the data rate can be configured by this module.
Definition: SX1278.cpp:269
SX1278::setCodingRate
int16_t setCodingRate(uint8_t cr)
Sets LoRa link coding rate denominator. Allowed values range from 5 to 8. Only available in LoRa mode...
Definition: SX1278.cpp:202
SX1278::beginFSK
int16_t beginFSK(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=125.0, int8_t power=10, uint16_t preambleLength=16, bool enableOOK=false)
FSK modem initialization method. Must be called at least once from Arduino sketch to initialize the m...
Definition: SX1278.cpp:41
SX1278::begin
int16_t begin(float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_SX127X_SYNC_WORD, int8_t power=10, uint16_t preambleLength=8, uint8_t gain=0)
LoRa modem initialization method. Must be called at least once from Arduino sketch to initialize the ...
Definition: SX1278.cpp:9
SX1278::setGain
int16_t setGain(uint8_t gain)
Sets gain of receiver LNA (low-noise amplifier). Can be set to any integer in range 1 to 6 where 1 is...
Definition: SX1278.cpp:345
-
SX1278::setCRC
int16_t setCRC(bool enable, bool mode=false)
Enables/disables CRC check of received packets.
Definition: SX1278.cpp:459
-
SX1278::autoLDRO
int16_t autoLDRO()
Re-enables automatic LDRO configuration. Only available in LoRa mode. After calling this method,...
Definition: SX1278.cpp:502
+
SX1278::setCRC
int16_t setCRC(bool enable, bool mode=false)
Enables/disables CRC check of received packets.
Definition: SX1278.cpp:463
+
SX1278::autoLDRO
int16_t autoLDRO()
Re-enables automatic LDRO configuration. Only available in LoRa mode. After calling this method,...
Definition: SX1278.cpp:506
SX1278::setSpreadingFactor
int16_t setSpreadingFactor(uint8_t sf)
Sets LoRa link spreading factor. Allowed values range from 6 to 12. Only available in LoRa mode.
Definition: SX1278.cpp:148
SX1278::setDataShaping
int16_t setDataShaping(uint8_t sh) override
Sets Gaussian filter bandwidth-time product that will be used for data shaping. Only available in FSK...
Definition: SX1278.cpp:382
SX1278::setBitRate
int16_t setBitRate(float br) override
Sets FSK bit rate. Allowed values range from 0.5 to 300 kbps. Only available in FSK mode.
Definition: SX1278.cpp:236
diff --git a/class_physical_layer.html b/class_physical_layer.html index 9d7d9f5e..55dfa82d 100644 --- a/class_physical_layer.html +++ b/class_physical_layer.html @@ -595,7 +595,7 @@ class LoRaWANNode

Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.

Returns
RSSI of the last received packet in dBm.
-

Reimplemented in SX128x, RF69, and CC1101.

+

Reimplemented in SX128x, SX1278, SX1272, RF69, and CC1101.

diff --git a/class_s_x1272-members.html b/class_s_x1272-members.html index 660a71c1..a5d9c9b8 100644 --- a/class_s_x1272-members.html +++ b/class_s_x1272-members.html @@ -127,8 +127,8 @@ $(document).ready(function(){initNavTree('class_s_x1272.html',''); initResizable getModemStatus()SX127x getNumSymbols(size_t len)SX127x getPacketLength(bool update=true) overrideSX127xvirtual - getRSSI(bool packet=true, bool skipReceive=false)SX1272 - PhysicalLayer::getRSSI()PhysicalLayervirtual + getRSSI()SX1272virtual + getRSSI(bool packet, bool skipReceive=false)SX1272 getSNR()SX127xvirtual getTempRaw()SX127x getTimeOnAir(size_t len) overrideSX127xvirtual diff --git a/class_s_x1272.html b/class_s_x1272.html index 2ba24be5..686b5d9a 100644 --- a/class_s_x1272.html +++ b/class_s_x1272.html @@ -157,9 +157,12 @@ void int16_t setDataShapingOOK (uint8_t sh)  Sets filter cutoff frequency that will be used for data shaping. Allowed values are 1 for frequency equal to bit rate and 2 for frequency equal to 2x bit rate. Set to 0 to disable data shaping. Only available in FSK mode with OOK modulation. More...
  -float getRSSI (bool packet=true, bool skipReceive=false) - Gets recorded signal strength indicator. More...
-  +float getRSSI () + Gets recorded signal strength indicator. Overload with packet mode enabled for PhysicalLayer compatibility. More...
+  +float getRSSI (bool packet, bool skipReceive=false) + Gets recorded signal strength indicator. More...
+  int16_t setCRC (bool enable, bool mode=false)  Enables/disables CRC check of received packets. More...
  @@ -482,9 +485,6 @@ void float getFreqStep () const  Gets the module frequency step size that was set in constructor. More...
  -virtual float getRSSI () - Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. More...
-  int32_t random (int32_t max)  Get truly random number in range 0 - max. More...
  @@ -797,8 +797,38 @@ void  -

◆ getRSSI()

+ +

◆ getRSSI() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
float SX1272::getRSSI ()
+
+virtual
+
+ +

Gets recorded signal strength indicator. Overload with packet mode enabled for PhysicalLayer compatibility.

+
Returns
RSSI value in dBm.
+ +

Reimplemented from PhysicalLayer.

+ +
+
+ +

◆ getRSSI() [2/2]

@@ -807,7 +837,7 @@ void float SX1272::getRSSI ( bool  - packet = true, + packet, diff --git a/class_s_x1272.js b/class_s_x1272.js index 6c734275..a6e18a51 100644 --- a/class_s_x1272.js +++ b/class_s_x1272.js @@ -7,7 +7,8 @@ var class_s_x1272 = [ "checkDataRate", "class_s_x1272.html#a2a36487740f15731c6e508428e4b11f0", null ], [ "explicitHeader", "class_s_x1272.html#ae3c9704cb58232f696b5f90f69c115f7", null ], [ "forceLDRO", "class_s_x1272.html#a4aaf9d61310fa7b4fce413ae53d30ac0", null ], - [ "getRSSI", "class_s_x1272.html#acdf35ee105a327e0e6089615e6f9bb1a", null ], + [ "getRSSI", "class_s_x1272.html#af5a7dee50a1a7d8261bc62bb869cda92", null ], + [ "getRSSI", "class_s_x1272.html#a171656d12a9909bbb04fc81be86ec2a6", null ], [ "implicitHeader", "class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3", null ], [ "reset", "class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac", null ], [ "setBandwidth", "class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b", null ], diff --git a/class_s_x1273-members.html b/class_s_x1273-members.html index 7720ac43..451c2426 100644 --- a/class_s_x1273-members.html +++ b/class_s_x1273-members.html @@ -127,8 +127,8 @@ $(document).ready(function(){initNavTree('class_s_x1273.html',''); initResizable getModemStatus()SX127x getNumSymbols(size_t len)SX127x getPacketLength(bool update=true) overrideSX127xvirtual - getRSSI(bool packet=true, bool skipReceive=false)SX1272 - PhysicalLayer::getRSSI()PhysicalLayervirtual + getRSSI()SX1272virtual + getRSSI(bool packet, bool skipReceive=false)SX1272 getSNR()SX127xvirtual getTempRaw()SX127x getTimeOnAir(size_t len) overrideSX127xvirtual diff --git a/class_s_x1273.html b/class_s_x1273.html index f8f68db7..ffd5d887 100644 --- a/class_s_x1273.html +++ b/class_s_x1273.html @@ -167,9 +167,12 @@ void int16_t setDataShapingOOK (uint8_t sh)  Sets filter cutoff frequency that will be used for data shaping. Allowed values are 1 for frequency equal to bit rate and 2 for frequency equal to 2x bit rate. Set to 0 to disable data shaping. Only available in FSK mode with OOK modulation. More...
  -float getRSSI (bool packet=true, bool skipReceive=false) - Gets recorded signal strength indicator. More...
-  +float getRSSI () + Gets recorded signal strength indicator. Overload with packet mode enabled for PhysicalLayer compatibility. More...
+  +float getRSSI (bool packet, bool skipReceive=false) + Gets recorded signal strength indicator. More...
+  int16_t setCRC (bool enable, bool mode=false)  Enables/disables CRC check of received packets. More...
  @@ -492,9 +495,6 @@ void float getFreqStep () const  Gets the module frequency step size that was set in constructor. More...
  -virtual float getRSSI () - Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. More...
-  int32_t random (int32_t max)  Get truly random number in range 0 - max. More...
  diff --git a/class_s_x1276-members.html b/class_s_x1276-members.html index dc64076c..6ed558c8 100644 --- a/class_s_x1276-members.html +++ b/class_s_x1276-members.html @@ -127,8 +127,8 @@ $(document).ready(function(){initNavTree('class_s_x1276.html',''); initResizable getModemStatus()SX127x getNumSymbols(size_t len)SX127x getPacketLength(bool update=true) overrideSX127xvirtual - getRSSI(bool packet=true, bool skipReceive=false)SX1278 - PhysicalLayer::getRSSI()PhysicalLayervirtual + getRSSI()SX1278virtual + getRSSI(bool packet, bool skipReceive=false)SX1278 getSNR()SX127xvirtual getTempRaw()SX127x getTimeOnAir(size_t len) overrideSX127xvirtual diff --git a/class_s_x1276.html b/class_s_x1276.html index 0aaad4e0..e52817a6 100644 --- a/class_s_x1276.html +++ b/class_s_x1276.html @@ -170,9 +170,12 @@ void int16_t setDataShapingOOK (uint8_t sh)  Sets filter cutoff frequency that will be used for data shaping. Allowed values are 1 for frequency equal to bit rate and 2 for frequency equal to 2x bit rate. Set to 0 to disable data shaping. Only available in FSK mode with OOK modulation. More...
  -float getRSSI (bool packet=true, bool skipReceive=false) - Gets recorded signal strength indicator. More...
-  +float getRSSI () + Gets recorded signal strength indicator. Overload with packet mode enabled for PhysicalLayer compatibility. More...
+  +float getRSSI (bool packet, bool skipReceive=false) + Gets recorded signal strength indicator. More...
+  int16_t setCRC (bool enable, bool mode=false)  Enables/disables CRC check of received packets. More...
  @@ -495,9 +498,6 @@ void float getFreqStep () const  Gets the module frequency step size that was set in constructor. More...
  -virtual float getRSSI () - Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. More...
-  int32_t random (int32_t max)  Get truly random number in range 0 - max. More...
  diff --git a/class_s_x1277-members.html b/class_s_x1277-members.html index 26a4d8ed..f6564ea1 100644 --- a/class_s_x1277-members.html +++ b/class_s_x1277-members.html @@ -127,8 +127,8 @@ $(document).ready(function(){initNavTree('class_s_x1277.html',''); initResizable getModemStatus()SX127x getNumSymbols(size_t len)SX127x getPacketLength(bool update=true) overrideSX127xvirtual - getRSSI(bool packet=true, bool skipReceive=false)SX1278 - PhysicalLayer::getRSSI()PhysicalLayervirtual + getRSSI()SX1278virtual + getRSSI(bool packet, bool skipReceive=false)SX1278 getSNR()SX127xvirtual getTempRaw()SX127x getTimeOnAir(size_t len) overrideSX127xvirtual diff --git a/class_s_x1277.html b/class_s_x1277.html index ddd27646..d7fa34f9 100644 --- a/class_s_x1277.html +++ b/class_s_x1277.html @@ -179,9 +179,12 @@ void int16_t setDataShapingOOK (uint8_t sh)  Sets filter cutoff frequency that will be used for data shaping. Allowed values are 1 for frequency equal to bit rate and 2 for frequency equal to 2x bit rate. Set to 0 to disable data shaping. Only available in FSK mode with OOK modulation. More...
  -float getRSSI (bool packet=true, bool skipReceive=false) - Gets recorded signal strength indicator. More...
-  +float getRSSI () + Gets recorded signal strength indicator. Overload with packet mode enabled for PhysicalLayer compatibility. More...
+  +float getRSSI (bool packet, bool skipReceive=false) + Gets recorded signal strength indicator. More...
+  int16_t setCRC (bool enable, bool mode=false)  Enables/disables CRC check of received packets. More...
  @@ -504,9 +507,6 @@ void float getFreqStep () const  Gets the module frequency step size that was set in constructor. More...
  -virtual float getRSSI () - Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. More...
-  int32_t random (int32_t max)  Get truly random number in range 0 - max. More...
  diff --git a/class_s_x1278-members.html b/class_s_x1278-members.html index c9d382ce..6e33524b 100644 --- a/class_s_x1278-members.html +++ b/class_s_x1278-members.html @@ -127,8 +127,8 @@ $(document).ready(function(){initNavTree('class_s_x1278.html',''); initResizable getModemStatus()SX127x getNumSymbols(size_t len)SX127x getPacketLength(bool update=true) overrideSX127xvirtual - getRSSI(bool packet=true, bool skipReceive=false)SX1278 - PhysicalLayer::getRSSI()PhysicalLayervirtual + getRSSI()SX1278virtual + getRSSI(bool packet, bool skipReceive=false)SX1278 getSNR()SX127xvirtual getTempRaw()SX127x getTimeOnAir(size_t len) overrideSX127xvirtual diff --git a/class_s_x1278.html b/class_s_x1278.html index 9e67d11d..2697674d 100644 --- a/class_s_x1278.html +++ b/class_s_x1278.html @@ -159,9 +159,12 @@ void int16_t setDataShapingOOK (uint8_t sh)  Sets filter cutoff frequency that will be used for data shaping. Allowed values are 1 for frequency equal to bit rate and 2 for frequency equal to 2x bit rate. Set to 0 to disable data shaping. Only available in FSK mode with OOK modulation. More...
  -float getRSSI (bool packet=true, bool skipReceive=false) - Gets recorded signal strength indicator. More...
-  +float getRSSI () + Gets recorded signal strength indicator. Overload with packet mode enabled for PhysicalLayer compatibility. More...
+  +float getRSSI (bool packet, bool skipReceive=false) + Gets recorded signal strength indicator. More...
+  int16_t setCRC (bool enable, bool mode=false)  Enables/disables CRC check of received packets. More...
  @@ -484,9 +487,6 @@ void float getFreqStep () const  Gets the module frequency step size that was set in constructor. More...
  -virtual float getRSSI () - Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. More...
-  int32_t random (int32_t max)  Get truly random number in range 0 - max. More...
  @@ -797,8 +797,38 @@ void  -

◆ getRSSI()

+ +

◆ getRSSI() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
float SX1278::getRSSI ()
+
+virtual
+
+ +

Gets recorded signal strength indicator. Overload with packet mode enabled for PhysicalLayer compatibility.

+
Returns
RSSI value in dBm.
+ +

Reimplemented from PhysicalLayer.

+ +
+
+ +

◆ getRSSI() [2/2]

@@ -807,7 +837,7 @@ void float SX1278::getRSSI ( bool  - packet = true, + packet, diff --git a/class_s_x1278.js b/class_s_x1278.js index 7eb27659..71d03238 100644 --- a/class_s_x1278.js +++ b/class_s_x1278.js @@ -7,7 +7,8 @@ var class_s_x1278 = [ "checkDataRate", "class_s_x1278.html#a7f238fd38f436d9e86aa92a387d48467", null ], [ "explicitHeader", "class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1", null ], [ "forceLDRO", "class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856", null ], - [ "getRSSI", "class_s_x1278.html#a260399b893988196771bc5a62d604822", null ], + [ "getRSSI", "class_s_x1278.html#a0b1fe4d0b1acfa454d7bab59cdf319fe", null ], + [ "getRSSI", "class_s_x1278.html#ab17357254073baeb7490c98faf10d991", null ], [ "implicitHeader", "class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e", null ], [ "reset", "class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad", null ], [ "setBandwidth", "class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6", null ], diff --git a/class_s_x1279-members.html b/class_s_x1279-members.html index ed31cd87..e2eeeb81 100644 --- a/class_s_x1279-members.html +++ b/class_s_x1279-members.html @@ -127,8 +127,8 @@ $(document).ready(function(){initNavTree('class_s_x1279.html',''); initResizable getModemStatus()SX127x getNumSymbols(size_t len)SX127x getPacketLength(bool update=true) overrideSX127xvirtual - getRSSI(bool packet=true, bool skipReceive=false)SX1278 - PhysicalLayer::getRSSI()PhysicalLayervirtual + getRSSI()SX1278virtual + getRSSI(bool packet, bool skipReceive=false)SX1278 getSNR()SX127xvirtual getTempRaw()SX127x getTimeOnAir(size_t len) overrideSX127xvirtual diff --git a/class_s_x1279.html b/class_s_x1279.html index 6aa44d21..f0e7ead3 100644 --- a/class_s_x1279.html +++ b/class_s_x1279.html @@ -167,9 +167,12 @@ void int16_t setDataShapingOOK (uint8_t sh)  Sets filter cutoff frequency that will be used for data shaping. Allowed values are 1 for frequency equal to bit rate and 2 for frequency equal to 2x bit rate. Set to 0 to disable data shaping. Only available in FSK mode with OOK modulation. More...
  -float getRSSI (bool packet=true, bool skipReceive=false) - Gets recorded signal strength indicator. More...
-  +float getRSSI () + Gets recorded signal strength indicator. Overload with packet mode enabled for PhysicalLayer compatibility. More...
+  +float getRSSI (bool packet, bool skipReceive=false) + Gets recorded signal strength indicator. More...
+  int16_t setCRC (bool enable, bool mode=false)  Enables/disables CRC check of received packets. More...
  @@ -492,9 +495,6 @@ void float getFreqStep () const  Gets the module frequency step size that was set in constructor. More...
  -virtual float getRSSI () - Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. More...
-  int32_t random (int32_t max)  Get truly random number in range 0 - max. More...
  diff --git a/functions_func_g.html b/functions_func_g.html index 60102f24..22f7dcb4 100644 --- a/functions_func_g.html +++ b/functions_func_g.html @@ -206,8 +206,8 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza , PhysicalLayer , RF69 , SX126x -, SX1272 -, SX1278 +, SX1272 +, SX1278 , SX128x
  • getRst() diff --git a/functions_g.html b/functions_g.html index 8e2208a8..6c630b6e 100644 --- a/functions_g.html +++ b/functions_g.html @@ -206,8 +206,8 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable() , PhysicalLayer , RF69 , SX126x -, SX1272 -, SX1278 +, SX1272 +, SX1278 , SX128x
  • getRst() diff --git a/navtreedata.js b/navtreedata.js index d1c75501..bf6fb1de 100644 --- a/navtreedata.js +++ b/navtreedata.js @@ -52,9 +52,9 @@ var NAVTREEINDEX = "_a_f_s_k_8h_source.html", "class_lo_ra_w_a_n_node.html#ae532e739ada04ea7463494a426f60b4d", "class_radio_lib_hal.html#a35a6ef1b38553a3516c961872eb411d7", -"class_s_x1278.html#a7f238fd38f436d9e86aa92a387d48467", -"classn_r_f24.html", -"struct_f_s_k_rate__t.html#a9d8801cd6a3533922db9410f81e2a244" +"class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1", +"class_stm32wlx_hal.html#acb925afdee4979936ef83a422d13e642", +"struct_f_s_k_rate__t.html" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/navtreeindex2.js b/navtreeindex2.js index 99c2b900..2ab3d04e 100644 --- a/navtreeindex2.js +++ b/navtreeindex2.js @@ -197,28 +197,29 @@ var NAVTREEINDEX2 = "class_s_x126x.html#afdd901c5eac2ca8773d0977e2c493317":[3,0,56,16], "class_s_x126x.html#aff8ec92d828421564322f13fb1c90223":[3,0,56,79], "class_s_x1272.html":[3,0,57], -"class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659":[3,0,57,20], -"class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac":[3,0,57,9], -"class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b":[3,0,57,10], +"class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659":[3,0,57,21], +"class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac":[3,0,57,10], +"class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b":[3,0,57,11], +"class_s_x1272.html#a171656d12a9909bbb04fc81be86ec2a6":[3,0,57,8], "class_s_x1272.html#a2a36487740f15731c6e508428e4b11f0":[3,0,57,4], -"class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47":[3,0,57,16], +"class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47":[3,0,57,17], "class_s_x1272.html#a4aaf9d61310fa7b4fce413ae53d30ac0":[3,0,57,6], -"class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3":[3,0,57,8], -"class_s_x1272.html#a5b79b7cd20c4c3cd1f486f777b3457d1":[3,0,57,14], -"class_s_x1272.html#a82084ac58502c83d2ada998410307490":[3,0,57,21], +"class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3":[3,0,57,9], +"class_s_x1272.html#a5b79b7cd20c4c3cd1f486f777b3457d1":[3,0,57,15], +"class_s_x1272.html#a82084ac58502c83d2ada998410307490":[3,0,57,22], "class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260":[3,0,57,3], -"class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea":[3,0,57,15], -"class_s_x1272.html#a960913438feccad4c1913a9222384a5f":[3,0,57,12], +"class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea":[3,0,57,16], +"class_s_x1272.html#a960913438feccad4c1913a9222384a5f":[3,0,57,13], "class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626":[3,0,57,0], -"class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5":[3,0,57,11], +"class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5":[3,0,57,12], "class_s_x1272.html#abb4bbfe8acc6026c833d267d78417b63":[3,0,57,1], -"class_s_x1272.html#abd912314a977f92c464d36d862329ffc":[3,0,57,13], -"class_s_x1272.html#acdf35ee105a327e0e6089615e6f9bb1a":[3,0,57,7], -"class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852":[3,0,57,18], +"class_s_x1272.html#abd912314a977f92c464d36d862329ffc":[3,0,57,14], +"class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852":[3,0,57,19], "class_s_x1272.html#ae3c9704cb58232f696b5f90f69c115f7":[3,0,57,5], "class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9":[3,0,57,2], -"class_s_x1272.html#aec51f08c0902145ff5f11e27e7cab638":[3,0,57,19], -"class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8":[3,0,57,17], +"class_s_x1272.html#aec51f08c0902145ff5f11e27e7cab638":[3,0,57,20], +"class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8":[3,0,57,18], +"class_s_x1272.html#af5a7dee50a1a7d8261bc62bb869cda92":[3,0,57,7], "class_s_x1273.html":[3,0,58], "class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2":[3,0,58,1], "class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f":[3,0,58,4], @@ -240,14 +241,13 @@ var NAVTREEINDEX2 = "class_s_x1277.html#aef5d9e27edc2173d1b4cc1cb0d9733bc":[3,0,60,3], "class_s_x1278.html":[3,0,61], "class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e":[3,0,61,0], -"class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4":[3,0,61,16], -"class_s_x1278.html#a260399b893988196771bc5a62d604822":[3,0,61,7], -"class_s_x1278.html#a286f1ee00e2c7f2ab1bd06b66196c3f9":[3,0,61,14], -"class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6":[3,0,61,10], -"class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e":[3,0,61,8], -"class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4":[3,0,61,17], -"class_s_x1278.html#a69abc18e7fa0055e6b80024e8cde7db4":[3,0,61,19], -"class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad":[3,0,61,9], -"class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856":[3,0,61,6], -"class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1":[3,0,61,5] +"class_s_x1278.html#a0b1fe4d0b1acfa454d7bab59cdf319fe":[3,0,61,7], +"class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4":[3,0,61,17], +"class_s_x1278.html#a286f1ee00e2c7f2ab1bd06b66196c3f9":[3,0,61,15], +"class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6":[3,0,61,11], +"class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e":[3,0,61,9], +"class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4":[3,0,61,18], +"class_s_x1278.html#a69abc18e7fa0055e6b80024e8cde7db4":[3,0,61,20], +"class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad":[3,0,61,10], +"class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856":[3,0,61,6] }; diff --git a/navtreeindex3.js b/navtreeindex3.js index ec335214..6968c230 100644 --- a/navtreeindex3.js +++ b/navtreeindex3.js @@ -1,16 +1,18 @@ var NAVTREEINDEX3 = { +"class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1":[3,0,61,5], "class_s_x1278.html#a7f238fd38f436d9e86aa92a387d48467":[3,0,61,4], -"class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1":[3,0,61,12], +"class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1":[3,0,61,13], "class_s_x1278.html#a86464af008b71d12948690b780280e7d":[3,0,61,3], "class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf":[3,0,61,2], -"class_s_x1278.html#aa57b713988cfa224a6db2ff325052931":[3,0,61,18], -"class_s_x1278.html#ac0be7586b8e40355bbd29d78ae9941d1":[3,0,61,13], -"class_s_x1278.html#aca58a6c2e8fcef6414fdf3bc1eb62082":[3,0,61,20], +"class_s_x1278.html#aa57b713988cfa224a6db2ff325052931":[3,0,61,19], +"class_s_x1278.html#ab17357254073baeb7490c98faf10d991":[3,0,61,8], +"class_s_x1278.html#ac0be7586b8e40355bbd29d78ae9941d1":[3,0,61,14], +"class_s_x1278.html#aca58a6c2e8fcef6414fdf3bc1eb62082":[3,0,61,21], "class_s_x1278.html#ae02adcde8c2978c0d1b157729dd5df1e":[3,0,61,1], -"class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08":[3,0,61,21], -"class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563":[3,0,61,15], -"class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67":[3,0,61,11], +"class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08":[3,0,61,22], +"class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563":[3,0,61,16], +"class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67":[3,0,61,12], "class_s_x1279.html":[3,0,62], "class_s_x1279.html#a324a37dee0522f43692cd414141becc2":[3,0,62,1], "class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b":[3,0,62,2], @@ -247,7 +249,5 @@ var NAVTREEINDEX3 = "class_stm32wlx_hal.html":[3,0,50], "class_stm32wlx_hal.html#a32b0621ec0232776393b6800181bba46":[3,0,50,0], "class_stm32wlx_hal.html#a70dd9f6fb6c0307e2d9d363ce6d7f2a2":[3,0,50,3], -"class_stm32wlx_hal.html#a7fc8af77a85f8f002c7dc6476efa0ad4":[3,0,50,1], -"class_stm32wlx_hal.html#acb925afdee4979936ef83a422d13e642":[3,0,50,2], -"classes.html":[3,1] +"class_stm32wlx_hal.html#a7fc8af77a85f8f002c7dc6476efa0ad4":[3,0,50,1] }; diff --git a/navtreeindex4.js b/navtreeindex4.js index b743965a..72786723 100644 --- a/navtreeindex4.js +++ b/navtreeindex4.js @@ -1,5 +1,7 @@ var NAVTREEINDEX4 = { +"class_stm32wlx_hal.html#acb925afdee4979936ef83a422d13e642":[3,0,50,2], +"classes.html":[3,1], "classn_r_f24.html":[3,0,26], "classn_r_f24.html#a033287e33c532638c11e2775a073f297":[3,0,26,31], "classn_r_f24.html#a03e9ae7fbd0d55887acf1996df28ed5b":[3,0,26,33], @@ -237,8 +239,8 @@ var NAVTREEINDEX4 = "group__status__codes.html#gafc3bca002b982af27b703c30b2d12df3":[2,6,64], "group__status__codes.html#gafeff72bd7b618959d86b804a11f09063":[2,6,2], "hierarchy.html":[3,2], -"index.html":[], "index.html":[0], +"index.html":[], "modules.html":[2], "n_r_f24_8h_source.html":[4,0,0,0,2,0], "pages.html":[], @@ -247,7 +249,5 @@ var NAVTREEINDEX4 = "struct_bell_modem__t.html#a40fe8a17a9b4fae3f313fea34077eacc":[3,0,5,4], "struct_bell_modem__t.html#a8e16be8997a90db9a4b2482ec7e93171":[3,0,5,0], "struct_bell_modem__t.html#aa26b8a2f2ae9722de9a69aab991ce229":[3,0,5,2], -"struct_bell_modem__t.html#ac57de3660aafb52bcf1b3197380c6ce5":[3,0,5,1], -"struct_f_s_k_rate__t.html":[3,0,10], -"struct_f_s_k_rate__t.html#a2500c6dee65326b52d4e58ecf4b6d107":[3,0,10,0] +"struct_bell_modem__t.html#ac57de3660aafb52bcf1b3197380c6ce5":[3,0,5,1] }; diff --git a/navtreeindex5.js b/navtreeindex5.js index 18ac91d4..805701bb 100644 --- a/navtreeindex5.js +++ b/navtreeindex5.js @@ -1,5 +1,7 @@ var NAVTREEINDEX5 = { +"struct_f_s_k_rate__t.html":[3,0,10], +"struct_f_s_k_rate__t.html#a2500c6dee65326b52d4e58ecf4b6d107":[3,0,10,0], "struct_f_s_k_rate__t.html#a9d8801cd6a3533922db9410f81e2a244":[3,0,10,1], "struct_lo_ra_rate__t.html":[3,0,14], "struct_lo_ra_rate__t.html#a24fcb6220c0577f985478dc109750076":[3,0,14,2], diff --git a/search/all_6.js b/search/all_6.js index 0a34d758..794ab7a4 100644 --- a/search/all_6.js +++ b/search/all_6.js @@ -29,11 +29,11 @@ var searchData= ['getmodemstatus_130',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]], ['getnfcntdown_131',['getNFcntDown',['../class_lo_ra_w_a_n_node.html#a8ac61997732b3f6d5f33b6568e23be11',1,'LoRaWANNode']]], ['getnumsymbols_132',['getNumSymbols',['../class_s_x127x.html#abcc10ab36404aaaee3fe7a1be6841511',1,'SX127x']]], - ['getpacketlength_133',['getPacketLength',['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength()'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_physical_layer.html#a2fe95169b5cdc8cabe1f2af66cad6ef6',1,'PhysicalLayer::getPacketLength()']]], + ['getpacketlength_133',['getPacketLength',['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength()'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_physical_layer.html#a2fe95169b5cdc8cabe1f2af66cad6ef6',1,'PhysicalLayer::getPacketLength()'],['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()']]], ['getpictureheight_134',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], ['getpromiscuousmode_135',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], ['getrangingresult_136',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], - ['getrssi_137',['getRSSI',['../class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b',1,'PhysicalLayer::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()'],['../class_s_x1278.html#a260399b893988196771bc5a62d604822',1,'SX1278::getRSSI()'],['../class_s_x126x.html#afabefb1b214411198f3537e8afce898f',1,'SX126x::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc',1,'CC1101::getRSSI()'],['../class_s_x1272.html#acdf35ee105a327e0e6089615e6f9bb1a',1,'SX1272::getRSSI()']]], + ['getrssi_137',['getRSSI',['../class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b',1,'PhysicalLayer::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()'],['../class_s_x1278.html#ab17357254073baeb7490c98faf10d991',1,'SX1278::getRSSI(bool packet, bool skipReceive=false)'],['../class_s_x1278.html#a0b1fe4d0b1acfa454d7bab59cdf319fe',1,'SX1278::getRSSI()'],['../class_s_x1272.html#af5a7dee50a1a7d8261bc62bb869cda92',1,'SX1272::getRSSI()'],['../class_s_x126x.html#afabefb1b214411198f3537e8afce898f',1,'SX126x::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc',1,'CC1101::getRSSI()'],['../class_s_x1272.html#a171656d12a9909bbb04fc81be86ec2a6',1,'SX1272::getRSSI()']]], ['getrst_138',['getRst',['../class_module.html#ad6cddbf3aebec9717a1a381dd81ad398',1,'Module']]], ['getsnr_139',['getSNR',['../class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca',1,'SX126x::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()'],['../class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f',1,'PhysicalLayer::getSNR()']]], ['getstatus_140',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]], diff --git a/search/functions_6.js b/search/functions_6.js index 0be8700a..ae1ac6ad 100644 --- a/search/functions_6.js +++ b/search/functions_6.js @@ -29,11 +29,11 @@ var searchData= ['getmodemstatus_722',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]], ['getnfcntdown_723',['getNFcntDown',['../class_lo_ra_w_a_n_node.html#a8ac61997732b3f6d5f33b6568e23be11',1,'LoRaWANNode']]], ['getnumsymbols_724',['getNumSymbols',['../class_s_x127x.html#abcc10ab36404aaaee3fe7a1be6841511',1,'SX127x']]], - ['getpacketlength_725',['getPacketLength',['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_physical_layer.html#a2fe95169b5cdc8cabe1f2af66cad6ef6',1,'PhysicalLayer::getPacketLength()'],['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength()'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()']]], + ['getpacketlength_725',['getPacketLength',['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_physical_layer.html#a2fe95169b5cdc8cabe1f2af66cad6ef6',1,'PhysicalLayer::getPacketLength()'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength()'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()']]], ['getpictureheight_726',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], ['getpromiscuousmode_727',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], ['getrangingresult_728',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], - ['getrssi_729',['getRSSI',['../class_s_x126x.html#afabefb1b214411198f3537e8afce898f',1,'SX126x::getRSSI()'],['../class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b',1,'PhysicalLayer::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()'],['../class_s_x1278.html#a260399b893988196771bc5a62d604822',1,'SX1278::getRSSI()'],['../class_s_x1272.html#acdf35ee105a327e0e6089615e6f9bb1a',1,'SX1272::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc',1,'CC1101::getRSSI()']]], + ['getrssi_729',['getRSSI',['../class_s_x1272.html#af5a7dee50a1a7d8261bc62bb869cda92',1,'SX1272::getRSSI()'],['../class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b',1,'PhysicalLayer::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()'],['../class_s_x1278.html#ab17357254073baeb7490c98faf10d991',1,'SX1278::getRSSI(bool packet, bool skipReceive=false)'],['../class_s_x1278.html#a0b1fe4d0b1acfa454d7bab59cdf319fe',1,'SX1278::getRSSI()'],['../class_s_x1272.html#a171656d12a9909bbb04fc81be86ec2a6',1,'SX1272::getRSSI()'],['../class_s_x126x.html#afabefb1b214411198f3537e8afce898f',1,'SX126x::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc',1,'CC1101::getRSSI()']]], ['getrst_730',['getRst',['../class_module.html#ad6cddbf3aebec9717a1a381dd81ad398',1,'Module']]], ['getsnr_731',['getSNR',['../class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca',1,'SX126x::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()'],['../class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f',1,'PhysicalLayer::getSNR()']]], ['getstatus_732',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]],