From aabfabeea7e1f986fc4376a4e1c0c440a00e5235 Mon Sep 17 00:00:00 2001 From: jgromes Date: Fri, 10 May 2024 19:46:33 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20=20@=20a643d?= =?UTF-8?q?0db7a14ec3c8f69186851521d6674e7d22d=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _l_r1110_8h_source.html | 8 +- _l_r1120_8h_source.html | 8 +- _l_r1121_8h_source.html | 2 +- _l_r11x0_8h_source.html | 146 ++++++++++++++++----------------- _r_f69_8h_source.html | 58 ++++++------- _s_x1231_8h_source.html | 4 +- _s_x1233_8h_source.html | 8 +- class_l_r1110-members.html | 22 ++--- class_l_r1110.html | 76 ++++++++--------- class_l_r1110.js | 2 +- class_l_r1120-members.html | 22 ++--- class_l_r1120.html | 76 ++++++++--------- class_l_r1120.js | 2 +- class_l_r1121-members.html | 22 ++--- class_l_r1121.html | 70 ++++++++-------- class_l_r11x0-members.html | 20 ++--- class_l_r11x0.html | 112 ++++++++++++------------- class_l_r11x0.js | 20 ++--- class_physical_layer.html | 28 +++---- class_r_f69-members.html | 28 +++---- class_r_f69.html | 162 ++++++++++++++++++------------------- class_r_f69.js | 28 +++---- class_s_x1231-members.html | 28 +++---- class_s_x1231.html | 88 ++++++++++---------- class_s_x1233-members.html | 28 +++---- class_s_x1233.html | 96 +++++++++++----------- class_s_x1233.js | 2 +- functions_c.html | 8 +- functions_func_c.html | 8 +- functions_func_g.html | 6 +- functions_func_r.html | 6 +- functions_func_s.html | 30 +++---- functions_g.html | 6 +- functions_r.html | 6 +- functions_s.html | 32 ++++---- navtreedata.js | 4 +- navtreeindex0.js | 12 +-- navtreeindex1.js | 24 +++--- navtreeindex2.js | 28 +++---- search/all_10.js | 18 ++--- search/all_2.js | 4 +- search/all_6.js | 4 +- search/all_f.js | 4 +- search/functions_2.js | 4 +- search/functions_6.js | 4 +- search/functions_e.js | 4 +- search/functions_f.js | 18 ++--- 47 files changed, 698 insertions(+), 698 deletions(-) diff --git a/_l_r1110_8h_source.html b/_l_r1110_8h_source.html index 13826b5d..e2c246ff 100644 --- a/_l_r1110_8h_source.html +++ b/_l_r1110_8h_source.html @@ -98,7 +98,7 @@ $(document).ready(function(){initNavTree('_l_r1110_8h_source.html',''); initResi
10 
15 class LR1110: public LR11x0 {
16  public:
-
21  LR1110(Module* mod);
+
21  LR1110(Module* mod); // cppcheck-suppress noExplicitConstructor
22 
23  // basic methods
24 
@@ -110,9 +110,9 @@ $(document).ready(function(){initNavTree('_l_r1110_8h_source.html',''); initResi
68 
69  // configuration methods
70 
-
77  int16_t setFrequency(float freq);
+
77  int16_t setFrequency(float freq) override;
78 
-
88  int16_t setFrequency(float freq, bool calibrate, float band = 4);
+
88  int16_t setFrequency(float freq, bool calibrate, float band = 4);
89 
90 #if !RADIOLIB_GODMODE
91  private:
@@ -125,9 +125,9 @@ $(document).ready(function(){initNavTree('_l_r1110_8h_source.html',''); initResi
98 #endif
Derived class for LR1110 modules.
Definition: LR1110.h:15
LR1110(Module *mod)
Default constructor.
Definition: LR1110.cpp:4
-
int16_t setFrequency(float freq)
Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will also perform calibr...
Definition: LR1110.cpp:38
int16_t begin(float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_LR11X0_LORA_SYNC_WORD_PRIVATE, int8_t power=10, uint16_t preambleLength=8, float tcxoVoltage=1.6)
Initialization method for LoRa modem.
Definition: LR1110.cpp:8
int16_t beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_LR11X0_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_LR11X0_LR_FHSS_CR_2_3, int8_t power=10, float tcxoVoltage=1.6)
Initialization method for LR-FHSS modem.
Definition: LR1110.cpp:28
+
int16_t setFrequency(float freq) override
Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will also perform calibr...
Definition: LR1110.cpp:38
int16_t beginGFSK(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=156.2, int8_t power=10, uint16_t preambleLength=16, float tcxoVoltage=1.6)
Initialization method for FSK modem.
Definition: LR1110.cpp:18
Base class for LR11x0 series. All derived classes for LR11x0 (e.g. LR1110 or LR1120) inherit from thi...
Definition: LR11x0.h:647
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:68
diff --git a/_l_r1120_8h_source.html b/_l_r1120_8h_source.html index 5dba4250..aabee2f4 100644 --- a/_l_r1120_8h_source.html +++ b/_l_r1120_8h_source.html @@ -98,7 +98,7 @@ $(document).ready(function(){initNavTree('_l_r1120_8h_source.html',''); initResi
10 
15 class LR1120: public LR11x0 {
16  public:
-
21  LR1120(Module* mod);
+
21  LR1120(Module* mod); // cppcheck-suppress noExplicitConstructor
22 
23  // basic methods
24 
@@ -110,9 +110,9 @@ $(document).ready(function(){initNavTree('_l_r1120_8h_source.html',''); initResi
68 
69  // configuration methods
70 
-
77  int16_t setFrequency(float freq);
+
77  int16_t setFrequency(float freq) override;
78 
-
89  int16_t setFrequency(float freq, bool calibrate, float band = 4);
+
89  int16_t setFrequency(float freq, bool calibrate, float band = 4);
90 
91 #if !RADIOLIB_GODMODE
92  private:
@@ -125,8 +125,8 @@ $(document).ready(function(){initNavTree('_l_r1120_8h_source.html',''); initResi
99 #endif
Derived class for LR1120 modules.
Definition: LR1120.h:15
int16_t begin(float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_LR11X0_LORA_SYNC_WORD_PRIVATE, int8_t power=10, uint16_t preambleLength=8, float tcxoVoltage=1.6)
Initialization method for LoRa modem.
Definition: LR1120.cpp:8
-
int16_t setFrequency(float freq)
Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400...
Definition: LR1120.cpp:38
int16_t beginGFSK(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=156.2, int8_t power=10, uint16_t preambleLength=16, float tcxoVoltage=1.6)
Initialization method for FSK modem.
Definition: LR1120.cpp:18
+
int16_t setFrequency(float freq) override
Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400...
Definition: LR1120.cpp:38
int16_t beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_LR11X0_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_LR11X0_LR_FHSS_CR_2_3, int8_t power=10, float tcxoVoltage=1.6)
Initialization method for LR-FHSS modem.
Definition: LR1120.cpp:28
LR1120(Module *mod)
Default constructor.
Definition: LR1120.cpp:4
Base class for LR11x0 series. All derived classes for LR11x0 (e.g. LR1110 or LR1120) inherit from thi...
Definition: LR11x0.h:647
diff --git a/_l_r1121_8h_source.html b/_l_r1121_8h_source.html index 74ae12a8..9c153c85 100644 --- a/_l_r1121_8h_source.html +++ b/_l_r1121_8h_source.html @@ -99,7 +99,7 @@ $(document).ready(function(){initNavTree('_l_r1121_8h_source.html',''); initResi
11 
16 class LR1121: public LR1120 {
17  public:
-
22  LR1121(Module* mod);
+
22  LR1121(Module* mod); // cppcheck-suppress noExplicitConstructor
23 
24  // TODO this is where overrides to disable GNSS+WiFi scanning methods on LR1121
25  // will be put once those are implemented
diff --git a/_l_r11x0_8h_source.html b/_l_r11x0_8h_source.html index 76c50f3b..5aeb2d6f 100644 --- a/_l_r11x0_8h_source.html +++ b/_l_r11x0_8h_source.html @@ -693,7 +693,7 @@ $(document).ready(function(){initNavTree('_l_r11x0_8h_source.html',''); initResi
652  using PhysicalLayer::startTransmit;
653  using PhysicalLayer::readData;
654 
-
659  LR11x0(Module* mod);
+
659  LR11x0(Module* mod); // cppcheck-suppress noExplicitConstructor
660 
664  bool XTAL;
665 
@@ -729,21 +729,21 @@ $(document).ready(function(){initNavTree('_l_r11x0_8h_source.html',''); initResi
786 
790  void clearIrqAction();
791 
-
796  void setPacketReceivedAction(void (*func)(void));
+
796  void setPacketReceivedAction(void (*func)(void)) override;
797 
-
801  void clearPacketReceivedAction();
+
801  void clearPacketReceivedAction() override;
802 
-
807  void setPacketSentAction(void (*func)(void));
+
807  void setPacketSentAction(void (*func)(void)) override;
808 
-
812  void clearPacketSentAction();
+
812  void clearPacketSentAction() override;
813 
822  int16_t startTransmit(uint8_t* data, size_t len, uint8_t addr = 0) override;
823 
828  int16_t finishTransmit() override;
829 
-
836  int16_t startReceive();
+
836  int16_t startReceive() override;
837 
-
850  int16_t startReceive(uint32_t timeout, uint32_t irqFlags = RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask = 0, size_t len = 0);
+
850  int16_t startReceive(uint32_t timeout, uint32_t irqFlags = RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask = 0, size_t len = 0);
851 
856  uint32_t getIrqStatus();
857 
@@ -757,9 +757,9 @@ $(document).ready(function(){initNavTree('_l_r11x0_8h_source.html',''); initResi
890 
891  // configuration methods
892 
-
898  int16_t setOutputPower(int8_t power);
+
898  int16_t setOutputPower(int8_t power) override;
899 
-
907  int16_t setOutputPower(int8_t power, bool forceHighPower);
+
907  int16_t setOutputPower(int8_t power, bool forceHighPower);
908 
916  int16_t checkOutputPower(int8_t power, int8_t* clipped) override;
917 
@@ -773,7 +773,7 @@ $(document).ready(function(){initNavTree('_l_r11x0_8h_source.html',''); initResi
951 
957  int16_t setSyncWord(uint32_t syncWord);
958 
-
964  int16_t setBitRate(float br);
+
964  int16_t setBitRate(float br) override;
965 
971  int16_t setFrequencyDeviation(float freqDev) override;
972 
@@ -811,9 +811,9 @@ $(document).ready(function(){initNavTree('_l_r11x0_8h_source.html',''); initResi
1098 
1104  int16_t invertIQ(bool enable) override;
1105 
-
1110  float getRSSI();
+
1110  float getRSSI() override;
1111 
-
1116  float getSNR();
+
1116  float getSNR() override;
1117 
1122  float getFrequencyError();
1123 
@@ -829,7 +829,7 @@ $(document).ready(function(){initNavTree('_l_r11x0_8h_source.html',''); initResi
1159 
1164  bool isRxTimeout() override;
1165 
-
1170  uint8_t randomByte();
+
1170  uint8_t randomByte() override;
1171 
1177  int16_t implicitHeader(size_t len);
1178 
@@ -854,7 +854,7 @@ $(document).ready(function(){initNavTree('_l_r11x0_8h_source.html',''); initResi
1264 #if !RADIOLIB_GODMODE && !RADIOLIB_LOW_LEVEL
1265  protected:
1266 #endif
-
1267  Module* getMod();
+
1267  Module* getMod() override;
1268 
1269  // LR11x0 SPI command implementations
1270  int16_t writeRegMem32(uint32_t addr, uint32_t* data, size_t len);
@@ -1000,7 +1000,7 @@ $(document).ready(function(){initNavTree('_l_r11x0_8h_source.html',''); initResi
1410 #if !RADIOLIB_GODMODE
1411  protected:
1412 #endif
-
1413  uint8_t chipType;
+
1413  uint8_t chipType = 0;
1414 
1415 #if !RADIOLIB_GODMODE
1416  private:
@@ -1047,74 +1047,74 @@ $(document).ready(function(){initNavTree('_l_r11x0_8h_source.html',''); initResi
1457 
1458 #endif
Base class for LR11x0 series. All derived classes for LR11x0 (e.g. LR1110 or LR1120) inherit from thi...
Definition: LR11x0.h:647
-
uint32_t getIrqStatus()
Reads the current IRQ status.
Definition: LR11x0.cpp:481
-
int16_t setBitRate(float br)
Sets GFSK bit rate. Allowed values range from 0.6 to 300.0 kbps.
Definition: LR11x0.cpp:742
-
int16_t setDataRate(DataRate_t dr) override
Set data.
Definition: LR11x0.cpp:1019
-
void setPacketReceivedAction(void(*func)(void))
Sets interrupt service routine to call when a packet is received.
Definition: LR11x0.cpp:344
-
int16_t getChannelScanResult() override
Read the channel scan result.
Definition: LR11x0.cpp:569
-
float getDataRate() const
Gets effective data rate for the last transmitted packet. The value is calculated only for payload by...
Definition: LR11x0.cpp:1355
-
int16_t setOutputPower(int8_t power)
Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (lo...
Definition: LR11x0.cpp:592
-
int16_t setRxBandwidth(float rxBw)
Sets GFSK receiver bandwidth. Allowed values are 4.8, 5.8, 7.3, 9.7, 11.7, 14.6, 19....
Definition: LR11x0.cpp:779
-
RadioLibTime_t calculateRxTimeout(RadioLibTime_t timeoutUs) override
Calculate the timeout value for this specific module / series (in number of symbols or units of time)
Definition: LR11x0.cpp:1322
+
float getSNR() override
Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem.
Definition: LR11x0.cpp:1220
+
uint32_t getIrqStatus()
Reads the current IRQ status.
Definition: LR11x0.cpp:484
+
int16_t setDataRate(DataRate_t dr) override
Set data.
Definition: LR11x0.cpp:1022
+
int16_t getChannelScanResult() override
Read the channel scan result.
Definition: LR11x0.cpp:572
+
float getDataRate() const
Gets effective data rate for the last transmitted packet. The value is calculated only for payload by...
Definition: LR11x0.cpp:1358
+
int16_t setRxBandwidth(float rxBw)
Sets GFSK receiver bandwidth. Allowed values are 4.8, 5.8, 7.3, 9.7, 11.7, 14.6, 19....
Definition: LR11x0.cpp:782
+
RadioLibTime_t calculateRxTimeout(RadioLibTime_t timeoutUs) override
Calculate the timeout value for this specific module / series (in number of symbols or units of time)
Definition: LR11x0.cpp:1325
int16_t reset()
Reset method. Will reset the chip to the default state using RST pin.
Definition: LR11x0.cpp:110
-
int16_t startWifiScan(char wifiType, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)
Start passive WiFi scan. BUSY pin will be de-activated when the scan is finished.
Definition: LR11x0.cpp:1380
+
int16_t startWifiScan(char wifiType, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)
Start passive WiFi scan. BUSY pin will be de-activated when the scan is finished.
Definition: LR11x0.cpp:1383
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
-
int16_t explicitHeader()
Set explicit header mode for future reception/transmission.
Definition: LR11x0.cpp:1351
+
int16_t explicitHeader()
Set explicit header mode for future reception/transmission.
Definition: LR11x0.cpp:1354
bool XTAL
Whether the module has an XTAL (true) or TCXO (false). Defaults to false.
Definition: LR11x0.h:664
int16_t beginLRFHSS(uint8_t bw, uint8_t cr, int8_t power, float tcxoVoltage)
Initialization method for LR-FHSS modem.
Definition: LR11x0.cpp:91
int16_t begin(float bw, uint8_t sf, uint8_t cr, uint8_t syncWord, int8_t power, uint16_t preambleLength, float tcxoVoltage)
Initialization method for LoRa modem.
Definition: LR11x0.cpp:16
-
int16_t getWifiScanResult(LR11x0WifiResult_t *result, uint8_t index, bool brief=false)
Retrieve passive WiFi scan result.
Definition: LR11x0.cpp:1439
-
float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. Only available for LoRa o...
Definition: LR11x0.cpp:1200
-
void setIrqAction(void(*func)(void))
Sets interrupt service routine to call when IRQ1 activates.
Definition: LR11x0.cpp:336
+
int16_t getWifiScanResult(LR11x0WifiResult_t *result, uint8_t index, bool brief=false)
Retrieve passive WiFi scan result.
Definition: LR11x0.cpp:1442
+
void setIrqAction(void(*func)(void))
Sets interrupt service routine to call when IRQ1 activates.
Definition: LR11x0.cpp:338
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-
int16_t checkDataRate(DataRate_t dr) override
Check the data rate can be configured by this module.
Definition: LR11x0.cpp:1049
-
int16_t startChannelScan() override
Interrupt-driven channel activity detection method. IRQ1 will be activated when LoRa preamble is dete...
Definition: LR11x0.cpp:536
-
int16_t setCRC(uint8_t len, uint32_t initial=0x00001D0FUL, uint32_t polynomial=0x00001021UL, bool inverted=true)
Sets CRC configuration.
Definition: LR11x0.cpp:1143
+
int16_t checkDataRate(DataRate_t dr) override
Check the data rate can be configured by this module.
Definition: LR11x0.cpp:1052
+
int16_t startChannelScan() override
Interrupt-driven channel activity detection method. IRQ1 will be activated when LoRa preamble is dete...
Definition: LR11x0.cpp:539
+
int16_t setCRC(uint8_t len, uint32_t initial=0x00001D0FUL, uint32_t polynomial=0x00001021UL, bool inverted=true)
Sets CRC configuration.
Definition: LR11x0.cpp:1146
LR11x0(Module *mod)
Default constructor.
Definition: LR11x0.cpp:11
-
int16_t setCodingRate(uint8_t cr, bool longInterleave=false)
Sets LoRa coding rate denominator. Allowed values range from 5 to 8.
Definition: LR11x0.cpp:693
-
int16_t setDataShaping(uint8_t sh) override
Sets time-bandwidth product of Gaussian filter applied for shaping. Allowed values are RADIOLIB_SHAPI...
Definition: LR11x0.cpp:948
-
int16_t fixedPacketLengthMode(uint8_t len=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)
Set modem in fixed packet length mode. Available in GFSK mode only.
Definition: LR11x0.cpp:986
-
int16_t getWifiScanResultsCount(uint8_t *count)
Get number of WiFi scan results after the scan is finished.
Definition: LR11x0.cpp:1425
-
int16_t setNodeAddress(uint8_t nodeAddr)
Sets node address. Calling this method will also enable address filtering for node address only.
Definition: LR11x0.cpp:897
-
int16_t setSyncBits(uint8_t *syncWord, uint8_t bitsLen)
Sets GFSK sync word in the form of array of up to 8 bytes.
Definition: LR11x0.cpp:876
-
void clearPacketReceivedAction()
Clears interrupt service routine to call when a packet is received.
Definition: LR11x0.cpp:348
-
int16_t checkOutputPower(int8_t power, int8_t *clipped) override
Check if output power is configurable. This method is needed for compatibility with PhysicalLayer::ch...
Definition: LR11x0.cpp:615
-
int16_t scanChannel() override
Performs scan for LoRa transmission in the current channel. Detects both preamble and payload.
Definition: LR11x0.cpp:278
-
int16_t standby() override
Sets the module to standby mode (overload for PhysicalLayer compatibility, uses 13 MHz RC oscillator)...
Definition: LR11x0.cpp:296
-
int16_t setSyncWord(uint32_t syncWord)
Sets LoRa or LR-FHSS sync word.
Definition: LR11x0.cpp:726
-
void setPacketSentAction(void(*func)(void))
Sets interrupt service routine to call when a packet is sent.
Definition: LR11x0.cpp:352
-
int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Available in GFSK mode only. Serves only as alias for PhysicalLayer compa...
Definition: LR11x0.cpp:982
-
int16_t setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeed=0x13A)
Sets LR-FHSS configuration.
Definition: LR11x0.cpp:1359
-
bool isRxTimeout() override
Check whether the IRQ bit for RxTimeout is set.
Definition: LR11x0.cpp:1335
+
int16_t setCodingRate(uint8_t cr, bool longInterleave=false)
Sets LoRa coding rate denominator. Allowed values range from 5 to 8.
Definition: LR11x0.cpp:696
+
int16_t setDataShaping(uint8_t sh) override
Sets time-bandwidth product of Gaussian filter applied for shaping. Allowed values are RADIOLIB_SHAPI...
Definition: LR11x0.cpp:951
+
int16_t setOutputPower(int8_t power) override
Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (lo...
Definition: LR11x0.cpp:595
+
int16_t fixedPacketLengthMode(uint8_t len=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)
Set modem in fixed packet length mode. Available in GFSK mode only.
Definition: LR11x0.cpp:989
+
int16_t getWifiScanResultsCount(uint8_t *count)
Get number of WiFi scan results after the scan is finished.
Definition: LR11x0.cpp:1428
+
int16_t setNodeAddress(uint8_t nodeAddr)
Sets node address. Calling this method will also enable address filtering for node address only.
Definition: LR11x0.cpp:900
+
int16_t setSyncBits(uint8_t *syncWord, uint8_t bitsLen)
Sets GFSK sync word in the form of array of up to 8 bytes.
Definition: LR11x0.cpp:879
+
int16_t checkOutputPower(int8_t power, int8_t *clipped) override
Check if output power is configurable. This method is needed for compatibility with PhysicalLayer::ch...
Definition: LR11x0.cpp:618
+
int16_t scanChannel() override
Performs scan for LoRa transmission in the current channel. Detects both preamble and payload.
Definition: LR11x0.cpp:280
+
float getRSSI() override
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. Only available for LoRa o...
Definition: LR11x0.cpp:1203
+
int16_t standby() override
Sets the module to standby mode (overload for PhysicalLayer compatibility, uses 13 MHz RC oscillator)...
Definition: LR11x0.cpp:298
+
int16_t setSyncWord(uint32_t syncWord)
Sets LoRa or LR-FHSS sync word.
Definition: LR11x0.cpp:729
+
uint8_t randomByte() override
Get one truly random byte from RSSI noise.
Definition: LR11x0.cpp:1344
+
int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Available in GFSK mode only. Serves only as alias for PhysicalLayer compa...
Definition: LR11x0.cpp:985
+
int16_t setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeed=0x13A)
Sets LR-FHSS configuration.
Definition: LR11x0.cpp:1362
+
bool isRxTimeout() override
Check whether the IRQ bit for RxTimeout is set.
Definition: LR11x0.cpp:1338
+
void setPacketSentAction(void(*func)(void)) override
Sets interrupt service routine to call when a packet is sent.
Definition: LR11x0.cpp:354
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
-
int16_t setTCXO(float voltage, uint32_t delay=5000)
Sets TCXO (Temperature Compensated Crystal Oscillator) configuration.
Definition: LR11x0.cpp:1088
-
int16_t setPreambleLength(size_t preambleLength) override
Sets preamble length for LoRa or GFSK modem. Allowed values range from 1 to 65535.
Definition: LR11x0.cpp:1071
-
uint8_t randomByte()
Get one truly random byte from RSSI noise.
Definition: LR11x0.cpp:1341
-
int16_t startReceive()
Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalL...
Definition: LR11x0.cpp:434
-
int16_t finishTransmit() override
Clean up after transmission is done.
Definition: LR11x0.cpp:426
-
void clearIrqAction()
Clears interrupt service routine to call when IRQ1 activates.
Definition: LR11x0.cpp:340
+
void clearPacketSentAction() override
Clears interrupt service routine to call when a packet is sent.
Definition: LR11x0.cpp:358
+
void clearPacketReceivedAction() override
Clears interrupt service routine to call when a packet is received.
Definition: LR11x0.cpp:350
+
int16_t setTCXO(float voltage, uint32_t delay=5000)
Sets TCXO (Temperature Compensated Crystal Oscillator) configuration.
Definition: LR11x0.cpp:1091
+
int16_t setPreambleLength(size_t preambleLength) override
Sets preamble length for LoRa or GFSK modem. Allowed values range from 1 to 65535.
Definition: LR11x0.cpp:1074
+
int16_t startReceive() override
Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalL...
Definition: LR11x0.cpp:437
+
int16_t finishTransmit() override
Clean up after transmission is done.
Definition: LR11x0.cpp:429
+
void clearIrqAction()
Clears interrupt service routine to call when IRQ1 activates.
Definition: LR11x0.cpp:342
+
int16_t setBitRate(float br) override
Sets GFSK bit rate. Allowed values range from 0.6 to 300.0 kbps.
Definition: LR11x0.cpp:745
int16_t beginGFSK(float br, float freqDev, float rxBw, int8_t power, uint16_t preambleLength, float tcxoVoltage)
Initialization method for FSK modem.
Definition: LR11x0.cpp:50
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
-
int16_t implicitHeader(size_t len)
Set implicit header mode for future reception/transmission.
Definition: LR11x0.cpp:1347
-
RadioLibTime_t getTimeOnAir(size_t len) override
Get expected time-on-air for a given size of payload.
Definition: LR11x0.cpp:1254
-
int16_t setBandwidth(float bw)
Sets LoRa bandwidth. Allowed values are 62.5, 125.0, 250.0 and 500.0 kHz.
Definition: LR11x0.cpp:636
-
int16_t setFrequencyDeviation(float freqDev) override
Sets GFSK frequency deviation. Allowed values range from 0.0 to 200.0 kHz.
Definition: LR11x0.cpp:759
-
size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: LR11x0.cpp:1235
-
void clearPacketSentAction()
Clears interrupt service routine to call when a packet is sent.
Definition: LR11x0.cpp:356
-
float getSNR()
Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem.
Definition: LR11x0.cpp:1217
-
void clearWiFiScanAction()
Clears interrupt service routine to call when a WiFi scan is completed.
Definition: LR11x0.cpp:1421
-
float getFrequencyError()
Gets frequency error of the latest received packet.
Definition: LR11x0.cpp:1230
-
int16_t variablePacketLengthMode(uint8_t maxLen=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)
Set modem in variable packet length mode. Available in GFSK mode only.
Definition: LR11x0.cpp:990
-
int16_t setWhitening(bool enabled, uint16_t initial=0x01FF)
Sets GFSK whitening parameters.
Definition: LR11x0.cpp:994
-
int16_t wifiScan(uint8_t wifiType, uint8_t *count, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)
Blocking WiFi scan method. Performs a full passive WiFi scan. This method may block for several secon...
Definition: LR11x0.cpp:1515
-
int16_t setSpreadingFactor(uint8_t sf, bool legacy=false)
Sets LoRa spreading factor. Allowed values range from 5 to 12.
Definition: LR11x0.cpp:672
-
int16_t transmitDirect(uint32_t frf=0) override
Starts direct mode transmission.
Definition: LR11x0.cpp:255
-
int16_t receiveDirect() override
Starts direct mode reception. Only implemented for PhysicalLayer compatibility, as SX126x series does...
Definition: LR11x0.cpp:270
-
int16_t disableAddressFiltering()
Disables address filtering. Calling this method will also erase previously set addresses.
Definition: LR11x0.cpp:934
-
int16_t setBroadcastAddress(uint8_t broadAddr)
Sets broadcast address. Calling this method will also enable address filtering for node and broadcast...
Definition: LR11x0.cpp:916
-
int16_t irqRxDoneRxTimeout(uint32_t &irqFlags, uint32_t &irqMask) override
Create the flags that make up RxDone and RxTimeout used for receiving downlinks.
Definition: LR11x0.cpp:1329
-
int16_t invertIQ(bool enable) override
Enable/disable inversion of the I and Q signals.
Definition: LR11x0.cpp:1187
-
void setWiFiScanAction(void(*func)(void))
Sets interrupt service routine to call when a WiFi scan is completed.
Definition: LR11x0.cpp:1417
+
int16_t implicitHeader(size_t len)
Set implicit header mode for future reception/transmission.
Definition: LR11x0.cpp:1350
+
RadioLibTime_t getTimeOnAir(size_t len) override
Get expected time-on-air for a given size of payload.
Definition: LR11x0.cpp:1257
+
int16_t setBandwidth(float bw)
Sets LoRa bandwidth. Allowed values are 62.5, 125.0, 250.0 and 500.0 kHz.
Definition: LR11x0.cpp:639
+
int16_t setFrequencyDeviation(float freqDev) override
Sets GFSK frequency deviation. Allowed values range from 0.0 to 200.0 kHz.
Definition: LR11x0.cpp:762
+
size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: LR11x0.cpp:1238
+
void setPacketReceivedAction(void(*func)(void)) override
Sets interrupt service routine to call when a packet is received.
Definition: LR11x0.cpp:346
+
void clearWiFiScanAction()
Clears interrupt service routine to call when a WiFi scan is completed.
Definition: LR11x0.cpp:1424
+
float getFrequencyError()
Gets frequency error of the latest received packet.
Definition: LR11x0.cpp:1233
+
int16_t variablePacketLengthMode(uint8_t maxLen=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)
Set modem in variable packet length mode. Available in GFSK mode only.
Definition: LR11x0.cpp:993
+
int16_t setWhitening(bool enabled, uint16_t initial=0x01FF)
Sets GFSK whitening parameters.
Definition: LR11x0.cpp:997
+
int16_t wifiScan(uint8_t wifiType, uint8_t *count, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)
Blocking WiFi scan method. Performs a full passive WiFi scan. This method may block for several secon...
Definition: LR11x0.cpp:1518
+
int16_t setSpreadingFactor(uint8_t sf, bool legacy=false)
Sets LoRa spreading factor. Allowed values range from 5 to 12.
Definition: LR11x0.cpp:675
+
int16_t transmitDirect(uint32_t frf=0) override
Starts direct mode transmission.
Definition: LR11x0.cpp:257
+
int16_t receiveDirect() override
Starts direct mode reception. Only implemented for PhysicalLayer compatibility, as SX126x series does...
Definition: LR11x0.cpp:272
+
int16_t disableAddressFiltering()
Disables address filtering. Calling this method will also erase previously set addresses.
Definition: LR11x0.cpp:937
+
int16_t setBroadcastAddress(uint8_t broadAddr)
Sets broadcast address. Calling this method will also enable address filtering for node and broadcast...
Definition: LR11x0.cpp:919
+
int16_t irqRxDoneRxTimeout(uint32_t &irqFlags, uint32_t &irqMask) override
Create the flags that make up RxDone and RxTimeout used for receiving downlinks.
Definition: LR11x0.cpp:1332
+
int16_t invertIQ(bool enable) override
Enable/disable inversion of the I and Q signals.
Definition: LR11x0.cpp:1190
+
void setWiFiScanAction(void(*func)(void))
Sets interrupt service routine to call when a WiFi scan is completed.
Definition: LR11x0.cpp:1420
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:68
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:54
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
diff --git a/_r_f69_8h_source.html b/_r_f69_8h_source.html index 9e3a5cac..33107131 100644 --- a/_r_f69_8h_source.html +++ b/_r_f69_8h_source.html @@ -568,7 +568,7 @@ $(document).ready(function(){initNavTree('_r_f69_8h_source.html',''); initResiza
484  using PhysicalLayer::startTransmit;
485  using PhysicalLayer::readData;
486 
-
491  RF69(Module* module);
+
491  RF69(Module* module); // cppcheck-suppress noExplicitConstructor
492 
493  // basic methods
494 
@@ -586,7 +586,7 @@ $(document).ready(function(){initNavTree('_r_f69_8h_source.html',''); initResiza
527 
535  int16_t receive(uint8_t* data, size_t len) override;
536 
-
541  int16_t sleep();
+
541  int16_t sleep() override;
542 
547  int16_t standby() override;
548 
@@ -616,13 +616,13 @@ $(document).ready(function(){initNavTree('_r_f69_8h_source.html',''); initResiza
612 
616  void clearDio1Action();
617 
-
622  void setPacketReceivedAction(void (*func)(void));
+
622  void setPacketReceivedAction(void (*func)(void)) override;
623 
-
627  void clearPacketReceivedAction();
+
627  void clearPacketReceivedAction() override;
628 
-
633  void setPacketSentAction(void (*func)(void));
+
633  void setPacketSentAction(void (*func)(void)) override;
634 
-
638  void clearPacketSentAction();
+
638  void clearPacketSentAction() override;
639 
644  void setFifoEmptyAction(void (*func)(void));
645 
@@ -640,19 +640,19 @@ $(document).ready(function(){initNavTree('_r_f69_8h_source.html',''); initResiza
689 
694  int16_t finishTransmit() override;
695 
-
700  int16_t startReceive();
+
700  int16_t startReceive() override;
701 
-
710  int16_t startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len);
+
710  int16_t startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override;
711 
720  int16_t readData(uint8_t* data, size_t len) override;
721 
722  // configuration methods
723 
-
730  int16_t setFrequency(float freq);
+
730  int16_t setFrequency(float freq) override;
731 
737  int16_t getFrequency(float *freq);
738 
-
744  int16_t setBitRate(float br);
+
744  int16_t setBitRate(float br) override;
745 
752  int16_t setRxBandwidth(float rxBw);
753 
@@ -710,7 +710,7 @@ $(document).ready(function(){initNavTree('_r_f69_8h_source.html',''); initResiza
935 
941  int16_t setLnaTestBoost(bool value);
942 
-
947  float getRSSI();
+
947  float getRSSI() override;
948 
954  int16_t setRSSIThreshold(float dbm);
955 
@@ -718,22 +718,22 @@ $(document).ready(function(){initNavTree('_r_f69_8h_source.html',''); initResiza
958 
960  void setRfSwitchTable(const uint32_t (&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[]);
961 
-
966  uint8_t randomByte();
+
966  uint8_t randomByte() override;
967 
972  int16_t getChipVersion();
973 
974  #if !RADIOLIB_EXCLUDE_DIRECT_RECEIVE
-
979  void setDirectAction(void (*func)(void));
+
979  void setDirectAction(void (*func)(void)) override;
980 
-
985  void readBit(uint32_t pin);
+
985  void readBit(uint32_t pin) override;
986  #endif
987 
-
994  int16_t setDIOMapping(uint32_t pin, uint32_t value);
+
994  int16_t setDIOMapping(uint32_t pin, uint32_t value) override;
995 
996 #if !RADIOLIB_GODMODE && !RADIOLIB_LOW_LEVEL
997  protected:
998 #endif
-
999  Module* getMod();
+
999  Module* getMod() override;
1000 
1001 #if !RADIOLIB_GODMODE
1002  protected:
@@ -783,71 +783,71 @@ $(document).ready(function(){initNavTree('_r_f69_8h_source.html',''); initResiza
Control class for RF69 module. Also serves as base class for SX1231.
Definition: RF69.h:479
int16_t getTemperature()
Measures temperature.
Definition: RF69.cpp:764
int16_t getChipVersion()
Read version SPI register. Should return RF69_CHIP_VERSION (0x24) if SX127x is connected and working.
Definition: RF69.cpp:985
-
int16_t setDIOMapping(uint32_t pin, uint32_t value)
Configure DIO pin mapping to get a given signal on a DIO pin (if available).
Definition: RF69.cpp:969
void clearFifoEmptyAction()
Clears interrupt service routine to call when FIFO is empty.
Definition: RF69.cpp:320
int16_t fixedPacketLengthMode(uint8_t len=RADIOLIB_RF69_MAX_PACKET_LENGTH)
Set modem in fixed packet length mode.
Definition: RF69.cpp:794
int16_t disableAES()
Disables AES encryption.
Definition: RF69.cpp:230
void setFifoFullAction(void(*func)(void))
Set interrupt service routine function to call when FIFO is full.
Definition: RF69.cpp:324
int16_t setBroadcastAddress(uint8_t broadAddr)
Sets broadcast address. Calling this method will also enable address filtering for node and broadcast...
Definition: RF69.cpp:738
int16_t enableAES()
Enables AES encryption.
Definition: RF69.cpp:226
-
uint8_t randomByte()
Get one truly random byte from RSSI noise.
Definition: RF69.cpp:940
int16_t standby() override
Sets the module to standby mode.
Definition: RF69.cpp:155
int16_t setOokThresholdType(uint8_t type)
Selects the type of threshold in the OOK data slicer.
Definition: RF69.cpp:505
int16_t transmitDirect(uint32_t frf=0) override
Starts direct mode transmission.
Definition: RF69.cpp:168
int16_t getFrequency(float *freq)
Gets carrier frequency.
Definition: RF69.cpp:541
int16_t setSyncWord(uint8_t *syncWord, size_t len, uint8_t maxErrBits=0)
Sets sync word. Up to 8 bytes can be set as sync word.
Definition: RF69.cpp:691
-
void setPacketSentAction(void(*func)(void))
Sets interrupt service routine to call when a packet is sent.
Definition: RF69.cpp:301
int16_t getFrequencyDeviation(float *freqDev)
Gets frequency deviation.
Definition: RF69.cpp:629
int16_t setOokFixedThreshold(uint8_t value)
Fixed threshold for the Data Slicer in OOK mode or floor threshold for the Data Slicer in OOK when Pe...
Definition: RF69.cpp:512
+
void clearPacketReceivedAction() override
Clears interrupt service routine to call when a packet is received.
Definition: RF69.cpp:297
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
-
void clearPacketSentAction()
Clears interrupt service routine to call when a packet is sent.
Definition: RF69.cpp:305
+
int16_t startReceive() override
Interrupt-driven receive method. GDO0 will be activated when full packet is received.
Definition: RF69.cpp:234
int16_t finishTransmit() override
Clean up after transmission is done.
Definition: RF69.cpp:441
int16_t disableSyncWordFiltering()
Disable preamble and sync word filtering and generation.
Definition: RF69.cpp:807
int16_t setDataShaping(uint8_t sh) override
Sets Gaussian filter bandwidth-time product that will be used for data shaping. Allowed values are RA...
Definition: RF69.cpp:876
int16_t setOokPeakThresholdDecrement(uint8_t value)
Period of decrement of the RSSI threshold in the OOK demodulator.
Definition: RF69.cpp:516
int16_t setOOK(bool enable)
Enables/disables OOK modulation instead of FSK. Note: This function calls setRxBandwidth again,...
Definition: RF69.cpp:486
-
int16_t sleep()
Sets the module to sleep mode.
Definition: RF69.cpp:147
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
int16_t disableAddressFiltering()
Disables address filtering. Calling this method will also erase previously set addresses.
Definition: RF69.cpp:747
+
void readBit(uint32_t pin) override
Function to read and process data bit in direct reception mode.
Definition: RF69.cpp:964
int16_t begin(float freq=RADIOLIB_RF69_DEFAULT_FREQ, float br=RADIOLIB_RF69_DEFAULT_BR, float freqDev=RADIOLIB_RF69_DEFAULT_FREQDEV, float rxBw=RADIOLIB_RF69_DEFAULT_RXBW, int8_t pwr=RADIOLIB_RF69_DEFAULT_POWER, uint8_t preambleLen=RADIOLIB_RF69_DEFAULT_PREAMBLELEN)
Initialization method.
Definition: RF69.cpp:9
int16_t enableSyncWordFiltering(uint8_t maxErrBits=0)
Enable sync word filtering and generation.
Definition: RF69.cpp:802
int16_t packetMode()
Stops direct mode. It is required to call this method to switch from direct transmissions to packet-b...
Definition: RF69.cpp:218
int16_t setOutputPower(int8_t pwr, bool highPower=false)
Sets output power. Allowed values range from -18 to 13 dBm for low power modules (RF69C/CW) or -2 to ...
Definition: RF69.cpp:653
+
int16_t setDIOMapping(uint32_t pin, uint32_t value) override
Configure DIO pin mapping to get a given signal on a DIO pin (if available).
Definition: RF69.cpp:969
int16_t setRxBandwidth(float rxBw)
Sets receiver bandwidth. Allowed values are 2.6, 3.1, 3.9, 5.2, 6.3, 7.8, 10.4, 12....
Definition: RF69.cpp:578
+
void setPacketReceivedAction(void(*func)(void)) override
Sets interrupt service routine to call when a packet is received.
Definition: RF69.cpp:293
void setFifoEmptyAction(void(*func)(void))
Set interrupt service routine function to call when FIFO is empty.
Definition: RF69.cpp:309
int16_t setPreambleLength(uint8_t preambleLen)
Sets preamble length.
Definition: RF69.cpp:717
int16_t enableContinuousModeBitSync()
Enable Bit synchronization in continuous mode.
Definition: RF69.cpp:812
-
void setDirectAction(void(*func)(void))
Set interrupt service routine function to call when data bit is received in direct mode.
Definition: RF69.cpp:960
size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: RF69.cpp:781
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
void clearDio0Action()
Clears interrupt service routine to call when DIO0 activates.
Definition: RF69.cpp:274
+
void setPacketSentAction(void(*func)(void)) override
Sets interrupt service routine to call when a packet is sent.
Definition: RF69.cpp:301
int16_t disableContinuousModeBitSync()
Disable Bit synchronization in continuous mode.
Definition: RF69.cpp:821
+
void setDirectAction(void(*func)(void)) override
Set interrupt service routine function to call when data bit is received in direct mode.
Definition: RF69.cpp:960
void setDio0Action(void(*func)(void))
Sets interrupt service routine to call when DIO0 activates.
Definition: RF69.cpp:270
int16_t setLnaTestBoost(bool value)
Enable/disable LNA Boost mode (disabled by default).
Definition: RF69.cpp:914
+
int16_t setBitRate(float br) override
Sets bit rate. Allowed values range from 0.5 to 300.0 kbps.
Definition: RF69.cpp:556
bool fifoGet(volatile uint8_t *data, int totalLen, volatile int *rcvLen)
Set interrupt service routine function to call when FIFO is sufficiently full to read.
Definition: RF69.cpp:361
void setDio1Action(void(*func)(void))
Sets interrupt service routine to call when DIO1 activates.
Definition: RF69.cpp:278
+
int16_t setFrequency(float freq) override
Sets carrier frequency. Allowed values are in bands 290.0 to 340.0 MHz, 431.0 to 510....
Definition: RF69.cpp:520
int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Allowed values are RADIOLIB_ENCODING_NRZ, RADIOLIB_ENCODING_MANCHESTER an...
Definition: RF69.cpp:896
-
int16_t setFrequency(float freq)
Sets carrier frequency. Allowed values are in bands 290.0 to 340.0 MHz, 431.0 to 510....
Definition: RF69.cpp:520
bool fifoAdd(uint8_t *data, int totalLen, int *remLen)
Set interrupt service routine function to call when FIFO is empty.
Definition: RF69.cpp:338
-
void readBit(uint32_t pin)
Function to read and process data bit in direct reception mode.
Definition: RF69.cpp:964
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
int16_t setNodeAddress(uint8_t nodeAddr)
Sets node address. Calling this method will also enable address filtering for node address only.
Definition: RF69.cpp:729
int16_t receiveDirect() override
Starts direct mode reception.
Definition: RF69.cpp:189
void setAESKey(uint8_t *key)
Sets AES key.
Definition: RF69.cpp:222
int16_t setCrcFiltering(bool crcOn=true)
Enable CRC filtering and generation.
Definition: RF69.cpp:830
-
void clearPacketReceivedAction()
Clears interrupt service routine to call when a packet is received.
Definition: RF69.cpp:297
void setRfSwitchPins(uint32_t rxEn, uint32_t txEn)
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: RF69.cpp:932
void setAmbientTemperature(int16_t tempAmbient)
Sets ambient temperature. Required to correct values from on-board temperature sensor.
Definition: RF69.cpp:760
-
float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: RF69.cpp:922
-
void setPacketReceivedAction(void(*func)(void))
Sets interrupt service routine to call when a packet is received.
Definition: RF69.cpp:293
-
int16_t setBitRate(float br)
Sets bit rate. Allowed values range from 0.5 to 300.0 kbps.
Definition: RF69.cpp:556
+
uint8_t randomByte() override
Get one truly random byte from RSSI noise.
Definition: RF69.cpp:940
+
void clearPacketSentAction() override
Clears interrupt service routine to call when a packet is sent.
Definition: RF69.cpp:305
int16_t setFrequencyDeviation(float freqDev) override
Sets frequency deviation.
Definition: RF69.cpp:606
void clearDio1Action()
Clears interrupt service routine to call when DIO1 activates.
Definition: RF69.cpp:286
+
int16_t sleep() override
Sets the module to sleep mode.
Definition: RF69.cpp:147
int16_t setPromiscuousMode(bool enable=true)
Set modem in "sniff" mode: no packet filtering (e.g., no preamble, sync word, address,...
Definition: RF69.cpp:838
void clearFifoFullAction()
Clears interrupt service routine to call when FIFO is full.
Definition: RF69.cpp:333
+
float getRSSI() override
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: RF69.cpp:922
int16_t variablePacketLengthMode(uint8_t maxLen=RADIOLIB_RF69_MAX_PACKET_LENGTH)
Set modem in variable packet length mode.
Definition: RF69.cpp:798
void reset()
Reset method. Will reset the chip to the default state using RST pin.
Definition: RF69.cpp:93
-
int16_t startReceive()
Interrupt-driven receive method. GDO0 will be activated when full packet is received.
Definition: RF69.cpp:234
RF69(Module *module)
Default constructor.
Definition: RF69.cpp:5
int16_t setRSSIThreshold(float dbm)
Sets the RSSI value above which the RSSI interrupt is signaled.
Definition: RF69.cpp:926
void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: RF69.cpp:936
diff --git a/_s_x1231_8h_source.html b/_s_x1231_8h_source.html index d5530685..fb4153fd 100644 --- a/_s_x1231_8h_source.html +++ b/_s_x1231_8h_source.html @@ -176,12 +176,12 @@ $(document).ready(function(){initNavTree('_s_x1231_8h_source.html',''); initResi
88 
93 class SX1231: public RF69 {
94  public:
-
99  SX1231(Module* mod);
+
99  SX1231(Module* mod); // cppcheck-suppress noExplicitConstructor
100 
111  int16_t begin(float freq = 434.0, float br = 4.8, float freqDev = 5.0, float rxBw = 125.0, int8_t power = 10, uint8_t preambleLen = 16);
112 
113 #if !RADIOLIB_GODMODE
-
114  private:
+
114  protected:
115 #endif
116  uint8_t chipRevision = 0;
117 };
diff --git a/_s_x1233_8h_source.html b/_s_x1233_8h_source.html index 24c832ba..dae65845 100644 --- a/_s_x1233_8h_source.html +++ b/_s_x1233_8h_source.html @@ -106,16 +106,16 @@ $(document).ready(function(){initNavTree('_s_x1233_8h_source.html',''); initResi
18 
23 class SX1233: public SX1231 {
24  public:
-
29  SX1233(Module* mod);
+
29  SX1233(Module* mod); // cppcheck-suppress noExplicitConstructor
30 
41  int16_t begin(float freq = 434.0, float br = 4.8, float freqDev = 5.0, float rxBw = 125.0, int8_t power = 10, uint8_t preambleLen = 16);
42 
-
51  int16_t setBitRate(float br);
+
51  int16_t setBitRate(float br) override;
52 
53 #if !RADIOLIB_GODMODE
54  private:
55 #endif
-
56  uint8_t chipRevision = 0;
+
56 
57 };
58 
59 #endif
@@ -126,7 +126,7 @@ $(document).ready(function(){initNavTree('_s_x1233_8h_source.html',''); initResi
Control class for SX1233 module. Overrides some methods from SX1231/RF69 due to different register va...
Definition: SX1233.h:23
int16_t begin(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=125.0, int8_t power=10, uint8_t preambleLen=16)
Initialization method.
Definition: SX1233.cpp:9
SX1233(Module *mod)
Default constructor.
Definition: SX1233.cpp:5
-
int16_t setBitRate(float br)
Sets bit rate. Allowed values range from 0.5 to 300.0 kbps. SX1233 also allows 500 kbps and 600 kbps ...
Definition: SX1233.cpp:93
+
int16_t setBitRate(float br) override
Sets bit rate. Allowed values range from 0.5 to 300.0 kbps. SX1233 also allows 500 kbps and 600 kbps ...
Definition: SX1233.cpp:93
diff --git a/class_l_r1110-members.html b/class_l_r1110-members.html index 826e160d..4da3ce61 100644 --- a/class_l_r1110-members.html +++ b/class_l_r1110-members.html @@ -102,8 +102,8 @@ $(document).ready(function(){initNavTree('class_l_r1110.html',''); initResizable checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)LR11x0 clearChannelScanAction()PhysicalLayervirtual clearIrqAction()LR11x0 - clearPacketReceivedAction()LR11x0virtual - clearPacketSentAction()LR11x0virtual + clearPacketReceivedAction() overrideLR11x0virtual + clearPacketSentAction() overrideLR11x0virtual clearWiFiScanAction()LR11x0 disableAddressFiltering()LR11x0 dropSync()PhysicalLayer @@ -117,8 +117,8 @@ $(document).ready(function(){initNavTree('class_l_r1110.html',''); initResizable getIrqStatus()LR11x0 getPacketLength(bool update=true) overrideLR11x0virtual getPacketLength(bool update, uint8_t *offset)LR11x0 - getRSSI()LR11x0virtual - getSNR()LR11x0virtual + getRSSI() overrideLR11x0virtual + getSNR() overrideLR11x0virtual getTimeOnAir(size_t len) overrideLR11x0virtual getWifiScanResult(LR11x0WifiResult_t *result, uint8_t index, bool brief=false)LR11x0 getWifiScanResultsCount(uint8_t *count)LR11x0 @@ -131,7 +131,7 @@ $(document).ready(function(){initNavTree('class_l_r1110.html',''); initResizable PhysicalLayer(float step, size_t maxLen)PhysicalLayer random(int32_t max)PhysicalLayer random(int32_t min, int32_t max)PhysicalLayer - randomByte()LR11x0virtual + randomByte() overrideLR11x0virtual read(bool drop=true)PhysicalLayer readBit(uint32_t pin)PhysicalLayervirtual readData(uint8_t *data, size_t len) overrideLR11x0virtual @@ -143,7 +143,7 @@ $(document).ready(function(){initNavTree('class_l_r1110.html',''); initResizable scanChannel() overrideLR11x0virtual scanChannel(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin)LR11x0 setBandwidth(float bw)LR11x0 - setBitRate(float br)LR11x0virtual + setBitRate(float br) overrideLR11x0virtual setBroadcastAddress(uint8_t broadAddr)LR11x0 setChannelScanAction(void(*func)(void))PhysicalLayervirtual setCodingRate(uint8_t cr, bool longInterleave=false)LR11x0 @@ -154,16 +154,16 @@ $(document).ready(function(){initNavTree('class_l_r1110.html',''); initResizable setDirectAction(void(*func)(void))PhysicalLayervirtual setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer setEncoding(uint8_t encoding) overrideLR11x0virtual - setFrequency(float freq)LR1110virtual + setFrequency(float freq) overrideLR1110virtual setFrequency(float freq, bool calibrate, float band=4)LR1110 setFrequencyDeviation(float freqDev) overrideLR11x0virtual setIrqAction(void(*func)(void))LR11x0 setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeed=0x13A)LR11x0 setNodeAddress(uint8_t nodeAddr)LR11x0 - setOutputPower(int8_t power)LR11x0virtual + setOutputPower(int8_t power) overrideLR11x0virtual setOutputPower(int8_t power, bool forceHighPower)LR11x0 - setPacketReceivedAction(void(*func)(void))LR11x0virtual - setPacketSentAction(void(*func)(void))LR11x0virtual + setPacketReceivedAction(void(*func)(void)) overrideLR11x0virtual + setPacketSentAction(void(*func)(void)) overrideLR11x0virtual setPreambleLength(size_t preambleLength) overrideLR11x0virtual setRxBandwidth(float rxBw)LR11x0 setSpreadingFactor(uint8_t sf, bool legacy=false)LR11x0 @@ -181,7 +181,7 @@ $(document).ready(function(){initNavTree('class_l_r1110.html',''); initResizable startChannelScan() overrideLR11x0virtual startChannelScan(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin)LR11x0 startDirect()PhysicalLayer - startReceive()LR11x0virtual + startReceive() overrideLR11x0virtual startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)LR11x0virtual startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual startTransmit(const char *str, uint8_t addr=0)LR11x0 diff --git a/class_l_r1110.html b/class_l_r1110.html index 7ea73287..8d4fd149 100644 --- a/class_l_r1110.html +++ b/class_l_r1110.html @@ -119,9 +119,9 @@ Public Member Functions int16_t beginLRFHSS (float freq=434.0, uint8_t bw=RADIOLIB_LR11X0_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_LR11X0_LR_FHSS_CR_2_3, int8_t power=10, float tcxoVoltage=1.6)  Initialization method for LR-FHSS modem. More...
  -int16_t setFrequency (float freq) - Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will also perform calibrations. More...
-  +int16_t setFrequency (float freq) override + Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will also perform calibrations. More...
+  int16_t setFrequency (float freq, bool calibrate, float band=4)  Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. More...
  @@ -175,29 +175,29 @@ Public Member Functions void clearIrqAction ()  Clears interrupt service routine to call when IRQ1 activates.
  -void setPacketReceivedAction (void(*func)(void)) - Sets interrupt service routine to call when a packet is received. More...
-  - -void clearPacketReceivedAction () - Clears interrupt service routine to call when a packet is received.
-  -void setPacketSentAction (void(*func)(void)) - Sets interrupt service routine to call when a packet is sent. More...
-  - -void clearPacketSentAction () - Clears interrupt service routine to call when a packet is sent.
-  +void setPacketReceivedAction (void(*func)(void)) override + Sets interrupt service routine to call when a packet is received. More...
+  + +void clearPacketReceivedAction () override + Clears interrupt service routine to call when a packet is received.
+  +void setPacketSentAction (void(*func)(void)) override + Sets interrupt service routine to call when a packet is sent. More...
+  + +void clearPacketSentAction () override + Clears interrupt service routine to call when a packet is sent.
+  int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0) override  Interrupt-driven binary transmit method. Overloads for string-based transmissions are implemented in PhysicalLayer. More...
  int16_t finishTransmit () override  Clean up after transmission is done. More...
  -int16_t startReceive () - Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer. More...
-  +int16_t startReceive () override + Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer. More...
+  int16_t startReceive (uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)  Interrupt-driven receive method. IRQ1 will be activated when full packet is received. More...
  @@ -216,9 +216,9 @@ void int16_t getChannelScanResult () override  Read the channel scan result. More...
  -int16_t setOutputPower (int8_t power) - Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (low-power PA). More...
-  +int16_t setOutputPower (int8_t power) override + Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (low-power PA). More...
+  int16_t setOutputPower (int8_t power, bool forceHighPower)  Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (low-power PA). More...
  @@ -240,9 +240,9 @@ void int16_t setSyncWord (uint32_t syncWord)  Sets LoRa or LR-FHSS sync word. More...
  -int16_t setBitRate (float br) - Sets GFSK bit rate. Allowed values range from 0.6 to 300.0 kbps. More...
-  +int16_t setBitRate (float br) override + Sets GFSK bit rate. Allowed values range from 0.6 to 300.0 kbps. More...
+  int16_t setFrequencyDeviation (float freqDev) override  Sets GFSK frequency deviation. Allowed values range from 0.0 to 200.0 kHz. More...
  @@ -297,12 +297,12 @@ void int16_t invertIQ (bool enable) override  Enable/disable inversion of the I and Q signals. More...
  -float getRSSI () - Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. Only available for LoRa or GFSK modem. More...
-  -float getSNR () - Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem. More...
-  +float getRSSI () override + Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. Only available for LoRa or GFSK modem. More...
+  +float getSNR () override + Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem. More...
+  float getFrequencyError ()  Gets frequency error of the latest received packet. More...
  @@ -324,9 +324,9 @@ void bool isRxTimeout () override  Check whether the IRQ bit for RxTimeout is set. More...
  -uint8_t randomByte () - Get one truly random byte from RSSI noise. More...
-  +uint8_t randomByte () override + Get one truly random byte from RSSI noise. More...
+  int16_t implicitHeader (size_t len)  Set implicit header mode for future reception/transmission. More...
  @@ -684,8 +684,8 @@ bool  -

◆ setFrequency() [1/2]

+ +

◆ setFrequency() [1/2]

@@ -703,7 +703,7 @@ bool  -virtual +overridevirtual
diff --git a/class_l_r1110.js b/class_l_r1110.js index 2849355c..8457e6e5 100644 --- a/class_l_r1110.js +++ b/class_l_r1110.js @@ -4,6 +4,6 @@ var class_l_r1110 = [ "begin", "class_l_r1110.html#a7656fe337a859388247708aa143d50af", null ], [ "beginGFSK", "class_l_r1110.html#afcabcd9b422581cd8a63a63373a98155", null ], [ "beginLRFHSS", "class_l_r1110.html#a9439d6d7a6c8dc5813a00c9e493810c0", null ], - [ "setFrequency", "class_l_r1110.html#a58cfda71b08567a7e98e7d6fd03465b4", null ], + [ "setFrequency", "class_l_r1110.html#ade94d20ea438cbd92c61e28d2232d7e8", null ], [ "setFrequency", "class_l_r1110.html#a08c9ba9d02e7e3918f73f090c6d5ed33", null ] ]; \ No newline at end of file diff --git a/class_l_r1120-members.html b/class_l_r1120-members.html index fdc241ab..43e3e302 100644 --- a/class_l_r1120-members.html +++ b/class_l_r1120-members.html @@ -102,8 +102,8 @@ $(document).ready(function(){initNavTree('class_l_r1120.html',''); initResizable checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)LR11x0 clearChannelScanAction()PhysicalLayervirtual clearIrqAction()LR11x0 - clearPacketReceivedAction()LR11x0virtual - clearPacketSentAction()LR11x0virtual + clearPacketReceivedAction() overrideLR11x0virtual + clearPacketSentAction() overrideLR11x0virtual clearWiFiScanAction()LR11x0 disableAddressFiltering()LR11x0 dropSync()PhysicalLayer @@ -117,8 +117,8 @@ $(document).ready(function(){initNavTree('class_l_r1120.html',''); initResizable getIrqStatus()LR11x0 getPacketLength(bool update=true) overrideLR11x0virtual getPacketLength(bool update, uint8_t *offset)LR11x0 - getRSSI()LR11x0virtual - getSNR()LR11x0virtual + getRSSI() overrideLR11x0virtual + getSNR() overrideLR11x0virtual getTimeOnAir(size_t len) overrideLR11x0virtual getWifiScanResult(LR11x0WifiResult_t *result, uint8_t index, bool brief=false)LR11x0 getWifiScanResultsCount(uint8_t *count)LR11x0 @@ -131,7 +131,7 @@ $(document).ready(function(){initNavTree('class_l_r1120.html',''); initResizable PhysicalLayer(float step, size_t maxLen)PhysicalLayer random(int32_t max)PhysicalLayer random(int32_t min, int32_t max)PhysicalLayer - randomByte()LR11x0virtual + randomByte() overrideLR11x0virtual read(bool drop=true)PhysicalLayer readBit(uint32_t pin)PhysicalLayervirtual readData(uint8_t *data, size_t len) overrideLR11x0virtual @@ -143,7 +143,7 @@ $(document).ready(function(){initNavTree('class_l_r1120.html',''); initResizable scanChannel() overrideLR11x0virtual scanChannel(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin)LR11x0 setBandwidth(float bw)LR11x0 - setBitRate(float br)LR11x0virtual + setBitRate(float br) overrideLR11x0virtual setBroadcastAddress(uint8_t broadAddr)LR11x0 setChannelScanAction(void(*func)(void))PhysicalLayervirtual setCodingRate(uint8_t cr, bool longInterleave=false)LR11x0 @@ -154,16 +154,16 @@ $(document).ready(function(){initNavTree('class_l_r1120.html',''); initResizable setDirectAction(void(*func)(void))PhysicalLayervirtual setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer setEncoding(uint8_t encoding) overrideLR11x0virtual - setFrequency(float freq)LR1120virtual + setFrequency(float freq) overrideLR1120virtual setFrequency(float freq, bool calibrate, float band=4)LR1120 setFrequencyDeviation(float freqDev) overrideLR11x0virtual setIrqAction(void(*func)(void))LR11x0 setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeed=0x13A)LR11x0 setNodeAddress(uint8_t nodeAddr)LR11x0 - setOutputPower(int8_t power)LR11x0virtual + setOutputPower(int8_t power) overrideLR11x0virtual setOutputPower(int8_t power, bool forceHighPower)LR11x0 - setPacketReceivedAction(void(*func)(void))LR11x0virtual - setPacketSentAction(void(*func)(void))LR11x0virtual + setPacketReceivedAction(void(*func)(void)) overrideLR11x0virtual + setPacketSentAction(void(*func)(void)) overrideLR11x0virtual setPreambleLength(size_t preambleLength) overrideLR11x0virtual setRxBandwidth(float rxBw)LR11x0 setSpreadingFactor(uint8_t sf, bool legacy=false)LR11x0 @@ -181,7 +181,7 @@ $(document).ready(function(){initNavTree('class_l_r1120.html',''); initResizable startChannelScan() overrideLR11x0virtual startChannelScan(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin)LR11x0 startDirect()PhysicalLayer - startReceive()LR11x0virtual + startReceive() overrideLR11x0virtual startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)LR11x0virtual startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual startTransmit(const char *str, uint8_t addr=0)LR11x0 diff --git a/class_l_r1120.html b/class_l_r1120.html index 0eca8704..14b04746 100644 --- a/class_l_r1120.html +++ b/class_l_r1120.html @@ -120,9 +120,9 @@ Public Member Functions int16_t beginLRFHSS (float freq=434.0, uint8_t bw=RADIOLIB_LR11X0_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_LR11X0_LR_FHSS_CR_2_3, int8_t power=10, float tcxoVoltage=1.6)  Initialization method for LR-FHSS modem. More...
  -int16_t setFrequency (float freq) - Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will also perform calibrations. More...
-  +int16_t setFrequency (float freq) override + Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will also perform calibrations. More...
+  int16_t setFrequency (float freq, bool calibrate, float band=4)  Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will also perform calibrations. More...
  @@ -176,29 +176,29 @@ Public Member Functions void clearIrqAction ()  Clears interrupt service routine to call when IRQ1 activates.
  -void setPacketReceivedAction (void(*func)(void)) - Sets interrupt service routine to call when a packet is received. More...
-  - -void clearPacketReceivedAction () - Clears interrupt service routine to call when a packet is received.
-  -void setPacketSentAction (void(*func)(void)) - Sets interrupt service routine to call when a packet is sent. More...
-  - -void clearPacketSentAction () - Clears interrupt service routine to call when a packet is sent.
-  +void setPacketReceivedAction (void(*func)(void)) override + Sets interrupt service routine to call when a packet is received. More...
+  + +void clearPacketReceivedAction () override + Clears interrupt service routine to call when a packet is received.
+  +void setPacketSentAction (void(*func)(void)) override + Sets interrupt service routine to call when a packet is sent. More...
+  + +void clearPacketSentAction () override + Clears interrupt service routine to call when a packet is sent.
+  int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0) override  Interrupt-driven binary transmit method. Overloads for string-based transmissions are implemented in PhysicalLayer. More...
  int16_t finishTransmit () override  Clean up after transmission is done. More...
  -int16_t startReceive () - Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer. More...
-  +int16_t startReceive () override + Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer. More...
+  int16_t startReceive (uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)  Interrupt-driven receive method. IRQ1 will be activated when full packet is received. More...
  @@ -217,9 +217,9 @@ void int16_t getChannelScanResult () override  Read the channel scan result. More...
  -int16_t setOutputPower (int8_t power) - Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (low-power PA). More...
-  +int16_t setOutputPower (int8_t power) override + Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (low-power PA). More...
+  int16_t setOutputPower (int8_t power, bool forceHighPower)  Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (low-power PA). More...
  @@ -241,9 +241,9 @@ void int16_t setSyncWord (uint32_t syncWord)  Sets LoRa or LR-FHSS sync word. More...
  -int16_t setBitRate (float br) - Sets GFSK bit rate. Allowed values range from 0.6 to 300.0 kbps. More...
-  +int16_t setBitRate (float br) override + Sets GFSK bit rate. Allowed values range from 0.6 to 300.0 kbps. More...
+  int16_t setFrequencyDeviation (float freqDev) override  Sets GFSK frequency deviation. Allowed values range from 0.0 to 200.0 kHz. More...
  @@ -298,12 +298,12 @@ void int16_t invertIQ (bool enable) override  Enable/disable inversion of the I and Q signals. More...
  -float getRSSI () - Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. Only available for LoRa or GFSK modem. More...
-  -float getSNR () - Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem. More...
-  +float getRSSI () override + Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. Only available for LoRa or GFSK modem. More...
+  +float getSNR () override + Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem. More...
+  float getFrequencyError ()  Gets frequency error of the latest received packet. More...
  @@ -325,9 +325,9 @@ void bool isRxTimeout () override  Check whether the IRQ bit for RxTimeout is set. More...
  -uint8_t randomByte () - Get one truly random byte from RSSI noise. More...
-  +uint8_t randomByte () override + Get one truly random byte from RSSI noise. More...
+  int16_t implicitHeader (size_t len)  Set implicit header mode for future reception/transmission. More...
  @@ -685,8 +685,8 @@ bool  -

◆ setFrequency() [1/2]

+ +

◆ setFrequency() [1/2]

@@ -704,7 +704,7 @@ bool  -virtual +overridevirtual
diff --git a/class_l_r1120.js b/class_l_r1120.js index 40865265..a0f61a89 100644 --- a/class_l_r1120.js +++ b/class_l_r1120.js @@ -4,6 +4,6 @@ var class_l_r1120 = [ "begin", "class_l_r1120.html#a0393071d4403d06c665f28c49e755382", null ], [ "beginGFSK", "class_l_r1120.html#a4c6b867146f00de5c45aeb4164d51cc5", null ], [ "beginLRFHSS", "class_l_r1120.html#a981be5384416833dcb6c09ad5be47aa6", null ], - [ "setFrequency", "class_l_r1120.html#a1139585bff92c19ab645f68068930d60", null ], + [ "setFrequency", "class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb", null ], [ "setFrequency", "class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2", null ] ]; \ No newline at end of file diff --git a/class_l_r1121-members.html b/class_l_r1121-members.html index 703a7b61..09a1743e 100644 --- a/class_l_r1121-members.html +++ b/class_l_r1121-members.html @@ -102,8 +102,8 @@ $(document).ready(function(){initNavTree('class_l_r1121.html',''); initResizable checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)LR11x0 clearChannelScanAction()PhysicalLayervirtual clearIrqAction()LR11x0 - clearPacketReceivedAction()LR11x0virtual - clearPacketSentAction()LR11x0virtual + clearPacketReceivedAction() overrideLR11x0virtual + clearPacketSentAction() overrideLR11x0virtual clearWiFiScanAction()LR11x0 disableAddressFiltering()LR11x0 dropSync()PhysicalLayer @@ -117,8 +117,8 @@ $(document).ready(function(){initNavTree('class_l_r1121.html',''); initResizable getIrqStatus()LR11x0 getPacketLength(bool update=true) overrideLR11x0virtual getPacketLength(bool update, uint8_t *offset)LR11x0 - getRSSI()LR11x0virtual - getSNR()LR11x0virtual + getRSSI() overrideLR11x0virtual + getSNR() overrideLR11x0virtual getTimeOnAir(size_t len) overrideLR11x0virtual getWifiScanResult(LR11x0WifiResult_t *result, uint8_t index, bool brief=false)LR11x0 getWifiScanResultsCount(uint8_t *count)LR11x0 @@ -132,7 +132,7 @@ $(document).ready(function(){initNavTree('class_l_r1121.html',''); initResizable PhysicalLayer(float step, size_t maxLen)PhysicalLayer random(int32_t max)PhysicalLayer random(int32_t min, int32_t max)PhysicalLayer - randomByte()LR11x0virtual + randomByte() overrideLR11x0virtual read(bool drop=true)PhysicalLayer readBit(uint32_t pin)PhysicalLayervirtual readData(uint8_t *data, size_t len) overrideLR11x0virtual @@ -144,7 +144,7 @@ $(document).ready(function(){initNavTree('class_l_r1121.html',''); initResizable scanChannel() overrideLR11x0virtual scanChannel(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin)LR11x0 setBandwidth(float bw)LR11x0 - setBitRate(float br)LR11x0virtual + setBitRate(float br) overrideLR11x0virtual setBroadcastAddress(uint8_t broadAddr)LR11x0 setChannelScanAction(void(*func)(void))PhysicalLayervirtual setCodingRate(uint8_t cr, bool longInterleave=false)LR11x0 @@ -155,16 +155,16 @@ $(document).ready(function(){initNavTree('class_l_r1121.html',''); initResizable setDirectAction(void(*func)(void))PhysicalLayervirtual setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer setEncoding(uint8_t encoding) overrideLR11x0virtual - setFrequency(float freq)LR1120virtual + setFrequency(float freq) overrideLR1120virtual setFrequency(float freq, bool calibrate, float band=4)LR1120 setFrequencyDeviation(float freqDev) overrideLR11x0virtual setIrqAction(void(*func)(void))LR11x0 setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeed=0x13A)LR11x0 setNodeAddress(uint8_t nodeAddr)LR11x0 - setOutputPower(int8_t power)LR11x0virtual + setOutputPower(int8_t power) overrideLR11x0virtual setOutputPower(int8_t power, bool forceHighPower)LR11x0 - setPacketReceivedAction(void(*func)(void))LR11x0virtual - setPacketSentAction(void(*func)(void))LR11x0virtual + setPacketReceivedAction(void(*func)(void)) overrideLR11x0virtual + setPacketSentAction(void(*func)(void)) overrideLR11x0virtual setPreambleLength(size_t preambleLength) overrideLR11x0virtual setRxBandwidth(float rxBw)LR11x0 setSpreadingFactor(uint8_t sf, bool legacy=false)LR11x0 @@ -182,7 +182,7 @@ $(document).ready(function(){initNavTree('class_l_r1121.html',''); initResizable startChannelScan() overrideLR11x0virtual startChannelScan(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin)LR11x0 startDirect()PhysicalLayer - startReceive()LR11x0virtual + startReceive() overrideLR11x0virtual startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)LR11x0virtual startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual startTransmit(const char *str, uint8_t addr=0)LR11x0 diff --git a/class_l_r1121.html b/class_l_r1121.html index 03fb3140..fcc0aa69 100644 --- a/class_l_r1121.html +++ b/class_l_r1121.html @@ -124,9 +124,9 @@ Public Member Functions int16_t beginLRFHSS (float freq=434.0, uint8_t bw=RADIOLIB_LR11X0_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_LR11X0_LR_FHSS_CR_2_3, int8_t power=10, float tcxoVoltage=1.6)  Initialization method for LR-FHSS modem. More...
  -int16_t setFrequency (float freq) - Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will also perform calibrations. More...
-  +int16_t setFrequency (float freq) override + Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will also perform calibrations. More...
+  int16_t setFrequency (float freq, bool calibrate, float band=4)  Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will also perform calibrations. More...
  @@ -180,29 +180,29 @@ Public Member Functions void clearIrqAction ()  Clears interrupt service routine to call when IRQ1 activates.
  -void setPacketReceivedAction (void(*func)(void)) - Sets interrupt service routine to call when a packet is received. More...
-  - -void clearPacketReceivedAction () - Clears interrupt service routine to call when a packet is received.
-  -void setPacketSentAction (void(*func)(void)) - Sets interrupt service routine to call when a packet is sent. More...
-  - -void clearPacketSentAction () - Clears interrupt service routine to call when a packet is sent.
-  +void setPacketReceivedAction (void(*func)(void)) override + Sets interrupt service routine to call when a packet is received. More...
+  + +void clearPacketReceivedAction () override + Clears interrupt service routine to call when a packet is received.
+  +void setPacketSentAction (void(*func)(void)) override + Sets interrupt service routine to call when a packet is sent. More...
+  + +void clearPacketSentAction () override + Clears interrupt service routine to call when a packet is sent.
+  int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0) override  Interrupt-driven binary transmit method. Overloads for string-based transmissions are implemented in PhysicalLayer. More...
  int16_t finishTransmit () override  Clean up after transmission is done. More...
  -int16_t startReceive () - Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer. More...
-  +int16_t startReceive () override + Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer. More...
+  int16_t startReceive (uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)  Interrupt-driven receive method. IRQ1 will be activated when full packet is received. More...
  @@ -221,9 +221,9 @@ void int16_t getChannelScanResult () override  Read the channel scan result. More...
  -int16_t setOutputPower (int8_t power) - Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (low-power PA). More...
-  +int16_t setOutputPower (int8_t power) override + Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (low-power PA). More...
+  int16_t setOutputPower (int8_t power, bool forceHighPower)  Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (low-power PA). More...
  @@ -245,9 +245,9 @@ void int16_t setSyncWord (uint32_t syncWord)  Sets LoRa or LR-FHSS sync word. More...
  -int16_t setBitRate (float br) - Sets GFSK bit rate. Allowed values range from 0.6 to 300.0 kbps. More...
-  +int16_t setBitRate (float br) override + Sets GFSK bit rate. Allowed values range from 0.6 to 300.0 kbps. More...
+  int16_t setFrequencyDeviation (float freqDev) override  Sets GFSK frequency deviation. Allowed values range from 0.0 to 200.0 kHz. More...
  @@ -302,12 +302,12 @@ void int16_t invertIQ (bool enable) override  Enable/disable inversion of the I and Q signals. More...
  -float getRSSI () - Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. Only available for LoRa or GFSK modem. More...
-  -float getSNR () - Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem. More...
-  +float getRSSI () override + Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. Only available for LoRa or GFSK modem. More...
+  +float getSNR () override + Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem. More...
+  float getFrequencyError ()  Gets frequency error of the latest received packet. More...
  @@ -329,9 +329,9 @@ void bool isRxTimeout () override  Check whether the IRQ bit for RxTimeout is set. More...
  -uint8_t randomByte () - Get one truly random byte from RSSI noise. More...
-  +uint8_t randomByte () override + Get one truly random byte from RSSI noise. More...
+  int16_t implicitHeader (size_t len)  Set implicit header mode for future reception/transmission. More...
  diff --git a/class_l_r11x0-members.html b/class_l_r11x0-members.html index f60b6bdd..5749a36f 100644 --- a/class_l_r11x0-members.html +++ b/class_l_r11x0-members.html @@ -99,8 +99,8 @@ $(document).ready(function(){initNavTree('class_l_r11x0.html',''); initResizable checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)LR11x0 clearChannelScanAction()PhysicalLayervirtual clearIrqAction()LR11x0 - clearPacketReceivedAction()LR11x0virtual - clearPacketSentAction()LR11x0virtual + clearPacketReceivedAction() overrideLR11x0virtual + clearPacketSentAction() overrideLR11x0virtual clearWiFiScanAction()LR11x0 disableAddressFiltering()LR11x0 dropSync()PhysicalLayer @@ -114,8 +114,8 @@ $(document).ready(function(){initNavTree('class_l_r11x0.html',''); initResizable getIrqStatus()LR11x0 getPacketLength(bool update=true) overrideLR11x0virtual getPacketLength(bool update, uint8_t *offset)LR11x0 - getRSSI()LR11x0virtual - getSNR()LR11x0virtual + getRSSI() overrideLR11x0virtual + getSNR() overrideLR11x0virtual getTimeOnAir(size_t len) overrideLR11x0virtual getWifiScanResult(LR11x0WifiResult_t *result, uint8_t index, bool brief=false)LR11x0 getWifiScanResultsCount(uint8_t *count)LR11x0 @@ -127,7 +127,7 @@ $(document).ready(function(){initNavTree('class_l_r11x0.html',''); initResizable PhysicalLayer(float step, size_t maxLen)PhysicalLayer random(int32_t max)PhysicalLayer random(int32_t min, int32_t max)PhysicalLayer - randomByte()LR11x0virtual + randomByte() overrideLR11x0virtual read(bool drop=true)PhysicalLayer readBit(uint32_t pin)PhysicalLayervirtual readData(uint8_t *data, size_t len) overrideLR11x0virtual @@ -139,7 +139,7 @@ $(document).ready(function(){initNavTree('class_l_r11x0.html',''); initResizable scanChannel() overrideLR11x0virtual scanChannel(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin)LR11x0 setBandwidth(float bw)LR11x0 - setBitRate(float br)LR11x0virtual + setBitRate(float br) overrideLR11x0virtual setBroadcastAddress(uint8_t broadAddr)LR11x0 setChannelScanAction(void(*func)(void))PhysicalLayervirtual setCodingRate(uint8_t cr, bool longInterleave=false)LR11x0 @@ -155,10 +155,10 @@ $(document).ready(function(){initNavTree('class_l_r11x0.html',''); initResizable setIrqAction(void(*func)(void))LR11x0 setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeed=0x13A)LR11x0 setNodeAddress(uint8_t nodeAddr)LR11x0 - setOutputPower(int8_t power)LR11x0virtual + setOutputPower(int8_t power) overrideLR11x0virtual setOutputPower(int8_t power, bool forceHighPower)LR11x0 - setPacketReceivedAction(void(*func)(void))LR11x0virtual - setPacketSentAction(void(*func)(void))LR11x0virtual + setPacketReceivedAction(void(*func)(void)) overrideLR11x0virtual + setPacketSentAction(void(*func)(void)) overrideLR11x0virtual setPreambleLength(size_t preambleLength) overrideLR11x0virtual setRxBandwidth(float rxBw)LR11x0 setSpreadingFactor(uint8_t sf, bool legacy=false)LR11x0 @@ -176,7 +176,7 @@ $(document).ready(function(){initNavTree('class_l_r11x0.html',''); initResizable startChannelScan() overrideLR11x0virtual startChannelScan(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin)LR11x0 startDirect()PhysicalLayer - startReceive()LR11x0virtual + startReceive() overrideLR11x0virtual startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)LR11x0virtual startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual startTransmit(const char *str, uint8_t addr=0)LR11x0 diff --git a/class_l_r11x0.html b/class_l_r11x0.html index 4dad1c86..659086ec 100644 --- a/class_l_r11x0.html +++ b/class_l_r11x0.html @@ -159,29 +159,29 @@ Public Member Functions void clearIrqAction ()  Clears interrupt service routine to call when IRQ1 activates.
  -void setPacketReceivedAction (void(*func)(void)) - Sets interrupt service routine to call when a packet is received. More...
-  - -void clearPacketReceivedAction () - Clears interrupt service routine to call when a packet is received.
-  -void setPacketSentAction (void(*func)(void)) - Sets interrupt service routine to call when a packet is sent. More...
-  - -void clearPacketSentAction () - Clears interrupt service routine to call when a packet is sent.
-  +void setPacketReceivedAction (void(*func)(void)) override + Sets interrupt service routine to call when a packet is received. More...
+  + +void clearPacketReceivedAction () override + Clears interrupt service routine to call when a packet is received.
+  +void setPacketSentAction (void(*func)(void)) override + Sets interrupt service routine to call when a packet is sent. More...
+  + +void clearPacketSentAction () override + Clears interrupt service routine to call when a packet is sent.
+  int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0) override  Interrupt-driven binary transmit method. Overloads for string-based transmissions are implemented in PhysicalLayer. More...
  int16_t finishTransmit () override  Clean up after transmission is done. More...
  -int16_t startReceive () - Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer. More...
-  +int16_t startReceive () override + Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer. More...
+  int16_t startReceive (uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)  Interrupt-driven receive method. IRQ1 will be activated when full packet is received. More...
  @@ -200,9 +200,9 @@ void int16_t getChannelScanResult () override  Read the channel scan result. More...
  -int16_t setOutputPower (int8_t power) - Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (low-power PA). More...
-  +int16_t setOutputPower (int8_t power) override + Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (low-power PA). More...
+  int16_t setOutputPower (int8_t power, bool forceHighPower)  Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (low-power PA). More...
  @@ -224,9 +224,9 @@ void int16_t setSyncWord (uint32_t syncWord)  Sets LoRa or LR-FHSS sync word. More...
  -int16_t setBitRate (float br) - Sets GFSK bit rate. Allowed values range from 0.6 to 300.0 kbps. More...
-  +int16_t setBitRate (float br) override + Sets GFSK bit rate. Allowed values range from 0.6 to 300.0 kbps. More...
+  int16_t setFrequencyDeviation (float freqDev) override  Sets GFSK frequency deviation. Allowed values range from 0.0 to 200.0 kHz. More...
  @@ -281,12 +281,12 @@ void int16_t invertIQ (bool enable) override  Enable/disable inversion of the I and Q signals. More...
  -float getRSSI () - Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. Only available for LoRa or GFSK modem. More...
-  -float getSNR () - Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem. More...
-  +float getRSSI () override + Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. Only available for LoRa or GFSK modem. More...
+  +float getSNR () override + Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem. More...
+  float getFrequencyError ()  Gets frequency error of the latest received packet. More...
  @@ -308,9 +308,9 @@ void bool isRxTimeout () override  Check whether the IRQ bit for RxTimeout is set. More...
  -uint8_t randomByte () - Get one truly random byte from RSSI noise. More...
-  +uint8_t randomByte () override + Get one truly random byte from RSSI noise. More...
+  int16_t implicitHeader (size_t len)  Set implicit header mode for future reception/transmission. More...
  @@ -1077,8 +1077,8 @@ bool  -

◆ getRSSI()

+ +

◆ getRSSI()

@@ -1095,7 +1095,7 @@ bool  -virtual +overridevirtual
@@ -1107,8 +1107,8 @@ bool  -

◆ getSNR()

+ +

◆ getSNR()

@@ -1125,7 +1125,7 @@ bool  -virtual +overridevirtual
@@ -1389,8 +1389,8 @@ bool  -

◆ randomByte()

+ +

◆ randomByte()

@@ -1407,7 +1407,7 @@ bool  -virtual +overridevirtual
@@ -1715,8 +1715,8 @@ bool  -

◆ setBitRate()

+ +

◆ setBitRate()

@@ -1734,7 +1734,7 @@ bool  -virtual +overridevirtual
@@ -2122,8 +2122,8 @@ bool  -

◆ setOutputPower() [1/2]

+ +

◆ setOutputPower() [1/2]

@@ -2141,7 +2141,7 @@ bool  -virtual +overridevirtual
@@ -2197,8 +2197,8 @@ bool  -

◆ setPacketReceivedAction()

+ +

◆ setPacketReceivedAction()

@@ -2216,7 +2216,7 @@ bool  -virtual +overridevirtual
@@ -2233,8 +2233,8 @@ bool  -

◆ setPacketSentAction()

+ +

◆ setPacketSentAction()

@@ -2252,7 +2252,7 @@ bool  -virtual +overridevirtual
@@ -2767,8 +2767,8 @@ bool  -

◆ startReceive() [1/2]

+ +

◆ startReceive() [1/2]

@@ -2785,7 +2785,7 @@ bool  -virtual +overridevirtual
diff --git a/class_l_r11x0.js b/class_l_r11x0.js index 3861794f..dbcb9082 100644 --- a/class_l_r11x0.js +++ b/class_l_r11x0.js @@ -9,8 +9,8 @@ var class_l_r11x0 = [ "checkOutputPower", "class_l_r11x0.html#a681b20613f9213e98096f0407f8e418d", null ], [ "checkOutputPower", "class_l_r11x0.html#aede2a1dd742516423d89c2e0645297e7", null ], [ "clearIrqAction", "class_l_r11x0.html#ab167c4dc14e80d19f8b33d68c3f90d98", null ], - [ "clearPacketReceivedAction", "class_l_r11x0.html#a66a2afc6cef1e94e25efec15094816a8", null ], - [ "clearPacketSentAction", "class_l_r11x0.html#acd69e3b8825309703e13149b94e49d81", null ], + [ "clearPacketReceivedAction", "class_l_r11x0.html#a96e4a220bbd3487423acfd217b479fe3", null ], + [ "clearPacketSentAction", "class_l_r11x0.html#a95ddec84ae2fb19989c333d42d4dc5fa", null ], [ "clearWiFiScanAction", "class_l_r11x0.html#ad5876b44020a0bd59f73186a912dbb60", null ], [ "disableAddressFiltering", "class_l_r11x0.html#ae565dc2423ca7df13bf7ae48cce9ac8b", null ], [ "explicitHeader", "class_l_r11x0.html#a3693359e5d106d6f57c23247c528cdd5", null ], @@ -22,8 +22,8 @@ var class_l_r11x0 = [ "getIrqStatus", "class_l_r11x0.html#a0309154558a0d88e2e8957e4dbf6a2f8", null ], [ "getPacketLength", "class_l_r11x0.html#af96883b2ca7a36a8921ee1cd222adebf", null ], [ "getPacketLength", "class_l_r11x0.html#ac1f541bdee1d983126ceae47940b8f9d", null ], - [ "getRSSI", "class_l_r11x0.html#a468ee0182883d8af22a0a4202ef7baa5", null ], - [ "getSNR", "class_l_r11x0.html#ad4f32509aea96de6a7ec08a8e60a6bea", null ], + [ "getRSSI", "class_l_r11x0.html#a6cd2b2363501b2de064c9d1f32fabaa3", null ], + [ "getSNR", "class_l_r11x0.html#a004782e6e5c6ad213c3b0c677bb8642d", null ], [ "getTimeOnAir", "class_l_r11x0.html#abccf5dc80aab71090a5f19bfffa0201d", null ], [ "getWifiScanResult", "class_l_r11x0.html#a457f5dfe25385a329127f07abc4631a6", null ], [ "getWifiScanResultsCount", "class_l_r11x0.html#a5ef83caa291e2d310d260a8ea140bc8e", null ], @@ -31,7 +31,7 @@ var class_l_r11x0 = [ "invertIQ", "class_l_r11x0.html#af85c16956c2250dbf338a298c074d28c", null ], [ "irqRxDoneRxTimeout", "class_l_r11x0.html#af441859fbeed4ee5d32519d26e94c68b", null ], [ "isRxTimeout", "class_l_r11x0.html#a8d3e5877dcd784c8e922f32ff773dc61", null ], - [ "randomByte", "class_l_r11x0.html#aaa0fd2a2f8d2915153b42bf1c8eadd9d", null ], + [ "randomByte", "class_l_r11x0.html#a89b16d2231f588b67dc3aab0c0a467f4", null ], [ "readData", "class_l_r11x0.html#a3563453988a83d22dd07d4691543a300", null ], [ "readData", "class_l_r11x0.html#a20279f1b267e936991f47fd703924833", null ], [ "receive", "class_l_r11x0.html#ab82617fa3fa9f21d4cd427314ecc4af8", null ], @@ -41,7 +41,7 @@ var class_l_r11x0 = [ "scanChannel", "class_l_r11x0.html#a6a3034c91f5bce70c853ab1620725b3c", null ], [ "scanChannel", "class_l_r11x0.html#a99ece57e55ee0001671165213b409a44", null ], [ "setBandwidth", "class_l_r11x0.html#abf961ec7d93feb6472f26b7b976ee0c9", null ], - [ "setBitRate", "class_l_r11x0.html#a03ab7a24fec379c6ba2d642e1133c4f2", null ], + [ "setBitRate", "class_l_r11x0.html#ab1954e4733a7fbea4129d9a2de2285d9", null ], [ "setBroadcastAddress", "class_l_r11x0.html#af24ba794f71c4e37cd13d2f4dbec5bf7", null ], [ "setCodingRate", "class_l_r11x0.html#a583f2d5ed601a98c609dbf0d57f2f541", null ], [ "setCRC", "class_l_r11x0.html#a551b82787288b0b14e4d3124e6744dc3", null ], @@ -52,10 +52,10 @@ var class_l_r11x0 = [ "setIrqAction", "class_l_r11x0.html#a49116d006b60128fe6f73a6a868a6d18", null ], [ "setLrFhssConfig", "class_l_r11x0.html#a8c1def9a01021a52f5bb82c119a9ad35", null ], [ "setNodeAddress", "class_l_r11x0.html#a605f5c74ce523abad256866abe133d2e", null ], - [ "setOutputPower", "class_l_r11x0.html#a2522e288732aa77ec4f5a44e724612af", null ], + [ "setOutputPower", "class_l_r11x0.html#a5d357573584cd02849a958c46701d232", null ], [ "setOutputPower", "class_l_r11x0.html#a549ecc907732bca96dab27c433928740", null ], - [ "setPacketReceivedAction", "class_l_r11x0.html#a0a4d48bf33fe466ea4c14cd9db228dce", null ], - [ "setPacketSentAction", "class_l_r11x0.html#a88ff8c277e340c3273fb5715cd743cce", null ], + [ "setPacketReceivedAction", "class_l_r11x0.html#ac2a8ece736198c966e3870dac09f4e87", null ], + [ "setPacketSentAction", "class_l_r11x0.html#a92299e41f839590008b4e344776838a1", null ], [ "setPreambleLength", "class_l_r11x0.html#aa5d7ae65666f8f9abcb7e9b169884a4a", null ], [ "setRxBandwidth", "class_l_r11x0.html#a25f5ee68b3c2638ae613c87ed1c3fc64", null ], [ "setSpreadingFactor", "class_l_r11x0.html#adf6895cbf7af7e00ea06c5b2b5040cb4", null ], @@ -70,7 +70,7 @@ var class_l_r11x0 = [ "standby", "class_l_r11x0.html#a2d682ec2ca0ddf4da41a93dd8e728665", null ], [ "startChannelScan", "class_l_r11x0.html#a4f3bc362530b85dd643669705f03998d", null ], [ "startChannelScan", "class_l_r11x0.html#aa09eb53b0c32a5f229e14c46bfe45a4f", null ], - [ "startReceive", "class_l_r11x0.html#aabc154b86d9159fb5f769f62418d52b7", null ], + [ "startReceive", "class_l_r11x0.html#aa6ce285cc1b76ce028db6442a421ed8d", null ], [ "startReceive", "class_l_r11x0.html#ae79c42c4ceceb7a6897731d01d365281", null ], [ "startTransmit", "class_l_r11x0.html#a923654706eff5118ef6e84214e837f27", null ], [ "startTransmit", "class_l_r11x0.html#ad59e37ce0606dc8051e40be9d14cfec3", null ], diff --git a/class_physical_layer.html b/class_physical_layer.html index 0e20ac06..c5d4930f 100644 --- a/class_physical_layer.html +++ b/class_physical_layer.html @@ -647,7 +647,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 CC1101, SX128x, SX1278, SX1272, RF69, and LR11x0.

+

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

@@ -677,7 +677,7 @@ class LoRaWANNode

Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem.

Returns
SNR of the last received packet in dB.
-

Reimplemented in SX126x, SX128x, SX127x, and LR11x0.

+

Reimplemented in SX126x, LR11x0, SX128x, and SX127x.

@@ -924,7 +924,7 @@ class LoRaWANNode

Get one truly random byte from RSSI noise. Must be implemented in module class.

Returns
TRNG byte.
-

Reimplemented in SX126x, CC1101, SX128x, SX127x, Si443x, RF69, and LR11x0.

+

Reimplemented in SX126x, RF69, LR11x0, CC1101, SX128x, SX127x, and Si443x.

@@ -987,7 +987,7 @@ class LoRaWANNode -

Reimplemented in SX126x, CC1101, SX128x, SX127x, Si443x, and RF69.

+

Reimplemented in SX126x, RF69, CC1101, SX128x, SX127x, and Si443x.

@@ -1180,7 +1180,7 @@ class LoRaWANNode
Returns
Status Codes
-

Reimplemented in SX1278, SX1272, SX126x, CC1101, SX128x, SX1233, Si443x, RF69, nRF24, and LR11x0.

+

Reimplemented in SX1278, SX1272, SX126x, SX1233, RF69, LR11x0, CC1101, SX128x, Si443x, and nRF24.

@@ -1338,7 +1338,7 @@ class LoRaWANNode
Returns
Status Codes
-

Reimplemented in CC1101, SX127x, and RF69.

+

Reimplemented in RF69, CC1101, and SX127x.

@@ -1374,7 +1374,7 @@ class LoRaWANNode -

Reimplemented in SX126x, CC1101, SX128x, SX127x, Si443x, and RF69.

+

Reimplemented in SX126x, RF69, CC1101, SX128x, SX127x, and Si443x.

@@ -1486,7 +1486,7 @@ class LoRaWANNode
Returns
Status Codes
-

Reimplemented in SX1268, SX1262, CC1101, SX128x, SX1279, SX1278, SX1277, SX1276, SX1272, Si4432, Si4430, RF69, nRF24, LR1120, and LR1110.

+

Reimplemented in SX1268, SX1262, RF69, LR1120, LR1110, CC1101, SX128x, SX1279, SX1278, SX1277, SX1276, SX1272, Si4432, Si4430, and nRF24.

@@ -1560,7 +1560,7 @@ class LoRaWANNode
Returns
Status Codes
-

Reimplemented in CC1101, SX128x, nRF24, SX1278, SX1272, SX1268, SX1262, SX1261, STM32WLx, Si4432, Si4431, Si4430, and LR11x0.

+

Reimplemented in CC1101, SX128x, nRF24, SX1278, SX1272, SX1268, SX1262, SX1261, STM32WLx, LR11x0, Si4432, Si4431, and Si4430.

@@ -1596,7 +1596,7 @@ class LoRaWANNode -

Reimplemented in SX126x, STM32WLx, CC1101, SX128x, SX127x, Si443x, RF69, nRF24, and LR11x0.

+

Reimplemented in SX126x, STM32WLx, RF69, LR11x0, CC1101, SX128x, SX127x, Si443x, and nRF24.

@@ -1632,7 +1632,7 @@ class LoRaWANNode -

Reimplemented in SX126x, STM32WLx, CC1101, SX128x, SX127x, Si443x, RF69, nRF24, and LR11x0.

+

Reimplemented in SX126x, STM32WLx, RF69, LR11x0, CC1101, SX128x, SX127x, Si443x, and nRF24.

@@ -1747,7 +1747,7 @@ class LoRaWANNode

Sets module to sleep.

Returns
Status Codes
-

Reimplemented in SX127x, Si443x, RF69, and nRF24.

+

Reimplemented in RF69, SX127x, Si443x, and nRF24.

@@ -1888,7 +1888,7 @@ class LoRaWANNode

Sets module to received mode using its default configuration.

Returns
Status Codes
-

Reimplemented in SX126x, CC1101, SX128x, SX127x, Si443x, RF69, nRF24, and LR11x0.

+

Reimplemented in SX126x, RF69, LR11x0, CC1101, SX128x, SX127x, Si443x, and nRF24.

@@ -1950,7 +1950,7 @@ class LoRaWANNode
Returns
Status Codes
-

Reimplemented in SX126x, LR11x0, CC1101, SX127x, Si443x, RF69, and nRF24.

+

Reimplemented in SX126x, LR11x0, RF69, CC1101, SX127x, Si443x, and nRF24.

diff --git a/class_r_f69-members.html b/class_r_f69-members.html index fda18792..ae2afd93 100644 --- a/class_r_f69-members.html +++ b/class_r_f69-members.html @@ -99,8 +99,8 @@ $(document).ready(function(){initNavTree('class_r_f69.html',''); initResizable() clearDio1Action()RF69 clearFifoEmptyAction()RF69 clearFifoFullAction()RF69 - clearPacketReceivedAction()RF69virtual - clearPacketSentAction()RF69virtual + clearPacketReceivedAction() overrideRF69virtual + clearPacketSentAction() overrideRF69virtual disableAddressFiltering()RF69 disableAES()RF69 disableContinuousModeBitSync()RF69 @@ -119,7 +119,7 @@ $(document).ready(function(){initNavTree('class_r_f69.html',''); initResizable() getFrequency(float *freq)RF69 getFrequencyDeviation(float *freqDev)RF69 getPacketLength(bool update=true) overrideRF69virtual - getRSSI()RF69virtual + getRSSI() overrideRF69virtual getSNR()PhysicalLayervirtual getTemperature()RF69 getTimeOnAir(size_t len)PhysicalLayervirtual @@ -130,9 +130,9 @@ $(document).ready(function(){initNavTree('class_r_f69.html',''); initResizable() PhysicalLayer(float step, size_t maxLen)PhysicalLayer random(int32_t max)PhysicalLayer random(int32_t min, int32_t max)PhysicalLayer - randomByte()RF69virtual + randomByte() overrideRF69virtual read(bool drop=true)PhysicalLayer - readBit(uint32_t pin)RF69virtual + readBit(uint32_t pin) overrideRF69virtual readData(uint8_t *data, size_t len) overrideRF69virtual readData(uint8_t *data, size_t len)RF69 receive(uint8_t *data, size_t len) overrideRF69virtual @@ -143,7 +143,7 @@ $(document).ready(function(){initNavTree('class_r_f69.html',''); initResizable() scanChannel()PhysicalLayervirtual setAESKey(uint8_t *key)RF69 setAmbientTemperature(int16_t tempAmbient)RF69 - setBitRate(float br)RF69virtual + setBitRate(float br) overrideRF69virtual setBroadcastAddress(uint8_t broadAddr)RF69 setChannelScanAction(void(*func)(void))PhysicalLayervirtual setCrcFiltering(bool crcOn=true)RF69 @@ -151,13 +151,13 @@ $(document).ready(function(){initNavTree('class_r_f69.html',''); initResizable() setDataShaping(uint8_t sh) overrideRF69virtual setDio0Action(void(*func)(void))RF69 setDio1Action(void(*func)(void))RF69 - setDIOMapping(uint32_t pin, uint32_t value)RF69virtual - setDirectAction(void(*func)(void))RF69virtual + setDIOMapping(uint32_t pin, uint32_t value) overrideRF69virtual + setDirectAction(void(*func)(void)) overrideRF69virtual setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer setEncoding(uint8_t encoding) overrideRF69virtual setFifoEmptyAction(void(*func)(void))RF69 setFifoFullAction(void(*func)(void))RF69 - setFrequency(float freq)RF69virtual + setFrequency(float freq) overrideRF69virtual setFrequencyDeviation(float freqDev) overrideRF69virtual setLnaTestBoost(bool value)RF69 setNodeAddress(uint8_t nodeAddr)RF69 @@ -167,8 +167,8 @@ $(document).ready(function(){initNavTree('class_r_f69.html',''); initResizable() setOokThresholdType(uint8_t type)RF69 setOutputPower(int8_t pwr, bool highPower=false)RF69 PhysicalLayer::setOutputPower(int8_t power)PhysicalLayervirtual - setPacketReceivedAction(void(*func)(void))RF69virtual - setPacketSentAction(void(*func)(void))RF69virtual + setPacketReceivedAction(void(*func)(void)) overrideRF69virtual + setPacketSentAction(void(*func)(void)) overrideRF69virtual setPreambleLength(uint8_t preambleLen)RF69 PhysicalLayer::setPreambleLength(size_t len)PhysicalLayervirtual setPromiscuousMode(bool enable=true)RF69 @@ -178,13 +178,13 @@ $(document).ready(function(){initNavTree('class_r_f69.html',''); initResizable() setRxBandwidth(float rxBw)RF69 setSyncWord(uint8_t *syncWord, size_t len, uint8_t maxErrBits=0)RF69 PhysicalLayer::setSyncWord(uint8_t *sync, size_t len)PhysicalLayervirtual - sleep()RF69virtual + sleep() overrideRF69virtual standby() overrideRF69virtual standby(uint8_t mode) overrideRF69virtual startChannelScan()PhysicalLayervirtual startDirect()PhysicalLayer - startReceive()RF69virtual - startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)RF69virtual + startReceive() overrideRF69virtual + startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) overrideRF69virtual startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideRF69virtual startTransmit(const char *str, uint8_t addr=0)RF69 startTransmit(uint8_t *data, size_t len, uint8_t addr=0)RF69 diff --git a/class_r_f69.html b/class_r_f69.html index d76c4317..ba4f3ed4 100644 --- a/class_r_f69.html +++ b/class_r_f69.html @@ -124,9 +124,9 @@ void int16_t receive (uint8_t *data, size_t len) override  Blocking binary receive method. Overloads for string-based transmissions are implemented in PhysicalLayer. More...
  -int16_t sleep () - Sets the module to sleep mode. More...
-  +int16_t sleep () override + Sets the module to sleep mode. More...
+  int16_t standby () override  Sets the module to standby mode. More...
  @@ -166,20 +166,20 @@ void clearDio1Action ()  Clears interrupt service routine to call when DIO1 activates.
  -void setPacketReceivedAction (void(*func)(void)) - Sets interrupt service routine to call when a packet is received. More...
-  - -void clearPacketReceivedAction () - Clears interrupt service routine to call when a packet is received.
-  -void setPacketSentAction (void(*func)(void)) - Sets interrupt service routine to call when a packet is sent. More...
-  - -void clearPacketSentAction () - Clears interrupt service routine to call when a packet is sent.
-  +void setPacketReceivedAction (void(*func)(void)) override + Sets interrupt service routine to call when a packet is received. More...
+  + +void clearPacketReceivedAction () override + Clears interrupt service routine to call when a packet is received.
+  +void setPacketSentAction (void(*func)(void)) override + Sets interrupt service routine to call when a packet is sent. More...
+  + +void clearPacketSentAction () override + Clears interrupt service routine to call when a packet is sent.
+  void setFifoEmptyAction (void(*func)(void))  Set interrupt service routine function to call when FIFO is empty. More...
  @@ -206,24 +206,24 @@ void int16_t finishTransmit () override  Clean up after transmission is done. More...
  -int16_t startReceive () - Interrupt-driven receive method. GDO0 will be activated when full packet is received. More...
-  -int16_t startReceive (uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) - Interrupt-driven receive method, implemented for compatibility with PhysicalLayer. More...
-  +int16_t startReceive () override + Interrupt-driven receive method. GDO0 will be activated when full packet is received. More...
+  +int16_t startReceive (uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override + Interrupt-driven receive method, implemented for compatibility with PhysicalLayer. More...
+  int16_t readData (uint8_t *data, size_t len) override  Reads data received after calling startReceive method. When the packet length is not known in advance, getPacketLength method must be called BEFORE calling readData! More...
  -int16_t setFrequency (float freq) - Sets carrier frequency. Allowed values are in bands 290.0 to 340.0 MHz, 431.0 to 510.0 MHz and 862.0 to 1020.0 MHz. More...
-  +int16_t setFrequency (float freq) override + Sets carrier frequency. Allowed values are in bands 290.0 to 340.0 MHz, 431.0 to 510.0 MHz and 862.0 to 1020.0 MHz. More...
+  int16_t getFrequency (float *freq)  Gets carrier frequency. More...
  -int16_t setBitRate (float br) - Sets bit rate. Allowed values range from 0.5 to 300.0 kbps. More...
-  +int16_t setBitRate (float br) override + Sets bit rate. Allowed values range from 0.5 to 300.0 kbps. More...
+  int16_t setRxBandwidth (float rxBw)  Sets receiver bandwidth. Allowed values are 2.6, 3.1, 3.9, 5.2, 6.3, 7.8, 10.4, 12.5, 15.6, 20.8, 25.0, 31.3, 41.7, 50.0, 62.5, 83.3, 100.0, 125.0, 166.7, 200.0, 250.0, 333.3, 400.0 and 500.0 kHz. More...
  @@ -305,9 +305,9 @@ void int16_t setLnaTestBoost (bool value)  Enable/disable LNA Boost mode (disabled by default). More...
  -float getRSSI () - Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. More...
-  +float getRSSI () override + Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. More...
+  int16_t setRSSIThreshold (float dbm)  Sets the RSSI value above which the RSSI interrupt is signaled. More...
  @@ -317,21 +317,21 @@ void void setRfSwitchTable (const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])  Some modules contain external RF switch controlled by pins. This function gives RadioLib control over those pins to automatically switch between various modes. More...
  -uint8_t randomByte () - Get one truly random byte from RSSI noise. More...
-  +uint8_t randomByte () override + Get one truly random byte from RSSI noise. More...
+  int16_t getChipVersion ()  Read version SPI register. Should return RF69_CHIP_VERSION (0x24) if SX127x is connected and working. More...
  -void setDirectAction (void(*func)(void)) - Set interrupt service routine function to call when data bit is received in direct mode. More...
-  -void readBit (uint32_t pin) - Function to read and process data bit in direct reception mode. More...
-  -int16_t setDIOMapping (uint32_t pin, uint32_t value) - Configure DIO pin mapping to get a given signal on a DIO pin (if available). More...
-  +void setDirectAction (void(*func)(void)) override + Set interrupt service routine function to call when data bit is received in direct mode. More...
+  +void readBit (uint32_t pin) override + Function to read and process data bit in direct reception mode. More...
+  +int16_t setDIOMapping (uint32_t pin, uint32_t value) override + Configure DIO pin mapping to get a given signal on a DIO pin (if available). More...
+  int16_t transmit (const char *str, uint8_t addr=0)  C-string transmit method. More...
  @@ -939,8 +939,8 @@ virtual void  - -

◆ getRSSI()

+ +

◆ getRSSI()

@@ -957,7 +957,7 @@ virtual void  -virtual +overridevirtual
- -

◆ randomByte()

+ +

◆ randomByte()

@@ -1007,7 +1007,7 @@ virtual void  -virtual +overridevirtual
- -

◆ readBit()

+ +

◆ readBit()

@@ -1038,7 +1038,7 @@ virtual void  -virtual +overridevirtual
- -

◆ setBitRate()

+ +

◆ setBitRate()

@@ -1300,7 +1300,7 @@ virtual void  -virtual +overridevirtual
@@ -1463,8 +1463,8 @@ virtual void 
- -

◆ setDIOMapping()

+ +

◆ setDIOMapping()

@@ -1492,7 +1492,7 @@ virtual void  -virtual +overridevirtual
- -

◆ setDirectAction()

+ +

◆ setDirectAction()

@@ -1530,7 +1530,7 @@ virtual void  -virtual +overridevirtual
- -

◆ setFrequency()

+ +

◆ setFrequency()

@@ -1655,7 +1655,7 @@ virtual void  -virtual +overridevirtual
- -

◆ setPacketReceivedAction()

+ +

◆ setPacketReceivedAction()

@@ -1929,7 +1929,7 @@ virtual void  -virtual +overridevirtual
- -

◆ setPacketSentAction()

+ +

◆ setPacketSentAction()

@@ -1965,7 +1965,7 @@ virtual void  -virtual +overridevirtual
- -

◆ sleep()

+ +

◆ sleep()

@@ -2255,7 +2255,7 @@ virtual void  -virtual +overridevirtual
- -

◆ startReceive() [1/2]

+ +

◆ startReceive() [1/2]

@@ -2352,7 +2352,7 @@ virtual void  -virtual +overridevirtual
- -

◆ startReceive() [2/2]

+ +

◆ startReceive() [2/2]

@@ -2405,7 +2405,7 @@ virtual void  -virtual +overridevirtual
diff --git a/class_r_f69.js b/class_r_f69.js index 12dd5846..285f5af8 100644 --- a/class_r_f69.js +++ b/class_r_f69.js @@ -6,8 +6,8 @@ var class_r_f69 = [ "clearDio1Action", "class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51", null ], [ "clearFifoEmptyAction", "class_r_f69.html#a0d7b67499462777f7909860405ca6b62", null ], [ "clearFifoFullAction", "class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3", null ], - [ "clearPacketReceivedAction", "class_r_f69.html#ac302d3524dc802467a7ce91b2223db90", null ], - [ "clearPacketSentAction", "class_r_f69.html#a3a8be5bcc37d3e4f5ac2d0310c8bac12", null ], + [ "clearPacketReceivedAction", "class_r_f69.html#a31390763956a50182b0b5b8a7e5ff4e3", null ], + [ "clearPacketSentAction", "class_r_f69.html#ac4ada0c4243b092ffb4c9812519fe947", null ], [ "disableAddressFiltering", "class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee", null ], [ "disableAES", "class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa", null ], [ "disableContinuousModeBitSync", "class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad", null ], @@ -23,11 +23,11 @@ var class_r_f69 = [ "getFrequency", "class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed", null ], [ "getFrequencyDeviation", "class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9", null ], [ "getPacketLength", "class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1", null ], - [ "getRSSI", "class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7", null ], + [ "getRSSI", "class_r_f69.html#af107c6a510d7e0314f1f4d76637c833d", null ], [ "getTemperature", "class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853", null ], [ "packetMode", "class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f", null ], - [ "randomByte", "class_r_f69.html#a2023f0f22aad00a702bdf598c2154043", null ], - [ "readBit", "class_r_f69.html#ab797840275fbccc40162225c32f5ffc3", null ], + [ "randomByte", "class_r_f69.html#ac47d0f59cb190361fa9b7d10efacc297", null ], + [ "readBit", "class_r_f69.html#a5a340c38b9b8b79d4fe59fb987b12746", null ], [ "readData", "class_r_f69.html#a3563453988a83d22dd07d4691543a300", null ], [ "readData", "class_r_f69.html#a3983b66c83818b4082805bcafc712f00", null ], [ "receive", "class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8", null ], @@ -36,18 +36,18 @@ var class_r_f69 = [ "reset", "class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a", null ], [ "setAESKey", "class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3", null ], [ "setAmbientTemperature", "class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703", null ], - [ "setBitRate", "class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13", null ], + [ "setBitRate", "class_r_f69.html#aa3bfb830901728e9a3c140036aa91c56", null ], [ "setBroadcastAddress", "class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8", null ], [ "setCrcFiltering", "class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e", null ], [ "setDataShaping", "class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a", null ], [ "setDio0Action", "class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77", null ], [ "setDio1Action", "class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf", null ], - [ "setDIOMapping", "class_r_f69.html#a0d7720672c0aa0cf4464d544540cbada", null ], - [ "setDirectAction", "class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28", null ], + [ "setDIOMapping", "class_r_f69.html#a7243b3396edc1e6e67575894a5033afe", null ], + [ "setDirectAction", "class_r_f69.html#a9852fe520aec018d2bb4aff0cd17de77", null ], [ "setEncoding", "class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2", null ], [ "setFifoEmptyAction", "class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d", null ], [ "setFifoFullAction", "class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b", null ], - [ "setFrequency", "class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b", null ], + [ "setFrequency", "class_r_f69.html#aa7f47c37eec6c7e3ebf6e6d30ebd5532", null ], [ "setFrequencyDeviation", "class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be", null ], [ "setLnaTestBoost", "class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194", null ], [ "setNodeAddress", "class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c", null ], @@ -56,8 +56,8 @@ var class_r_f69 = [ "setOokPeakThresholdDecrement", "class_r_f69.html#a434420f2def6c383608223105469fda1", null ], [ "setOokThresholdType", "class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a", null ], [ "setOutputPower", "class_r_f69.html#a721094611fa375e73bd0332ab2d7d113", null ], - [ "setPacketReceivedAction", "class_r_f69.html#ac8bff26070735a733a24146d414c3c5f", null ], - [ "setPacketSentAction", "class_r_f69.html#a27fad7a67c4239c19bd94d1ccfb493ca", null ], + [ "setPacketReceivedAction", "class_r_f69.html#a74962c069e08890ac9566d48634c778e", null ], + [ "setPacketSentAction", "class_r_f69.html#a97603856caada65676ff4b11630c7f72", null ], [ "setPreambleLength", "class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9", null ], [ "setPromiscuousMode", "class_r_f69.html#ae004326d663a9d6a9c30e792aa368b49", null ], [ "setRfSwitchPins", "class_r_f69.html#ac341945538a84430c61f80f610a94411", null ], @@ -65,11 +65,11 @@ var class_r_f69 = [ "setRSSIThreshold", "class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a", null ], [ "setRxBandwidth", "class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a", null ], [ "setSyncWord", "class_r_f69.html#a26667d50ec845c28e17236c69c886561", null ], - [ "sleep", "class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb", null ], + [ "sleep", "class_r_f69.html#adec9debf69f5ee846a5b6e34831ade3c", null ], [ "standby", "class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1", null ], [ "standby", "class_r_f69.html#a6e3002ab0c58e2087a7d101eda7afa82", null ], - [ "startReceive", "class_r_f69.html#afae38fa64242043de34096bf497725f1", null ], - [ "startReceive", "class_r_f69.html#abb9bc55a6878bb21312599c3e0411eeb", null ], + [ "startReceive", "class_r_f69.html#a3bece228d369dcc1aab6a5b29d0685a8", null ], + [ "startReceive", "class_r_f69.html#a21ae7524fe573f1a7e74dee342418222", null ], [ "startTransmit", "class_r_f69.html#a923654706eff5118ef6e84214e837f27", null ], [ "startTransmit", "class_r_f69.html#ad59e37ce0606dc8051e40be9d14cfec3", null ], [ "startTransmit", "class_r_f69.html#a855dc194947b095b821ec1524ba6814c", null ], diff --git a/class_s_x1231-members.html b/class_s_x1231-members.html index 53ce798f..38eaad63 100644 --- a/class_s_x1231-members.html +++ b/class_s_x1231-members.html @@ -99,8 +99,8 @@ $(document).ready(function(){initNavTree('class_s_x1231.html',''); initResizable clearDio1Action()RF69 clearFifoEmptyAction()RF69 clearFifoFullAction()RF69 - clearPacketReceivedAction()RF69virtual - clearPacketSentAction()RF69virtual + clearPacketReceivedAction() overrideRF69virtual + clearPacketSentAction() overrideRF69virtual disableAddressFiltering()RF69 disableAES()RF69 disableContinuousModeBitSync()RF69 @@ -119,7 +119,7 @@ $(document).ready(function(){initNavTree('class_s_x1231.html',''); initResizable getFrequency(float *freq)RF69 getFrequencyDeviation(float *freqDev)RF69 getPacketLength(bool update=true) overrideRF69virtual - getRSSI()RF69virtual + getRSSI() overrideRF69virtual getSNR()PhysicalLayervirtual getTemperature()RF69 getTimeOnAir(size_t len)PhysicalLayervirtual @@ -130,9 +130,9 @@ $(document).ready(function(){initNavTree('class_s_x1231.html',''); initResizable PhysicalLayer(float step, size_t maxLen)PhysicalLayer random(int32_t max)PhysicalLayer random(int32_t min, int32_t max)PhysicalLayer - randomByte()RF69virtual + randomByte() overrideRF69virtual read(bool drop=true)PhysicalLayer - readBit(uint32_t pin)RF69virtual + readBit(uint32_t pin) overrideRF69virtual readData(uint8_t *data, size_t len) overrideRF69virtual readData(uint8_t *data, size_t len)RF69 receive(uint8_t *data, size_t len) overrideRF69virtual @@ -143,7 +143,7 @@ $(document).ready(function(){initNavTree('class_s_x1231.html',''); initResizable scanChannel()PhysicalLayervirtual setAESKey(uint8_t *key)RF69 setAmbientTemperature(int16_t tempAmbient)RF69 - setBitRate(float br)RF69virtual + setBitRate(float br) overrideRF69virtual setBroadcastAddress(uint8_t broadAddr)RF69 setChannelScanAction(void(*func)(void))PhysicalLayervirtual setCrcFiltering(bool crcOn=true)RF69 @@ -151,13 +151,13 @@ $(document).ready(function(){initNavTree('class_s_x1231.html',''); initResizable setDataShaping(uint8_t sh) overrideRF69virtual setDio0Action(void(*func)(void))RF69 setDio1Action(void(*func)(void))RF69 - setDIOMapping(uint32_t pin, uint32_t value)RF69virtual - setDirectAction(void(*func)(void))RF69virtual + setDIOMapping(uint32_t pin, uint32_t value) overrideRF69virtual + setDirectAction(void(*func)(void)) overrideRF69virtual setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer setEncoding(uint8_t encoding) overrideRF69virtual setFifoEmptyAction(void(*func)(void))RF69 setFifoFullAction(void(*func)(void))RF69 - setFrequency(float freq)RF69virtual + setFrequency(float freq) overrideRF69virtual setFrequencyDeviation(float freqDev) overrideRF69virtual setLnaTestBoost(bool value)RF69 setNodeAddress(uint8_t nodeAddr)RF69 @@ -167,8 +167,8 @@ $(document).ready(function(){initNavTree('class_s_x1231.html',''); initResizable setOokThresholdType(uint8_t type)RF69 setOutputPower(int8_t pwr, bool highPower=false)RF69 PhysicalLayer::setOutputPower(int8_t power)PhysicalLayervirtual - setPacketReceivedAction(void(*func)(void))RF69virtual - setPacketSentAction(void(*func)(void))RF69virtual + setPacketReceivedAction(void(*func)(void)) overrideRF69virtual + setPacketSentAction(void(*func)(void)) overrideRF69virtual setPreambleLength(uint8_t preambleLen)RF69 PhysicalLayer::setPreambleLength(size_t len)PhysicalLayervirtual setPromiscuousMode(bool enable=true)RF69 @@ -178,13 +178,13 @@ $(document).ready(function(){initNavTree('class_s_x1231.html',''); initResizable setRxBandwidth(float rxBw)RF69 setSyncWord(uint8_t *syncWord, size_t len, uint8_t maxErrBits=0)RF69 PhysicalLayer::setSyncWord(uint8_t *sync, size_t len)PhysicalLayervirtual - sleep()RF69virtual + sleep() overrideRF69virtual standby() overrideRF69virtual standby(uint8_t mode) overrideRF69virtual startChannelScan()PhysicalLayervirtual startDirect()PhysicalLayer - startReceive()RF69virtual - startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)RF69virtual + startReceive() overrideRF69virtual + startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) overrideRF69virtual startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideRF69virtual startTransmit(const char *str, uint8_t addr=0)RF69 startTransmit(uint8_t *data, size_t len, uint8_t addr=0)RF69 diff --git a/class_s_x1231.html b/class_s_x1231.html index 40637132..0bddd68d 100644 --- a/class_s_x1231.html +++ b/class_s_x1231.html @@ -131,9 +131,9 @@ void int16_t receive (uint8_t *data, size_t len) override  Blocking binary receive method. Overloads for string-based transmissions are implemented in PhysicalLayer. More...
  -int16_t sleep () - Sets the module to sleep mode. More...
-  +int16_t sleep () override + Sets the module to sleep mode. More...
+  int16_t standby () override  Sets the module to standby mode. More...
  @@ -173,20 +173,20 @@ void clearDio1Action ()  Clears interrupt service routine to call when DIO1 activates.
  -void setPacketReceivedAction (void(*func)(void)) - Sets interrupt service routine to call when a packet is received. More...
-  - -void clearPacketReceivedAction () - Clears interrupt service routine to call when a packet is received.
-  -void setPacketSentAction (void(*func)(void)) - Sets interrupt service routine to call when a packet is sent. More...
-  - -void clearPacketSentAction () - Clears interrupt service routine to call when a packet is sent.
-  +void setPacketReceivedAction (void(*func)(void)) override + Sets interrupt service routine to call when a packet is received. More...
+  + +void clearPacketReceivedAction () override + Clears interrupt service routine to call when a packet is received.
+  +void setPacketSentAction (void(*func)(void)) override + Sets interrupt service routine to call when a packet is sent. More...
+  + +void clearPacketSentAction () override + Clears interrupt service routine to call when a packet is sent.
+  void setFifoEmptyAction (void(*func)(void))  Set interrupt service routine function to call when FIFO is empty. More...
  @@ -213,24 +213,24 @@ void int16_t finishTransmit () override  Clean up after transmission is done. More...
  -int16_t startReceive () - Interrupt-driven receive method. GDO0 will be activated when full packet is received. More...
-  -int16_t startReceive (uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) - Interrupt-driven receive method, implemented for compatibility with PhysicalLayer. More...
-  +int16_t startReceive () override + Interrupt-driven receive method. GDO0 will be activated when full packet is received. More...
+  +int16_t startReceive (uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override + Interrupt-driven receive method, implemented for compatibility with PhysicalLayer. More...
+  int16_t readData (uint8_t *data, size_t len) override  Reads data received after calling startReceive method. When the packet length is not known in advance, getPacketLength method must be called BEFORE calling readData! More...
  -int16_t setFrequency (float freq) - Sets carrier frequency. Allowed values are in bands 290.0 to 340.0 MHz, 431.0 to 510.0 MHz and 862.0 to 1020.0 MHz. More...
-  +int16_t setFrequency (float freq) override + Sets carrier frequency. Allowed values are in bands 290.0 to 340.0 MHz, 431.0 to 510.0 MHz and 862.0 to 1020.0 MHz. More...
+  int16_t getFrequency (float *freq)  Gets carrier frequency. More...
  -int16_t setBitRate (float br) - Sets bit rate. Allowed values range from 0.5 to 300.0 kbps. More...
-  +int16_t setBitRate (float br) override + Sets bit rate. Allowed values range from 0.5 to 300.0 kbps. More...
+  int16_t setRxBandwidth (float rxBw)  Sets receiver bandwidth. Allowed values are 2.6, 3.1, 3.9, 5.2, 6.3, 7.8, 10.4, 12.5, 15.6, 20.8, 25.0, 31.3, 41.7, 50.0, 62.5, 83.3, 100.0, 125.0, 166.7, 200.0, 250.0, 333.3, 400.0 and 500.0 kHz. More...
  @@ -312,9 +312,9 @@ void int16_t setLnaTestBoost (bool value)  Enable/disable LNA Boost mode (disabled by default). More...
  -float getRSSI () - Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. More...
-  +float getRSSI () override + Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. More...
+  int16_t setRSSIThreshold (float dbm)  Sets the RSSI value above which the RSSI interrupt is signaled. More...
  @@ -324,21 +324,21 @@ void void setRfSwitchTable (const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])  Some modules contain external RF switch controlled by pins. This function gives RadioLib control over those pins to automatically switch between various modes. More...
  -uint8_t randomByte () - Get one truly random byte from RSSI noise. More...
-  +uint8_t randomByte () override + Get one truly random byte from RSSI noise. More...
+  int16_t getChipVersion ()  Read version SPI register. Should return RF69_CHIP_VERSION (0x24) if SX127x is connected and working. More...
  -void setDirectAction (void(*func)(void)) - Set interrupt service routine function to call when data bit is received in direct mode. More...
-  -void readBit (uint32_t pin) - Function to read and process data bit in direct reception mode. More...
-  -int16_t setDIOMapping (uint32_t pin, uint32_t value) - Configure DIO pin mapping to get a given signal on a DIO pin (if available). More...
-  +void setDirectAction (void(*func)(void)) override + Set interrupt service routine function to call when data bit is received in direct mode. More...
+  +void readBit (uint32_t pin) override + Function to read and process data bit in direct reception mode. More...
+  +int16_t setDIOMapping (uint32_t pin, uint32_t value) override + Configure DIO pin mapping to get a given signal on a DIO pin (if available). More...
+  int16_t transmit (const char *str, uint8_t addr=0)  C-string transmit method. More...
  diff --git a/class_s_x1233-members.html b/class_s_x1233-members.html index dc354f26..1ddbba89 100644 --- a/class_s_x1233-members.html +++ b/class_s_x1233-members.html @@ -99,8 +99,8 @@ $(document).ready(function(){initNavTree('class_s_x1233.html',''); initResizable clearDio1Action()RF69 clearFifoEmptyAction()RF69 clearFifoFullAction()RF69 - clearPacketReceivedAction()RF69virtual - clearPacketSentAction()RF69virtual + clearPacketReceivedAction() overrideRF69virtual + clearPacketSentAction() overrideRF69virtual disableAddressFiltering()RF69 disableAES()RF69 disableContinuousModeBitSync()RF69 @@ -119,7 +119,7 @@ $(document).ready(function(){initNavTree('class_s_x1233.html',''); initResizable getFrequency(float *freq)RF69 getFrequencyDeviation(float *freqDev)RF69 getPacketLength(bool update=true) overrideRF69virtual - getRSSI()RF69virtual + getRSSI() overrideRF69virtual getSNR()PhysicalLayervirtual getTemperature()RF69 getTimeOnAir(size_t len)PhysicalLayervirtual @@ -130,9 +130,9 @@ $(document).ready(function(){initNavTree('class_s_x1233.html',''); initResizable PhysicalLayer(float step, size_t maxLen)PhysicalLayer random(int32_t max)PhysicalLayer random(int32_t min, int32_t max)PhysicalLayer - randomByte()RF69virtual + randomByte() overrideRF69virtual read(bool drop=true)PhysicalLayer - readBit(uint32_t pin)RF69virtual + readBit(uint32_t pin) overrideRF69virtual readData(uint8_t *data, size_t len) overrideRF69virtual readData(uint8_t *data, size_t len)RF69 receive(uint8_t *data, size_t len) overrideRF69virtual @@ -143,7 +143,7 @@ $(document).ready(function(){initNavTree('class_s_x1233.html',''); initResizable scanChannel()PhysicalLayervirtual setAESKey(uint8_t *key)RF69 setAmbientTemperature(int16_t tempAmbient)RF69 - setBitRate(float br)SX1233virtual + setBitRate(float br) overrideSX1233virtual setBroadcastAddress(uint8_t broadAddr)RF69 setChannelScanAction(void(*func)(void))PhysicalLayervirtual setCrcFiltering(bool crcOn=true)RF69 @@ -151,13 +151,13 @@ $(document).ready(function(){initNavTree('class_s_x1233.html',''); initResizable setDataShaping(uint8_t sh) overrideRF69virtual setDio0Action(void(*func)(void))RF69 setDio1Action(void(*func)(void))RF69 - setDIOMapping(uint32_t pin, uint32_t value)RF69virtual - setDirectAction(void(*func)(void))RF69virtual + setDIOMapping(uint32_t pin, uint32_t value) overrideRF69virtual + setDirectAction(void(*func)(void)) overrideRF69virtual setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer setEncoding(uint8_t encoding) overrideRF69virtual setFifoEmptyAction(void(*func)(void))RF69 setFifoFullAction(void(*func)(void))RF69 - setFrequency(float freq)RF69virtual + setFrequency(float freq) overrideRF69virtual setFrequencyDeviation(float freqDev) overrideRF69virtual setLnaTestBoost(bool value)RF69 setNodeAddress(uint8_t nodeAddr)RF69 @@ -167,8 +167,8 @@ $(document).ready(function(){initNavTree('class_s_x1233.html',''); initResizable setOokThresholdType(uint8_t type)RF69 setOutputPower(int8_t pwr, bool highPower=false)RF69 PhysicalLayer::setOutputPower(int8_t power)PhysicalLayervirtual - setPacketReceivedAction(void(*func)(void))RF69virtual - setPacketSentAction(void(*func)(void))RF69virtual + setPacketReceivedAction(void(*func)(void)) overrideRF69virtual + setPacketSentAction(void(*func)(void)) overrideRF69virtual setPreambleLength(uint8_t preambleLen)RF69 PhysicalLayer::setPreambleLength(size_t len)PhysicalLayervirtual setPromiscuousMode(bool enable=true)RF69 @@ -178,13 +178,13 @@ $(document).ready(function(){initNavTree('class_s_x1233.html',''); initResizable setRxBandwidth(float rxBw)RF69 setSyncWord(uint8_t *syncWord, size_t len, uint8_t maxErrBits=0)RF69 PhysicalLayer::setSyncWord(uint8_t *sync, size_t len)PhysicalLayervirtual - sleep()RF69virtual + sleep() overrideRF69virtual standby() overrideRF69virtual standby(uint8_t mode) overrideRF69virtual startChannelScan()PhysicalLayervirtual startDirect()PhysicalLayer - startReceive()RF69virtual - startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)RF69virtual + startReceive() overrideRF69virtual + startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) overrideRF69virtual startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideRF69virtual startTransmit(const char *str, uint8_t addr=0)RF69 startTransmit(uint8_t *data, size_t len, uint8_t addr=0)RF69 diff --git a/class_s_x1233.html b/class_s_x1233.html index c8e4504c..d5dbd3e4 100644 --- a/class_s_x1233.html +++ b/class_s_x1233.html @@ -114,9 +114,9 @@ Public Member Functions int16_t begin (float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=125.0, int8_t power=10, uint8_t preambleLen=16)  Initialization method. More...
  -int16_t setBitRate (float br) - Sets bit rate. Allowed values range from 0.5 to 300.0 kbps. SX1233 also allows 500 kbps and 600 kbps operation. NOTE: For 500 kbps rate, the receiver frequency should be offset by 50 kHz from the transmitter. For 600 kbps rate, the receiver frequency should be offset by 40 kHz from the transmitter. More...
-  +int16_t setBitRate (float br) override + Sets bit rate. Allowed values range from 0.5 to 300.0 kbps. SX1233 also allows 500 kbps and 600 kbps operation. NOTE: For 500 kbps rate, the receiver frequency should be offset by 50 kHz from the transmitter. For 600 kbps rate, the receiver frequency should be offset by 40 kHz from the transmitter. More...
- Public Member Functions inherited from SX1231  SX1231 (Module *mod)  Default constructor. More...
@@ -141,9 +141,9 @@ void int16_t receive (uint8_t *data, size_t len) override  Blocking binary receive method. Overloads for string-based transmissions are implemented in PhysicalLayer. More...
  -int16_t sleep () - Sets the module to sleep mode. More...
-  +int16_t sleep () override + Sets the module to sleep mode. More...
+  int16_t standby () override  Sets the module to standby mode. More...
  @@ -183,20 +183,20 @@ void clearDio1Action ()  Clears interrupt service routine to call when DIO1 activates.
  -void setPacketReceivedAction (void(*func)(void)) - Sets interrupt service routine to call when a packet is received. More...
-  - -void clearPacketReceivedAction () - Clears interrupt service routine to call when a packet is received.
-  -void setPacketSentAction (void(*func)(void)) - Sets interrupt service routine to call when a packet is sent. More...
-  - -void clearPacketSentAction () - Clears interrupt service routine to call when a packet is sent.
-  +void setPacketReceivedAction (void(*func)(void)) override + Sets interrupt service routine to call when a packet is received. More...
+  + +void clearPacketReceivedAction () override + Clears interrupt service routine to call when a packet is received.
+  +void setPacketSentAction (void(*func)(void)) override + Sets interrupt service routine to call when a packet is sent. More...
+  + +void clearPacketSentAction () override + Clears interrupt service routine to call when a packet is sent.
+  void setFifoEmptyAction (void(*func)(void))  Set interrupt service routine function to call when FIFO is empty. More...
  @@ -223,18 +223,18 @@ void int16_t finishTransmit () override  Clean up after transmission is done. More...
  -int16_t startReceive () - Interrupt-driven receive method. GDO0 will be activated when full packet is received. More...
-  -int16_t startReceive (uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) - Interrupt-driven receive method, implemented for compatibility with PhysicalLayer. More...
-  +int16_t startReceive () override + Interrupt-driven receive method. GDO0 will be activated when full packet is received. More...
+  +int16_t startReceive (uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override + Interrupt-driven receive method, implemented for compatibility with PhysicalLayer. More...
+  int16_t readData (uint8_t *data, size_t len) override  Reads data received after calling startReceive method. When the packet length is not known in advance, getPacketLength method must be called BEFORE calling readData! More...
  -int16_t setFrequency (float freq) - Sets carrier frequency. Allowed values are in bands 290.0 to 340.0 MHz, 431.0 to 510.0 MHz and 862.0 to 1020.0 MHz. More...
-  +int16_t setFrequency (float freq) override + Sets carrier frequency. Allowed values are in bands 290.0 to 340.0 MHz, 431.0 to 510.0 MHz and 862.0 to 1020.0 MHz. More...
+  int16_t getFrequency (float *freq)  Gets carrier frequency. More...
  @@ -319,9 +319,9 @@ void int16_t setLnaTestBoost (bool value)  Enable/disable LNA Boost mode (disabled by default). More...
  -float getRSSI () - Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. More...
-  +float getRSSI () override + Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. More...
+  int16_t setRSSIThreshold (float dbm)  Sets the RSSI value above which the RSSI interrupt is signaled. More...
  @@ -331,21 +331,21 @@ void void setRfSwitchTable (const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])  Some modules contain external RF switch controlled by pins. This function gives RadioLib control over those pins to automatically switch between various modes. More...
  -uint8_t randomByte () - Get one truly random byte from RSSI noise. More...
-  +uint8_t randomByte () override + Get one truly random byte from RSSI noise. More...
+  int16_t getChipVersion ()  Read version SPI register. Should return RF69_CHIP_VERSION (0x24) if SX127x is connected and working. More...
  -void setDirectAction (void(*func)(void)) - Set interrupt service routine function to call when data bit is received in direct mode. More...
-  -void readBit (uint32_t pin) - Function to read and process data bit in direct reception mode. More...
-  -int16_t setDIOMapping (uint32_t pin, uint32_t value) - Configure DIO pin mapping to get a given signal on a DIO pin (if available). More...
-  +void setDirectAction (void(*func)(void)) override + Set interrupt service routine function to call when data bit is received in direct mode. More...
+  +void readBit (uint32_t pin) override + Function to read and process data bit in direct reception mode. More...
+  +int16_t setDIOMapping (uint32_t pin, uint32_t value) override + Configure DIO pin mapping to get a given signal on a DIO pin (if available). More...
+  int16_t transmit (const char *str, uint8_t addr=0)  C-string transmit method. More...
  @@ -548,8 +548,8 @@ virtual void 
- -

◆ setBitRate()

+ +

◆ setBitRate()

@@ -567,7 +567,7 @@ virtual void  -virtual +overridevirtual
@@ -581,7 +581,7 @@ virtual void 
Returns
Status Codes
-

Reimplemented from RF69.

+

Reimplemented from RF69.

diff --git a/class_s_x1233.js b/class_s_x1233.js index 557be005..b101b8e6 100644 --- a/class_s_x1233.js +++ b/class_s_x1233.js @@ -2,5 +2,5 @@ var class_s_x1233 = [ [ "SX1233", "class_s_x1233.html#a23d2fbf2473e48d46e341e6afe31f82f", null ], [ "begin", "class_s_x1233.html#a10fa64ee432a56b50ea6bd42868693af", null ], - [ "setBitRate", "class_s_x1233.html#af245e451dca502ee8975c7ecd291a859", null ] + [ "setBitRate", "class_s_x1233.html#a98e0248cfcca7158261f7ebb31e0aa9f", null ] ]; \ No newline at end of file diff --git a/functions_c.html b/functions_c.html index 6203ef26..32afe5fb 100644 --- a/functions_c.html +++ b/functions_c.html @@ -172,10 +172,10 @@ $(document).ready(function(){initNavTree('functions_c.html',''); initResizable()
  • clearPacketReceivedAction() : CC1101 -, LR11x0 +, LR11x0 , nRF24 , PhysicalLayer -, RF69 +, RF69 , Si443x , STM32WLx , SX126x @@ -184,10 +184,10 @@ $(document).ready(function(){initNavTree('functions_c.html',''); initResizable()
  • clearPacketSentAction() : CC1101 -, LR11x0 +, LR11x0 , nRF24 , PhysicalLayer -, RF69 +, RF69 , Si443x , STM32WLx , SX126x diff --git a/functions_func_c.html b/functions_func_c.html index a881a685..fba3eb22 100644 --- a/functions_func_c.html +++ b/functions_func_c.html @@ -162,10 +162,10 @@ $(document).ready(function(){initNavTree('functions_func_c.html',''); initResiza
  • clearPacketReceivedAction() : CC1101 -, LR11x0 +, LR11x0 , nRF24 , PhysicalLayer -, RF69 +, RF69 , Si443x , STM32WLx , SX126x @@ -174,10 +174,10 @@ $(document).ready(function(){initNavTree('functions_func_c.html',''); initResiza
  • clearPacketSentAction() : CC1101 -, LR11x0 +, LR11x0 , nRF24 , PhysicalLayer -, RF69 +, RF69 , Si443x , STM32WLx , SX126x diff --git a/functions_func_g.html b/functions_func_g.html index a1c07635..bbb7c052 100644 --- a/functions_func_g.html +++ b/functions_func_g.html @@ -212,9 +212,9 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza
  • getRSSI() : CC1101 -, LR11x0 +, LR11x0 , PhysicalLayer -, RF69 +, RF69 , SX126x , SX1272 , SX1278 @@ -224,7 +224,7 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza : Module
  • getSNR() -: LR11x0 +: LR11x0 , PhysicalLayer , SX126x , SX127x diff --git a/functions_func_r.html b/functions_func_r.html index c9dc9573..d8a1b0aa 100644 --- a/functions_func_r.html +++ b/functions_func_r.html @@ -102,9 +102,9 @@ $(document).ready(function(){initNavTree('functions_func_r.html',''); initResiza
  • randomByte() : CC1101 -, LR11x0 +, LR11x0 , PhysicalLayer -, RF69 +, RF69 , Si443x , SX126x , SX127x @@ -120,7 +120,7 @@ $(document).ready(function(){initNavTree('functions_func_r.html',''); initResiza
  • readBit() : CC1101 , PhysicalLayer -, RF69 +, RF69 , Si443x , SX126x , SX127x diff --git a/functions_func_s.html b/functions_func_s.html index e0c46a9e..1003875b 100644 --- a/functions_func_s.html +++ b/functions_func_s.html @@ -157,12 +157,12 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
  • setBitRate() : CC1101 -, LR11x0 +, LR11x0 , nRF24 , PhysicalLayer -, RF69 +, RF69 , Si443x -, SX1233 +, SX1233 , SX126x , SX1272 , SX1278 @@ -268,7 +268,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
  • setDIOMapping() : CC1101 , PhysicalLayer -, RF69 +, RF69 , SX127x
  • setDIOPreambleDetect() @@ -277,7 +277,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
  • setDirectAction() : CC1101 , PhysicalLayer -, RF69 +, RF69 , Si443x , SX126x , SX127x @@ -317,11 +317,11 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
  • setFrequency() : CC1101 -, LR1110 -, LR1120 +, LR1110 +, LR1120 , nRF24 , PhysicalLayer -, RF69 +, RF69 , Si4430 , Si4432 , SX1262 @@ -429,10 +429,10 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
  • setPacketReceivedAction() : CC1101 -, LR11x0 +, LR11x0 , nRF24 , PhysicalLayer -, RF69 +, RF69 , Si443x , STM32WLx , SX126x @@ -441,10 +441,10 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
  • setPacketSentAction() : CC1101 -, LR11x0 +, LR11x0 , nRF24 , PhysicalLayer -, RF69 +, RF69 , Si443x , STM32WLx , SX126x @@ -587,7 +587,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza : LR11x0 , nRF24 , PhysicalLayer -, RF69 +, RF69 , Si443x , SX126x , SX127x @@ -685,11 +685,11 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
  • startReceive() : CC1101 -, LR11x0 +, LR11x0 , nRF24 , PagerClient , PhysicalLayer -, RF69 +, RF69 , Si443x , SX126x , SX127x diff --git a/functions_g.html b/functions_g.html index 2770d93c..d2bf7deb 100644 --- a/functions_g.html +++ b/functions_g.html @@ -212,9 +212,9 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable()
  • getRSSI() : CC1101 -, LR11x0 +, LR11x0 , PhysicalLayer -, RF69 +, RF69 , SX126x , SX1272 , SX1278 @@ -224,7 +224,7 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable() : Module
  • getSNR() -: LR11x0 +: LR11x0 , PhysicalLayer , SX126x , SX127x diff --git a/functions_r.html b/functions_r.html index e81e5537..81a36092 100644 --- a/functions_r.html +++ b/functions_r.html @@ -102,9 +102,9 @@ $(document).ready(function(){initNavTree('functions_r.html',''); initResizable()
  • randomByte() : CC1101 -, LR11x0 +, LR11x0 , PhysicalLayer -, RF69 +, RF69 , Si443x , SX126x , SX127x @@ -126,7 +126,7 @@ $(document).ready(function(){initNavTree('functions_r.html',''); initResizable()
  • readBit() : CC1101 , PhysicalLayer -, RF69 +, RF69 , Si443x , SX126x , SX127x diff --git a/functions_s.html b/functions_s.html index 55861bc8..55e5e138 100644 --- a/functions_s.html +++ b/functions_s.html @@ -169,12 +169,12 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • setBitRate() : CC1101 -, LR11x0 +, LR11x0 , nRF24 , PhysicalLayer -, RF69 +, RF69 , Si443x -, SX1233 +, SX1233 , SX126x , SX1272 , SX1278 @@ -280,7 +280,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • setDIOMapping() : CC1101 , PhysicalLayer -, RF69 +, RF69 , SX127x
  • setDIOPreambleDetect() @@ -289,7 +289,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • setDirectAction() : CC1101 , PhysicalLayer -, RF69 +, RF69 , Si443x , SX126x , SX127x @@ -329,11 +329,11 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • setFrequency() : CC1101 -, LR1110 -, LR1120 +, LR1110 +, LR1120 , nRF24 , PhysicalLayer -, RF69 +, RF69 , Si4430 , Si4432 , SX1262 @@ -424,7 +424,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • setOutputPower() : CC1101 -, LR11x0 +, LR11x0 , nRF24 , PhysicalLayer , RF69 @@ -441,10 +441,10 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • setPacketReceivedAction() : CC1101 -, LR11x0 +, LR11x0 , nRF24 , PhysicalLayer -, RF69 +, RF69 , Si443x , STM32WLx , SX126x @@ -453,10 +453,10 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • setPacketSentAction() : CC1101 -, LR11x0 +, LR11x0 , nRF24 , PhysicalLayer -, RF69 +, RF69 , Si443x , STM32WLx , SX126x @@ -602,7 +602,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() : LR11x0 , nRF24 , PhysicalLayer -, RF69 +, RF69 , Si443x , SX126x , SX127x @@ -724,11 +724,11 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • startReceive() : CC1101 -, LR11x0 +, LR11x0 , nRF24 , PagerClient , PhysicalLayer -, RF69 +, RF69 , Si443x , SX126x , SX127x diff --git a/navtreedata.js b/navtreedata.js index 252de385..e5512664 100644 --- a/navtreedata.js +++ b/navtreedata.js @@ -50,8 +50,8 @@ var NAVTREE = var NAVTREEINDEX = [ "_a_f_s_k_8h_source.html", -"class_l_r11x0.html#a2d682ec2ca0ddf4da41a93dd8e728665", -"class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a", +"class_l_r11x0.html#a3563453988a83d22dd07d4691543a300", +"class_r_f69.html#a222682569338abb49d6952430b6eebdd", "class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd", "class_s_x128x.html#a275a9a86934124eab4982ad52bf91aea", "group__config__encoding.html#gaffff394bbc47c05ed1bfde2e16a596e8" diff --git a/navtreeindex0.js b/navtreeindex0.js index 568a90c0..c514aee9 100644 --- a/navtreeindex0.js +++ b/navtreeindex0.js @@ -225,29 +225,29 @@ var NAVTREEINDEX0 = "class_l_r1110.html":[3,0,24], "class_l_r1110.html#a08c9ba9d02e7e3918f73f090c6d5ed33":[3,0,24,5], "class_l_r1110.html#a4e492901900ad1d85c818ec473b3d123":[3,0,24,0], -"class_l_r1110.html#a58cfda71b08567a7e98e7d6fd03465b4":[3,0,24,4], "class_l_r1110.html#a7656fe337a859388247708aa143d50af":[3,0,24,1], "class_l_r1110.html#a9439d6d7a6c8dc5813a00c9e493810c0":[3,0,24,3], +"class_l_r1110.html#ade94d20ea438cbd92c61e28d2232d7e8":[3,0,24,4], "class_l_r1110.html#afcabcd9b422581cd8a63a63373a98155":[3,0,24,2], "class_l_r1120.html":[3,0,25], "class_l_r1120.html#a0393071d4403d06c665f28c49e755382":[3,0,25,1], -"class_l_r1120.html#a1139585bff92c19ab645f68068930d60":[3,0,25,4], "class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2":[3,0,25,5], "class_l_r1120.html#a4c6b867146f00de5c45aeb4164d51cc5":[3,0,25,2], +"class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb":[3,0,25,4], "class_l_r1120.html#a981be5384416833dcb6c09ad5be47aa6":[3,0,25,3], "class_l_r1120.html#ae652f10ebc1e4b8245eb5a0c97765257":[3,0,25,0], "class_l_r1121.html":[3,0,26], "class_l_r1121.html#a0015ed8c0fde10a072b5f1317779f59a":[3,0,26,0], "class_l_r11x0.html":[3,0,27], +"class_l_r11x0.html#a004782e6e5c6ad213c3b0c677bb8642d":[3,0,27,23], "class_l_r11x0.html#a0309154558a0d88e2e8957e4dbf6a2f8":[3,0,27,19], -"class_l_r11x0.html#a03ab7a24fec379c6ba2d642e1133c4f2":[3,0,27,41], "class_l_r11x0.html#a056e65c58ff8fb18bd84917512790ee6":[3,0,27,45], -"class_l_r11x0.html#a0a4d48bf33fe466ea4c14cd9db228dce":[3,0,27,54], "class_l_r11x0.html#a1ae2cddeb7671d9b71e9c83bf020820f":[3,0,27,16], "class_l_r11x0.html#a1ec81f3625fdc8a3ef6c54a3804c3aa9":[3,0,27,17], "class_l_r11x0.html#a20279f1b267e936991f47fd703924833":[3,0,27,33], -"class_l_r11x0.html#a2522e288732aa77ec4f5a44e724612af":[3,0,27,52], "class_l_r11x0.html#a25f5ee68b3c2638ae613c87ed1c3fc64":[3,0,27,57], "class_l_r11x0.html#a260c7f4ee4739e532ddb465a276205d3":[3,0,27,4], -"class_l_r11x0.html#a288bcc309d3676bc0bbe620b7d89d994":[3,0,27,37] +"class_l_r11x0.html#a288bcc309d3676bc0bbe620b7d89d994":[3,0,27,37], +"class_l_r11x0.html#a2d682ec2ca0ddf4da41a93dd8e728665":[3,0,27,67], +"class_l_r11x0.html#a3498e0e621f341e415145879989e0948":[3,0,27,75] }; diff --git a/navtreeindex1.js b/navtreeindex1.js index 764032e9..9299cb54 100644 --- a/navtreeindex1.js +++ b/navtreeindex1.js @@ -1,7 +1,5 @@ var NAVTREEINDEX1 = { -"class_l_r11x0.html#a2d682ec2ca0ddf4da41a93dd8e728665":[3,0,27,67], -"class_l_r11x0.html#a3498e0e621f341e415145879989e0948":[3,0,27,75], "class_l_r11x0.html#a3563453988a83d22dd07d4691543a300":[3,0,27,32], "class_l_r11x0.html#a3693359e5d106d6f57c23247c528cdd5":[3,0,27,13], "class_l_r11x0.html#a377c287f18c939c2b4da3241d8329e58":[3,0,27,35], @@ -11,7 +9,6 @@ var NAVTREEINDEX1 = "class_l_r11x0.html#a3f85d48547ebec0f5e4f2678f3213bc5":[3,0,27,3], "class_l_r11x0.html#a43318bfbed2be4a46e0b7e678d2e4d23":[3,0,27,1], "class_l_r11x0.html#a457f5dfe25385a329127f07abc4631a6":[3,0,27,25], -"class_l_r11x0.html#a468ee0182883d8af22a0a4202ef7baa5":[3,0,27,22], "class_l_r11x0.html#a49116d006b60128fe6f73a6a868a6d18":[3,0,27,49], "class_l_r11x0.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,27,76], "class_l_r11x0.html#a4d18ad719be79c083f2b0ce77bbaa448":[3,0,27,5], @@ -22,29 +19,33 @@ var NAVTREEINDEX1 = "class_l_r11x0.html#a562f34a054e3374b812556df3b6eb421":[3,0,27,0], "class_l_r11x0.html#a583f2d5ed601a98c609dbf0d57f2f541":[3,0,27,43], "class_l_r11x0.html#a5a33df702da3f5b010e07d5e6fac7aa6":[3,0,27,46], +"class_l_r11x0.html#a5d357573584cd02849a958c46701d232":[3,0,27,52], "class_l_r11x0.html#a5df4c1ed45bf59aa25bc400bcb5dc1ba":[3,0,27,15], "class_l_r11x0.html#a5ef83caa291e2d310d260a8ea140bc8e":[3,0,27,26], "class_l_r11x0.html#a605f5c74ce523abad256866abe133d2e":[3,0,27,51], "class_l_r11x0.html#a64d70a3341a6a8b32f9871cdcb719733":[3,0,27,65], "class_l_r11x0.html#a6501ef362df1a5b71927cfe4e43c202d":[3,0,27,59], -"class_l_r11x0.html#a66a2afc6cef1e94e25efec15094816a8":[3,0,27,9], "class_l_r11x0.html#a681b20613f9213e98096f0407f8e418d":[3,0,27,6], "class_l_r11x0.html#a6a3034c91f5bce70c853ab1620725b3c":[3,0,27,38], +"class_l_r11x0.html#a6cd2b2363501b2de064c9d1f32fabaa3":[3,0,27,22], "class_l_r11x0.html#a74c3f3f8409f1fd0f41347b7d3c7dc24":[3,0,27,66], "class_l_r11x0.html#a7ffa48f1b6aaaa3f48e4b51f8ada59d8":[3,0,27,60], -"class_l_r11x0.html#a88ff8c277e340c3273fb5715cd743cce":[3,0,27,55], +"class_l_r11x0.html#a89b16d2231f588b67dc3aab0c0a467f4":[3,0,27,31], "class_l_r11x0.html#a8ae178a17f6e41b545b79cfffd3e2864":[3,0,27,47], "class_l_r11x0.html#a8c1def9a01021a52f5bb82c119a9ad35":[3,0,27,50], "class_l_r11x0.html#a8d3e5877dcd784c8e922f32ff773dc61":[3,0,27,30], +"class_l_r11x0.html#a92299e41f839590008b4e344776838a1":[3,0,27,55], "class_l_r11x0.html#a923654706eff5118ef6e84214e837f27":[3,0,27,72], +"class_l_r11x0.html#a95ddec84ae2fb19989c333d42d4dc5fa":[3,0,27,10], +"class_l_r11x0.html#a96e4a220bbd3487423acfd217b479fe3":[3,0,27,9], "class_l_r11x0.html#a971b4ccd1d5479e9d72aa9649e8fef55":[3,0,27,62], "class_l_r11x0.html#a99ece57e55ee0001671165213b409a44":[3,0,27,39], "class_l_r11x0.html#aa09eb53b0c32a5f229e14c46bfe45a4f":[3,0,27,69], "class_l_r11x0.html#aa5d7ae65666f8f9abcb7e9b169884a4a":[3,0,27,56], -"class_l_r11x0.html#aaa0fd2a2f8d2915153b42bf1c8eadd9d":[3,0,27,31], -"class_l_r11x0.html#aabc154b86d9159fb5f769f62418d52b7":[3,0,27,70], +"class_l_r11x0.html#aa6ce285cc1b76ce028db6442a421ed8d":[3,0,27,70], "class_l_r11x0.html#aaff9a5b9b7636693c98bd1c93a5863e5":[3,0,27,14], "class_l_r11x0.html#ab167c4dc14e80d19f8b33d68c3f90d98":[3,0,27,8], +"class_l_r11x0.html#ab1954e4733a7fbea4129d9a2de2285d9":[3,0,27,41], "class_l_r11x0.html#ab1ed8eafe4b23843a8b163949af279bb":[3,0,27,2], "class_l_r11x0.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,27,34], "class_l_r11x0.html#ab8c54b1b105605ffe0908c5ff9362932":[3,0,27,61], @@ -53,8 +54,7 @@ var NAVTREEINDEX1 = "class_l_r11x0.html#abf961ec7d93feb6472f26b7b976ee0c9":[3,0,27,40], "class_l_r11x0.html#ac003cfe3a4dbd9bad1f01fd0147031d1":[3,0,27,48], "class_l_r11x0.html#ac1f541bdee1d983126ceae47940b8f9d":[3,0,27,21], -"class_l_r11x0.html#acd69e3b8825309703e13149b94e49d81":[3,0,27,10], -"class_l_r11x0.html#ad4f32509aea96de6a7ec08a8e60a6bea":[3,0,27,23], +"class_l_r11x0.html#ac2a8ece736198c966e3870dac09f4e87":[3,0,27,54], "class_l_r11x0.html#ad5876b44020a0bd59f73186a912dbb60":[3,0,27,11], "class_l_r11x0.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,27,73], "class_l_r11x0.html#ad9046bccdb4ef60718e2e8ed2bd7f036":[3,0,27,18], @@ -241,13 +241,13 @@ var NAVTREEINDEX1 = "class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853":[3,0,41,24], "class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847":[3,0,41,75], "class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638":[3,0,41,19], -"class_r_f69.html#a0d7720672c0aa0cf4464d544540cbada":[3,0,41,42], "class_r_f69.html#a0d7b67499462777f7909860405ca6b62":[3,0,41,4], "class_r_f69.html#a0de2a07f264839cda945faebf7319e0e":[3,0,41,18], "class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa":[3,0,41,9], "class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b":[3,0,41,46], "class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8":[3,0,41,37], "class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69":[3,0,41,12], -"class_r_f69.html#a2023f0f22aad00a702bdf598c2154043":[3,0,41,26], -"class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1":[3,0,41,66] +"class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1":[3,0,41,66], +"class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a":[3,0,41,54], +"class_r_f69.html#a21ae7524fe573f1a7e74dee342418222":[3,0,41,69] }; diff --git a/navtreeindex2.js b/navtreeindex2.js index 3b5ac641..4adca3de 100644 --- a/navtreeindex2.js +++ b/navtreeindex2.js @@ -1,68 +1,68 @@ var NAVTREEINDEX2 = { -"class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a":[3,0,41,54], "class_r_f69.html#a222682569338abb49d6952430b6eebdd":[3,0,41,76], "class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed":[3,0,41,20], "class_r_f69.html#a26667d50ec845c28e17236c69c886561":[3,0,41,64], -"class_r_f69.html#a27fad7a67c4239c19bd94d1ccfb493ca":[3,0,41,57], "class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9":[3,0,41,21], "class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459":[3,0,41,52], +"class_r_f69.html#a31390763956a50182b0b5b8a7e5ff4e3":[3,0,41,6], "class_r_f69.html#a3563453988a83d22dd07d4691543a300":[3,0,41,28], "class_r_f69.html#a3983b66c83818b4082805bcafc712f00":[3,0,41,29], -"class_r_f69.html#a3a8be5bcc37d3e4f5ac2d0310c8bac12":[3,0,41,7], +"class_r_f69.html#a3bece228d369dcc1aab6a5b29d0685a8":[3,0,41,68], "class_r_f69.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,41,74], "class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b":[3,0,41,17], "class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80":[3,0,41,11], "class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a":[3,0,41,39], "class_r_f69.html#a434420f2def6c383608223105469fda1":[3,0,41,53], "class_r_f69.html#a465df5a2e1f924f6d3ba4eae765847b7":[3,0,41,51], -"class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb":[3,0,41,65], "class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,41,73], "class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee":[3,0,41,8], +"class_r_f69.html#a5a340c38b9b8b79d4fe59fb987b12746":[3,0,41,27], "class_r_f69.html#a637ea5386066f5608bcbb4266e5c1bd6":[3,0,41,1], "class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417":[3,0,41,14], "class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f":[3,0,41,25], "class_r_f69.html#a6e3002ab0c58e2087a7d101eda7afa82":[3,0,41,67], "class_r_f69.html#a721094611fa375e73bd0332ab2d7d113":[3,0,41,55], +"class_r_f69.html#a7243b3396edc1e6e67575894a5033afe":[3,0,41,42], "class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a":[3,0,41,63], +"class_r_f69.html#a74962c069e08890ac9566d48634c778e":[3,0,41,56], "class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d":[3,0,41,45], "class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9":[3,0,41,58], "class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0":[3,0,41,13], -"class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28":[3,0,41,43], "class_r_f69.html#a855dc194947b095b821ec1524ba6814c":[3,0,41,72], "class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1":[3,0,41,22], "class_r_f69.html#a923654706eff5118ef6e84214e837f27":[3,0,41,70], "class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942":[3,0,41,2], +"class_r_f69.html#a97603856caada65676ff4b11630c7f72":[3,0,41,57], "class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad":[3,0,41,10], +"class_r_f69.html#a9852fe520aec018d2bb4aff0cd17de77":[3,0,41,43], "class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77":[3,0,41,40], "class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194":[3,0,41,49], +"class_r_f69.html#aa3bfb830901728e9a3c140036aa91c56":[3,0,41,36], "class_r_f69.html#aa6886410230c654400c76ec7710d623c":[3,0,41,16], "class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf":[3,0,41,41], +"class_r_f69.html#aa7f47c37eec6c7e3ebf6e6d30ebd5532":[3,0,41,47], "class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2":[3,0,41,44], -"class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b":[3,0,41,47], "class_r_f69.html#ab6d98f3f2d964d1833e20da246a5be89":[3,0,41,15], -"class_r_f69.html#ab797840275fbccc40162225c32f5ffc3":[3,0,41,27], "class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,41,30], "class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c":[3,0,41,50], -"class_r_f69.html#abb9bc55a6878bb21312599c3e0411eeb":[3,0,41,69], "class_r_f69.html#abd556b0f455f9510213b17588a4baf1b":[3,0,41,32], "class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3":[3,0,41,34], "class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e":[3,0,41,38], -"class_r_f69.html#ac302d3524dc802467a7ce91b2223db90":[3,0,41,6], "class_r_f69.html#ac341945538a84430c61f80f610a94411":[3,0,41,60], "class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703":[3,0,41,35], -"class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7":[3,0,41,23], -"class_r_f69.html#ac8bff26070735a733a24146d414c3c5f":[3,0,41,56], +"class_r_f69.html#ac47d0f59cb190361fa9b7d10efacc297":[3,0,41,26], +"class_r_f69.html#ac4ada0c4243b092ffb4c9812519fe947":[3,0,41,7], "class_r_f69.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,41,71], -"class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13":[3,0,41,36], "class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be":[3,0,41,48], "class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51":[3,0,41,3], +"class_r_f69.html#adec9debf69f5ee846a5b6e34831ade3c":[3,0,41,65], "class_r_f69.html#ae004326d663a9d6a9c30e792aa368b49":[3,0,41,59], "class_r_f69.html#ae36e8e6042245621a182b29526fe2245":[3,0,41,31], "class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3":[3,0,41,5], +"class_r_f69.html#af107c6a510d7e0314f1f4d76637c833d":[3,0,41,23], "class_r_f69.html#af434c67aabe02258ee6696a59973617b":[3,0,41,77], "class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a":[3,0,41,33], -"class_r_f69.html#afae38fa64242043de34096bf497725f1":[3,0,41,68], "class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448":[3,0,41,0], "class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a":[3,0,41,62], "class_r_f69.html#afff64ceef5f496ce035ff6d12d6bcc3c":[3,0,41,61], @@ -190,7 +190,7 @@ var NAVTREEINDEX2 = "class_s_x1233.html":[3,0,59], "class_s_x1233.html#a10fa64ee432a56b50ea6bd42868693af":[3,0,59,1], "class_s_x1233.html#a23d2fbf2473e48d46e341e6afe31f82f":[3,0,59,0], -"class_s_x1233.html#af245e451dca502ee8975c7ecd291a859":[3,0,59,2], +"class_s_x1233.html#a98e0248cfcca7158261f7ebb31e0aa9f":[3,0,59,2], "class_s_x1261.html":[3,0,60], "class_s_x1261.html#a3d197bb8a301f3594c7bfa1c9375aef1":[3,0,60,2], "class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35":[3,0,60,0], diff --git a/search/all_10.js b/search/all_10.js index fb715f91..9bcb168b 100644 --- a/search/all_10.js +++ b/search/all_10.js @@ -24,7 +24,7 @@ var searchData= ['setambienttemperature_421',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], ['setautoack_422',['setAutoAck',['../classn_r_f24.html#aca941c9235ba1212257288554eb4b7fe',1,'nRF24::setAutoAck(bool autoAckOn=true)'],['../classn_r_f24.html#ac1c3419442d93abeede39e7fda4db62e',1,'nRF24::setAutoAck(uint8_t pipeNum, bool autoAckOn)']]], ['setbandwidth_423',['setBandwidth',['../class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08',1,'SX126x::setBandwidth()'],['../class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a',1,'SX128x::setBandwidth()'],['../class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6',1,'SX1278::setBandwidth()'],['../class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b',1,'SX1272::setBandwidth()'],['../class_l_r11x0.html#abf961ec7d93feb6472f26b7b976ee0c9',1,'LR11x0::setBandwidth()'],['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::setBandwidth()']]], - ['setbitrate_424',['setBitRate',['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()'],['../class_c_c1101.html#a6fd22cdec29e1e34a92aa9854b90fdc9',1,'CC1101::setBitRate()'],['../class_l_r11x0.html#a03ab7a24fec379c6ba2d642e1133c4f2',1,'LR11x0::setBitRate()'],['../classn_r_f24.html#a0873f58ae62e41cff99813e21cc8b02a',1,'nRF24::setBitRate()'],['../class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13',1,'RF69::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../class_s_x1233.html#af245e451dca502ee8975c7ecd291a859',1,'SX1233::setBitRate()'],['../class_s_x126x.html#ac38a19db6b8b9aff438d6e23051d487d',1,'SX126x::setBitRate()'],['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee',1,'SX128x::setBitRate()']]], + ['setbitrate_424',['setBitRate',['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()'],['../class_c_c1101.html#a6fd22cdec29e1e34a92aa9854b90fdc9',1,'CC1101::setBitRate()'],['../class_l_r11x0.html#ab1954e4733a7fbea4129d9a2de2285d9',1,'LR11x0::setBitRate()'],['../classn_r_f24.html#a0873f58ae62e41cff99813e21cc8b02a',1,'nRF24::setBitRate()'],['../class_r_f69.html#aa3bfb830901728e9a3c140036aa91c56',1,'RF69::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../class_s_x1233.html#a98e0248cfcca7158261f7ebb31e0aa9f',1,'SX1233::setBitRate()'],['../class_s_x126x.html#ac38a19db6b8b9aff438d6e23051d487d',1,'SX126x::setBitRate()'],['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee',1,'SX128x::setBitRate()']]], ['setbroadcastaddress_425',['setBroadcastAddress',['../class_l_r11x0.html#af24ba794f71c4e37cd13d2f4dbec5bf7',1,'LR11x0::setBroadcastAddress()'],['../class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8',1,'RF69::setBroadcastAddress()'],['../class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034',1,'SX126x::setBroadcastAddress()'],['../class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40',1,'SX127x::setBroadcastAddress()']]], ['setbuffernonces_426',['setBufferNonces',['../class_lo_ra_w_a_n_node.html#a11701081ac6bd39a8a2b4bdbc248fac2',1,'LoRaWANNode']]], ['setbuffersession_427',['setBufferSession',['../class_lo_ra_w_a_n_node.html#aadebe7a412aec8043aa2f8f57a202f49',1,'LoRaWANNode']]], @@ -43,9 +43,9 @@ var searchData= ['setdio0action_440',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ae75bc48cc74a407370cd9f4bf95e9e30',1,'SX127x::setDio0Action()']]], ['setdio1action_441',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_t_m32_w_lx.html#a63d61bc5057e9da3d0ea12feae67122e',1,'STM32WLx::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#a7b4bce81839b105c464ebf922602e58b',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()']]], ['setdio2asrfswitch_442',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], - ['setdiomapping_443',['setDIOMapping',['../class_c_c1101.html#a544bb8d7be9c0e1ff7f7103b30925862',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a0d7720672c0aa0cf4464d544540cbada',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#a103b606166eba8c69bff061270744768',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()']]], + ['setdiomapping_443',['setDIOMapping',['../class_c_c1101.html#a544bb8d7be9c0e1ff7f7103b30925862',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a7243b3396edc1e6e67575894a5033afe',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#a103b606166eba8c69bff061270744768',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()']]], ['setdiopreambledetect_444',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]], - ['setdirectaction_445',['setDirectAction',['../class_c_c1101.html#a24f4b059cc56238499c6117b88cd5505',1,'CC1101::setDirectAction()'],['../class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28',1,'RF69::setDirectAction()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#a4f514b341b8982650526c6d8e20fd1a4',1,'SX126x::setDirectAction()'],['../class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238',1,'SX127x::setDirectAction()'],['../class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236',1,'SX128x::setDirectAction()'],['../class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966',1,'PhysicalLayer::setDirectAction(void(*func)(void))']]], + ['setdirectaction_445',['setDirectAction',['../class_c_c1101.html#a24f4b059cc56238499c6117b88cd5505',1,'CC1101::setDirectAction()'],['../class_r_f69.html#a9852fe520aec018d2bb4aff0cd17de77',1,'RF69::setDirectAction()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#a4f514b341b8982650526c6d8e20fd1a4',1,'SX126x::setDirectAction()'],['../class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238',1,'SX127x::setDirectAction()'],['../class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236',1,'SX128x::setDirectAction()'],['../class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966',1,'PhysicalLayer::setDirectAction(void(*func)(void))']]], ['setdirectsyncword_446',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], ['setdutycycle_447',['setDutyCycle',['../class_lo_ra_w_a_n_node.html#a3d4bbd6d382496838954ab4ac1168b77',1,'LoRaWANNode']]], ['setdwelltime_448',['setDwellTime',['../class_lo_ra_w_a_n_node.html#a62bfe68f6fe63c2e408dccbff6a34a4f',1,'LoRaWANNode']]], @@ -53,7 +53,7 @@ var searchData= ['setfhsshoppingperiod_450',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]], ['setfifoemptyaction_451',['setFifoEmptyAction',['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()'],['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction(void(*func)(void))']]], ['setfifofullaction_452',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]], - ['setfrequency_453',['setFrequency',['../class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008',1,'SX1276::setFrequency()'],['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::setFrequency(float freq, bool calibrate)'],['../class_s_x1268.html#af412a9361fe413b2d0c426100056d8c2',1,'SX1268::setFrequency(float freq) override'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency(float freq, bool calibrate)'],['../class_s_x1262.html#a2122feee1a3bffaaa20e85b24dc8a899',1,'SX1262::setFrequency(float freq) override'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../classn_r_f24.html#a408278336cdf25fd205ecffea86c26e8',1,'nRF24::setFrequency()'],['../class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2',1,'LR1120::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1120.html#a1139585bff92c19ab645f68068930d60',1,'LR1120::setFrequency(float freq)'],['../class_l_r1110.html#a08c9ba9d02e7e3918f73f090c6d5ed33',1,'LR1110::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1110.html#a58cfda71b08567a7e98e7d6fd03465b4',1,'LR1110::setFrequency(float freq)'],['../class_c_c1101.html#ad428d7e6fc9ac119101bb0716fa80bee',1,'CC1101::setFrequency()'],['../class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4',1,'SX1278::setFrequency()'],['../class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817',1,'SX1279::setFrequency()'],['../class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371',1,'SX128x::setFrequency()'],['../class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e',1,'PhysicalLayer::setFrequency()'],['../class_s_x1277.html#a42adde5eecccdca95214980848795e82',1,'SX1277::setFrequency()']]], + ['setfrequency_453',['setFrequency',['../class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008',1,'SX1276::setFrequency()'],['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::setFrequency(float freq, bool calibrate)'],['../class_s_x1268.html#af412a9361fe413b2d0c426100056d8c2',1,'SX1268::setFrequency(float freq) override'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency(float freq, bool calibrate)'],['../class_s_x1262.html#a2122feee1a3bffaaa20e85b24dc8a899',1,'SX1262::setFrequency(float freq) override'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_r_f69.html#aa7f47c37eec6c7e3ebf6e6d30ebd5532',1,'RF69::setFrequency()'],['../classn_r_f24.html#a408278336cdf25fd205ecffea86c26e8',1,'nRF24::setFrequency()'],['../class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2',1,'LR1120::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb',1,'LR1120::setFrequency(float freq) override'],['../class_l_r1110.html#a08c9ba9d02e7e3918f73f090c6d5ed33',1,'LR1110::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1110.html#ade94d20ea438cbd92c61e28d2232d7e8',1,'LR1110::setFrequency(float freq) override'],['../class_c_c1101.html#ad428d7e6fc9ac119101bb0716fa80bee',1,'CC1101::setFrequency()'],['../class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4',1,'SX1278::setFrequency()'],['../class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817',1,'SX1279::setFrequency()'],['../class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371',1,'SX128x::setFrequency()'],['../class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e',1,'PhysicalLayer::setFrequency()'],['../class_s_x1277.html#a42adde5eecccdca95214980848795e82',1,'SX1277::setFrequency()']]], ['setfrequencydeviation_454',['setFrequencyDeviation',['../class_external_radio.html#a02928a19eab0eab615c02180cedda3eb',1,'ExternalRadio::setFrequencyDeviation()'],['../class_physical_layer.html#a2f4f9b428d9ea9af886ca85e5088ed7b',1,'PhysicalLayer::setFrequencyDeviation()'],['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_l_r11x0.html#ac003cfe3a4dbd9bad1f01fd0147031d1',1,'LR11x0::setFrequencyDeviation()'],['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()']]], ['setgain_455',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], ['setgaincontrol_456',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]], @@ -73,9 +73,9 @@ var searchData= ['setookpeakthresholddecrement_470',['setOokPeakThresholdDecrement',['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement()'],['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()']]], ['setookpeakthresholdstep_471',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]], ['setookthresholdtype_472',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]], - ['setoutputpower_473',['setOutputPower',['../class_c_c1101.html#a5d6dce30fc7da668975b6da663784cdf',1,'CC1101::setOutputPower()'],['../class_l_r11x0.html#a2522e288732aa77ec4f5a44e724612af',1,'LR11x0::setOutputPower(int8_t power)'],['../class_l_r11x0.html#a549ecc907732bca96dab27c433928740',1,'LR11x0::setOutputPower(int8_t power, bool forceHighPower)'],['../classn_r_f24.html#ad9859fa54aed7d3cd82839bad9d7d33a',1,'nRF24::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',1,'RF69::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::setOutputPower()'],['../class_s_x1261.html#a3d197bb8a301f3594c7bfa1c9375aef1',1,'SX1261::setOutputPower()'],['../class_s_x1268.html#a6b6adaee1c8d76c3d766225298d84709',1,'SX1268::setOutputPower()'],['../class_s_x1272.html#aec51f08c0902145ff5f11e27e7cab638',1,'SX1272::setOutputPower(int8_t power) override'],['../class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659',1,'SX1272::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1278.html#a69abc18e7fa0055e6b80024e8cde7db4',1,'SX1278::setOutputPower(int8_t power) override'],['../class_s_x1278.html#aca58a6c2e8fcef6414fdf3bc1eb62082',1,'SX1278::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x128x.html#ad988727ea6c9b4e11562651d312514c0',1,'SX128x::setOutputPower()'],['../class_physical_layer.html#ad2286dc78dbf8e3084f38e9159b99ae5',1,'PhysicalLayer::setOutputPower()'],['../class_s_x1262.html#aa455a7f0e69abdcca55cf35388d9dc52',1,'SX1262::setOutputPower()']]], - ['setpacketreceivedaction_474',['setPacketReceivedAction',['../class_s_t_m32_w_lx.html#ad23dafdeb21b97165be74ef8f093866c',1,'STM32WLx::setPacketReceivedAction()'],['../class_physical_layer.html#aec928bb26f65752aa20cd236fbabb95c',1,'PhysicalLayer::setPacketReceivedAction()'],['../class_s_x128x.html#a697880c42c4b1def04c8fe7f3a023ffb',1,'SX128x::setPacketReceivedAction()'],['../class_s_x127x.html#ad63322c9c58dd82e4b9982f10e546f33',1,'SX127x::setPacketReceivedAction()'],['../class_s_x126x.html#a7603aa60ae8d975eb262a4b7e2aed1d0',1,'SX126x::setPacketReceivedAction()'],['../class_si443x.html#a2badfa5db1ae5b9ec26ad7a8b3cab167',1,'Si443x::setPacketReceivedAction()'],['../class_r_f69.html#ac8bff26070735a733a24146d414c3c5f',1,'RF69::setPacketReceivedAction()'],['../classn_r_f24.html#a08b90ae895a6a45bceb11f67237245b4',1,'nRF24::setPacketReceivedAction()'],['../class_l_r11x0.html#a0a4d48bf33fe466ea4c14cd9db228dce',1,'LR11x0::setPacketReceivedAction()'],['../class_c_c1101.html#a29a16e8ed85432c6fae8d9e45399de6e',1,'CC1101::setPacketReceivedAction(void(*func)(void)) override']]], - ['setpacketsentaction_475',['setPacketSentAction',['../class_c_c1101.html#a336999da23e554073a9fa628131883f5',1,'CC1101::setPacketSentAction()'],['../class_l_r11x0.html#a88ff8c277e340c3273fb5715cd743cce',1,'LR11x0::setPacketSentAction()'],['../classn_r_f24.html#a8e00d6729ee3c869cda8ccb5ae15ba27',1,'nRF24::setPacketSentAction()'],['../class_r_f69.html#a27fad7a67c4239c19bd94d1ccfb493ca',1,'RF69::setPacketSentAction()'],['../class_si443x.html#aa55274bb345f178328ea2a674621fc84',1,'Si443x::setPacketSentAction()'],['../class_s_t_m32_w_lx.html#a7c0e3aef03f0b6834d0465d8f8568c32',1,'STM32WLx::setPacketSentAction()'],['../class_s_x126x.html#ac79f7ebab97ae91fff6933be3207c873',1,'SX126x::setPacketSentAction()'],['../class_s_x127x.html#a91476a51019910b958f464e73ba797c5',1,'SX127x::setPacketSentAction()'],['../class_s_x128x.html#acaa115bb9eb3d325d6baba1f578d678b',1,'SX128x::setPacketSentAction()'],['../class_physical_layer.html#a32b512b34f6575b2109ae3c3f35d1369',1,'PhysicalLayer::setPacketSentAction()']]], + ['setoutputpower_473',['setOutputPower',['../class_c_c1101.html#a5d6dce30fc7da668975b6da663784cdf',1,'CC1101::setOutputPower()'],['../class_l_r11x0.html#a5d357573584cd02849a958c46701d232',1,'LR11x0::setOutputPower(int8_t power) override'],['../class_l_r11x0.html#a549ecc907732bca96dab27c433928740',1,'LR11x0::setOutputPower(int8_t power, bool forceHighPower)'],['../classn_r_f24.html#ad9859fa54aed7d3cd82839bad9d7d33a',1,'nRF24::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',1,'RF69::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::setOutputPower()'],['../class_s_x1261.html#a3d197bb8a301f3594c7bfa1c9375aef1',1,'SX1261::setOutputPower()'],['../class_s_x1268.html#a6b6adaee1c8d76c3d766225298d84709',1,'SX1268::setOutputPower()'],['../class_s_x1272.html#aec51f08c0902145ff5f11e27e7cab638',1,'SX1272::setOutputPower(int8_t power) override'],['../class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659',1,'SX1272::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1278.html#a69abc18e7fa0055e6b80024e8cde7db4',1,'SX1278::setOutputPower(int8_t power) override'],['../class_s_x1278.html#aca58a6c2e8fcef6414fdf3bc1eb62082',1,'SX1278::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x128x.html#ad988727ea6c9b4e11562651d312514c0',1,'SX128x::setOutputPower()'],['../class_physical_layer.html#ad2286dc78dbf8e3084f38e9159b99ae5',1,'PhysicalLayer::setOutputPower()'],['../class_s_x1262.html#aa455a7f0e69abdcca55cf35388d9dc52',1,'SX1262::setOutputPower()']]], + ['setpacketreceivedaction_474',['setPacketReceivedAction',['../class_s_t_m32_w_lx.html#ad23dafdeb21b97165be74ef8f093866c',1,'STM32WLx::setPacketReceivedAction()'],['../class_physical_layer.html#aec928bb26f65752aa20cd236fbabb95c',1,'PhysicalLayer::setPacketReceivedAction()'],['../class_s_x128x.html#a697880c42c4b1def04c8fe7f3a023ffb',1,'SX128x::setPacketReceivedAction()'],['../class_s_x127x.html#ad63322c9c58dd82e4b9982f10e546f33',1,'SX127x::setPacketReceivedAction()'],['../class_s_x126x.html#a7603aa60ae8d975eb262a4b7e2aed1d0',1,'SX126x::setPacketReceivedAction()'],['../class_si443x.html#a2badfa5db1ae5b9ec26ad7a8b3cab167',1,'Si443x::setPacketReceivedAction()'],['../class_r_f69.html#a74962c069e08890ac9566d48634c778e',1,'RF69::setPacketReceivedAction()'],['../classn_r_f24.html#a08b90ae895a6a45bceb11f67237245b4',1,'nRF24::setPacketReceivedAction()'],['../class_l_r11x0.html#ac2a8ece736198c966e3870dac09f4e87',1,'LR11x0::setPacketReceivedAction()'],['../class_c_c1101.html#a29a16e8ed85432c6fae8d9e45399de6e',1,'CC1101::setPacketReceivedAction(void(*func)(void)) override']]], + ['setpacketsentaction_475',['setPacketSentAction',['../class_c_c1101.html#a336999da23e554073a9fa628131883f5',1,'CC1101::setPacketSentAction()'],['../class_l_r11x0.html#a92299e41f839590008b4e344776838a1',1,'LR11x0::setPacketSentAction()'],['../classn_r_f24.html#a8e00d6729ee3c869cda8ccb5ae15ba27',1,'nRF24::setPacketSentAction()'],['../class_r_f69.html#a97603856caada65676ff4b11630c7f72',1,'RF69::setPacketSentAction()'],['../class_si443x.html#aa55274bb345f178328ea2a674621fc84',1,'Si443x::setPacketSentAction()'],['../class_s_t_m32_w_lx.html#a7c0e3aef03f0b6834d0465d8f8568c32',1,'STM32WLx::setPacketSentAction()'],['../class_s_x126x.html#ac79f7ebab97ae91fff6933be3207c873',1,'SX126x::setPacketSentAction()'],['../class_s_x127x.html#a91476a51019910b958f464e73ba797c5',1,'SX127x::setPacketSentAction()'],['../class_s_x128x.html#acaa115bb9eb3d325d6baba1f578d678b',1,'SX128x::setPacketSentAction()'],['../class_physical_layer.html#a32b512b34f6575b2109ae3c3f35d1369',1,'PhysicalLayer::setPacketSentAction()']]], ['setpaconfig_476',['setPaConfig',['../class_s_x126x.html#a1623e7d5450c97ca092913ad79d62208',1,'SX126x']]], ['setparamptime_477',['setPaRampTime',['../class_s_x126x.html#ad90a56cb55c5bb64037a0d412d84a80d',1,'SX126x']]], ['setpreamblelength_478',['setPreambleLength',['../class_c_c1101.html#ae77c828c9c7cc12012fe011e8c4d3570',1,'CC1101::setPreambleLength()'],['../class_l_r11x0.html#aa5d7ae65666f8f9abcb7e9b169884a4a',1,'LR11x0::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_s_x126x.html#ad6274222ccf534e98e3cd17dfa1520d4',1,'SX126x::setPreambleLength()'],['../class_s_x127x.html#a844499bace6ae001446d71bee2877656',1,'SX127x::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()'],['../class_physical_layer.html#a85db1ff64e6c56e054f276c511194633',1,'PhysicalLayer::setPreambleLength()']]], @@ -106,7 +106,7 @@ var searchData= ['si4432_503',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432::Si4432()'],['../class_si4432.html',1,'Si4432']]], ['si443x_504',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x::Si443x()'],['../class_si443x.html',1,'Si443x']]], ['size_505',['size',['../class_radio_lib_c_r_c.html#ad09b067c00cda1cc676c13602dee2f5a',1,'RadioLibCRC']]], - ['sleep_506',['sleep',['../class_physical_layer.html#af1bb9a5da26da8829795ebb72e9c666e',1,'PhysicalLayer::sleep()'],['../class_l_r11x0.html#a64d70a3341a6a8b32f9871cdcb719733',1,'LR11x0::sleep()'],['../classn_r_f24.html#a033287e33c532638c11e2775a073f297',1,'nRF24::sleep()'],['../class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb',1,'RF69::sleep()'],['../class_si443x.html#ada90718aeb67d7f0e9899da534de9695',1,'Si443x::sleep()'],['../class_s_x126x.html#afb5509f0705cdd971065251ed6b2fb4e',1,'SX126x::sleep()'],['../class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df',1,'SX127x::sleep()'],['../class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f',1,'SX128x::sleep()']]], + ['sleep_506',['sleep',['../class_physical_layer.html#af1bb9a5da26da8829795ebb72e9c666e',1,'PhysicalLayer::sleep()'],['../class_l_r11x0.html#a64d70a3341a6a8b32f9871cdcb719733',1,'LR11x0::sleep()'],['../classn_r_f24.html#a033287e33c532638c11e2775a073f297',1,'nRF24::sleep()'],['../class_r_f69.html#adec9debf69f5ee846a5b6e34831ade3c',1,'RF69::sleep()'],['../class_si443x.html#ada90718aeb67d7f0e9899da534de9695',1,'Si443x::sleep()'],['../class_s_x126x.html#afb5509f0705cdd971065251ed6b2fb4e',1,'SX126x::sleep()'],['../class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df',1,'SX127x::sleep()'],['../class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f',1,'SX128x::sleep()']]], ['spectralscanabort_507',['spectralScanAbort',['../class_s_x126x.html#a865397e1cca38bec2d055c047825ea07',1,'SX126x']]], ['spectralscangetresult_508',['spectralScanGetResult',['../class_s_x126x.html#ae473773e5bed4b08452e80311bdb26f2',1,'SX126x']]], ['spectralscangetstatus_509',['spectralScanGetStatus',['../class_s_x126x.html#a5595fff99d76d50d711b8cdad98527c4',1,'SX126x']]], @@ -143,7 +143,7 @@ var searchData= ['startchannelscan_540',['startChannelScan',['../class_s_x127x.html#a6fa5723724393576ed597509200e17d1',1,'SX127x::startChannelScan()'],['../class_s_x126x.html#aff8ec92d828421564322f13fb1c90223',1,'SX126x::startChannelScan(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin)'],['../class_s_x126x.html#a001c4637f01ed6f0216cd6c4d7e10da3',1,'SX126x::startChannelScan() override'],['../class_l_r11x0.html#aa09eb53b0c32a5f229e14c46bfe45a4f',1,'LR11x0::startChannelScan(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin)'],['../class_l_r11x0.html#a4f3bc362530b85dd643669705f03998d',1,'LR11x0::startChannelScan() override'],['../class_s_x128x.html#a948156af6e886bc46a6c6c5fb10a087a',1,'SX128x::startChannelScan()'],['../class_physical_layer.html#ae30dfbb5445bb674898fc54f5f90b2f9',1,'PhysicalLayer::startChannelScan()']]], ['startdirect_541',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], ['startranging_542',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]], - ['startreceive_543',['startReceive',['../class_l_r11x0.html#aabc154b86d9159fb5f769f62418d52b7',1,'LR11x0::startReceive()'],['../class_c_c1101.html#ae71e947abf6a07b194c6c6d64fd3eb19',1,'CC1101::startReceive() override'],['../class_c_c1101.html#abf153c8fcf2a0d60439426b03692642e',1,'CC1101::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_s_x127x.html#a2d46040624757a5ca50693741c7a4e9a',1,'SX127x::startReceive()'],['../class_l_r11x0.html#ae79c42c4ceceb7a6897731d01d365281',1,'LR11x0::startReceive()'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../classn_r_f24.html#a2288ed9242e157bc20ec02fddea30c3e',1,'nRF24::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../class_r_f69.html#abb9bc55a6878bb21312599c3e0411eeb',1,'RF69::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_si443x.html#a38c4a47d8192a25667417257084adbf0',1,'Si443x::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)'],['../class_s_x126x.html#a66ad433561b02fe61b09afd735ce56cc',1,'SX126x::startReceive() override'],['../class_s_x126x.html#ad6c81423768480e3bc04d636486241f8',1,'SX126x::startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint32_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE, size_t len=0)'],['../class_s_x127x.html#ae90a5df2d414dfcafd1e3b8aa790f9fd',1,'SX127x::startReceive()'],['../class_s_x127x.html#aa77da235ab59a5066fc51418d4344a02',1,'SX127x::startReceive(uint8_t len, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)'],['../class_s_x128x.html#a6083c3789671527e5aee5fd1b8723996',1,'SX128x::startReceive()'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive(uint32_t pin, uint32_t addr, uint32_t mask=0xFFFFF)'],['../class_pager_client.html#a9c0f13846fbc333a35a16a98b6575ca6',1,'PagerClient::startReceive(uint32_t pin, uint32_t *addrs, uint32_t *masks, size_t numAddress)'],['../class_physical_layer.html#a18664ad615c5507ff1690baaca90b094',1,'PhysicalLayer::startReceive()'],['../class_physical_layer.html#ab913944238f4dfd950d36651eb3c4892',1,'PhysicalLayer::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)'],['../class_s_x128x.html#afe700968c1e02e335c389b59d950ca39',1,'SX128x::startReceive()']]], + ['startreceive_543',['startReceive',['../class_l_r11x0.html#aa6ce285cc1b76ce028db6442a421ed8d',1,'LR11x0::startReceive()'],['../class_c_c1101.html#ae71e947abf6a07b194c6c6d64fd3eb19',1,'CC1101::startReceive() override'],['../class_c_c1101.html#abf153c8fcf2a0d60439426b03692642e',1,'CC1101::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_s_x127x.html#a2d46040624757a5ca50693741c7a4e9a',1,'SX127x::startReceive()'],['../class_l_r11x0.html#ae79c42c4ceceb7a6897731d01d365281',1,'LR11x0::startReceive()'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../classn_r_f24.html#a2288ed9242e157bc20ec02fddea30c3e',1,'nRF24::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)'],['../class_r_f69.html#a3bece228d369dcc1aab6a5b29d0685a8',1,'RF69::startReceive() override'],['../class_r_f69.html#a21ae7524fe573f1a7e74dee342418222',1,'RF69::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_si443x.html#a38c4a47d8192a25667417257084adbf0',1,'Si443x::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)'],['../class_s_x126x.html#a66ad433561b02fe61b09afd735ce56cc',1,'SX126x::startReceive() override'],['../class_s_x126x.html#ad6c81423768480e3bc04d636486241f8',1,'SX126x::startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint32_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE, size_t len=0)'],['../class_s_x127x.html#ae90a5df2d414dfcafd1e3b8aa790f9fd',1,'SX127x::startReceive()'],['../class_s_x127x.html#aa77da235ab59a5066fc51418d4344a02',1,'SX127x::startReceive(uint8_t len, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)'],['../class_s_x128x.html#a6083c3789671527e5aee5fd1b8723996',1,'SX128x::startReceive()'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive(uint32_t pin, uint32_t addr, uint32_t mask=0xFFFFF)'],['../class_pager_client.html#a9c0f13846fbc333a35a16a98b6575ca6',1,'PagerClient::startReceive(uint32_t pin, uint32_t *addrs, uint32_t *masks, size_t numAddress)'],['../class_physical_layer.html#a18664ad615c5507ff1690baaca90b094',1,'PhysicalLayer::startReceive()'],['../class_physical_layer.html#ab913944238f4dfd950d36651eb3c4892',1,'PhysicalLayer::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)'],['../class_s_x128x.html#afe700968c1e02e335c389b59d950ca39',1,'SX128x::startReceive()']]], ['startreceivedutycycle_544',['startReceiveDutyCycle',['../class_s_x126x.html#a5b4f8a41b593436b8c7a2a2d46ac387e',1,'SX126x']]], ['startreceivedutycycleauto_545',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a077f180905ce4818cbdacad0cd9fe841',1,'SX126x']]], ['startsignal_546',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], diff --git a/search/all_2.js b/search/all_2.js index bdb653e2..0e303a7a 100644 --- a/search/all_2.js +++ b/search/all_2.js @@ -18,8 +18,8 @@ var searchData= ['cleargdo0action_40',['clearGdo0Action',['../class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8',1,'CC1101']]], ['cleargdo2action_41',['clearGdo2Action',['../class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4',1,'CC1101']]], ['clearirqaction_42',['clearIrqAction',['../class_l_r11x0.html#ab167c4dc14e80d19f8b33d68c3f90d98',1,'LR11x0::clearIrqAction()'],['../classn_r_f24.html#aaf5887fe58c4d542cbed80482de1d42d',1,'nRF24::clearIrqAction()'],['../class_si443x.html#a8d019f58551346c3f3bd8b72d2486109',1,'Si443x::clearIrqAction()']]], - ['clearpacketreceivedaction_43',['clearPacketReceivedAction',['../class_physical_layer.html#a7edf27f03600b96f72f011fc82fa4ef9',1,'PhysicalLayer::clearPacketReceivedAction()'],['../class_s_x128x.html#a20b21a4f804b148fede4b7199c4d1e71',1,'SX128x::clearPacketReceivedAction()'],['../class_s_x127x.html#a098baa351e38f3b4caa19a362bc190d4',1,'SX127x::clearPacketReceivedAction()'],['../class_s_x126x.html#a56f88f6a2b88ae6dbd3ad04b1950e7b2',1,'SX126x::clearPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#aad377b018cf65ceb6b23cac523ba96b4',1,'STM32WLx::clearPacketReceivedAction()'],['../class_r_f69.html#ac302d3524dc802467a7ce91b2223db90',1,'RF69::clearPacketReceivedAction()'],['../classn_r_f24.html#a4295cfbfe05ec696aae680593f63ff7b',1,'nRF24::clearPacketReceivedAction()'],['../class_l_r11x0.html#a66a2afc6cef1e94e25efec15094816a8',1,'LR11x0::clearPacketReceivedAction()'],['../class_c_c1101.html#a0221c4fe494a590cc9714e4752675d61',1,'CC1101::clearPacketReceivedAction()'],['../class_si443x.html#a63a8bb675e7a0b54c493caa30adeb37e',1,'Si443x::clearPacketReceivedAction()']]], - ['clearpacketsentaction_44',['clearPacketSentAction',['../class_s_x127x.html#a56f45da4853eac1e9f6e753129d9e416',1,'SX127x::clearPacketSentAction()'],['../class_physical_layer.html#a67ee4ec36f352d06dda0102260f6bfce',1,'PhysicalLayer::clearPacketSentAction()'],['../class_s_x128x.html#a86000239b7f9871168fdfa8f8c73b377',1,'SX128x::clearPacketSentAction()'],['../class_s_x126x.html#af38ba3d27ab2ac10c703eefa1c428913',1,'SX126x::clearPacketSentAction()'],['../class_s_t_m32_w_lx.html#ac11d53d29bf5a845e3797ba6bb875930',1,'STM32WLx::clearPacketSentAction()'],['../class_si443x.html#a1835741ed147e575f9c03cf14c3b765e',1,'Si443x::clearPacketSentAction()'],['../class_r_f69.html#a3a8be5bcc37d3e4f5ac2d0310c8bac12',1,'RF69::clearPacketSentAction()'],['../classn_r_f24.html#a5ae45ceec01854226ecce0320f1051e2',1,'nRF24::clearPacketSentAction()'],['../class_l_r11x0.html#acd69e3b8825309703e13149b94e49d81',1,'LR11x0::clearPacketSentAction()'],['../class_c_c1101.html#a2791ebc7fe71626407278de5852b492f',1,'CC1101::clearPacketSentAction()']]], + ['clearpacketreceivedaction_43',['clearPacketReceivedAction',['../class_physical_layer.html#a7edf27f03600b96f72f011fc82fa4ef9',1,'PhysicalLayer::clearPacketReceivedAction()'],['../class_s_x128x.html#a20b21a4f804b148fede4b7199c4d1e71',1,'SX128x::clearPacketReceivedAction()'],['../class_s_x127x.html#a098baa351e38f3b4caa19a362bc190d4',1,'SX127x::clearPacketReceivedAction()'],['../class_s_x126x.html#a56f88f6a2b88ae6dbd3ad04b1950e7b2',1,'SX126x::clearPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#aad377b018cf65ceb6b23cac523ba96b4',1,'STM32WLx::clearPacketReceivedAction()'],['../class_r_f69.html#a31390763956a50182b0b5b8a7e5ff4e3',1,'RF69::clearPacketReceivedAction()'],['../classn_r_f24.html#a4295cfbfe05ec696aae680593f63ff7b',1,'nRF24::clearPacketReceivedAction()'],['../class_l_r11x0.html#a96e4a220bbd3487423acfd217b479fe3',1,'LR11x0::clearPacketReceivedAction()'],['../class_c_c1101.html#a0221c4fe494a590cc9714e4752675d61',1,'CC1101::clearPacketReceivedAction()'],['../class_si443x.html#a63a8bb675e7a0b54c493caa30adeb37e',1,'Si443x::clearPacketReceivedAction()']]], + ['clearpacketsentaction_44',['clearPacketSentAction',['../class_s_x127x.html#a56f45da4853eac1e9f6e753129d9e416',1,'SX127x::clearPacketSentAction()'],['../class_physical_layer.html#a67ee4ec36f352d06dda0102260f6bfce',1,'PhysicalLayer::clearPacketSentAction()'],['../class_s_x128x.html#a86000239b7f9871168fdfa8f8c73b377',1,'SX128x::clearPacketSentAction()'],['../class_s_x126x.html#af38ba3d27ab2ac10c703eefa1c428913',1,'SX126x::clearPacketSentAction()'],['../class_s_t_m32_w_lx.html#ac11d53d29bf5a845e3797ba6bb875930',1,'STM32WLx::clearPacketSentAction()'],['../class_si443x.html#a1835741ed147e575f9c03cf14c3b765e',1,'Si443x::clearPacketSentAction()'],['../class_r_f69.html#ac4ada0c4243b092ffb4c9812519fe947',1,'RF69::clearPacketSentAction()'],['../classn_r_f24.html#a5ae45ceec01854226ecce0320f1051e2',1,'nRF24::clearPacketSentAction()'],['../class_l_r11x0.html#a95ddec84ae2fb19989c333d42d4dc5fa',1,'LR11x0::clearPacketSentAction()'],['../class_c_c1101.html#a2791ebc7fe71626407278de5852b492f',1,'CC1101::clearPacketSentAction()']]], ['clearwifiscanaction_45',['clearWiFiScanAction',['../class_l_r11x0.html#ad5876b44020a0bd59f73186a912dbb60',1,'LR11x0']]], ['cmds_46',['cmds',['../struct_module_1_1_s_p_i_config__t.html#a57ecca17835380862426d3cf38561185',1,'Module::SPIConfig_t']]], ['codingrate_47',['codingRate',['../struct_lo_ra_rate__t.html#ae382629257949329b2fcb01d565183df',1,'LoRaRate_t']]], diff --git a/search/all_6.js b/search/all_6.js index fcf3b992..0bbaed98 100644 --- a/search/all_6.js +++ b/search/all_6.js @@ -34,9 +34,9 @@ var searchData= ['getpictureheight_148',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], ['getpromiscuousmode_149',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], ['getrangingresult_150',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], - ['getrssi_151',['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#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(bool packet, bool skipReceive=false)'],['../class_s_x1272.html#af5a7dee50a1a7d8261bc62bb869cda92',1,'SX1272::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_l_r11x0.html#a468ee0182883d8af22a0a4202ef7baa5',1,'LR11x0::getRSSI()'],['../class_c_c1101.html#ab80835be83e5a43010afe4e8185114eb',1,'CC1101::getRSSI()']]], + ['getrssi_151',['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#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(bool packet, bool skipReceive=false)'],['../class_s_x1272.html#af5a7dee50a1a7d8261bc62bb869cda92',1,'SX1272::getRSSI()'],['../class_r_f69.html#af107c6a510d7e0314f1f4d76637c833d',1,'RF69::getRSSI()'],['../class_l_r11x0.html#a6cd2b2363501b2de064c9d1f32fabaa3',1,'LR11x0::getRSSI()'],['../class_c_c1101.html#ab80835be83e5a43010afe4e8185114eb',1,'CC1101::getRSSI()']]], ['getrst_152',['getRst',['../class_module.html#ad6cddbf3aebec9717a1a381dd81ad398',1,'Module']]], - ['getsnr_153',['getSNR',['../class_s_x126x.html#a59b761a67d15cdbfdccd6a759f464d00',1,'SX126x::getSNR()'],['../class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f',1,'PhysicalLayer::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()'],['../class_l_r11x0.html#ad4f32509aea96de6a7ec08a8e60a6bea',1,'LR11x0::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()']]], + ['getsnr_153',['getSNR',['../class_s_x126x.html#a59b761a67d15cdbfdccd6a759f464d00',1,'SX126x::getSNR()'],['../class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f',1,'PhysicalLayer::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()'],['../class_l_r11x0.html#a004782e6e5c6ad213c3b0c677bb8642d',1,'LR11x0::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()']]], ['getstatus_154',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]], ['gettemperature_155',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]], ['gettempraw_156',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]], diff --git a/search/all_f.js b/search/all_f.js index aadb60ad..ff268538 100644 --- a/search/all_f.js +++ b/search/all_f.js @@ -112,12 +112,12 @@ var searchData= ['radiolibprint_362',['RadioLibPrint',['../class_radio_lib_print.html',1,'']]], ['radiolibtime_5ft_363',['RadioLibTime_t',['../group__typedefs.html#ga210f31dd2bff7fb80563275648a5bbbd',1,'TypeDef.h']]], ['random_364',['random',['../class_physical_layer.html#acd9171bd71aa80fb86113b612c42de53',1,'PhysicalLayer::random(int32_t max)'],['../class_physical_layer.html#a76113e10481743094a1cd0280692b0a9',1,'PhysicalLayer::random(int32_t min, int32_t max)']]], - ['randombyte_365',['randomByte',['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_s_x126x.html#a187a616285c5872f9603a86c122deaf2',1,'SX126x::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_l_r11x0.html#aaa0fd2a2f8d2915153b42bf1c8eadd9d',1,'LR11x0::randomByte()'],['../class_c_c1101.html#a13cf332824479442cc20fc1c6972b092',1,'CC1101::randomByte()']]], + ['randombyte_365',['randomByte',['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_s_x126x.html#a187a616285c5872f9603a86c122deaf2',1,'SX126x::randomByte()'],['../class_r_f69.html#ac47d0f59cb190361fa9b7d10efacc297',1,'RF69::randomByte()'],['../class_l_r11x0.html#a89b16d2231f588b67dc3aab0c0a467f4',1,'LR11x0::randomByte()'],['../class_c_c1101.html#a13cf332824479442cc20fc1c6972b092',1,'CC1101::randomByte()']]], ['range_366',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]], ['rate_367',['rate',['../struct_l_r11x0_wifi_result_extended__t.html#a16a6732a8af0332f64c0f6bcc0d5257f',1,'LR11x0WifiResultExtended_t']]], ['rcvseqnumber_368',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], ['read_369',['read',['../class_morse_client.html#a77eab03be04ef2d693348d9580ee5d3c',1,'MorseClient::read()'],['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()']]], - ['readbit_370',['readBit',['../class_c_c1101.html#a11a92d885beefdf2db291301550a980c',1,'CC1101::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#aceeb18acbfedb20c6cf60e26d5275793',1,'SX128x::readBit()'],['../class_s_x127x.html#a1a2dc7554414f0ce2ee0db23087f698a',1,'SX127x::readBit()'],['../class_si443x.html#af23d8eb0f1c436e6cc60361df13c08f7',1,'Si443x::readBit()'],['../class_r_f69.html#ab797840275fbccc40162225c32f5ffc3',1,'RF69::readBit()'],['../class_s_x126x.html#acb1a1c51f207439880ae537f5ffeb17c',1,'SX126x::readBit()']]], + ['readbit_370',['readBit',['../class_c_c1101.html#a11a92d885beefdf2db291301550a980c',1,'CC1101::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#aceeb18acbfedb20c6cf60e26d5275793',1,'SX128x::readBit()'],['../class_s_x127x.html#a1a2dc7554414f0ce2ee0db23087f698a',1,'SX127x::readBit()'],['../class_si443x.html#af23d8eb0f1c436e6cc60361df13c08f7',1,'Si443x::readBit()'],['../class_r_f69.html#a5a340c38b9b8b79d4fe59fb987b12746',1,'RF69::readBit()'],['../class_s_x126x.html#acb1a1c51f207439880ae537f5ffeb17c',1,'SX126x::readBit()']]], ['readdata_371',['readData',['../class_s_x127x.html#a3563453988a83d22dd07d4691543a300',1,'SX127x::readData()'],['../class_s_x126x.html#a3563453988a83d22dd07d4691543a300',1,'SX126x::readData()'],['../class_si443x.html#a3563453988a83d22dd07d4691543a300',1,'Si443x::readData()'],['../class_r_f69.html#a3563453988a83d22dd07d4691543a300',1,'RF69::readData()'],['../classn_r_f24.html#a3563453988a83d22dd07d4691543a300',1,'nRF24::readData()'],['../class_l_r11x0.html#a3563453988a83d22dd07d4691543a300',1,'LR11x0::readData()'],['../class_c_c1101.html#a3563453988a83d22dd07d4691543a300',1,'CC1101::readData()'],['../class_physical_layer.html#a3563453988a83d22dd07d4691543a300',1,'PhysicalLayer::readData()'],['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745',1,'SX127x::readData()'],['../class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2',1,'SX126x::readData()'],['../class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e',1,'Si443x::readData()'],['../class_r_f69.html#a3983b66c83818b4082805bcafc712f00',1,'RF69::readData()'],['../classn_r_f24.html#a410fb78acb4ed358818c132687b8857a',1,'nRF24::readData()'],['../class_l_r11x0.html#a20279f1b267e936991f47fd703924833',1,'LR11x0::readData()'],['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData()'],['../class_s_x128x.html#a3563453988a83d22dd07d4691543a300',1,'SX128x::readData()']]], ['receive_372',['receive',['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX128x::receive()'],['../class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX127x::receive()'],['../class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX126x::receive()'],['../class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'Si443x::receive()'],['../class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'RF69::receive()'],['../classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'nRF24::receive()'],['../class_l_r11x0.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'LR11x0::receive()'],['../class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'CC1101::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_l_r11x0.html#a377c287f18c939c2b4da3241d8329e58',1,'LR11x0::receive()'],['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'PhysicalLayer::receive()']]], ['receivedirect_373',['receiveDirect',['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6',1,'PhysicalLayer::receiveDirect()'],['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()'],['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../class_l_r11x0.html#ae1a8e8eda78113c47f1a865e63051bb5',1,'LR11x0::receiveDirect()'],['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect() override']]], diff --git a/search/functions_2.js b/search/functions_2.js index 56353cbe..c00192e5 100644 --- a/search/functions_2.js +++ b/search/functions_2.js @@ -15,7 +15,7 @@ var searchData= ['cleargdo0action_713',['clearGdo0Action',['../class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8',1,'CC1101']]], ['cleargdo2action_714',['clearGdo2Action',['../class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4',1,'CC1101']]], ['clearirqaction_715',['clearIrqAction',['../class_l_r11x0.html#ab167c4dc14e80d19f8b33d68c3f90d98',1,'LR11x0::clearIrqAction()'],['../classn_r_f24.html#aaf5887fe58c4d542cbed80482de1d42d',1,'nRF24::clearIrqAction()'],['../class_si443x.html#a8d019f58551346c3f3bd8b72d2486109',1,'Si443x::clearIrqAction()']]], - ['clearpacketreceivedaction_716',['clearPacketReceivedAction',['../class_physical_layer.html#a7edf27f03600b96f72f011fc82fa4ef9',1,'PhysicalLayer::clearPacketReceivedAction()'],['../class_s_x128x.html#a20b21a4f804b148fede4b7199c4d1e71',1,'SX128x::clearPacketReceivedAction()'],['../class_s_x127x.html#a098baa351e38f3b4caa19a362bc190d4',1,'SX127x::clearPacketReceivedAction()'],['../class_s_x126x.html#a56f88f6a2b88ae6dbd3ad04b1950e7b2',1,'SX126x::clearPacketReceivedAction()'],['../class_si443x.html#a63a8bb675e7a0b54c493caa30adeb37e',1,'Si443x::clearPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#aad377b018cf65ceb6b23cac523ba96b4',1,'STM32WLx::clearPacketReceivedAction()'],['../class_r_f69.html#ac302d3524dc802467a7ce91b2223db90',1,'RF69::clearPacketReceivedAction()'],['../classn_r_f24.html#a4295cfbfe05ec696aae680593f63ff7b',1,'nRF24::clearPacketReceivedAction()'],['../class_l_r11x0.html#a66a2afc6cef1e94e25efec15094816a8',1,'LR11x0::clearPacketReceivedAction()'],['../class_c_c1101.html#a0221c4fe494a590cc9714e4752675d61',1,'CC1101::clearPacketReceivedAction() override']]], - ['clearpacketsentaction_717',['clearPacketSentAction',['../class_c_c1101.html#a2791ebc7fe71626407278de5852b492f',1,'CC1101::clearPacketSentAction()'],['../class_l_r11x0.html#acd69e3b8825309703e13149b94e49d81',1,'LR11x0::clearPacketSentAction()'],['../classn_r_f24.html#a5ae45ceec01854226ecce0320f1051e2',1,'nRF24::clearPacketSentAction()'],['../class_r_f69.html#a3a8be5bcc37d3e4f5ac2d0310c8bac12',1,'RF69::clearPacketSentAction()'],['../class_si443x.html#a1835741ed147e575f9c03cf14c3b765e',1,'Si443x::clearPacketSentAction()'],['../class_s_t_m32_w_lx.html#ac11d53d29bf5a845e3797ba6bb875930',1,'STM32WLx::clearPacketSentAction()'],['../class_s_x126x.html#af38ba3d27ab2ac10c703eefa1c428913',1,'SX126x::clearPacketSentAction()'],['../class_s_x127x.html#a56f45da4853eac1e9f6e753129d9e416',1,'SX127x::clearPacketSentAction()'],['../class_s_x128x.html#a86000239b7f9871168fdfa8f8c73b377',1,'SX128x::clearPacketSentAction()'],['../class_physical_layer.html#a67ee4ec36f352d06dda0102260f6bfce',1,'PhysicalLayer::clearPacketSentAction()']]], + ['clearpacketreceivedaction_716',['clearPacketReceivedAction',['../class_physical_layer.html#a7edf27f03600b96f72f011fc82fa4ef9',1,'PhysicalLayer::clearPacketReceivedAction()'],['../class_s_x128x.html#a20b21a4f804b148fede4b7199c4d1e71',1,'SX128x::clearPacketReceivedAction()'],['../class_s_x127x.html#a098baa351e38f3b4caa19a362bc190d4',1,'SX127x::clearPacketReceivedAction()'],['../class_s_x126x.html#a56f88f6a2b88ae6dbd3ad04b1950e7b2',1,'SX126x::clearPacketReceivedAction()'],['../class_si443x.html#a63a8bb675e7a0b54c493caa30adeb37e',1,'Si443x::clearPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#aad377b018cf65ceb6b23cac523ba96b4',1,'STM32WLx::clearPacketReceivedAction()'],['../class_r_f69.html#a31390763956a50182b0b5b8a7e5ff4e3',1,'RF69::clearPacketReceivedAction()'],['../classn_r_f24.html#a4295cfbfe05ec696aae680593f63ff7b',1,'nRF24::clearPacketReceivedAction()'],['../class_l_r11x0.html#a96e4a220bbd3487423acfd217b479fe3',1,'LR11x0::clearPacketReceivedAction()'],['../class_c_c1101.html#a0221c4fe494a590cc9714e4752675d61',1,'CC1101::clearPacketReceivedAction() override']]], + ['clearpacketsentaction_717',['clearPacketSentAction',['../class_c_c1101.html#a2791ebc7fe71626407278de5852b492f',1,'CC1101::clearPacketSentAction()'],['../class_l_r11x0.html#a95ddec84ae2fb19989c333d42d4dc5fa',1,'LR11x0::clearPacketSentAction()'],['../classn_r_f24.html#a5ae45ceec01854226ecce0320f1051e2',1,'nRF24::clearPacketSentAction()'],['../class_r_f69.html#ac4ada0c4243b092ffb4c9812519fe947',1,'RF69::clearPacketSentAction()'],['../class_si443x.html#a1835741ed147e575f9c03cf14c3b765e',1,'Si443x::clearPacketSentAction()'],['../class_s_t_m32_w_lx.html#ac11d53d29bf5a845e3797ba6bb875930',1,'STM32WLx::clearPacketSentAction()'],['../class_s_x126x.html#af38ba3d27ab2ac10c703eefa1c428913',1,'SX126x::clearPacketSentAction()'],['../class_s_x127x.html#a56f45da4853eac1e9f6e753129d9e416',1,'SX127x::clearPacketSentAction()'],['../class_s_x128x.html#a86000239b7f9871168fdfa8f8c73b377',1,'SX128x::clearPacketSentAction()'],['../class_physical_layer.html#a67ee4ec36f352d06dda0102260f6bfce',1,'PhysicalLayer::clearPacketSentAction()']]], ['clearwifiscanaction_718',['clearWiFiScanAction',['../class_l_r11x0.html#ad5876b44020a0bd59f73186a912dbb60',1,'LR11x0']]] ]; diff --git a/search/functions_6.js b/search/functions_6.js index a571e5f5..4a525d31 100644 --- a/search/functions_6.js +++ b/search/functions_6.js @@ -34,9 +34,9 @@ var searchData= ['getpictureheight_781',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], ['getpromiscuousmode_782',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], ['getrangingresult_783',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], - ['getrssi_784',['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_l_r11x0.html#a468ee0182883d8af22a0a4202ef7baa5',1,'LR11x0::getRSSI()'],['../class_c_c1101.html#ab80835be83e5a43010afe4e8185114eb',1,'CC1101::getRSSI()'],['../class_s_x1272.html#af5a7dee50a1a7d8261bc62bb869cda92',1,'SX1272::getRSSI()']]], + ['getrssi_784',['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#af107c6a510d7e0314f1f4d76637c833d',1,'RF69::getRSSI()'],['../class_l_r11x0.html#a6cd2b2363501b2de064c9d1f32fabaa3',1,'LR11x0::getRSSI()'],['../class_c_c1101.html#ab80835be83e5a43010afe4e8185114eb',1,'CC1101::getRSSI()'],['../class_s_x1272.html#af5a7dee50a1a7d8261bc62bb869cda92',1,'SX1272::getRSSI()']]], ['getrst_785',['getRst',['../class_module.html#ad6cddbf3aebec9717a1a381dd81ad398',1,'Module']]], - ['getsnr_786',['getSNR',['../class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f',1,'PhysicalLayer::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()'],['../class_s_x126x.html#a59b761a67d15cdbfdccd6a759f464d00',1,'SX126x::getSNR()'],['../class_l_r11x0.html#ad4f32509aea96de6a7ec08a8e60a6bea',1,'LR11x0::getSNR()']]], + ['getsnr_786',['getSNR',['../class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f',1,'PhysicalLayer::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()'],['../class_s_x126x.html#a59b761a67d15cdbfdccd6a759f464d00',1,'SX126x::getSNR()'],['../class_l_r11x0.html#a004782e6e5c6ad213c3b0c677bb8642d',1,'LR11x0::getSNR()']]], ['getstatus_787',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]], ['gettemperature_788',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]], ['gettempraw_789',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]], diff --git a/search/functions_e.js b/search/functions_e.js index befbf232..b347a2c7 100644 --- a/search/functions_e.js +++ b/search/functions_e.js @@ -5,10 +5,10 @@ var searchData= ['radiolibcrc_828',['RadioLibCRC',['../class_radio_lib_c_r_c.html#a4f4042a369d55e234f4fc28f189139d5',1,'RadioLibCRC']]], ['radiolibhal_829',['RadioLibHal',['../class_radio_lib_hal.html#ae75a54271cb8bea37d32dd146b9c6513',1,'RadioLibHal']]], ['random_830',['random',['../class_physical_layer.html#acd9171bd71aa80fb86113b612c42de53',1,'PhysicalLayer::random(int32_t max)'],['../class_physical_layer.html#a76113e10481743094a1cd0280692b0a9',1,'PhysicalLayer::random(int32_t min, int32_t max)']]], - ['randombyte_831',['randomByte',['../class_c_c1101.html#a13cf332824479442cc20fc1c6972b092',1,'CC1101::randomByte()'],['../class_l_r11x0.html#aaa0fd2a2f8d2915153b42bf1c8eadd9d',1,'LR11x0::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_s_x126x.html#a187a616285c5872f9603a86c122deaf2',1,'SX126x::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()']]], + ['randombyte_831',['randomByte',['../class_c_c1101.html#a13cf332824479442cc20fc1c6972b092',1,'CC1101::randomByte()'],['../class_l_r11x0.html#a89b16d2231f588b67dc3aab0c0a467f4',1,'LR11x0::randomByte()'],['../class_r_f69.html#ac47d0f59cb190361fa9b7d10efacc297',1,'RF69::randomByte()'],['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_s_x126x.html#a187a616285c5872f9603a86c122deaf2',1,'SX126x::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()']]], ['range_832',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]], ['read_833',['read',['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()'],['../class_morse_client.html#a77eab03be04ef2d693348d9580ee5d3c',1,'MorseClient::read()']]], - ['readbit_834',['readBit',['../class_c_c1101.html#a11a92d885beefdf2db291301550a980c',1,'CC1101::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#aceeb18acbfedb20c6cf60e26d5275793',1,'SX128x::readBit()'],['../class_s_x127x.html#a1a2dc7554414f0ce2ee0db23087f698a',1,'SX127x::readBit()'],['../class_s_x126x.html#acb1a1c51f207439880ae537f5ffeb17c',1,'SX126x::readBit()'],['../class_si443x.html#af23d8eb0f1c436e6cc60361df13c08f7',1,'Si443x::readBit()'],['../class_r_f69.html#ab797840275fbccc40162225c32f5ffc3',1,'RF69::readBit()']]], + ['readbit_834',['readBit',['../class_c_c1101.html#a11a92d885beefdf2db291301550a980c',1,'CC1101::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#aceeb18acbfedb20c6cf60e26d5275793',1,'SX128x::readBit()'],['../class_s_x127x.html#a1a2dc7554414f0ce2ee0db23087f698a',1,'SX127x::readBit()'],['../class_s_x126x.html#acb1a1c51f207439880ae537f5ffeb17c',1,'SX126x::readBit()'],['../class_si443x.html#af23d8eb0f1c436e6cc60361df13c08f7',1,'Si443x::readBit()'],['../class_r_f69.html#a5a340c38b9b8b79d4fe59fb987b12746',1,'RF69::readBit()']]], ['readdata_835',['readData',['../class_l_r11x0.html#a20279f1b267e936991f47fd703924833',1,'LR11x0::readData()'],['../class_s_x128x.html#a3563453988a83d22dd07d4691543a300',1,'SX128x::readData()'],['../class_s_x127x.html#a3563453988a83d22dd07d4691543a300',1,'SX127x::readData()'],['../class_s_x126x.html#a3563453988a83d22dd07d4691543a300',1,'SX126x::readData()'],['../class_si443x.html#a3563453988a83d22dd07d4691543a300',1,'Si443x::readData()'],['../class_r_f69.html#a3563453988a83d22dd07d4691543a300',1,'RF69::readData()'],['../classn_r_f24.html#a3563453988a83d22dd07d4691543a300',1,'nRF24::readData()'],['../class_l_r11x0.html#a3563453988a83d22dd07d4691543a300',1,'LR11x0::readData()'],['../class_c_c1101.html#a3563453988a83d22dd07d4691543a300',1,'CC1101::readData()'],['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData()'],['../classn_r_f24.html#a410fb78acb4ed358818c132687b8857a',1,'nRF24::readData()'],['../class_r_f69.html#a3983b66c83818b4082805bcafc712f00',1,'RF69::readData()'],['../class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e',1,'Si443x::readData()'],['../class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2',1,'SX126x::readData()'],['../class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745',1,'SX127x::readData()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_physical_layer.html#a3563453988a83d22dd07d4691543a300',1,'PhysicalLayer::readData()']]], ['receive_836',['receive',['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX128x::receive()'],['../class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX127x::receive()'],['../class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX126x::receive()'],['../class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'Si443x::receive()'],['../class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'RF69::receive()'],['../classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'nRF24::receive()'],['../class_l_r11x0.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'LR11x0::receive()'],['../class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'CC1101::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_l_r11x0.html#a377c287f18c939c2b4da3241d8329e58',1,'LR11x0::receive()'],['../class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'PhysicalLayer::receive(uint8_t *data, size_t len)']]], ['receivedirect_837',['receiveDirect',['../class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6',1,'PhysicalLayer::receiveDirect()'],['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_l_r11x0.html#ae1a8e8eda78113c47f1a865e63051bb5',1,'LR11x0::receiveDirect()'],['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()']]], diff --git a/search/functions_f.js b/search/functions_f.js index e273758b..4cffa395 100644 --- a/search/functions_f.js +++ b/search/functions_f.js @@ -20,7 +20,7 @@ var searchData= ['setambienttemperature_862',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], ['setautoack_863',['setAutoAck',['../classn_r_f24.html#aca941c9235ba1212257288554eb4b7fe',1,'nRF24::setAutoAck(bool autoAckOn=true)'],['../classn_r_f24.html#ac1c3419442d93abeede39e7fda4db62e',1,'nRF24::setAutoAck(uint8_t pipeNum, bool autoAckOn)']]], ['setbandwidth_864',['setBandwidth',['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::setBandwidth()'],['../class_l_r11x0.html#abf961ec7d93feb6472f26b7b976ee0c9',1,'LR11x0::setBandwidth()'],['../class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08',1,'SX126x::setBandwidth()'],['../class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b',1,'SX1272::setBandwidth()'],['../class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6',1,'SX1278::setBandwidth()'],['../class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a',1,'SX128x::setBandwidth()']]], - ['setbitrate_865',['setBitRate',['../class_s_x126x.html#ac38a19db6b8b9aff438d6e23051d487d',1,'SX126x::setBitRate()'],['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee',1,'SX128x::setBitRate()'],['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()'],['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_s_x1233.html#af245e451dca502ee8975c7ecd291a859',1,'SX1233::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13',1,'RF69::setBitRate()'],['../classn_r_f24.html#a0873f58ae62e41cff99813e21cc8b02a',1,'nRF24::setBitRate()'],['../class_l_r11x0.html#a03ab7a24fec379c6ba2d642e1133c4f2',1,'LR11x0::setBitRate()'],['../class_c_c1101.html#a6fd22cdec29e1e34a92aa9854b90fdc9',1,'CC1101::setBitRate()']]], + ['setbitrate_865',['setBitRate',['../class_s_x126x.html#ac38a19db6b8b9aff438d6e23051d487d',1,'SX126x::setBitRate()'],['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee',1,'SX128x::setBitRate()'],['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()'],['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_s_x1233.html#a98e0248cfcca7158261f7ebb31e0aa9f',1,'SX1233::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../class_r_f69.html#aa3bfb830901728e9a3c140036aa91c56',1,'RF69::setBitRate()'],['../classn_r_f24.html#a0873f58ae62e41cff99813e21cc8b02a',1,'nRF24::setBitRate()'],['../class_l_r11x0.html#ab1954e4733a7fbea4129d9a2de2285d9',1,'LR11x0::setBitRate()'],['../class_c_c1101.html#a6fd22cdec29e1e34a92aa9854b90fdc9',1,'CC1101::setBitRate()']]], ['setbroadcastaddress_866',['setBroadcastAddress',['../class_l_r11x0.html#af24ba794f71c4e37cd13d2f4dbec5bf7',1,'LR11x0::setBroadcastAddress()'],['../class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8',1,'RF69::setBroadcastAddress()'],['../class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034',1,'SX126x::setBroadcastAddress()'],['../class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40',1,'SX127x::setBroadcastAddress()']]], ['setbuffernonces_867',['setBufferNonces',['../class_lo_ra_w_a_n_node.html#a11701081ac6bd39a8a2b4bdbc248fac2',1,'LoRaWANNode']]], ['setbuffersession_868',['setBufferSession',['../class_lo_ra_w_a_n_node.html#aadebe7a412aec8043aa2f8f57a202f49',1,'LoRaWANNode']]], @@ -39,9 +39,9 @@ var searchData= ['setdio0action_881',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ae75bc48cc74a407370cd9f4bf95e9e30',1,'SX127x::setDio0Action()']]], ['setdio1action_882',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_t_m32_w_lx.html#a63d61bc5057e9da3d0ea12feae67122e',1,'STM32WLx::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#a7b4bce81839b105c464ebf922602e58b',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()']]], ['setdio2asrfswitch_883',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], - ['setdiomapping_884',['setDIOMapping',['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()'],['../class_s_x127x.html#a103b606166eba8c69bff061270744768',1,'SX127x::setDIOMapping()'],['../class_r_f69.html#a0d7720672c0aa0cf4464d544540cbada',1,'RF69::setDIOMapping()'],['../class_c_c1101.html#a544bb8d7be9c0e1ff7f7103b30925862',1,'CC1101::setDIOMapping()']]], + ['setdiomapping_884',['setDIOMapping',['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()'],['../class_s_x127x.html#a103b606166eba8c69bff061270744768',1,'SX127x::setDIOMapping()'],['../class_r_f69.html#a7243b3396edc1e6e67575894a5033afe',1,'RF69::setDIOMapping()'],['../class_c_c1101.html#a544bb8d7be9c0e1ff7f7103b30925862',1,'CC1101::setDIOMapping()']]], ['setdiopreambledetect_885',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]], - ['setdirectaction_886',['setDirectAction',['../class_c_c1101.html#a24f4b059cc56238499c6117b88cd5505',1,'CC1101::setDirectAction()'],['../class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28',1,'RF69::setDirectAction()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#a4f514b341b8982650526c6d8e20fd1a4',1,'SX126x::setDirectAction()'],['../class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238',1,'SX127x::setDirectAction()'],['../class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236',1,'SX128x::setDirectAction()'],['../class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966',1,'PhysicalLayer::setDirectAction(void(*func)(void))']]], + ['setdirectaction_886',['setDirectAction',['../class_c_c1101.html#a24f4b059cc56238499c6117b88cd5505',1,'CC1101::setDirectAction()'],['../class_r_f69.html#a9852fe520aec018d2bb4aff0cd17de77',1,'RF69::setDirectAction()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#a4f514b341b8982650526c6d8e20fd1a4',1,'SX126x::setDirectAction()'],['../class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238',1,'SX127x::setDirectAction()'],['../class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236',1,'SX128x::setDirectAction()'],['../class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966',1,'PhysicalLayer::setDirectAction(void(*func)(void))']]], ['setdirectsyncword_887',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], ['setdutycycle_888',['setDutyCycle',['../class_lo_ra_w_a_n_node.html#a3d4bbd6d382496838954ab4ac1168b77',1,'LoRaWANNode']]], ['setdwelltime_889',['setDwellTime',['../class_lo_ra_w_a_n_node.html#a62bfe68f6fe63c2e408dccbff6a34a4f',1,'LoRaWANNode']]], @@ -49,7 +49,7 @@ var searchData= ['setfhsshoppingperiod_891',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]], ['setfifoemptyaction_892',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()']]], ['setfifofullaction_893',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]], - ['setfrequency_894',['setFrequency',['../class_c_c1101.html#ad428d7e6fc9ac119101bb0716fa80bee',1,'CC1101::setFrequency()'],['../class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e',1,'PhysicalLayer::setFrequency()'],['../class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371',1,'SX128x::setFrequency()'],['../class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817',1,'SX1279::setFrequency()'],['../class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4',1,'SX1278::setFrequency()'],['../class_s_x1277.html#a42adde5eecccdca95214980848795e82',1,'SX1277::setFrequency()'],['../class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008',1,'SX1276::setFrequency()'],['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::setFrequency(float freq, bool calibrate)'],['../class_s_x1268.html#af412a9361fe413b2d0c426100056d8c2',1,'SX1268::setFrequency(float freq) override'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency(float freq, bool calibrate)'],['../class_s_x1262.html#a2122feee1a3bffaaa20e85b24dc8a899',1,'SX1262::setFrequency(float freq) override'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../classn_r_f24.html#a408278336cdf25fd205ecffea86c26e8',1,'nRF24::setFrequency()'],['../class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2',1,'LR1120::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1120.html#a1139585bff92c19ab645f68068930d60',1,'LR1120::setFrequency(float freq)'],['../class_l_r1110.html#a08c9ba9d02e7e3918f73f090c6d5ed33',1,'LR1110::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1110.html#a58cfda71b08567a7e98e7d6fd03465b4',1,'LR1110::setFrequency(float freq)']]], + ['setfrequency_894',['setFrequency',['../class_c_c1101.html#ad428d7e6fc9ac119101bb0716fa80bee',1,'CC1101::setFrequency()'],['../class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e',1,'PhysicalLayer::setFrequency()'],['../class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371',1,'SX128x::setFrequency()'],['../class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817',1,'SX1279::setFrequency()'],['../class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4',1,'SX1278::setFrequency()'],['../class_s_x1277.html#a42adde5eecccdca95214980848795e82',1,'SX1277::setFrequency()'],['../class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008',1,'SX1276::setFrequency()'],['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::setFrequency(float freq, bool calibrate)'],['../class_s_x1268.html#af412a9361fe413b2d0c426100056d8c2',1,'SX1268::setFrequency(float freq) override'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency(float freq, bool calibrate)'],['../class_s_x1262.html#a2122feee1a3bffaaa20e85b24dc8a899',1,'SX1262::setFrequency(float freq) override'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_r_f69.html#aa7f47c37eec6c7e3ebf6e6d30ebd5532',1,'RF69::setFrequency()'],['../classn_r_f24.html#a408278336cdf25fd205ecffea86c26e8',1,'nRF24::setFrequency()'],['../class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2',1,'LR1120::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb',1,'LR1120::setFrequency(float freq) override'],['../class_l_r1110.html#a08c9ba9d02e7e3918f73f090c6d5ed33',1,'LR1110::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1110.html#ade94d20ea438cbd92c61e28d2232d7e8',1,'LR1110::setFrequency(float freq) override']]], ['setfrequencydeviation_895',['setFrequencyDeviation',['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_physical_layer.html#a2f4f9b428d9ea9af886ca85e5088ed7b',1,'PhysicalLayer::setFrequencyDeviation()'],['../class_external_radio.html#a02928a19eab0eab615c02180cedda3eb',1,'ExternalRadio::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_l_r11x0.html#ac003cfe3a4dbd9bad1f01fd0147031d1',1,'LR11x0::setFrequencyDeviation()'],['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()']]], ['setgain_896',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], ['setgaincontrol_897',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]], @@ -69,9 +69,9 @@ var searchData= ['setookpeakthresholddecrement_911',['setOokPeakThresholdDecrement',['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement()'],['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()']]], ['setookpeakthresholdstep_912',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]], ['setookthresholdtype_913',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]], - ['setoutputpower_914',['setOutputPower',['../class_s_x1261.html#a3d197bb8a301f3594c7bfa1c9375aef1',1,'SX1261::setOutputPower()'],['../class_physical_layer.html#ad2286dc78dbf8e3084f38e9159b99ae5',1,'PhysicalLayer::setOutputPower()'],['../class_s_x128x.html#ad988727ea6c9b4e11562651d312514c0',1,'SX128x::setOutputPower()'],['../class_s_x1278.html#aca58a6c2e8fcef6414fdf3bc1eb62082',1,'SX1278::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1278.html#a69abc18e7fa0055e6b80024e8cde7db4',1,'SX1278::setOutputPower(int8_t power) override'],['../class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659',1,'SX1272::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1272.html#aec51f08c0902145ff5f11e27e7cab638',1,'SX1272::setOutputPower(int8_t power) override'],['../class_s_x1268.html#a6b6adaee1c8d76c3d766225298d84709',1,'SX1268::setOutputPower()'],['../class_s_x1262.html#aa455a7f0e69abdcca55cf35388d9dc52',1,'SX1262::setOutputPower()'],['../class_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',1,'RF69::setOutputPower()'],['../classn_r_f24.html#ad9859fa54aed7d3cd82839bad9d7d33a',1,'nRF24::setOutputPower()'],['../class_l_r11x0.html#a549ecc907732bca96dab27c433928740',1,'LR11x0::setOutputPower(int8_t power, bool forceHighPower)'],['../class_l_r11x0.html#a2522e288732aa77ec4f5a44e724612af',1,'LR11x0::setOutputPower(int8_t power)'],['../class_c_c1101.html#a5d6dce30fc7da668975b6da663784cdf',1,'CC1101::setOutputPower()']]], - ['setpacketreceivedaction_915',['setPacketReceivedAction',['../class_physical_layer.html#aec928bb26f65752aa20cd236fbabb95c',1,'PhysicalLayer::setPacketReceivedAction()'],['../class_s_x128x.html#a697880c42c4b1def04c8fe7f3a023ffb',1,'SX128x::setPacketReceivedAction()'],['../class_s_x127x.html#ad63322c9c58dd82e4b9982f10e546f33',1,'SX127x::setPacketReceivedAction()'],['../class_s_x126x.html#a7603aa60ae8d975eb262a4b7e2aed1d0',1,'SX126x::setPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#ad23dafdeb21b97165be74ef8f093866c',1,'STM32WLx::setPacketReceivedAction()'],['../class_r_f69.html#ac8bff26070735a733a24146d414c3c5f',1,'RF69::setPacketReceivedAction()'],['../class_si443x.html#a2badfa5db1ae5b9ec26ad7a8b3cab167',1,'Si443x::setPacketReceivedAction()'],['../class_c_c1101.html#a29a16e8ed85432c6fae8d9e45399de6e',1,'CC1101::setPacketReceivedAction()'],['../classn_r_f24.html#a08b90ae895a6a45bceb11f67237245b4',1,'nRF24::setPacketReceivedAction()'],['../class_l_r11x0.html#a0a4d48bf33fe466ea4c14cd9db228dce',1,'LR11x0::setPacketReceivedAction(void(*func)(void))']]], - ['setpacketsentaction_916',['setPacketSentAction',['../class_l_r11x0.html#a88ff8c277e340c3273fb5715cd743cce',1,'LR11x0::setPacketSentAction()'],['../class_c_c1101.html#a336999da23e554073a9fa628131883f5',1,'CC1101::setPacketSentAction()'],['../class_physical_layer.html#a32b512b34f6575b2109ae3c3f35d1369',1,'PhysicalLayer::setPacketSentAction()'],['../class_s_x128x.html#acaa115bb9eb3d325d6baba1f578d678b',1,'SX128x::setPacketSentAction()'],['../class_s_x127x.html#a91476a51019910b958f464e73ba797c5',1,'SX127x::setPacketSentAction()'],['../class_s_x126x.html#ac79f7ebab97ae91fff6933be3207c873',1,'SX126x::setPacketSentAction()'],['../class_si443x.html#aa55274bb345f178328ea2a674621fc84',1,'Si443x::setPacketSentAction()'],['../class_r_f69.html#a27fad7a67c4239c19bd94d1ccfb493ca',1,'RF69::setPacketSentAction()'],['../classn_r_f24.html#a8e00d6729ee3c869cda8ccb5ae15ba27',1,'nRF24::setPacketSentAction()'],['../class_s_t_m32_w_lx.html#a7c0e3aef03f0b6834d0465d8f8568c32',1,'STM32WLx::setPacketSentAction()']]], + ['setoutputpower_914',['setOutputPower',['../class_s_x1261.html#a3d197bb8a301f3594c7bfa1c9375aef1',1,'SX1261::setOutputPower()'],['../class_physical_layer.html#ad2286dc78dbf8e3084f38e9159b99ae5',1,'PhysicalLayer::setOutputPower()'],['../class_s_x128x.html#ad988727ea6c9b4e11562651d312514c0',1,'SX128x::setOutputPower()'],['../class_s_x1278.html#aca58a6c2e8fcef6414fdf3bc1eb62082',1,'SX1278::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1278.html#a69abc18e7fa0055e6b80024e8cde7db4',1,'SX1278::setOutputPower(int8_t power) override'],['../class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659',1,'SX1272::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1272.html#aec51f08c0902145ff5f11e27e7cab638',1,'SX1272::setOutputPower(int8_t power) override'],['../class_s_x1268.html#a6b6adaee1c8d76c3d766225298d84709',1,'SX1268::setOutputPower()'],['../class_s_x1262.html#aa455a7f0e69abdcca55cf35388d9dc52',1,'SX1262::setOutputPower()'],['../class_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',1,'RF69::setOutputPower()'],['../classn_r_f24.html#ad9859fa54aed7d3cd82839bad9d7d33a',1,'nRF24::setOutputPower()'],['../class_l_r11x0.html#a549ecc907732bca96dab27c433928740',1,'LR11x0::setOutputPower(int8_t power, bool forceHighPower)'],['../class_l_r11x0.html#a5d357573584cd02849a958c46701d232',1,'LR11x0::setOutputPower(int8_t power) override'],['../class_c_c1101.html#a5d6dce30fc7da668975b6da663784cdf',1,'CC1101::setOutputPower()']]], + ['setpacketreceivedaction_915',['setPacketReceivedAction',['../class_physical_layer.html#aec928bb26f65752aa20cd236fbabb95c',1,'PhysicalLayer::setPacketReceivedAction()'],['../class_s_x128x.html#a697880c42c4b1def04c8fe7f3a023ffb',1,'SX128x::setPacketReceivedAction()'],['../class_s_x127x.html#ad63322c9c58dd82e4b9982f10e546f33',1,'SX127x::setPacketReceivedAction()'],['../class_s_x126x.html#a7603aa60ae8d975eb262a4b7e2aed1d0',1,'SX126x::setPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#ad23dafdeb21b97165be74ef8f093866c',1,'STM32WLx::setPacketReceivedAction()'],['../class_r_f69.html#a74962c069e08890ac9566d48634c778e',1,'RF69::setPacketReceivedAction()'],['../class_si443x.html#a2badfa5db1ae5b9ec26ad7a8b3cab167',1,'Si443x::setPacketReceivedAction()'],['../class_c_c1101.html#a29a16e8ed85432c6fae8d9e45399de6e',1,'CC1101::setPacketReceivedAction()'],['../classn_r_f24.html#a08b90ae895a6a45bceb11f67237245b4',1,'nRF24::setPacketReceivedAction()'],['../class_l_r11x0.html#ac2a8ece736198c966e3870dac09f4e87',1,'LR11x0::setPacketReceivedAction(void(*func)(void)) override']]], + ['setpacketsentaction_916',['setPacketSentAction',['../class_l_r11x0.html#a92299e41f839590008b4e344776838a1',1,'LR11x0::setPacketSentAction()'],['../class_c_c1101.html#a336999da23e554073a9fa628131883f5',1,'CC1101::setPacketSentAction()'],['../class_physical_layer.html#a32b512b34f6575b2109ae3c3f35d1369',1,'PhysicalLayer::setPacketSentAction()'],['../class_s_x128x.html#acaa115bb9eb3d325d6baba1f578d678b',1,'SX128x::setPacketSentAction()'],['../class_s_x127x.html#a91476a51019910b958f464e73ba797c5',1,'SX127x::setPacketSentAction()'],['../class_s_x126x.html#ac79f7ebab97ae91fff6933be3207c873',1,'SX126x::setPacketSentAction()'],['../class_si443x.html#aa55274bb345f178328ea2a674621fc84',1,'Si443x::setPacketSentAction()'],['../class_r_f69.html#a97603856caada65676ff4b11630c7f72',1,'RF69::setPacketSentAction()'],['../classn_r_f24.html#a8e00d6729ee3c869cda8ccb5ae15ba27',1,'nRF24::setPacketSentAction()'],['../class_s_t_m32_w_lx.html#a7c0e3aef03f0b6834d0465d8f8568c32',1,'STM32WLx::setPacketSentAction()']]], ['setpaconfig_917',['setPaConfig',['../class_s_x126x.html#a1623e7d5450c97ca092913ad79d62208',1,'SX126x']]], ['setparamptime_918',['setPaRampTime',['../class_s_x126x.html#ad90a56cb55c5bb64037a0d412d84a80d',1,'SX126x']]], ['setpreamblelength_919',['setPreambleLength',['../class_s_x127x.html#a844499bace6ae001446d71bee2877656',1,'SX127x::setPreambleLength()'],['../class_physical_layer.html#a85db1ff64e6c56e054f276c511194633',1,'PhysicalLayer::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()'],['../class_s_x126x.html#ad6274222ccf534e98e3cd17dfa1520d4',1,'SX126x::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_l_r11x0.html#aa5d7ae65666f8f9abcb7e9b169884a4a',1,'LR11x0::setPreambleLength()'],['../class_c_c1101.html#ae77c828c9c7cc12012fe011e8c4d3570',1,'CC1101::setPreambleLength(uint8_t preambleLength, uint8_t qualityThreshold)']]], @@ -101,7 +101,7 @@ var searchData= ['si4431_943',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431']]], ['si4432_944',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432']]], ['si443x_945',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x']]], - ['sleep_946',['sleep',['../class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df',1,'SX127x::sleep()'],['../class_physical_layer.html#af1bb9a5da26da8829795ebb72e9c666e',1,'PhysicalLayer::sleep()'],['../class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f',1,'SX128x::sleep()'],['../class_s_x126x.html#afb5509f0705cdd971065251ed6b2fb4e',1,'SX126x::sleep()'],['../class_si443x.html#ada90718aeb67d7f0e9899da534de9695',1,'Si443x::sleep()'],['../class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb',1,'RF69::sleep()'],['../classn_r_f24.html#a033287e33c532638c11e2775a073f297',1,'nRF24::sleep()'],['../class_l_r11x0.html#a64d70a3341a6a8b32f9871cdcb719733',1,'LR11x0::sleep()']]], + ['sleep_946',['sleep',['../class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df',1,'SX127x::sleep()'],['../class_physical_layer.html#af1bb9a5da26da8829795ebb72e9c666e',1,'PhysicalLayer::sleep()'],['../class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f',1,'SX128x::sleep()'],['../class_s_x126x.html#afb5509f0705cdd971065251ed6b2fb4e',1,'SX126x::sleep()'],['../class_si443x.html#ada90718aeb67d7f0e9899da534de9695',1,'Si443x::sleep()'],['../class_r_f69.html#adec9debf69f5ee846a5b6e34831ade3c',1,'RF69::sleep()'],['../classn_r_f24.html#a033287e33c532638c11e2775a073f297',1,'nRF24::sleep()'],['../class_l_r11x0.html#a64d70a3341a6a8b32f9871cdcb719733',1,'LR11x0::sleep()']]], ['spectralscanabort_947',['spectralScanAbort',['../class_s_x126x.html#a865397e1cca38bec2d055c047825ea07',1,'SX126x']]], ['spectralscangetresult_948',['spectralScanGetResult',['../class_s_x126x.html#ae473773e5bed4b08452e80311bdb26f2',1,'SX126x']]], ['spectralscangetstatus_949',['spectralScanGetStatus',['../class_s_x126x.html#a5595fff99d76d50d711b8cdad98527c4',1,'SX126x']]], @@ -127,7 +127,7 @@ var searchData= ['startchannelscan_969',['startChannelScan',['../class_s_x127x.html#a6fa5723724393576ed597509200e17d1',1,'SX127x::startChannelScan()'],['../class_physical_layer.html#ae30dfbb5445bb674898fc54f5f90b2f9',1,'PhysicalLayer::startChannelScan()'],['../class_s_x128x.html#a948156af6e886bc46a6c6c5fb10a087a',1,'SX128x::startChannelScan()'],['../class_s_x126x.html#aff8ec92d828421564322f13fb1c90223',1,'SX126x::startChannelScan(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin)'],['../class_s_x126x.html#a001c4637f01ed6f0216cd6c4d7e10da3',1,'SX126x::startChannelScan() override'],['../class_l_r11x0.html#aa09eb53b0c32a5f229e14c46bfe45a4f',1,'LR11x0::startChannelScan(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin)'],['../class_l_r11x0.html#a4f3bc362530b85dd643669705f03998d',1,'LR11x0::startChannelScan() override']]], ['startdirect_970',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], ['startranging_971',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]], - ['startreceive_972',['startReceive',['../class_physical_layer.html#ab913944238f4dfd950d36651eb3c4892',1,'PhysicalLayer::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)'],['../class_physical_layer.html#a18664ad615c5507ff1690baaca90b094',1,'PhysicalLayer::startReceive()'],['../class_pager_client.html#a9c0f13846fbc333a35a16a98b6575ca6',1,'PagerClient::startReceive(uint32_t pin, uint32_t *addrs, uint32_t *masks, size_t numAddress)'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive(uint32_t pin, uint32_t addr, uint32_t mask=0xFFFFF)'],['../class_s_x128x.html#a6083c3789671527e5aee5fd1b8723996',1,'SX128x::startReceive(uint16_t timeout, uint32_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint32_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)'],['../class_s_x128x.html#afe700968c1e02e335c389b59d950ca39',1,'SX128x::startReceive()'],['../class_s_x127x.html#a2d46040624757a5ca50693741c7a4e9a',1,'SX127x::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)'],['../class_s_x127x.html#aa77da235ab59a5066fc51418d4344a02',1,'SX127x::startReceive(uint8_t len, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)'],['../class_s_x127x.html#ae90a5df2d414dfcafd1e3b8aa790f9fd',1,'SX127x::startReceive()'],['../class_s_x126x.html#ad6c81423768480e3bc04d636486241f8',1,'SX126x::startReceive()'],['../class_si443x.html#a38c4a47d8192a25667417257084adbf0',1,'Si443x::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_r_f69.html#abb9bc55a6878bb21312599c3e0411eeb',1,'RF69::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../classn_r_f24.html#a2288ed9242e157bc20ec02fddea30c3e',1,'nRF24::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_l_r11x0.html#ae79c42c4ceceb7a6897731d01d365281',1,'LR11x0::startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)'],['../class_l_r11x0.html#aabc154b86d9159fb5f769f62418d52b7',1,'LR11x0::startReceive()'],['../class_c_c1101.html#abf153c8fcf2a0d60439426b03692642e',1,'CC1101::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_c_c1101.html#ae71e947abf6a07b194c6c6d64fd3eb19',1,'CC1101::startReceive() override'],['../class_s_x126x.html#a66ad433561b02fe61b09afd735ce56cc',1,'SX126x::startReceive() override']]], + ['startreceive_972',['startReceive',['../class_physical_layer.html#ab913944238f4dfd950d36651eb3c4892',1,'PhysicalLayer::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)'],['../class_physical_layer.html#a18664ad615c5507ff1690baaca90b094',1,'PhysicalLayer::startReceive()'],['../class_pager_client.html#a9c0f13846fbc333a35a16a98b6575ca6',1,'PagerClient::startReceive(uint32_t pin, uint32_t *addrs, uint32_t *masks, size_t numAddress)'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive(uint32_t pin, uint32_t addr, uint32_t mask=0xFFFFF)'],['../class_s_x128x.html#a6083c3789671527e5aee5fd1b8723996',1,'SX128x::startReceive(uint16_t timeout, uint32_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint32_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)'],['../class_s_x128x.html#afe700968c1e02e335c389b59d950ca39',1,'SX128x::startReceive()'],['../class_s_x127x.html#a2d46040624757a5ca50693741c7a4e9a',1,'SX127x::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)'],['../class_s_x127x.html#aa77da235ab59a5066fc51418d4344a02',1,'SX127x::startReceive(uint8_t len, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)'],['../class_s_x127x.html#ae90a5df2d414dfcafd1e3b8aa790f9fd',1,'SX127x::startReceive()'],['../class_s_x126x.html#ad6c81423768480e3bc04d636486241f8',1,'SX126x::startReceive()'],['../class_si443x.html#a38c4a47d8192a25667417257084adbf0',1,'Si443x::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_r_f69.html#a21ae7524fe573f1a7e74dee342418222',1,'RF69::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_r_f69.html#a3bece228d369dcc1aab6a5b29d0685a8',1,'RF69::startReceive() override'],['../classn_r_f24.html#a2288ed9242e157bc20ec02fddea30c3e',1,'nRF24::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len)'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_l_r11x0.html#ae79c42c4ceceb7a6897731d01d365281',1,'LR11x0::startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)'],['../class_l_r11x0.html#aa6ce285cc1b76ce028db6442a421ed8d',1,'LR11x0::startReceive() override'],['../class_c_c1101.html#abf153c8fcf2a0d60439426b03692642e',1,'CC1101::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_c_c1101.html#ae71e947abf6a07b194c6c6d64fd3eb19',1,'CC1101::startReceive() override'],['../class_s_x126x.html#a66ad433561b02fe61b09afd735ce56cc',1,'SX126x::startReceive() override']]], ['startreceivedutycycle_973',['startReceiveDutyCycle',['../class_s_x126x.html#a5b4f8a41b593436b8c7a2a2d46ac387e',1,'SX126x']]], ['startreceivedutycycleauto_974',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a077f180905ce4818cbdacad0cd9fe841',1,'SX126x']]], ['startsignal_975',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]],