diff --git a/_c_c1101_8h_source.html b/_c_c1101_8h_source.html
index ad6bb6c5..4f3b4abd 100644
--- a/_c_c1101_8h_source.html
+++ b/_c_c1101_8h_source.html
@@ -801,21 +801,21 @@ $(document).ready(function(){initNavTree('_c_c1101_8h_source.html',''); initResi
int16_t fixedPacketLengthMode(uint8_t len=RADIOLIB_CC1101_MAX_PACKET_LENGTH)
Set modem in fixed packet length mode.
Definition: CC1101.cpp:784
int16_t setDataShaping(uint8_t sh) override
Sets Gaussian filter bandwidth-time product that will be used for data shaping. Allowed value is RADI...
Definition: CC1101.cpp:858
void setGdo0Action(void(*func)(void), RADIOLIB_INTERRUPT_STATUS dir=RISING)
Sets interrupt service routine to call when GDO0 activates.
Definition: CC1101.cpp:227
-int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:61
+int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:136
int16_t begin(float freq=RADIOLIB_CC1101_DEFAULT_FREQ, float br=RADIOLIB_CC1101_DEFAULT_BR, float freqDev=RADIOLIB_CC1101_DEFAULT_FREQDEV, float rxBw=RADIOLIB_CC1101_DEFAULT_RXBW, int8_t power=RADIOLIB_CC1101_DEFAULT_POWER, uint8_t preambleLength=RADIOLIB_CC1101_DEFAULT_PREAMBLELEN)
Initialization method.
Definition: CC1101.cpp:12
bool getPromiscuousMode()
Get whether the modem is in promiscuous mode: no packet filtering (e.g., no preamble,...
Definition: CC1101.cpp:854
int16_t transmitDirectAsync(uint32_t frf=0)
Starts asynchronous direct mode transmission.
Definition: CC1101.cpp:173
-int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:53
+int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:117
int16_t finishTransmit() override
Clean up after transmission is done.
Definition: CC1101.cpp:324
int16_t startReceive()
Interrupt-driven receive method. GDO0 will be activated when full packet is received.
Definition: CC1101.cpp:334
int16_t setOOK(bool enableOOK)
Enables/disables OOK modulation instead of FSK.
Definition: CC1101.cpp:714
-int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:104
+int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:60
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:16
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:14
int16_t transmit(__FlashStringHelper *fstr, uint8_t addr=0)
Arduino Flash String transmit method.
Definition: PhysicalLayer.cpp:12
-int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:61
-int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:53
-int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:104
+int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:136
+int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:117
+int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:60
diff --git a/_external_radio_8h_source.html b/_external_radio_8h_source.html
new file mode 100644
index 00000000..25157a3c
--- /dev/null
+++ b/_external_radio_8h_source.html
@@ -0,0 +1,119 @@
+
+
+
+
+
+
+
+RadioLib: src/protocols/ExternalRadio/ExternalRadio.h Source File
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RadioLib
+
+ Universal wireless communication library for Arduino
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
1 #if !defined(_RADIOLIB_EXTERNAL_RADIO_H)
+
2 #define _RADIOLIB_EXTERNAL_RADIO_H
+
+
4 #include "../../TypeDef.h"
+
5 #include "../../Module.h"
+
+
7 #include "../PhysicalLayer/PhysicalLayer.h"
+
+
+
+
+
+
+
+
+
+
+
Definition: ExternalRadio.h:9
+
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:16
+
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:14
+
+
+
+
+
+
diff --git a/_physical_layer_8h_source.html b/_physical_layer_8h_source.html
index c9b8fee0..d97a6452 100644
--- a/_physical_layer_8h_source.html
+++ b/_physical_layer_8h_source.html
@@ -107,60 +107,60 @@ $(document).ready(function(){initNavTree('_physical_layer_8h_source.html',''); i
61 int16_t
transmit (
const char * str, uint8_t addr = 0);
- 74 virtual int16_t
transmit (uint8_t* data,
size_t len, uint8_t addr = 0) = 0;
+ 74 virtual int16_t
transmit (uint8_t* data,
size_t len, uint8_t addr = 0);
85 int16_t
receive (String& str,
size_t len = 0);
-
+
- 103 virtual int16_t
receive (uint8_t* data,
size_t len) = 0;
+ 103 virtual int16_t
receive (uint8_t* data,
size_t len);
- 140 virtual int16_t
startTransmit (uint8_t* data,
size_t len, uint8_t addr = 0) = 0;
+ 140 virtual int16_t
startTransmit (uint8_t* data,
size_t len, uint8_t addr = 0);
-
+
159 int16_t
readData (String& str,
size_t len = 0);
- 171 virtual int16_t
readData (uint8_t* data,
size_t len) = 0;
+ 171 virtual int16_t
readData (uint8_t* data,
size_t len);
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
261 int32_t
random (int32_t max);
272 int32_t
random (int32_t min, int32_t max);
-
+
288 #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
-
+
- 312 virtual void readBit (RADIOLIB_PIN_TYPE pin) = 0;
+ 312 virtual void readBit (RADIOLIB_PIN_TYPE pin);
@@ -224,36 +224,32 @@ $(document).ready(function(){initNavTree('_physical_layer_8h_source.html',''); i
Client for Morse Code communication. The public interface is the same as Arduino Serial.
Definition: Morse.h:93
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:14
-virtual size_t getPacketLength(bool update=true)=0
Query modem for the packet length of received payload. Must be implemented in module class.
-virtual int16_t standby()=0
Sets module to standby.
-virtual int16_t receive(uint8_t *data, size_t len)=0
Binary receive method. Must be implemented in module class.
-virtual uint8_t randomByte()=0
Get one truly random byte from RSSI noise. Must be implemented in module class.
-virtual int16_t startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0
Interrupt-driven binary transmit method.
-void dropSync()
Forcefully drop synchronization.
Definition: PhysicalLayer.cpp:202
-virtual int16_t receiveDirect()=0
Enables direct reception mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module cla...
-virtual int16_t setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)
Configure DIO pin mapping to get a given signal on a DIO pin (if available).
Definition: PhysicalLayer.cpp:271
-virtual int16_t setFrequency(float freq)=0
Sets carrier frequency. Must be implemented in module class.
-virtual int16_t transmitDirect(uint32_t frf=0)=0
Enables direct transmission mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module ...
-uint8_t read(bool drop=true)
Get data from direct mode buffer.
Definition: PhysicalLayer.cpp:209
-virtual int16_t setBitRate(float br)=0
Sets FSK bit rate. Only available in FSK mode. Must be implemented in module class.
+virtual uint8_t randomByte()
Get one truly random byte from RSSI noise. Must be implemented in module class.
Definition: PhysicalLayer.cpp:256
+virtual int16_t finishTransmit()
Clean up after transmission is done.
Definition: PhysicalLayer.cpp:132
+virtual int16_t setFrequencyDeviation(float freqDev)
Sets FSK frequency deviation from carrier frequency. Only available in FSK mode. Must be implemented ...
Definition: PhysicalLayer.cpp:204
+virtual size_t getPacketLength(bool update=true)
Query modem for the packet length of received payload. Must be implemented in module class.
Definition: PhysicalLayer.cpp:223
+void dropSync()
Forcefully drop synchronization.
Definition: PhysicalLayer.cpp:279
+virtual int16_t setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)
Configure DIO pin mapping to get a given signal on a DIO pin (if available).
Definition: PhysicalLayer.cpp:357
+uint8_t read(bool drop=true)
Get data from direct mode buffer.
Definition: PhysicalLayer.cpp:286
PhysicalLayer(float freqStep, size_t maxPacketLength)
Default constructor.
Definition: PhysicalLayer.cpp:3
-virtual int16_t setEncoding(uint8_t encoding)=0
Sets FSK data encoding. Only available in FSK mode. Must be implemented in module class.
-int16_t startDirect()
Configure module parameters for direct modes. Must be called prior to "ham" modes like RTTY or AX....
Definition: PhysicalLayer.cpp:183
-int16_t setDirectSyncWord(uint32_t syncWord, uint8_t len)
Set sync word to be used to determine start of packet in direct reception mode.
Definition: PhysicalLayer.cpp:217
-float getFreqStep() const
Gets the module frequency step size that was set in constructor.
Definition: PhysicalLayer.cpp:151
-virtual void readBit(RADIOLIB_PIN_TYPE pin)=0
Function to read and process data bit in direct reception mode. Must be implemented in module class.
+int16_t startDirect()
Configure module parameters for direct modes. Must be called prior to "ham" modes like RTTY or AX....
Definition: PhysicalLayer.cpp:260
+virtual int16_t setFrequency(float freq)
Sets carrier frequency. Must be implemented in module class.
Definition: PhysicalLayer.cpp:194
+int16_t setDirectSyncWord(uint32_t syncWord, uint8_t len)
Set sync word to be used to determine start of packet in direct reception mode.
Definition: PhysicalLayer.cpp:294
+float getFreqStep() const
Gets the module frequency step size that was set in constructor.
Definition: PhysicalLayer.cpp:219
+virtual int16_t transmitDirect(uint32_t frf=0)
Enables direct transmission mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module ...
Definition: PhysicalLayer.cpp:185
int16_t transmit(__FlashStringHelper *fstr, uint8_t addr=0)
Arduino Flash String transmit method.
Definition: PhysicalLayer.cpp:12
-int16_t available()
Get the number of direct mode bytes currently available in buffer.
Definition: PhysicalLayer.cpp:198
-virtual int16_t setDataShaping(uint8_t sh)=0
Sets GFSK data shaping. Only available in FSK mode. Must be implemented in module class.
-virtual void setDirectAction(void(*func)(void))=0
Set interrupt service routine function to call when data bit is receveid in direct mode....
-virtual int16_t setFrequencyDeviation(float freqDev)=0
Sets FSK frequency deviation from carrier frequency. Only available in FSK mode. Must be implemented ...
-int32_t random(int32_t max)
Get truly random number in range 0 - max.
Definition: PhysicalLayer.cpp:155
-virtual int16_t readData(uint8_t *data, size_t len)=0
Reads data that was received after calling startReceive method.
-int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:61
-virtual int16_t finishTransmit()=0
Clean up after transmission is done.
-int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:53
-virtual int16_t transmit(uint8_t *data, size_t len, uint8_t addr=0)=0
Binary transmit method. Must be implemented in module class.
-int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:104
+int16_t available()
Get the number of direct mode bytes currently available in buffer.
Definition: PhysicalLayer.cpp:275
+virtual void setDirectAction(void(*func)(void))
Set interrupt service routine function to call when data bit is receveid in direct mode....
Definition: PhysicalLayer.cpp:347
+virtual int16_t setEncoding(uint8_t encoding)
Sets FSK data encoding. Only available in FSK mode. Must be implemented in module class.
Definition: PhysicalLayer.cpp:214
+virtual int16_t standby()
Sets module to standby.
Definition: PhysicalLayer.cpp:113
+int32_t random(int32_t max)
Get truly random number in range 0 - max.
Definition: PhysicalLayer.cpp:228
+virtual int16_t receiveDirect()
Enables direct reception mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module cla...
Definition: PhysicalLayer.cpp:190
+virtual void readBit(RADIOLIB_PIN_TYPE pin)
Function to read and process data bit in direct reception mode. Must be implemented in module class.
Definition: PhysicalLayer.cpp:351
+int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:136
+virtual int16_t setDataShaping(uint8_t sh)
Sets GFSK data shaping. Only available in FSK mode. Must be implemented in module class.
Definition: PhysicalLayer.cpp:209
+virtual int16_t setBitRate(float br)
Sets FSK bit rate. Only available in FSK mode. Must be implemented in module class.
Definition: PhysicalLayer.cpp:199
+int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:117
+int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:60
Client for RTTY communication. The public interface is the same as Arduino Serial.
Definition: RTTY.h:88
Client for SSTV transmissions.
Definition: SSTV.h:120
diff --git a/_r_f69_8h_source.html b/_r_f69_8h_source.html
index f5a5ac1e..0495e359 100644
--- a/_r_f69_8h_source.html
+++ b/_r_f69_8h_source.html
@@ -761,9 +761,9 @@ $(document).ready(function(){initNavTree('_r_f69_8h_source.html',''); initResiza
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:16
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:14
int16_t transmit(__FlashStringHelper *fstr, uint8_t addr=0)
Arduino Flash String transmit method.
Definition: PhysicalLayer.cpp:12
-int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:61
-int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:53
-int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:104
+int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:136
+int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:117
+int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:60
Control class for RF69 module. Also serves as base class for SX1231.
Definition: RF69.h:479
int16_t getTemperature()
Measures temperature.
Definition: RF69.cpp:747
int16_t getChipVersion()
Read version SPI register. Should return RF69_CHIP_VERSION (0x24) if SX127x is connected and working.
Definition: RF69.cpp:960
@@ -821,13 +821,13 @@ $(document).ready(function(){initNavTree('_r_f69_8h_source.html',''); initResiza
int16_t setBitRate(float br)
Sets bit rate. Allowed values range from 1.2 to 300.0 kbps.
Definition: RF69.cpp:540
int16_t setFrequencyDeviation(float freqDev) override
Sets frequency deviation.
Definition: RF69.cpp:589
void clearDio1Action()
Clears interrupt service routine to call when DIO1 activates.
Definition: RF69.cpp:286
-int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:61
+int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:136
void clearFifoFullAction()
Clears interrupt service routine to call when FIFO is full.
Definition: RF69.cpp:317
-int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:53
+int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:117
int16_t variablePacketLengthMode(uint8_t maxLen=RADIOLIB_RF69_MAX_PACKET_LENGTH)
Set modem in variable packet length mode.
Definition: RF69.cpp:781
void reset()
Reset method. Will reset the chip to the default state using RST pin.
Definition: RF69.cpp:106
int16_t startReceive()
Interrupt-driven receive method. GDO0 will be activated when full packet is received.
Definition: RF69.cpp:242
-int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:104
+int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:60
RF69(Module *module)
Default constructor.
Definition: RF69.cpp:4
int16_t setRSSIThreshold(float dbm)
Sets the RSSI value above which the RSSI interrupt is signaled.
Definition: RF69.cpp:909
diff --git a/_radio_lib_8h_source.html b/_radio_lib_8h_source.html
index 95271d93..3a78268c 100644
--- a/_radio_lib_8h_source.html
+++ b/_radio_lib_8h_source.html
@@ -153,41 +153,42 @@ $(document).ready(function(){initNavTree('_radio_lib_8h_source.html',''); initRe
99 #include "protocols/SSTV/SSTV.h"
100 #include "protocols/FSK4/FSK4.h"
101 #include "protocols/APRS/APRS.h"
-
-
- 104 #if defined(RADIOLIB_RADIOSHIELD)
-
-
- 107 #define RADIOSHIELD_CS_A 10
- 108 #define RADIOSHIELD_IRQ_A 2
- 109 #define RADIOSHIELD_RST_A 9
- 110 #define RADIOSHIELD_GPIO_A 8
- 111 #define RADIOSHIELD_CS_B 5
- 112 #define RADIOSHIELD_IRQ_B 3
- 113 #define RADIOSHIELD_RST_B 7
- 114 #define RADIOSHIELD_GPIO_B 6
-
-
-
-
-
-
-
-
- 132 ModuleA =
new Module (RADIOSHIELD_CS_A, RADIOSHIELD_IRQ_A, RADIOSHIELD_RST_A, RADIOSHIELD_GPIO_A);
- 133 ModuleB =
new Module (RADIOSHIELD_CS_B, RADIOSHIELD_IRQ_B, RADIOSHIELD_RST_B, RADIOSHIELD_GPIO_B);
-
-
- 136 #if defined(RADIOLIB_GODMODE)
-
-
-
-
-
-
-
-
-
+ 102 #include "protocols/ExternalRadio/ExternalRadio.h"
+
+
+ 105 #if defined(RADIOLIB_RADIOSHIELD)
+
+
+ 108 #define RADIOSHIELD_CS_A 10
+ 109 #define RADIOSHIELD_IRQ_A 2
+ 110 #define RADIOSHIELD_RST_A 9
+ 111 #define RADIOSHIELD_GPIO_A 8
+ 112 #define RADIOSHIELD_CS_B 5
+ 113 #define RADIOSHIELD_IRQ_B 3
+ 114 #define RADIOSHIELD_RST_B 7
+ 115 #define RADIOSHIELD_GPIO_B 6
+
+
+
+
+
+
+
+
+ 133 ModuleA =
new Module (RADIOSHIELD_CS_A, RADIOSHIELD_IRQ_A, RADIOSHIELD_RST_A, RADIOSHIELD_GPIO_A);
+ 134 ModuleB =
new Module (RADIOSHIELD_CS_B, RADIOSHIELD_IRQ_B, RADIOSHIELD_RST_B, RADIOSHIELD_GPIO_B);
+
+
+ 137 #if defined(RADIOLIB_GODMODE)
+
+
+
+
+
+
+
+
+
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:16
diff --git a/_s_x126x_8h_source.html b/_s_x126x_8h_source.html
index aa8a6167..ea98ba92 100644
--- a/_s_x126x_8h_source.html
+++ b/_s_x126x_8h_source.html
@@ -672,9 +672,9 @@ $(document).ready(function(){initNavTree('_s_x126x_8h_source.html',''); initResi
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:16
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:14
int16_t transmit(__FlashStringHelper *fstr, uint8_t addr=0)
Arduino Flash String transmit method.
Definition: PhysicalLayer.cpp:12
-int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:61
-int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:53
-int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:104
+int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:136
+int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:117
+int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:60
Base class for SX126x series. All derived classes for SX126x (e.g. SX1262 or SX1268) inherit from thi...
Definition: SX126x.h:364
void setDio1Action(void(*func)(void))
Sets interrupt service routine to call when DIO1 activates.
Definition: SX126x.cpp:366
float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: SX126x.cpp:1098
@@ -729,10 +729,10 @@ $(document).ready(function(){initNavTree('_s_x126x_8h_source.html',''); initResi
float getSNR()
Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem.
Definition: SX126x.cpp:1105
int16_t setDio2AsRfSwitch(bool enable=true)
Set DIO2 to function as RF switch (default in Semtech example designs).
Definition: SX126x.cpp:1310
int16_t setSpreadingFactor(uint8_t sf)
Sets LoRa spreading factor. Allowed values range from 5 to 12.
Definition: SX126x.cpp:690
-int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:61
+int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:136
int16_t startReceive(uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF)
Interrupt-driven receive method. DIO1 will be activated when full packet is received.
Definition: SX126x.cpp:443
-int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:53
-int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:104
+int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:117
+int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:60
int16_t sleep(bool retainConfig=true)
Sets the module to sleep mode.
Definition: SX126x.cpp:338
int16_t disableAddressFiltering()
Disables address filtering. Calling this method will also erase previously set addresses.
Definition: SX126x.cpp:987
int16_t setCodingRate(uint8_t cr)
Sets LoRa coding rate denominator. Allowed values range from 5 to 8.
Definition: SX126x.cpp:703
diff --git a/_s_x127x_8h_source.html b/_s_x127x_8h_source.html
index 88ce5432..f9305eb9 100644
--- a/_s_x127x_8h_source.html
+++ b/_s_x127x_8h_source.html
@@ -879,9 +879,9 @@ $(document).ready(function(){initNavTree('_s_x127x_8h_source.html',''); initResi
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:16
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:14
int16_t transmit(__FlashStringHelper *fstr, uint8_t addr=0)
Arduino Flash String transmit method.
Definition: PhysicalLayer.cpp:12
-int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:61
-int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:53
-int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:104
+int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:136
+int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:117
+int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:60
Base class for SX127x series. All derived classes for SX127x (e.g. SX1278 or SX1272) inherit from thi...
Definition: SX127x.h:583
void readBit(RADIOLIB_PIN_TYPE pin)
Function to read and process data bit in direct reception mode.
Definition: SX127x.cpp:1504
int16_t packetMode()
Disables direct mode and enables packet mode, allowing the module to receive packets....
Definition: SX127x.cpp:358
@@ -948,13 +948,13 @@ $(document).ready(function(){initNavTree('_s_x127x_8h_source.html',''); initResi
int16_t beginFSK(uint8_t chipVersion, float br, float freqDev, float rxBw, uint16_t preambleLength, bool enableOOK)
Initialization method for FSK modem. Will be called with appropriate parameters when calling FSK init...
Definition: SX127x.cpp:59
int16_t startReceive(uint8_t len=0, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)
Interrupt-driven receive method. DIO0 will be activated when full valid packet is received.
Definition: SX127x.cpp:367
void setDio1Action(void(*func)(void), RADIOLIB_INTERRUPT_STATUS dir=RISING)
Set interrupt service routine function to call when DIO1 activates.
Definition: SX127x.cpp:428
-int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:61
+int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:136
void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)
Some modules contain external RF switch controlled by two pins. This function gives RadioLib control ...
Definition: SX127x.cpp:1257
int16_t getChipVersion()
Read version SPI register. Should return SX1278_CHIP_VERSION (0x12) or SX1272_CHIP_VERSION (0x22) if ...
Definition: SX127x.cpp:1286
int16_t transmitDirect(uint32_t frf=0) override
Enables direct transmission mode on pins DIO1 (clock) and DIO2 (data). While in direct mode,...
Definition: SX127x.cpp:292
-int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:53
+int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:117
float getFrequencyError(bool autoCorrect=false)
Gets frequency error of the latest received packet.
Definition: SX127x.cpp:735
-int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:104
+int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:60
int16_t disableAddressFiltering()
Disables FSK address filtering.
Definition: SX127x.cpp:994
diff --git a/_s_x128x_8h_source.html b/_s_x128x_8h_source.html
index 54e80c78..ae6bca32 100644
--- a/_s_x128x_8h_source.html
+++ b/_s_x128x_8h_source.html
@@ -626,9 +626,9 @@ $(document).ready(function(){initNavTree('_s_x128x_8h_source.html',''); initResi
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:16
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:14
int16_t transmit(__FlashStringHelper *fstr, uint8_t addr=0)
Arduino Flash String transmit method.
Definition: PhysicalLayer.cpp:12
-int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:61
-int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:53
-int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:104
+int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:136
+int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:117
+int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:60
Base class for SX128x series. All derived classes for SX128x (e.g. SX1280 or SX1281) inherit from thi...
Definition: SX128x.h:350
void setDio1Action(void(*func)(void))
Sets interrupt service routine to call when DIO1 activates.
Definition: SX128x.cpp:445
int16_t setSyncWord(uint8_t *syncWord, uint8_t len)
Sets FSK/FLRC sync word in the form of array of up to 5 bytes (FSK). For FLRC modem,...
Definition: SX128x.cpp:875
@@ -672,10 +672,10 @@ $(document).ready(function(){initNavTree('_s_x128x_8h_source.html',''); initResi
int16_t setOutputPower(int8_t power)
Sets output power. Allowed values are in range from -18 to 13 dBm.
Definition: SX128x.cpp:701
uint16_t getIrqStatus()
Reads the current IRQ status.
Definition: SX128x.cpp:1364
int16_t setSpreadingFactor(uint8_t sf)
Sets LoRa spreading factor. Allowed values range from 5 to 12.
Definition: SX128x.cpp:639
-int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:61
+int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:136
int16_t setBandwidth(float bw)
Sets LoRa bandwidth. Allowed values are 203.125, 406.25, 812.5 and 1625.0 kHz.
Definition: SX128x.cpp:609
-int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:53
-int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:104
+int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:117
+int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:60
void setDirectAction(void(*func)(void))
Dummy method, to ensure PhysicalLayer compatibility.
Definition: SX128x.cpp:1257
int16_t receiveDirect() override
Starts direct mode reception. Only implemented for PhysicalLayer compatibility, as SX128x series does...
Definition: SX128x.cpp:364
#define RADIOLIB_SHAPING_0_5
Gaussin shaping filter, BT = 0.5.
Definition: TypeDef.h:25
diff --git a/_si443x_8h_source.html b/_si443x_8h_source.html
index 6eed3107..085ea7f8 100644
--- a/_si443x_8h_source.html
+++ b/_si443x_8h_source.html
@@ -752,9 +752,9 @@ $(document).ready(function(){initNavTree('_si443x_8h_source.html',''); initResiz
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:16
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:14
int16_t transmit(__FlashStringHelper *fstr, uint8_t addr=0)
Arduino Flash String transmit method.
Definition: PhysicalLayer.cpp:12
-int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:61
-int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:53
-int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:104
+int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:136
+int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:117
+int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:60
Base class for Si443x series. All derived classes for Si443x (e.g. Si4431 or Si4432) inherit from thi...
Definition: Si443x.h:554
int16_t startReceive()
Interrupt-driven receive method. IRQ will be activated when full valid packet is received.
Definition: Si443x.cpp:262
int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Only available in FSK mode. Allowed values are RADIOLIB_ENCODING_NRZ,...
Definition: Si443x.cpp:528
@@ -784,9 +784,9 @@ $(document).ready(function(){initNavTree('_si443x_8h_source.html',''); initResiz
void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)
Some modules contain external RF switch controlled by two pins. This function gives RadioLib control ...
Definition: Si443x.cpp:567
void reset()
Reset method. Will reset the chip to the default state using SDN pin.
Definition: Si443x.cpp:69
Si443x(Module *mod)
Default constructor.
Definition: Si443x.cpp:4
-int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:61
-int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:53
-int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:104
+int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:136
+int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:117
+int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:60
diff --git a/annotated.html b/annotated.html
index 880ecfdf..9884d799 100644
--- a/annotated.html
+++ b/annotated.html
@@ -93,46 +93,47 @@ $(document).ready(function(){initNavTree('annotated.html',''); initResizable();
C AX25Client Client for AX25 communication
C AX25Frame Abstraction of AX.25 frame format
C CC1101 Control class for CC1101 module
- C FSK4Client Client for FSK-4 communication. The public interface is the same as Arduino Serial
- C HellClient Client for Hellschreiber transmissions
- C ITA2String ITA2-encoded string
- C LLCC68 Derived class for LLCC68 modules
- C Module Implements all common low-level methods to control the wireless module. Every module class contains one private instance of this class
- C MorseClient Client for Morse Code communication. The public interface is the same as Arduino Serial
- C nRF24 Control class for nRF24 module
- C PagerClient Client for Pager communication
- C PhysicalLayer Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN. Also extracts some common module-independent methods. Using this interface class allows to use the protocols on various modules without much code duplicity. Because this class is used mainly as interface, all of its virtual members must be implemented in the module class
- C RF69 Control class for RF69 module. Also serves as base class for SX1231
- C RFM22 Only exists as alias for Si4432 , since there seems to be no difference between RFM22 and Si4432 modules
- C RFM23 Only exists as alias for Si4431 , since there seems to be no difference between RFM23 and Si4431 modules
- C RFM95 Derived class for RFM95 modules. Overrides some methods from SX1278 due to different parameter ranges
- C RFM96 Derived class for RFM96 modules. Overrides some methods from SX1278 due to different parameter ranges
- C RFM97 Derived class for RFM97 modules. Overrides some methods from RFM95 due to different parameter ranges
- C RFM98 Only exists as alias for RFM96 , since there seems to be no difference between RFM96 and RFM98 modules
- C RTTYClient Client for RTTY communication. The public interface is the same as Arduino Serial
- C Si4430 Derived class for Si4430 modules
- C Si4431 Derived class for Si4431 modules
- C Si4432 Derived class for Si4432 modules
- C Si443x Base class for Si443x series. All derived classes for Si443x (e.g. Si4431 or Si4432 ) inherit from this base class. This class should not be instantiated directly from Arduino sketch, only from its derived classes
- C SSTVClient Client for SSTV transmissions
- C SSTVMode_t Structure to save data about supported SSTV modes
- C SX1231 Control class for SX1231 module. Overrides some methods from RF69 due to different register values
- C SX1261 Derived class for SX1261 modules
- C SX1262 Derived class for SX1262 modules
- C SX1268 Derived class for SX1268 modules
- C SX126x Base class for SX126x series. All derived classes for SX126x (e.g. SX1262 or SX1268 ) inherit from this base class. This class should not be instantiated directly from Arduino sketch, only from its derived classes
- C SX1272 Derived class for SX1272 modules. Also used as base class for SX1273 . Both modules use the same basic hardware and only differ in parameter ranges
- C SX1273 Derived class for SX1273 modules. Overrides some methods from SX1272 due to different parameter ranges
- C SX1276 Derived class for SX1276 modules. Overrides some methods from SX1278 due to different parameter ranges
- C SX1277 Derived class for SX1277 modules. Overrides some methods from SX1278 due to different parameter ranges
- C SX1278 Derived class for SX1278 modules. Also used as base class for SX1276 , SX1277 , SX1279 , RFM95 and RFM96 . All of these modules use the same basic hardware and only differ in parameter ranges (and names)
- C SX1279 Derived class for SX1279 modules. Overrides some methods from SX1278 due to different parameter ranges
- C SX127x Base class for SX127x series. All derived classes for SX127x (e.g. SX1278 or SX1272 ) inherit from this base class. This class should not be instantiated directly from Arduino sketch, only from its derived classes
- C SX1280 Derived class for SX1280 modules
- C SX1281 Derived class for SX1281 modules
- C SX1282 Derived class for SX1282 modules
- C SX128x Base class for SX128x series. All derived classes for SX128x (e.g. SX1280 or SX1281 ) inherit from this base class. This class should not be instantiated directly from Arduino sketch, only from its derived classes
- C tone_t Structure to save data about tone
+ C ExternalRadio
+ C FSK4Client Client for FSK-4 communication. The public interface is the same as Arduino Serial
+ C HellClient Client for Hellschreiber transmissions
+ C ITA2String ITA2-encoded string
+ C LLCC68 Derived class for LLCC68 modules
+ C Module Implements all common low-level methods to control the wireless module. Every module class contains one private instance of this class
+ C MorseClient Client for Morse Code communication. The public interface is the same as Arduino Serial
+ C nRF24 Control class for nRF24 module
+ C PagerClient Client for Pager communication
+ C PhysicalLayer Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN. Also extracts some common module-independent methods. Using this interface class allows to use the protocols on various modules without much code duplicity. Because this class is used mainly as interface, all of its virtual members must be implemented in the module class
+ C RF69 Control class for RF69 module. Also serves as base class for SX1231
+ C RFM22 Only exists as alias for Si4432 , since there seems to be no difference between RFM22 and Si4432 modules
+ C RFM23 Only exists as alias for Si4431 , since there seems to be no difference between RFM23 and Si4431 modules
+ C RFM95 Derived class for RFM95 modules. Overrides some methods from SX1278 due to different parameter ranges
+ C RFM96 Derived class for RFM96 modules. Overrides some methods from SX1278 due to different parameter ranges
+ C RFM97 Derived class for RFM97 modules. Overrides some methods from RFM95 due to different parameter ranges
+ C RFM98 Only exists as alias for RFM96 , since there seems to be no difference between RFM96 and RFM98 modules
+ C RTTYClient Client for RTTY communication. The public interface is the same as Arduino Serial
+ C Si4430 Derived class for Si4430 modules
+ C Si4431 Derived class for Si4431 modules
+ C Si4432 Derived class for Si4432 modules
+ C Si443x Base class for Si443x series. All derived classes for Si443x (e.g. Si4431 or Si4432 ) inherit from this base class. This class should not be instantiated directly from Arduino sketch, only from its derived classes
+ C SSTVClient Client for SSTV transmissions
+ C SSTVMode_t Structure to save data about supported SSTV modes
+ C SX1231 Control class for SX1231 module. Overrides some methods from RF69 due to different register values
+ C SX1261 Derived class for SX1261 modules
+ C SX1262 Derived class for SX1262 modules
+ C SX1268 Derived class for SX1268 modules
+ C SX126x Base class for SX126x series. All derived classes for SX126x (e.g. SX1262 or SX1268 ) inherit from this base class. This class should not be instantiated directly from Arduino sketch, only from its derived classes
+ C SX1272 Derived class for SX1272 modules. Also used as base class for SX1273 . Both modules use the same basic hardware and only differ in parameter ranges
+ C SX1273 Derived class for SX1273 modules. Overrides some methods from SX1272 due to different parameter ranges
+ C SX1276 Derived class for SX1276 modules. Overrides some methods from SX1278 due to different parameter ranges
+ C SX1277 Derived class for SX1277 modules. Overrides some methods from SX1278 due to different parameter ranges
+ C SX1278 Derived class for SX1278 modules. Also used as base class for SX1276 , SX1277 , SX1279 , RFM95 and RFM96 . All of these modules use the same basic hardware and only differ in parameter ranges (and names)
+ C SX1279 Derived class for SX1279 modules. Overrides some methods from SX1278 due to different parameter ranges
+ C SX127x Base class for SX127x series. All derived classes for SX127x (e.g. SX1278 or SX1272 ) inherit from this base class. This class should not be instantiated directly from Arduino sketch, only from its derived classes
+ C SX1280 Derived class for SX1280 modules
+ C SX1281 Derived class for SX1281 modules
+ C SX1282 Derived class for SX1282 modules
+ C SX128x Base class for SX128x series. All derived classes for SX128x (e.g. SX1280 or SX1281 ) inherit from this base class. This class should not be instantiated directly from Arduino sketch, only from its derived classes
+ C tone_t Structure to save data about tone
diff --git a/annotated_dup.js b/annotated_dup.js
index 9e5c5a7b..ce2ee4cc 100644
--- a/annotated_dup.js
+++ b/annotated_dup.js
@@ -5,6 +5,7 @@ var annotated_dup =
[ "AX25Client", "class_a_x25_client.html", "class_a_x25_client" ],
[ "AX25Frame", "class_a_x25_frame.html", "class_a_x25_frame" ],
[ "CC1101", "class_c_c1101.html", "class_c_c1101" ],
+ [ "ExternalRadio", "class_external_radio.html", "class_external_radio" ],
[ "FSK4Client", "class_f_s_k4_client.html", "class_f_s_k4_client" ],
[ "HellClient", "class_hell_client.html", "class_hell_client" ],
[ "ITA2String", "class_i_t_a2_string.html", "class_i_t_a2_string" ],
diff --git a/class_c_c1101-members.html b/class_c_c1101-members.html
index 36393d4b..69c80fc4 100644
--- a/class_c_c1101-members.html
+++ b/class_c_c1101-members.html
@@ -117,11 +117,11 @@ $(document).ready(function(){initNavTree('class_c_c1101.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)CC1101 virtual
readData (uint8_t *data, size_t len) overrideCC1101 virtual
readData (String &str, size_t len=0)CC1101
- readData (uint8_t *data, size_t len)=0CC1101
+ readData (uint8_t *data, size_t len)CC1101
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideCC1101 virtual
receive (String &str, size_t len=0)CC1101
- receive (uint8_t *data, size_t len)=0CC1101
+ receive (uint8_t *data, size_t len)CC1101
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideCC1101 virtual
receiveDirectAsync ()CC1101
@@ -151,14 +151,14 @@ $(document).ready(function(){initNavTree('class_c_c1101.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideCC1101 virtual
startTransmit (String &str, uint8_t addr=0)CC1101
startTransmit (const char *str, uint8_t addr=0)CC1101
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0CC1101
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)CC1101
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideCC1101 virtual
transmit (__FlashStringHelper *fstr, uint8_t addr=0)CC1101
transmit (String &str, uint8_t addr=0)CC1101
transmit (const char *str, uint8_t addr=0)CC1101
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0CC1101
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)CC1101
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_c_c1101.html b/class_c_c1101.html
index 01c49bfa..63509c46 100644
--- a/class_c_c1101.html
+++ b/class_c_c1101.html
@@ -265,30 +265,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
@@ -547,7 +547,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -678,7 +678,7 @@ void Returns Length of last received packet in bytes.
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -749,7 +749,7 @@ void Returns TRNG byte.
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -785,7 +785,7 @@ void PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -811,10 +811,34 @@ void Returns Status Codes
+
+
+
+◆ readData() [2/3]
+
+
+
+
+
+ int16_t PhysicalLayer::readData
+
+
+
+
+
Reads data that was received after calling startReceive method.
+
Parameters
+
+ data Pointer to array to save the received binary data.
+ len Number of bytes that will be read. When set to 0, the packet length will be retreived automatically. When more bytes than received are requested, only the number of bytes requested will be returned.
+
+
+
+
Returns Status Codes
+
-◆ readData() [2/3]
+◆ readData() [3/3]
@@ -857,31 +881,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ readData() [3/3]
-
-
-
-
-
- virtual int16_t PhysicalLayer::readData
-
-
-
-
-
Reads data that was received after calling startReceive method.
-
Parameters
-
- data Pointer to array to save the received binary data.
- len Number of bytes that will be read. When set to 0, the packet length will be retreived automatically. When more bytes than received are requested, only the number of bytes requested will be returned.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -907,10 +907,34 @@ void Returns Status Codes
+
+
+
+◆ receive() [2/3]
+
+
+
+
+
+ int16_t PhysicalLayer::receive
+
+
+
+
+
Binary receive method. Must be implemented in module class.
+
Parameters
+
+ data Pointer to array to save the received binary data.
+ len Number of bytes that will be received. Must be known in advance for binary transmissions.
+
+
+
+
Returns Status Codes
+
-◆ receive() [2/3]
+◆ receive() [3/3]
@@ -953,31 +977,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ receive() [3/3]
-
-
-
-
-
- virtual int16_t PhysicalLayer::receive
-
-
-
-
-
Binary receive method. Must be implemented in module class.
-
Parameters
-
- data Pointer to array to save the received binary data.
- len Number of bytes that will be received. Must be known in advance for binary transmissions.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -1007,7 +1007,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1064,7 +1064,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1128,7 +1128,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1212,7 +1212,7 @@ void PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1249,7 +1249,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1286,7 +1286,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1323,7 +1323,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1741,7 +1741,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1811,10 +1811,35 @@ void Returns Status Codes
+
+
+
+◆ startTransmit() [3/4]
+
+
+
+
+
+ int16_t PhysicalLayer::startTransmit
+
+
+
+
+
Interrupt-driven binary transmit method.
+
Parameters
+
+ data Binary data that will be transmitted.
+ len Length of binary data to transmit (in bytes).
+ addr Node address to transmit the packet to. Only used in FSK mode.
+
+
+
+
Returns Status Codes
+
-◆ startTransmit() [3/4]
+◆ startTransmit() [4/4]
@@ -1864,32 +1889,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ startTransmit() [4/4]
-
-
-
-
-
- virtual int16_t PhysicalLayer::startTransmit
-
-
-
-
-
Interrupt-driven binary transmit method.
-
Parameters
-
- data Binary data that will be transmitted.
- len Length of binary data to transmit (in bytes).
- addr Node address to transmit the packet to. Only used in FSK mode.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -1963,10 +1963,35 @@ void Returns Status Codes
+
+
+
+◆ transmit() [4/5]
+
+
+
+
+
+ int16_t PhysicalLayer::transmit
+
+
+
+
+
Binary transmit method. Must be implemented in module class.
+
Parameters
+
+ data Binary data that will be transmitted.
+ len Length of binary data to transmit (in bytes).
+ addr Node address to transmit the packet to. Only used in FSK mode.
+
+
+
+
Returns Status Codes
+
-◆ transmit() [4/5]
+◆ transmit() [5/5]
@@ -2016,32 +2041,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ transmit() [5/5]
-
-
-
-
-
- virtual int16_t PhysicalLayer::transmit
-
-
-
-
-
Binary transmit method. Must be implemented in module class.
-
Parameters
-
- data Binary data that will be transmitted.
- len Length of binary data to transmit (in bytes).
- addr Node address to transmit the packet to. Only used in FSK mode.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -2078,7 +2078,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
diff --git a/class_c_c1101.js b/class_c_c1101.js
index 0e9d994c..60412983 100644
--- a/class_c_c1101.js
+++ b/class_c_c1101.js
@@ -20,11 +20,11 @@ var class_c_c1101 =
[ "randomByte", "class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833", null ],
[ "readBit", "class_c_c1101.html#a5cebec89fc0fa0f5ccbce28c6ce7d2dc", null ],
[ "readData", "class_c_c1101.html#ae8eed0e888a7c8742e89d2b850977de2", null ],
+ [ "readData", "class_c_c1101.html#a3563453988a83d22dd07d4691543a300", null ],
[ "readData", "class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22", null ],
- [ "readData", "class_c_c1101.html#ae8b6c756eb4b92855433ca389d73c632", null ],
[ "receive", "class_c_c1101.html#afb1b090348d9091bfa3a0b5ba3d85b36", null ],
+ [ "receive", "class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8", null ],
[ "receive", "class_c_c1101.html#aedc1067d0334bb69ed5316146014097d", null ],
- [ "receive", "class_c_c1101.html#a2ad4c6a8ac267f8ac590260414ffcda3", null ],
[ "receiveDirect", "class_c_c1101.html#ab053c185330519d58f364790108d29ac", null ],
[ "receiveDirectAsync", "class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2", null ],
[ "setBitRate", "class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37", null ],
@@ -50,13 +50,13 @@ var class_c_c1101 =
[ "startReceive", "class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3", null ],
[ "startTransmit", "class_c_c1101.html#a923654706eff5118ef6e84214e837f27", null ],
[ "startTransmit", "class_c_c1101.html#af068e6e862c99e39d0261a7971dd56db", null ],
+ [ "startTransmit", "class_c_c1101.html#ad59e37ce0606dc8051e40be9d14cfec3", null ],
[ "startTransmit", "class_c_c1101.html#a0df2938e2509a8f2746b20ae0558d4ea", null ],
- [ "startTransmit", "class_c_c1101.html#a41a1de0ebffe7b65de6fd8cceb9a5123", null ],
[ "transmit", "class_c_c1101.html#ab139a34e03a6fd5a781cd54da21d308f", null ],
[ "transmit", "class_c_c1101.html#a492b2d057dd803c3884fa1adc8e22534", null ],
[ "transmit", "class_c_c1101.html#aeb62c5a521aafc1e0525c58e9364482b", null ],
+ [ "transmit", "class_c_c1101.html#a3dd42f8d5569487ea74f004ca652a709", null ],
[ "transmit", "class_c_c1101.html#a7cb99a9200b21829b50e3fc3878573f4", null ],
- [ "transmit", "class_c_c1101.html#af81565ee82ef9a7de9c5663c745f4ef7", null ],
[ "transmitDirect", "class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46", null ],
[ "transmitDirectAsync", "class_c_c1101.html#aef7c152858537a40e71cf133962cb893", null ],
[ "variablePacketLengthMode", "class_c_c1101.html#a50b9e73d2d82a4cd03841f465825b73f", null ]
diff --git a/class_external_radio-members.html b/class_external_radio-members.html
new file mode 100644
index 00000000..5891e852
--- /dev/null
+++ b/class_external_radio-members.html
@@ -0,0 +1,137 @@
+
+
+
+
+
+
+
+RadioLib: Member List
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RadioLib
+
+ Universal wireless communication library for Arduino
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
This is the complete list of members for ExternalRadio , including all inherited members.
+
+ available ()PhysicalLayer
+ dropSync ()PhysicalLayer
+ ExternalRadio () (defined in ExternalRadio )ExternalRadio
+ finishTransmit ()PhysicalLayer virtual
+ getFreqStep () constPhysicalLayer
+ getMod () (defined in ExternalRadio )ExternalRadio virtual
+ getPacketLength (bool update=true)PhysicalLayer virtual
+ PhysicalLayer (float freqStep, size_t maxPacketLength)PhysicalLayer
+ random (int32_t max)PhysicalLayer
+ random (int32_t min, int32_t max)PhysicalLayer
+ randomByte ()PhysicalLayer virtual
+ read (bool drop=true)PhysicalLayer
+ readBit (RADIOLIB_PIN_TYPE pin)PhysicalLayer virtual
+ readData (String &str, size_t len=0)PhysicalLayer
+ readData (uint8_t *data, size_t len)PhysicalLayer virtual
+ receive (String &str, size_t len=0)PhysicalLayer
+ receive (uint8_t *data, size_t len)PhysicalLayer virtual
+ receiveDirect ()PhysicalLayer virtual
+ setBitRate (float br)PhysicalLayer virtual
+ setDataShaping (uint8_t sh)PhysicalLayer virtual
+ setDIOMapping (RADIOLIB_PIN_TYPE pin, uint8_t value)PhysicalLayer virtual
+ setDirectAction (void(*func)(void))PhysicalLayer virtual
+ setDirectSyncWord (uint32_t syncWord, uint8_t len)PhysicalLayer
+ setEncoding (uint8_t encoding)PhysicalLayer virtual
+ setFrequency (float freq)PhysicalLayer virtual
+ setFrequencyDeviation (float freqDev)PhysicalLayer virtual
+ standby ()PhysicalLayer virtual
+ startDirect ()PhysicalLayer
+ startTransmit (String &str, uint8_t addr=0)PhysicalLayer
+ startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)PhysicalLayer virtual
+ transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
+ transmit (String &str, uint8_t addr=0)PhysicalLayer
+ transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)PhysicalLayer virtual
+ transmitDirect (uint32_t frf=0)PhysicalLayer virtual
+
+
+
+
+
+
diff --git a/class_external_radio.html b/class_external_radio.html
new file mode 100644
index 00000000..7cb2130b
--- /dev/null
+++ b/class_external_radio.html
@@ -0,0 +1,226 @@
+
+
+
+
+
+
+
+RadioLib: ExternalRadio Class Reference
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RadioLib
+
+ Universal wireless communication library for Arduino
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Module * getMod ()
+
+
+ PhysicalLayer (float freqStep, size_t maxPacketLength)
+ Default constructor. More...
+
+int16_t transmit (__FlashStringHelper *fstr, uint8_t addr=0)
+ Arduino Flash String transmit method. More...
+
+int16_t transmit (String &str, uint8_t addr=0)
+ Arduino String transmit method. More...
+
+int16_t transmit (const char *str, uint8_t addr=0)
+ C-string transmit method. More...
+
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
+int16_t receive (String &str, size_t len=0)
+ Arduino String receive method. More...
+
+virtual int16_t standby ()
+ Sets module to standby. More...
+
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
+int16_t startTransmit (String &str, uint8_t addr=0)
+ Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
+
+int16_t startTransmit (const char *str, uint8_t addr=0)
+ Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
+
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
+virtual int16_t finishTransmit ()
+ Clean up after transmission is done. More...
+
+int16_t readData (String &str, size_t len=0)
+ Reads data that was received after calling startReceive method. More...
+
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
+virtual int16_t transmitDirect (uint32_t frf=0)
+ Enables direct transmission mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module class. While in direct mode, the module will not be able to transmit or receive packets. Can only be activated in FSK mode. More...
+
+virtual int16_t receiveDirect ()
+ Enables direct reception mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module class. While in direct mode, the module will not be able to transmit or receive packets. Can only be activated in FSK mode. More...
+
+virtual int16_t setFrequency (float freq)
+ Sets carrier frequency. Must be implemented in module class. More...
+
+virtual int16_t setBitRate (float br)
+ Sets FSK bit rate. Only available in FSK mode. Must be implemented in module class. More...
+
+virtual int16_t setFrequencyDeviation (float freqDev)
+ Sets FSK frequency deviation from carrier frequency. Only available in FSK mode. Must be implemented in module class. More...
+
+virtual int16_t setDataShaping (uint8_t sh)
+ Sets GFSK data shaping. Only available in FSK mode. Must be implemented in module class. More...
+
+virtual int16_t setEncoding (uint8_t encoding)
+ Sets FSK data encoding. Only available in FSK mode. Must be implemented in module class. More...
+
+float getFreqStep () const
+ Gets the module frequency step size that was set in constructor. More...
+
+virtual size_t getPacketLength (bool update=true)
+ Query modem for the packet length of received payload. Must be implemented in module class. More...
+
+int32_t random (int32_t max)
+ Get truly random number in range 0 - max. More...
+
+int32_t random (int32_t min, int32_t max)
+ Get truly random number in range min - max. More...
+
+virtual uint8_t randomByte ()
+ Get one truly random byte from RSSI noise. Must be implemented in module class. More...
+
+int16_t startDirect ()
+ Configure module parameters for direct modes. Must be called prior to "ham" modes like RTTY or AX.25. Only available in FSK mode. More...
+
+int16_t setDirectSyncWord (uint32_t syncWord, uint8_t len)
+ Set sync word to be used to determine start of packet in direct reception mode. More...
+
+virtual void setDirectAction (void(*func)(void))
+ Set interrupt service routine function to call when data bit is receveid in direct mode. Must be implemented in module class. More...
+
+virtual void readBit (RADIOLIB_PIN_TYPE pin)
+ Function to read and process data bit in direct reception mode. Must be implemented in module class. More...
+
+int16_t available ()
+ Get the number of direct mode bytes currently available in buffer. More...
+
+
+void dropSync ()
+ Forcefully drop synchronization.
+
+uint8_t read (bool drop=true)
+ Get data from direct mode buffer. More...
+
+virtual int16_t setDIOMapping (RADIOLIB_PIN_TYPE pin, uint8_t value)
+ Configure DIO pin mapping to get a given signal on a DIO pin (if available). More...
+
+
+
The documentation for this class was generated from the following files:
+src/protocols/ExternalRadio/ExternalRadio.h
+src/protocols/ExternalRadio/ExternalRadio.cpp
+
+
+
+
+
+
+
diff --git a/class_external_radio.js b/class_external_radio.js
new file mode 100644
index 00000000..86a4105b
--- /dev/null
+++ b/class_external_radio.js
@@ -0,0 +1,5 @@
+var class_external_radio =
+[
+ [ "ExternalRadio", "class_external_radio.html#a7082988b50a892421237e462067b54fd", null ],
+ [ "getMod", "class_external_radio.html#ae6f8473e407cfcba0e1f07c225b5cb50", null ]
+];
\ No newline at end of file
diff --git a/class_external_radio.png b/class_external_radio.png
new file mode 100644
index 00000000..baafe038
Binary files /dev/null and b/class_external_radio.png differ
diff --git a/class_l_l_c_c68-members.html b/class_l_l_c_c68-members.html
index 9457dd1d..c78e192d 100644
--- a/class_l_l_c_c68-members.html
+++ b/class_l_l_c_c68-members.html
@@ -124,11 +124,11 @@ $(document).ready(function(){initNavTree('class_l_l_c_c68.html',''); initResizab
readBit (RADIOLIB_PIN_TYPE pin)SX126x virtual
readData (uint8_t *data, size_t len) overrideSX126x virtual
readData (String &str, size_t len=0)SX126x
- readData (uint8_t *data, size_t len)=0SX126x
+ readData (uint8_t *data, size_t len)SX126x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX126x virtual
receive (String &str, size_t len=0)SX126x
- receive (uint8_t *data, size_t len)=0SX126x
+ receive (uint8_t *data, size_t len)SX126x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX126x virtual
reset (bool verify=true)SX126x
@@ -173,7 +173,7 @@ $(document).ready(function(){initNavTree('class_l_l_c_c68.html',''); initResizab
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
startTransmit (String &str, uint8_t addr=0)SX126x
startTransmit (const char *str, uint8_t addr=0)SX126x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX1262 (Module *mod)SX1262
@@ -182,7 +182,7 @@ $(document).ready(function(){initNavTree('class_l_l_c_c68.html',''); initResizab
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX126x
transmit (String &str, uint8_t addr=0)SX126x
transmit (const char *str, uint8_t addr=0)SX126x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_l_l_c_c68.html b/class_l_l_c_c68.html
index bcdde744..bd028b4c 100644
--- a/class_l_l_c_c68.html
+++ b/class_l_l_c_c68.html
@@ -342,30 +342,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
diff --git a/class_physical_layer-members.html b/class_physical_layer-members.html
index 78744804..e561546e 100644
--- a/class_physical_layer-members.html
+++ b/class_physical_layer-members.html
@@ -93,44 +93,44 @@ $(document).ready(function(){initNavTree('class_physical_layer.html',''); initRe
available ()PhysicalLayer
AX25Client (defined in PhysicalLayer )PhysicalLayer friend
dropSync ()PhysicalLayer
- finishTransmit ()=0PhysicalLayer pure virtual
+ finishTransmit ()PhysicalLayer virtual
FSK4Client (defined in PhysicalLayer )PhysicalLayer friend
getFreqStep () constPhysicalLayer
- getPacketLength (bool update=true)=0PhysicalLayer pure virtual
+ getPacketLength (bool update=true)PhysicalLayer virtual
HellClient (defined in PhysicalLayer )PhysicalLayer friend
MorseClient (defined in PhysicalLayer )PhysicalLayer friend
PagerClient (defined in PhysicalLayer )PhysicalLayer friend
PhysicalLayer (float freqStep, size_t maxPacketLength)PhysicalLayer
random (int32_t max)PhysicalLayer
random (int32_t min, int32_t max)PhysicalLayer
- randomByte ()=0PhysicalLayer pure virtual
+ randomByte ()PhysicalLayer virtual
read (bool drop=true)PhysicalLayer
- readBit (RADIOLIB_PIN_TYPE pin)=0PhysicalLayer pure virtual
+ readBit (RADIOLIB_PIN_TYPE pin)PhysicalLayer virtual
readData (String &str, size_t len=0)PhysicalLayer
- readData (uint8_t *data, size_t len)=0PhysicalLayer pure virtual
+ readData (uint8_t *data, size_t len)PhysicalLayer virtual
receive (String &str, size_t len=0)PhysicalLayer
- receive (uint8_t *data, size_t len)=0PhysicalLayer pure virtual
- receiveDirect ()=0PhysicalLayer pure virtual
+ receive (uint8_t *data, size_t len)PhysicalLayer virtual
+ receiveDirect ()PhysicalLayer virtual
RTTYClient (defined in PhysicalLayer )PhysicalLayer friend
- setBitRate (float br)=0PhysicalLayer pure virtual
- setDataShaping (uint8_t sh)=0PhysicalLayer pure virtual
+ setBitRate (float br)PhysicalLayer virtual
+ setDataShaping (uint8_t sh)PhysicalLayer virtual
setDIOMapping (RADIOLIB_PIN_TYPE pin, uint8_t value)PhysicalLayer virtual
- setDirectAction (void(*func)(void))=0PhysicalLayer pure virtual
+ setDirectAction (void(*func)(void))PhysicalLayer virtual
setDirectSyncWord (uint32_t syncWord, uint8_t len)PhysicalLayer
- setEncoding (uint8_t encoding)=0PhysicalLayer pure virtual
- setFrequency (float freq)=0PhysicalLayer pure virtual
- setFrequencyDeviation (float freqDev)=0PhysicalLayer pure virtual
+ setEncoding (uint8_t encoding)PhysicalLayer virtual
+ setFrequency (float freq)PhysicalLayer virtual
+ setFrequencyDeviation (float freqDev)PhysicalLayer virtual
SSTVClient (defined in PhysicalLayer )PhysicalLayer friend
- standby ()=0PhysicalLayer pure virtual
+ standby ()PhysicalLayer virtual
startDirect ()PhysicalLayer
startTransmit (String &str, uint8_t addr=0)PhysicalLayer
startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0PhysicalLayer pure virtual
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)PhysicalLayer virtual
transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
transmit (String &str, uint8_t addr=0)PhysicalLayer
transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0PhysicalLayer pure virtual
- transmitDirect (uint32_t frf=0)=0PhysicalLayer pure virtual
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)PhysicalLayer virtual
+ transmitDirect (uint32_t frf=0)PhysicalLayer virtual
diff --git a/class_physical_layer.html b/class_physical_layer.html
index 5b1b4224..821e3daf 100644
--- a/class_physical_layer.html
+++ b/class_physical_layer.html
@@ -101,31 +101,14 @@ Inheritance diagram for PhysicalLayer:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
@@ -143,84 +126,84 @@ Public Member Functions
int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t standby ()=0
- Sets module to standby. More...
-
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t standby ()
+ Sets module to standby. More...
+
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
-virtual int16_t finishTransmit ()=0
- Clean up after transmission is done. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
+virtual int16_t finishTransmit ()
+ Clean up after transmission is done. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
-virtual int16_t transmitDirect (uint32_t frf=0)=0
- Enables direct transmission mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module class. While in direct mode, the module will not be able to transmit or receive packets. Can only be activated in FSK mode. More...
-
-virtual int16_t receiveDirect ()=0
- Enables direct reception mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module class. While in direct mode, the module will not be able to transmit or receive packets. Can only be activated in FSK mode. More...
-
-virtual int16_t setFrequency (float freq)=0
- Sets carrier frequency. Must be implemented in module class. More...
-
-virtual int16_t setBitRate (float br)=0
- Sets FSK bit rate. Only available in FSK mode. Must be implemented in module class. More...
-
-virtual int16_t setFrequencyDeviation (float freqDev)=0
- Sets FSK frequency deviation from carrier frequency. Only available in FSK mode. Must be implemented in module class. More...
-
-virtual int16_t setDataShaping (uint8_t sh)=0
- Sets GFSK data shaping. Only available in FSK mode. Must be implemented in module class. More...
-
-virtual int16_t setEncoding (uint8_t encoding)=0
- Sets FSK data encoding. Only available in FSK mode. Must be implemented in module class. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
+virtual int16_t transmitDirect (uint32_t frf=0)
+ Enables direct transmission mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module class. While in direct mode, the module will not be able to transmit or receive packets. Can only be activated in FSK mode. More...
+
+virtual int16_t receiveDirect ()
+ Enables direct reception mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module class. While in direct mode, the module will not be able to transmit or receive packets. Can only be activated in FSK mode. More...
+
+virtual int16_t setFrequency (float freq)
+ Sets carrier frequency. Must be implemented in module class. More...
+
+virtual int16_t setBitRate (float br)
+ Sets FSK bit rate. Only available in FSK mode. Must be implemented in module class. More...
+
+virtual int16_t setFrequencyDeviation (float freqDev)
+ Sets FSK frequency deviation from carrier frequency. Only available in FSK mode. Must be implemented in module class. More...
+
+virtual int16_t setDataShaping (uint8_t sh)
+ Sets GFSK data shaping. Only available in FSK mode. Must be implemented in module class. More...
+
+virtual int16_t setEncoding (uint8_t encoding)
+ Sets FSK data encoding. Only available in FSK mode. Must be implemented in module class. More...
+
float getFreqStep () const
Gets the module frequency step size that was set in constructor. More...
-virtual size_t getPacketLength (bool update=true)=0
- Query modem for the packet length of received payload. Must be implemented in module class. More...
-
+virtual size_t getPacketLength (bool update=true)
+ Query modem for the packet length of received payload. Must be implemented in module class. More...
+
int32_t random (int32_t max)
Get truly random number in range 0 - max. More...
int32_t random (int32_t min, int32_t max)
Get truly random number in range min - max. More...
-virtual uint8_t randomByte ()=0
- Get one truly random byte from RSSI noise. Must be implemented in module class. More...
-
+virtual uint8_t randomByte ()
+ Get one truly random byte from RSSI noise. Must be implemented in module class. More...
+
int16_t startDirect ()
Configure module parameters for direct modes. Must be called prior to "ham" modes like RTTY or AX.25. Only available in FSK mode. More...
int16_t setDirectSyncWord (uint32_t syncWord, uint8_t len)
Set sync word to be used to determine start of packet in direct reception mode. More...
-virtual void setDirectAction (void(*func)(void))=0
- Set interrupt service routine function to call when data bit is receveid in direct mode. Must be implemented in module class. More...
-
-virtual void readBit (RADIOLIB_PIN_TYPE pin)=0
- Function to read and process data bit in direct reception mode. Must be implemented in module class. More...
-
+virtual void setDirectAction (void(*func)(void))
+ Set interrupt service routine function to call when data bit is receveid in direct mode. Must be implemented in module class. More...
+
+virtual void readBit (RADIOLIB_PIN_TYPE pin)
+ Function to read and process data bit in direct reception mode. Must be implemented in module class. More...
+
int16_t available ()
Get the number of direct mode bytes currently available in buffer. More...
@@ -323,8 +306,8 @@ class PagerClient
-
-◆ finishTransmit()
+
+◆ finishTransmit()
@@ -333,7 +316,7 @@ class
PagerClient
- virtual int16_t PhysicalLayer::finishTransmit
+ int16_t PhysicalLayer::finishTransmit
(
)
@@ -341,7 +324,7 @@ class PagerClient
-pure virtual
+
virtual
@@ -349,7 +332,7 @@ class
PagerClient
Clean up after transmission is done.
Returns Status Codes
-
Implemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
+
Reimplemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
@@ -373,8 +356,8 @@ class PagerClient
-
-◆ getPacketLength()
+
+◆ getPacketLength()
@@ -383,7 +366,7 @@ class
PagerClient
- virtual size_t PhysicalLayer::getPacketLength
+ size_t PhysicalLayer::getPacketLength
(
bool
update = true
)
@@ -392,7 +375,7 @@ class PagerClient
-pure virtual
+
virtual
@@ -406,7 +389,7 @@ class
PagerClient
Returns Length of last received packet in bytes.
-
Implemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
+
Reimplemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
@@ -475,8 +458,8 @@ class PagerClient
-
-◆ randomByte()
+
+◆ randomByte()
@@ -485,7 +468,7 @@ class
PagerClient
- virtual uint8_t PhysicalLayer::randomByte
+ uint8_t PhysicalLayer::randomByte
(
)
@@ -493,7 +476,7 @@ class PagerClient
-pure virtual
+
virtual
@@ -501,7 +484,7 @@ class
PagerClient
Get one truly random byte from RSSI noise. Must be implemented in module class.
Returns TRNG byte.
-
Implemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
+
Reimplemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
@@ -532,8 +515,8 @@ class PagerClient
-
-◆ readBit()
+
+◆ readBit()
@@ -542,7 +525,7 @@ class
PagerClient
- virtual void PhysicalLayer::readBit
+ void PhysicalLayer::readBit
(
RADIOLIB_PIN_TYPE
pin )
@@ -551,7 +534,7 @@ class PagerClient
-pure virtual
+
virtual
@@ -564,7 +547,7 @@ class
PagerClient
-
Implemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
+
Reimplemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
@@ -606,8 +589,8 @@ class PagerClient
-
-◆ readData() [2/2]
+
+◆ readData() [2/2]
@@ -616,7 +599,7 @@ class
PagerClient
- virtual int16_t PhysicalLayer::readData
+ int16_t PhysicalLayer::readData
(
uint8_t *
data ,
@@ -635,7 +618,7 @@ class PagerClient
-pure virtual
+
virtual
@@ -650,7 +633,7 @@ class
PagerClient
Returns Status Codes
-
Implemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
+
Reimplemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
@@ -692,8 +675,8 @@ class PagerClient
-
-◆ receive() [2/2]
+
+◆ receive() [2/2]
@@ -702,7 +685,7 @@ class
PagerClient
- virtual int16_t PhysicalLayer::receive
+ int16_t PhysicalLayer::receive
(
uint8_t *
data ,
@@ -721,7 +704,7 @@ class PagerClient
-pure virtual
+
virtual
@@ -736,12 +719,12 @@ class
PagerClient
Returns Status Codes
-
Implemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
+
Reimplemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
-
-◆ receiveDirect()
+
+◆ receiveDirect()
@@ -750,7 +733,7 @@ class
PagerClient
- virtual int16_t PhysicalLayer::receiveDirect
+ int16_t PhysicalLayer::receiveDirect
(
)
@@ -758,7 +741,7 @@ class PagerClient
-pure virtual
+
virtual
@@ -766,12 +749,12 @@ class
PagerClient
Enables direct reception mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module class. While in direct mode, the module will not be able to transmit or receive packets. Can only be activated in FSK mode.
Returns Status Codes
-
Implemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
+
Reimplemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
-
-◆ setBitRate()
+
+◆ setBitRate()
@@ -780,7 +763,7 @@ class
PagerClient
- virtual int16_t PhysicalLayer::setBitRate
+ int16_t PhysicalLayer::setBitRate
(
float
br )
@@ -789,7 +772,7 @@ class PagerClient
-pure virtual
+
virtual
@@ -803,12 +786,12 @@ class
PagerClient
Returns Status Codes
-
Implemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
+
Reimplemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
-
-◆ setDataShaping()
+
+◆ setDataShaping()
@@ -817,7 +800,7 @@ class
PagerClient
- virtual int16_t PhysicalLayer::setDataShaping
+ int16_t PhysicalLayer::setDataShaping
(
uint8_t
sh )
@@ -826,7 +809,7 @@ class PagerClient
-pure virtual
+
virtual
@@ -840,7 +823,7 @@ class
PagerClient
Returns Status Codes
-
Implemented in SX128x , SX1278 , SX1272 , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
+
Reimplemented in SX128x , SX1278 , SX1272 , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
@@ -892,8 +875,8 @@ class PagerClient
-
-◆ setDirectAction()
+
+◆ setDirectAction()
@@ -902,7 +885,7 @@ class
PagerClient
- virtual void PhysicalLayer::setDirectAction
+ void PhysicalLayer::setDirectAction
(
void(*)(void)
func )
@@ -911,7 +894,7 @@ class PagerClient
-pure virtual
+
virtual
@@ -924,7 +907,7 @@ class
PagerClient
-
Implemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
+
Reimplemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
@@ -966,8 +949,8 @@ class PagerClient
-
-◆ setEncoding()
+
+◆ setEncoding()
@@ -976,7 +959,7 @@ class
PagerClient
- virtual int16_t PhysicalLayer::setEncoding
+ int16_t PhysicalLayer::setEncoding
(
uint8_t
encoding )
@@ -985,7 +968,7 @@ class PagerClient
-pure virtual
+
virtual
@@ -999,12 +982,12 @@ class
PagerClient
Returns Status Codes
-
Implemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
+
Reimplemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
-
-◆ setFrequency()
+
+◆ setFrequency()
@@ -1013,7 +996,7 @@ class
PagerClient
- virtual int16_t PhysicalLayer::setFrequency
+ int16_t PhysicalLayer::setFrequency
(
float
freq )
@@ -1022,7 +1005,7 @@ class PagerClient
-pure virtual
+
virtual
@@ -1036,12 +1019,12 @@ class
PagerClient
Returns Status Codes
-
Implemented in SX128x , SX1279 , SX1278 , SX1277 , SX1276 , SX1272 , SX1268 , SX1262 , Si4432 , Si4430 , RFM96 , RFM95 , RF69 , nRF24 , and CC1101 .
+
Reimplemented in SX128x , SX1279 , SX1278 , SX1277 , SX1276 , SX1272 , SX1268 , SX1262 , Si4432 , Si4430 , RFM96 , RFM95 , RF69 , nRF24 , and CC1101 .
-
-◆ setFrequencyDeviation()
+
+◆ setFrequencyDeviation()
@@ -1050,7 +1033,7 @@ class
PagerClient
- virtual int16_t PhysicalLayer::setFrequencyDeviation
+ int16_t PhysicalLayer::setFrequencyDeviation
(
float
freqDev )
@@ -1059,7 +1042,7 @@ class PagerClient
-pure virtual
+
virtual
@@ -1073,12 +1056,12 @@ class
PagerClient
Returns Status Codes
-
Implemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
+
Reimplemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
-
-◆ standby()
+
+◆ standby()
@@ -1087,7 +1070,7 @@ class
PagerClient
- virtual int16_t PhysicalLayer::standby
+ int16_t PhysicalLayer::standby
(
)
@@ -1095,7 +1078,7 @@ class PagerClient
-pure virtual
+
virtual
@@ -1103,7 +1086,7 @@ class
PagerClient
Sets module to standby.
Returns Status Codes
-
Implemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
+
Reimplemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
@@ -1203,8 +1186,8 @@ class PagerClient
-
-◆ startTransmit() [3/3]
+
+◆ startTransmit() [3/3]
@@ -1213,7 +1196,7 @@ class
PagerClient
- virtual int16_t PhysicalLayer::startTransmit
+ int16_t PhysicalLayer::startTransmit
(
uint8_t *
data ,
@@ -1238,7 +1221,7 @@ class PagerClient
-pure virtual
+
virtual
@@ -1254,7 +1237,7 @@ class
PagerClient
Returns Status Codes
-
Implemented in SX128x , SX127x , SX126x , Si443x , RF69 , CC1101 , and nRF24 .
+
Reimplemented in SX128x , SX127x , SX126x , Si443x , RF69 , CC1101 , and nRF24 .
@@ -1372,8 +1355,8 @@ class PagerClient
-
-◆ transmit() [4/4]
+
+◆ transmit() [4/4]
@@ -1382,7 +1365,7 @@ class
PagerClient
- virtual int16_t PhysicalLayer::transmit
+ int16_t PhysicalLayer::transmit
(
uint8_t *
data ,
@@ -1407,7 +1390,7 @@ class PagerClient
-pure virtual
+
virtual
@@ -1423,12 +1406,12 @@ class
PagerClient
Returns Status Codes
-
Implemented in SX128x , SX127x , SX126x , Si443x , RF69 , CC1101 , and nRF24 .
+
Reimplemented in SX128x , SX127x , SX126x , Si443x , RF69 , CC1101 , and nRF24 .
-
-◆ transmitDirect()
+
+◆ transmitDirect()
@@ -1437,7 +1420,7 @@ class
PagerClient
- virtual int16_t PhysicalLayer::transmitDirect
+ int16_t PhysicalLayer::transmitDirect
(
uint32_t
frf = 0
)
@@ -1446,7 +1429,7 @@ class PagerClient
-pure virtual
+
virtual
@@ -1460,7 +1443,7 @@ class
PagerClient
Returns Status Codes
-
Implemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
+
Reimplemented in SX128x , SX127x , SX126x , Si443x , RF69 , nRF24 , and CC1101 .
diff --git a/class_physical_layer.js b/class_physical_layer.js
index bd3a6b13..23439730 100644
--- a/class_physical_layer.js
+++ b/class_physical_layer.js
@@ -3,37 +3,37 @@ var class_physical_layer =
[ "PhysicalLayer", "class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62", null ],
[ "available", "class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26", null ],
[ "dropSync", "class_physical_layer.html#a429796eb2e7ea86781a2e8ca42af43f3", null ],
- [ "finishTransmit", "class_physical_layer.html#aeba51a21ad3c6d56b61a55061de7fc92", null ],
+ [ "finishTransmit", "class_physical_layer.html#a1de26f68b939f5af79ec29cc34c7be18", null ],
[ "getFreqStep", "class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c", null ],
- [ "getPacketLength", "class_physical_layer.html#a0bd6046e068ef63e3f2b6bead48e02a7", null ],
+ [ "getPacketLength", "class_physical_layer.html#a2fe95169b5cdc8cabe1f2af66cad6ef6", null ],
[ "random", "class_physical_layer.html#acd9171bd71aa80fb86113b612c42de53", null ],
[ "random", "class_physical_layer.html#a76113e10481743094a1cd0280692b0a9", null ],
- [ "randomByte", "class_physical_layer.html#a34543b885aa57ade08a4c659991e523e", null ],
+ [ "randomByte", "class_physical_layer.html#a1a5985308904261dd431f373d47ddee4", null ],
[ "read", "class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c", null ],
- [ "readBit", "class_physical_layer.html#a9b720e7776ad7ea805932578907b0058", null ],
+ [ "readBit", "class_physical_layer.html#ae868adcc63ee0869999e8ccac86b6ff2", null ],
[ "readData", "class_physical_layer.html#ae8eed0e888a7c8742e89d2b850977de2", null ],
- [ "readData", "class_physical_layer.html#ae8b6c756eb4b92855433ca389d73c632", null ],
+ [ "readData", "class_physical_layer.html#a3563453988a83d22dd07d4691543a300", null ],
[ "receive", "class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36", null ],
- [ "receive", "class_physical_layer.html#a2ad4c6a8ac267f8ac590260414ffcda3", null ],
- [ "receiveDirect", "class_physical_layer.html#a46b22145b33e97cf6065ed826799b6b4", null ],
- [ "setBitRate", "class_physical_layer.html#a56e9cf39bc8847492f7f3cd67ebf1c46", null ],
- [ "setDataShaping", "class_physical_layer.html#ab643a814dce48f71a13bf6ea23f44cbd", null ],
+ [ "receive", "class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8", null ],
+ [ "receiveDirect", "class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6", null ],
+ [ "setBitRate", "class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c", null ],
+ [ "setDataShaping", "class_physical_layer.html#aeba04366a0cf05ff3d8227c4f7c8e1e9", null ],
[ "setDIOMapping", "class_physical_layer.html#a47c1d94d2ad2fd7eb5d11480b44cc368", null ],
- [ "setDirectAction", "class_physical_layer.html#ab76fe7d3e0f453a807b205161c980086", null ],
+ [ "setDirectAction", "class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966", null ],
[ "setDirectSyncWord", "class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab", null ],
- [ "setEncoding", "class_physical_layer.html#a7d3419227d201d6912b77784636d437d", null ],
- [ "setFrequency", "class_physical_layer.html#a4928642e647f2dd5b614b87b681cb0a6", null ],
- [ "setFrequencyDeviation", "class_physical_layer.html#ab9060e8ab7a2da192b3bf53b3501553b", null ],
- [ "standby", "class_physical_layer.html#a0e77da761a2cbb5c9535df0bdea993f9", null ],
+ [ "setEncoding", "class_physical_layer.html#acb45b2342400a03a914a91d2ac7fb488", null ],
+ [ "setFrequency", "class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e", null ],
+ [ "setFrequencyDeviation", "class_physical_layer.html#a2f4f9b428d9ea9af886ca85e5088ed7b", null ],
+ [ "standby", "class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018", null ],
[ "startDirect", "class_physical_layer.html#a88a10657bd2215a11a2331f937414b55", null ],
[ "startTransmit", "class_physical_layer.html#a923654706eff5118ef6e84214e837f27", null ],
[ "startTransmit", "class_physical_layer.html#af068e6e862c99e39d0261a7971dd56db", null ],
- [ "startTransmit", "class_physical_layer.html#a41a1de0ebffe7b65de6fd8cceb9a5123", null ],
+ [ "startTransmit", "class_physical_layer.html#ad59e37ce0606dc8051e40be9d14cfec3", null ],
[ "transmit", "class_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f", null ],
[ "transmit", "class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534", null ],
[ "transmit", "class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b", null ],
- [ "transmit", "class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7", null ],
- [ "transmitDirect", "class_physical_layer.html#a4b04eb6155b06d8ef400131c647d54e7", null ],
+ [ "transmit", "class_physical_layer.html#a3dd42f8d5569487ea74f004ca652a709", null ],
+ [ "transmitDirect", "class_physical_layer.html#aa4c99ac794ee653c2061be4201724b65", null ],
[ "AFSKClient", "class_physical_layer.html#acb94e5999123b5a1c63dd279b2a5a251", null ],
[ "AX25Client", "class_physical_layer.html#a0012621c1414f4c7573e961b57884a5b", null ],
[ "FSK4Client", "class_physical_layer.html#ac0313fe86041eb37d290019203e095d3", null ],
diff --git a/class_physical_layer.png b/class_physical_layer.png
index e0e1dde0..04071fdd 100644
Binary files a/class_physical_layer.png and b/class_physical_layer.png differ
diff --git a/class_r_f69-members.html b/class_r_f69-members.html
index 38e87aaa..3dddb5d1 100644
--- a/class_r_f69-members.html
+++ b/class_r_f69-members.html
@@ -124,11 +124,11 @@ $(document).ready(function(){initNavTree('class_r_f69.html',''); initResizable()
readBit (RADIOLIB_PIN_TYPE pin)RF69 virtual
readData (uint8_t *data, size_t len) overrideRF69 virtual
readData (String &str, size_t len=0)RF69
- readData (uint8_t *data, size_t len)=0RF69
+ readData (uint8_t *data, size_t len)RF69
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideRF69 virtual
receive (String &str, size_t len=0)RF69
- receive (uint8_t *data, size_t len)=0RF69
+ receive (uint8_t *data, size_t len)RF69
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideRF69 virtual
reset ()RF69
@@ -169,14 +169,14 @@ $(document).ready(function(){initNavTree('class_r_f69.html',''); initResizable()
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideRF69 virtual
startTransmit (String &str, uint8_t addr=0)RF69
startTransmit (const char *str, uint8_t addr=0)RF69
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0RF69
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)RF69
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideRF69 virtual
transmit (__FlashStringHelper *fstr, uint8_t addr=0)RF69
transmit (String &str, uint8_t addr=0)RF69
transmit (const char *str, uint8_t addr=0)RF69
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0RF69
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)RF69
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_r_f69.html b/class_r_f69.html
index 2ae805e5..2005b73e 100644
--- a/class_r_f69.html
+++ b/class_r_f69.html
@@ -320,30 +320,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
@@ -754,7 +754,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -892,7 +892,7 @@ void Returns Length of last received packet in bytes.
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -962,7 +962,7 @@ void Returns TRNG byte.
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -998,7 +998,7 @@ void PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1024,10 +1024,34 @@ void Returns Status Codes
+
+
+
+◆ readData() [2/3]
+
+
+
+
+
+ int16_t PhysicalLayer::readData
+
+
+
+
+
Reads data that was received after calling startReceive method.
+
Parameters
+
+ data Pointer to array to save the received binary data.
+ len Number of bytes that will be read. When set to 0, the packet length will be retreived automatically. When more bytes than received are requested, only the number of bytes requested will be returned.
+
+
+
+
Returns Status Codes
+
-◆ readData() [2/3]
+◆ readData() [3/3]
@@ -1070,31 +1094,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ readData() [3/3]
-
-
-
-
-
- virtual int16_t PhysicalLayer::readData
-
-
-
-
-
Reads data that was received after calling startReceive method.
-
Parameters
-
- data Pointer to array to save the received binary data.
- len Number of bytes that will be read. When set to 0, the packet length will be retreived automatically. When more bytes than received are requested, only the number of bytes requested will be returned.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -1120,10 +1120,34 @@ void Returns Status Codes
+
+
+
+◆ receive() [2/3]
+
+
+
+
+
+ int16_t PhysicalLayer::receive
+
+
+
+
+
Binary receive method. Must be implemented in module class.
+
Parameters
+
+ data Pointer to array to save the received binary data.
+ len Number of bytes that will be received. Must be known in advance for binary transmissions.
+
+
+
+
Returns Status Codes
+
-◆ receive() [2/3]
+◆ receive() [3/3]
@@ -1166,31 +1190,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ receive() [3/3]
-
-
-
-
-
- virtual int16_t PhysicalLayer::receive
-
-
-
-
-
Binary receive method. Must be implemented in module class.
-
Parameters
-
- data Pointer to array to save the received binary data.
- len Number of bytes that will be received. Must be known in advance for binary transmissions.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -1220,7 +1220,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1309,7 +1309,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1400,7 +1400,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1536,7 +1536,7 @@ void PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1573,7 +1573,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1662,7 +1662,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1699,7 +1699,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -2138,7 +2138,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -2208,10 +2208,35 @@ void Returns Status Codes
+
+
+
+◆ startTransmit() [3/4]
+
+
+
+
+
+ int16_t PhysicalLayer::startTransmit
+
+
+
+
+
Interrupt-driven binary transmit method.
+
Parameters
+
+ data Binary data that will be transmitted.
+ len Length of binary data to transmit (in bytes).
+ addr Node address to transmit the packet to. Only used in FSK mode.
+
+
+
+
Returns Status Codes
+
-◆ startTransmit() [3/4]
+◆ startTransmit() [4/4]
@@ -2261,32 +2286,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ startTransmit() [4/4]
-
-
-
-
-
- virtual int16_t PhysicalLayer::startTransmit
-
-
-
-
-
Interrupt-driven binary transmit method.
-
Parameters
-
- data Binary data that will be transmitted.
- len Length of binary data to transmit (in bytes).
- addr Node address to transmit the packet to. Only used in FSK mode.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -2360,10 +2360,35 @@ void Returns Status Codes
+
+
+
+◆ transmit() [4/5]
+
+
+
+
+
+ int16_t PhysicalLayer::transmit
+
+
+
+
+
Binary transmit method. Must be implemented in module class.
+
Parameters
+
+ data Binary data that will be transmitted.
+ len Length of binary data to transmit (in bytes).
+ addr Node address to transmit the packet to. Only used in FSK mode.
+
+
+
+
Returns Status Codes
+
-◆ transmit() [4/5]
+◆ transmit() [5/5]
@@ -2413,32 +2438,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ transmit() [5/5]
-
-
-
-
-
- virtual int16_t PhysicalLayer::transmit
-
-
-
-
-
Binary transmit method. Must be implemented in module class.
-
Parameters
-
- data Binary data that will be transmitted.
- len Length of binary data to transmit (in bytes).
- addr Node address to transmit the packet to. Only used in FSK mode.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -2475,7 +2475,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
diff --git a/class_r_f69.js b/class_r_f69.js
index 1e75bc05..04c08849 100644
--- a/class_r_f69.js
+++ b/class_r_f69.js
@@ -28,11 +28,11 @@ var class_r_f69 =
[ "randomByte", "class_r_f69.html#a2023f0f22aad00a702bdf598c2154043", null ],
[ "readBit", "class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa", null ],
[ "readData", "class_r_f69.html#ae8eed0e888a7c8742e89d2b850977de2", null ],
+ [ "readData", "class_r_f69.html#a3563453988a83d22dd07d4691543a300", null ],
[ "readData", "class_r_f69.html#a3983b66c83818b4082805bcafc712f00", null ],
- [ "readData", "class_r_f69.html#ae8b6c756eb4b92855433ca389d73c632", null ],
[ "receive", "class_r_f69.html#afb1b090348d9091bfa3a0b5ba3d85b36", null ],
+ [ "receive", "class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8", null ],
[ "receive", "class_r_f69.html#ae36e8e6042245621a182b29526fe2245", null ],
- [ "receive", "class_r_f69.html#a2ad4c6a8ac267f8ac590260414ffcda3", null ],
[ "receiveDirect", "class_r_f69.html#abd556b0f455f9510213b17588a4baf1b", null ],
[ "reset", "class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a", null ],
[ "setAESKey", "class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3", null ],
@@ -68,13 +68,13 @@ var class_r_f69 =
[ "startReceive", "class_r_f69.html#afae38fa64242043de34096bf497725f1", null ],
[ "startTransmit", "class_r_f69.html#a923654706eff5118ef6e84214e837f27", null ],
[ "startTransmit", "class_r_f69.html#af068e6e862c99e39d0261a7971dd56db", null ],
+ [ "startTransmit", "class_r_f69.html#ad59e37ce0606dc8051e40be9d14cfec3", null ],
[ "startTransmit", "class_r_f69.html#a855dc194947b095b821ec1524ba6814c", null ],
- [ "startTransmit", "class_r_f69.html#a41a1de0ebffe7b65de6fd8cceb9a5123", null ],
[ "transmit", "class_r_f69.html#ab139a34e03a6fd5a781cd54da21d308f", null ],
[ "transmit", "class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534", null ],
[ "transmit", "class_r_f69.html#aeb62c5a521aafc1e0525c58e9364482b", null ],
+ [ "transmit", "class_r_f69.html#a3dd42f8d5569487ea74f004ca652a709", null ],
[ "transmit", "class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847", null ],
- [ "transmit", "class_r_f69.html#af81565ee82ef9a7de9c5663c745f4ef7", null ],
[ "transmitDirect", "class_r_f69.html#a222682569338abb49d6952430b6eebdd", null ],
[ "variablePacketLengthMode", "class_r_f69.html#af434c67aabe02258ee6696a59973617b", null ]
];
\ No newline at end of file
diff --git a/class_r_f_m95-members.html b/class_r_f_m95-members.html
index 0c85754a..08844407 100644
--- a/class_r_f_m95-members.html
+++ b/class_r_f_m95-members.html
@@ -136,11 +136,11 @@ $(document).ready(function(){initNavTree('class_r_f_m95.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)SX127x virtual
readData (uint8_t *data, size_t len) overrideSX127x virtual
readData (String &str, size_t len=0)SX127x
- readData (uint8_t *data, size_t len)=0SX127x
+ readData (uint8_t *data, size_t len)SX127x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX127x virtual
receive (String &str, size_t len=0)SX127x
- receive (uint8_t *data, size_t len)=0SX127x
+ receive (uint8_t *data, size_t len)SX127x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX127x virtual
reset () overrideSX1278 virtual
@@ -194,7 +194,7 @@ $(document).ready(function(){initNavTree('class_r_f_m95.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
startTransmit (String &str, uint8_t addr=0)SX127x
startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX1278 (Module *mod)SX1278
@@ -203,7 +203,7 @@ $(document).ready(function(){initNavTree('class_r_f_m95.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX127x
transmit (String &str, uint8_t addr=0)SX127x
transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_r_f_m95.html b/class_r_f_m95.html
index a173d6cb..25a03458 100644
--- a/class_r_f_m95.html
+++ b/class_r_f_m95.html
@@ -414,30 +414,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
@@ -705,7 +705,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
diff --git a/class_r_f_m96-members.html b/class_r_f_m96-members.html
index 8dc2b529..c728e246 100644
--- a/class_r_f_m96-members.html
+++ b/class_r_f_m96-members.html
@@ -136,11 +136,11 @@ $(document).ready(function(){initNavTree('class_r_f_m96.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)SX127x virtual
readData (uint8_t *data, size_t len) overrideSX127x virtual
readData (String &str, size_t len=0)SX127x
- readData (uint8_t *data, size_t len)=0SX127x
+ readData (uint8_t *data, size_t len)SX127x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX127x virtual
receive (String &str, size_t len=0)SX127x
- receive (uint8_t *data, size_t len)=0SX127x
+ receive (uint8_t *data, size_t len)SX127x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX127x virtual
reset () overrideSX1278 virtual
@@ -194,7 +194,7 @@ $(document).ready(function(){initNavTree('class_r_f_m96.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
startTransmit (String &str, uint8_t addr=0)SX127x
startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX1278 (Module *mod)SX1278
@@ -203,7 +203,7 @@ $(document).ready(function(){initNavTree('class_r_f_m96.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX127x
transmit (String &str, uint8_t addr=0)SX127x
transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_r_f_m96.html b/class_r_f_m96.html
index 146ebb1e..3087b2de 100644
--- a/class_r_f_m96.html
+++ b/class_r_f_m96.html
@@ -413,30 +413,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
@@ -704,7 +704,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
diff --git a/class_r_f_m97-members.html b/class_r_f_m97-members.html
index b98de017..a16252b1 100644
--- a/class_r_f_m97-members.html
+++ b/class_r_f_m97-members.html
@@ -136,11 +136,11 @@ $(document).ready(function(){initNavTree('class_r_f_m97.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)SX127x virtual
readData (uint8_t *data, size_t len) overrideSX127x virtual
readData (String &str, size_t len=0)SX127x
- readData (uint8_t *data, size_t len)=0SX127x
+ readData (uint8_t *data, size_t len)SX127x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX127x virtual
receive (String &str, size_t len=0)SX127x
- receive (uint8_t *data, size_t len)=0SX127x
+ receive (uint8_t *data, size_t len)SX127x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX127x virtual
reset () overrideSX1278 virtual
@@ -195,7 +195,7 @@ $(document).ready(function(){initNavTree('class_r_f_m97.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
startTransmit (String &str, uint8_t addr=0)SX127x
startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX1278 (Module *mod)SX1278
@@ -204,7 +204,7 @@ $(document).ready(function(){initNavTree('class_r_f_m97.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX127x
transmit (String &str, uint8_t addr=0)SX127x
transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_r_f_m97.html b/class_r_f_m97.html
index 84030a81..a870c51f 100644
--- a/class_r_f_m97.html
+++ b/class_r_f_m97.html
@@ -421,30 +421,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
diff --git a/class_s_x1231-members.html b/class_s_x1231-members.html
index e9f3efa2..db9cc506 100644
--- a/class_s_x1231-members.html
+++ b/class_s_x1231-members.html
@@ -124,11 +124,11 @@ $(document).ready(function(){initNavTree('class_s_x1231.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)RF69 virtual
readData (uint8_t *data, size_t len) overrideRF69 virtual
readData (String &str, size_t len=0)RF69
- readData (uint8_t *data, size_t len)=0RF69
+ readData (uint8_t *data, size_t len)RF69
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideRF69 virtual
receive (String &str, size_t len=0)RF69
- receive (uint8_t *data, size_t len)=0RF69
+ receive (uint8_t *data, size_t len)RF69
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideRF69 virtual
reset ()RF69
@@ -169,7 +169,7 @@ $(document).ready(function(){initNavTree('class_s_x1231.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideRF69 virtual
startTransmit (String &str, uint8_t addr=0)RF69
startTransmit (const char *str, uint8_t addr=0)RF69
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0RF69
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)RF69
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX1231 (Module *mod)SX1231
@@ -177,7 +177,7 @@ $(document).ready(function(){initNavTree('class_s_x1231.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)RF69
transmit (String &str, uint8_t addr=0)RF69
transmit (const char *str, uint8_t addr=0)RF69
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0RF69
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)RF69
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_s_x1231.html b/class_s_x1231.html
index b4bfd0ad..c0ce3c99 100644
--- a/class_s_x1231.html
+++ b/class_s_x1231.html
@@ -327,30 +327,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
diff --git a/class_s_x1261-members.html b/class_s_x1261-members.html
index 5ab22da8..9f85d943 100644
--- a/class_s_x1261-members.html
+++ b/class_s_x1261-members.html
@@ -123,11 +123,11 @@ $(document).ready(function(){initNavTree('class_s_x1261.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)SX126x virtual
readData (uint8_t *data, size_t len) overrideSX126x virtual
readData (String &str, size_t len=0)SX126x
- readData (uint8_t *data, size_t len)=0SX126x
+ readData (uint8_t *data, size_t len)SX126x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX126x virtual
receive (String &str, size_t len=0)SX126x
- receive (uint8_t *data, size_t len)=0SX126x
+ receive (uint8_t *data, size_t len)SX126x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX126x virtual
reset (bool verify=true)SX126x
@@ -172,7 +172,7 @@ $(document).ready(function(){initNavTree('class_s_x1261.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
startTransmit (String &str, uint8_t addr=0)SX126x
startTransmit (const char *str, uint8_t addr=0)SX126x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX1261 (Module *mod)SX1261
@@ -182,7 +182,7 @@ $(document).ready(function(){initNavTree('class_s_x1261.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX126x
transmit (String &str, uint8_t addr=0)SX126x
transmit (const char *str, uint8_t addr=0)SX126x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_s_x1261.html b/class_s_x1261.html
index c64de995..2c6fb907 100644
--- a/class_s_x1261.html
+++ b/class_s_x1261.html
@@ -333,30 +333,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
diff --git a/class_s_x1262-members.html b/class_s_x1262-members.html
index 2f917307..6f00f652 100644
--- a/class_s_x1262-members.html
+++ b/class_s_x1262-members.html
@@ -123,11 +123,11 @@ $(document).ready(function(){initNavTree('class_s_x1262.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)SX126x virtual
readData (uint8_t *data, size_t len) overrideSX126x virtual
readData (String &str, size_t len=0)SX126x
- readData (uint8_t *data, size_t len)=0SX126x
+ readData (uint8_t *data, size_t len)SX126x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX126x virtual
receive (String &str, size_t len=0)SX126x
- receive (uint8_t *data, size_t len)=0SX126x
+ receive (uint8_t *data, size_t len)SX126x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX126x virtual
reset (bool verify=true)SX126x
@@ -172,7 +172,7 @@ $(document).ready(function(){initNavTree('class_s_x1262.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
startTransmit (String &str, uint8_t addr=0)SX126x
startTransmit (const char *str, uint8_t addr=0)SX126x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX1262 (Module *mod)SX1262
@@ -181,7 +181,7 @@ $(document).ready(function(){initNavTree('class_s_x1262.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX126x
transmit (String &str, uint8_t addr=0)SX126x
transmit (const char *str, uint8_t addr=0)SX126x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_s_x1262.html b/class_s_x1262.html
index f1366399..97c2d9f3 100644
--- a/class_s_x1262.html
+++ b/class_s_x1262.html
@@ -330,30 +330,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
@@ -638,7 +638,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
diff --git a/class_s_x1268-members.html b/class_s_x1268-members.html
index 5d42edf7..839fc1bf 100644
--- a/class_s_x1268-members.html
+++ b/class_s_x1268-members.html
@@ -123,11 +123,11 @@ $(document).ready(function(){initNavTree('class_s_x1268.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)SX126x virtual
readData (uint8_t *data, size_t len) overrideSX126x virtual
readData (String &str, size_t len=0)SX126x
- readData (uint8_t *data, size_t len)=0SX126x
+ readData (uint8_t *data, size_t len)SX126x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX126x virtual
receive (String &str, size_t len=0)SX126x
- receive (uint8_t *data, size_t len)=0SX126x
+ receive (uint8_t *data, size_t len)SX126x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX126x virtual
reset (bool verify=true)SX126x
@@ -172,7 +172,7 @@ $(document).ready(function(){initNavTree('class_s_x1268.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
startTransmit (String &str, uint8_t addr=0)SX126x
startTransmit (const char *str, uint8_t addr=0)SX126x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX1268 (Module *mod)SX1268
@@ -181,7 +181,7 @@ $(document).ready(function(){initNavTree('class_s_x1268.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX126x
transmit (String &str, uint8_t addr=0)SX126x
transmit (const char *str, uint8_t addr=0)SX126x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_s_x1268.html b/class_s_x1268.html
index 627030dc..c779d337 100644
--- a/class_s_x1268.html
+++ b/class_s_x1268.html
@@ -328,30 +328,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
@@ -636,7 +636,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
diff --git a/class_s_x126x-members.html b/class_s_x126x-members.html
index f3ee674a..4d6b4d71 100644
--- a/class_s_x126x-members.html
+++ b/class_s_x126x-members.html
@@ -121,11 +121,11 @@ $(document).ready(function(){initNavTree('class_s_x126x.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)SX126x virtual
readData (uint8_t *data, size_t len) overrideSX126x virtual
readData (String &str, size_t len=0)SX126x
- readData (uint8_t *data, size_t len)=0SX126x
+ readData (uint8_t *data, size_t len)SX126x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX126x virtual
receive (String &str, size_t len=0)SX126x
- receive (uint8_t *data, size_t len)=0SX126x
+ receive (uint8_t *data, size_t len)SX126x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX126x virtual
reset (bool verify=true)SX126x
@@ -143,7 +143,7 @@ $(document).ready(function(){initNavTree('class_s_x126x.html',''); initResizable
setDirectAction (void(*func)(void))SX126x virtual
setDirectSyncWord (uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding (uint8_t encoding) overrideSX126x virtual
- setFrequency (float freq)=0PhysicalLayer pure virtual
+ setFrequency (float freq)PhysicalLayer virtual
setFrequencyDeviation (float freqDev) overrideSX126x virtual
setNodeAddress (uint8_t nodeAddr)SX126x
setPreambleLength (uint16_t preambleLength)SX126x
@@ -168,7 +168,7 @@ $(document).ready(function(){initNavTree('class_s_x126x.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
startTransmit (String &str, uint8_t addr=0)SX126x
startTransmit (const char *str, uint8_t addr=0)SX126x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX126x (Module *mod)SX126x
@@ -176,7 +176,7 @@ $(document).ready(function(){initNavTree('class_s_x126x.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX126x
transmit (String &str, uint8_t addr=0)SX126x
transmit (const char *str, uint8_t addr=0)SX126x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_s_x126x.html b/class_s_x126x.html
index f44d7265..0cdd6f5f 100644
--- a/class_s_x126x.html
+++ b/class_s_x126x.html
@@ -312,30 +312,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
@@ -361,9 +361,9 @@ void int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t setFrequency (float freq)=0
- Sets carrier frequency. Must be implemented in module class. More...
-
+virtual int16_t setFrequency (float freq)
+ Sets carrier frequency. Must be implemented in module class. More...
+
float getFreqStep () const
Gets the module frequency step size that was set in constructor. More...
@@ -634,7 +634,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -825,7 +825,7 @@ void Returns Length of last received packet in bytes.
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -969,7 +969,7 @@ void Returns TRNG byte.
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1005,7 +1005,7 @@ void PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1031,10 +1031,34 @@ void Returns Status Codes
+
+
+
+◆ readData() [2/3]
+
+
+
+
+
+ int16_t PhysicalLayer::readData
+
+
+
+
+
Reads data that was received after calling startReceive method.
+
Parameters
+
+ data Pointer to array to save the received binary data.
+ len Number of bytes that will be read. When set to 0, the packet length will be retreived automatically. When more bytes than received are requested, only the number of bytes requested will be returned.
+
+
+
+
Returns Status Codes
+
-◆ readData() [2/3]
+◆ readData() [3/3]
@@ -1077,31 +1101,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ readData() [3/3]
-
-
-
-
-
- virtual int16_t PhysicalLayer::readData
-
-
-
-
-
Reads data that was received after calling startReceive method.
-
Parameters
-
- data Pointer to array to save the received binary data.
- len Number of bytes that will be read. When set to 0, the packet length will be retreived automatically. When more bytes than received are requested, only the number of bytes requested will be returned.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -1127,10 +1127,34 @@ void Returns Status Codes
+
+
+
+◆ receive() [2/3]
+
+
+
+
+
+ int16_t PhysicalLayer::receive
+
+
+
+
+
Binary receive method. Must be implemented in module class.
+
Parameters
+
+ data Pointer to array to save the received binary data.
+ len Number of bytes that will be received. Must be known in advance for binary transmissions.
+
+
+
+
Returns Status Codes
+
-◆ receive() [2/3]
+◆ receive() [3/3]
@@ -1173,31 +1197,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ receive() [3/3]
-
-
-
-
-
- virtual int16_t PhysicalLayer::receive
-
-
-
-
-
Binary receive method. Must be implemented in module class.
-
Parameters
-
- data Pointer to array to save the received binary data.
- len Number of bytes that will be received. Must be known in advance for binary transmissions.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -1227,7 +1227,7 @@ void PhysicalLayer compatibility, as SX126x series does not support direct mode reception. Will always return RADIOLIB_ERR_UNKNOWN.
Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1363,7 +1363,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1533,7 +1533,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1616,7 +1616,7 @@ void PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1653,7 +1653,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1690,7 +1690,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -2122,7 +2122,7 @@ void PhysicalLayer compatibility, uses 13 MHz RC oscillator).
Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -2347,10 +2347,35 @@ void Returns Status Codes
+
+
+
+◆ startTransmit() [3/4]
+
+
+
+
+
+ int16_t PhysicalLayer::startTransmit
+
+
+
+
+
Interrupt-driven binary transmit method.
+
Parameters
+
+ data Binary data that will be transmitted.
+ len Length of binary data to transmit (in bytes).
+ addr Node address to transmit the packet to. Only used in FSK mode.
+
+
+
+
Returns Status Codes
+
-◆ startTransmit() [3/4]
+◆ startTransmit() [4/4]
@@ -2400,32 +2425,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ startTransmit() [4/4]
-
-
-
-
-
- virtual int16_t PhysicalLayer::startTransmit
-
-
-
-
-
Interrupt-driven binary transmit method.
-
Parameters
-
- data Binary data that will be transmitted.
- len Length of binary data to transmit (in bytes).
- addr Node address to transmit the packet to. Only used in FSK mode.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -2499,10 +2499,35 @@ void Returns Status Codes
+
+
+
+◆ transmit() [4/5]
+
+
+
+
+
+ int16_t PhysicalLayer::transmit
+
+
+
+
+
Binary transmit method. Must be implemented in module class.
+
Parameters
+
+ data Binary data that will be transmitted.
+ len Length of binary data to transmit (in bytes).
+ addr Node address to transmit the packet to. Only used in FSK mode.
+
+
+
+
Returns Status Codes
+
-◆ transmit() [4/5]
+◆ transmit() [5/5]
@@ -2552,32 +2577,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ transmit() [5/5]
-
-
-
-
-
- virtual int16_t PhysicalLayer::transmit
-
-
-
-
-
Binary transmit method. Must be implemented in module class.
-
Parameters
-
- data Binary data that will be transmitted.
- len Length of binary data to transmit (in bytes).
- addr Node address to transmit the packet to. Only used in FSK mode.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -2614,7 +2614,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
diff --git a/class_s_x126x.js b/class_s_x126x.js
index dba44b27..fdceb5e4 100644
--- a/class_s_x126x.js
+++ b/class_s_x126x.js
@@ -25,11 +25,11 @@ var class_s_x126x =
[ "randomByte", "class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561", null ],
[ "readBit", "class_s_x126x.html#aff80db65e546934980feac7e6c81dd80", null ],
[ "readData", "class_s_x126x.html#ae8eed0e888a7c8742e89d2b850977de2", null ],
+ [ "readData", "class_s_x126x.html#a3563453988a83d22dd07d4691543a300", null ],
[ "readData", "class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2", null ],
- [ "readData", "class_s_x126x.html#ae8b6c756eb4b92855433ca389d73c632", null ],
[ "receive", "class_s_x126x.html#afb1b090348d9091bfa3a0b5ba3d85b36", null ],
+ [ "receive", "class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8", null ],
[ "receive", "class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0", null ],
- [ "receive", "class_s_x126x.html#a2ad4c6a8ac267f8ac590260414ffcda3", null ],
[ "receiveDirect", "class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435", null ],
[ "reset", "class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f", null ],
[ "scanChannel", "class_s_x126x.html#a755e7df4b0958f7c793d0c058408831a", null ],
@@ -66,13 +66,13 @@ var class_s_x126x =
[ "startReceiveDutyCycleAuto", "class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f", null ],
[ "startTransmit", "class_s_x126x.html#a923654706eff5118ef6e84214e837f27", null ],
[ "startTransmit", "class_s_x126x.html#af068e6e862c99e39d0261a7971dd56db", null ],
+ [ "startTransmit", "class_s_x126x.html#ad59e37ce0606dc8051e40be9d14cfec3", null ],
[ "startTransmit", "class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1", null ],
- [ "startTransmit", "class_s_x126x.html#a41a1de0ebffe7b65de6fd8cceb9a5123", null ],
[ "transmit", "class_s_x126x.html#ab139a34e03a6fd5a781cd54da21d308f", null ],
[ "transmit", "class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534", null ],
[ "transmit", "class_s_x126x.html#aeb62c5a521aafc1e0525c58e9364482b", null ],
+ [ "transmit", "class_s_x126x.html#a3dd42f8d5569487ea74f004ca652a709", null ],
[ "transmit", "class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009", null ],
- [ "transmit", "class_s_x126x.html#af81565ee82ef9a7de9c5663c745f4ef7", null ],
[ "transmitDirect", "class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b", null ],
[ "variablePacketLengthMode", "class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d", null ]
];
\ No newline at end of file
diff --git a/class_s_x1272-members.html b/class_s_x1272-members.html
index e1a86219..61857bd4 100644
--- a/class_s_x1272-members.html
+++ b/class_s_x1272-members.html
@@ -136,11 +136,11 @@ $(document).ready(function(){initNavTree('class_s_x1272.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)SX127x virtual
readData (uint8_t *data, size_t len) overrideSX127x virtual
readData (String &str, size_t len=0)SX127x
- readData (uint8_t *data, size_t len)=0SX127x
+ readData (uint8_t *data, size_t len)SX127x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX127x virtual
receive (String &str, size_t len=0)SX127x
- receive (uint8_t *data, size_t len)=0SX127x
+ receive (uint8_t *data, size_t len)SX127x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX127x virtual
reset () overrideSX1272 virtual
@@ -193,7 +193,7 @@ $(document).ready(function(){initNavTree('class_s_x1272.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
startTransmit (String &str, uint8_t addr=0)SX127x
startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX1272 (Module *mod)SX1272
@@ -202,7 +202,7 @@ $(document).ready(function(){initNavTree('class_s_x1272.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX127x
transmit (String &str, uint8_t addr=0)SX127x
transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_s_x1272.html b/class_s_x1272.html
index b6893468..48a740c8 100644
--- a/class_s_x1272.html
+++ b/class_s_x1272.html
@@ -400,30 +400,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
@@ -904,7 +904,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -968,7 +968,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
diff --git a/class_s_x1273-members.html b/class_s_x1273-members.html
index c3d49006..5b58f1ee 100644
--- a/class_s_x1273-members.html
+++ b/class_s_x1273-members.html
@@ -136,11 +136,11 @@ $(document).ready(function(){initNavTree('class_s_x1273.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)SX127x virtual
readData (uint8_t *data, size_t len) overrideSX127x virtual
readData (String &str, size_t len=0)SX127x
- readData (uint8_t *data, size_t len)=0SX127x
+ readData (uint8_t *data, size_t len)SX127x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX127x virtual
receive (String &str, size_t len=0)SX127x
- receive (uint8_t *data, size_t len)=0SX127x
+ receive (uint8_t *data, size_t len)SX127x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX127x virtual
reset () overrideSX1272 virtual
@@ -193,7 +193,7 @@ $(document).ready(function(){initNavTree('class_s_x1273.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
startTransmit (String &str, uint8_t addr=0)SX127x
startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX1272 (Module *mod)SX1272
@@ -203,7 +203,7 @@ $(document).ready(function(){initNavTree('class_s_x1273.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX127x
transmit (String &str, uint8_t addr=0)SX127x
transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_s_x1273.html b/class_s_x1273.html
index 8475cf1f..d7bf456b 100644
--- a/class_s_x1273.html
+++ b/class_s_x1273.html
@@ -410,30 +410,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
diff --git a/class_s_x1276-members.html b/class_s_x1276-members.html
index e7580894..7c461404 100644
--- a/class_s_x1276-members.html
+++ b/class_s_x1276-members.html
@@ -136,11 +136,11 @@ $(document).ready(function(){initNavTree('class_s_x1276.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)SX127x virtual
readData (uint8_t *data, size_t len) overrideSX127x virtual
readData (String &str, size_t len=0)SX127x
- readData (uint8_t *data, size_t len)=0SX127x
+ readData (uint8_t *data, size_t len)SX127x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX127x virtual
receive (String &str, size_t len=0)SX127x
- receive (uint8_t *data, size_t len)=0SX127x
+ receive (uint8_t *data, size_t len)SX127x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX127x virtual
reset () overrideSX1278 virtual
@@ -193,7 +193,7 @@ $(document).ready(function(){initNavTree('class_s_x1276.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
startTransmit (String &str, uint8_t addr=0)SX127x
startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX1276 (Module *mod)SX1276
@@ -203,7 +203,7 @@ $(document).ready(function(){initNavTree('class_s_x1276.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX127x
transmit (String &str, uint8_t addr=0)SX127x
transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_s_x1276.html b/class_s_x1276.html
index d47fd9a9..0cd89b8e 100644
--- a/class_s_x1276.html
+++ b/class_s_x1276.html
@@ -413,30 +413,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
@@ -704,7 +704,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
diff --git a/class_s_x1277-members.html b/class_s_x1277-members.html
index 3f5b22c2..74b3b234 100644
--- a/class_s_x1277-members.html
+++ b/class_s_x1277-members.html
@@ -136,11 +136,11 @@ $(document).ready(function(){initNavTree('class_s_x1277.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)SX127x virtual
readData (uint8_t *data, size_t len) overrideSX127x virtual
readData (String &str, size_t len=0)SX127x
- readData (uint8_t *data, size_t len)=0SX127x
+ readData (uint8_t *data, size_t len)SX127x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX127x virtual
receive (String &str, size_t len=0)SX127x
- receive (uint8_t *data, size_t len)=0SX127x
+ receive (uint8_t *data, size_t len)SX127x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX127x virtual
reset () overrideSX1278 virtual
@@ -193,7 +193,7 @@ $(document).ready(function(){initNavTree('class_s_x1277.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
startTransmit (String &str, uint8_t addr=0)SX127x
startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX1277 (Module *mod)SX1277
@@ -203,7 +203,7 @@ $(document).ready(function(){initNavTree('class_s_x1277.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX127x
transmit (String &str, uint8_t addr=0)SX127x
transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_s_x1277.html b/class_s_x1277.html
index 10e4a231..e058ee93 100644
--- a/class_s_x1277.html
+++ b/class_s_x1277.html
@@ -416,30 +416,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
@@ -707,7 +707,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
diff --git a/class_s_x1278-members.html b/class_s_x1278-members.html
index 02e92772..efd230df 100644
--- a/class_s_x1278-members.html
+++ b/class_s_x1278-members.html
@@ -136,11 +136,11 @@ $(document).ready(function(){initNavTree('class_s_x1278.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)SX127x virtual
readData (uint8_t *data, size_t len) overrideSX127x virtual
readData (String &str, size_t len=0)SX127x
- readData (uint8_t *data, size_t len)=0SX127x
+ readData (uint8_t *data, size_t len)SX127x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX127x virtual
receive (String &str, size_t len=0)SX127x
- receive (uint8_t *data, size_t len)=0SX127x
+ receive (uint8_t *data, size_t len)SX127x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX127x virtual
reset () overrideSX1278 virtual
@@ -193,7 +193,7 @@ $(document).ready(function(){initNavTree('class_s_x1278.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
startTransmit (String &str, uint8_t addr=0)SX127x
startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX1278 (Module *mod)SX1278
@@ -202,7 +202,7 @@ $(document).ready(function(){initNavTree('class_s_x1278.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX127x
transmit (String &str, uint8_t addr=0)SX127x
transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_s_x1278.html b/class_s_x1278.html
index ea86e503..d08c3c29 100644
--- a/class_s_x1278.html
+++ b/class_s_x1278.html
@@ -405,30 +405,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
@@ -909,7 +909,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -973,7 +973,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
Reimplemented in SX1279 .
diff --git a/class_s_x1279-members.html b/class_s_x1279-members.html
index 7667cc92..6d3bb440 100644
--- a/class_s_x1279-members.html
+++ b/class_s_x1279-members.html
@@ -136,11 +136,11 @@ $(document).ready(function(){initNavTree('class_s_x1279.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)SX127x virtual
readData (uint8_t *data, size_t len) overrideSX127x virtual
readData (String &str, size_t len=0)SX127x
- readData (uint8_t *data, size_t len)=0SX127x
+ readData (uint8_t *data, size_t len)SX127x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX127x virtual
receive (String &str, size_t len=0)SX127x
- receive (uint8_t *data, size_t len)=0SX127x
+ receive (uint8_t *data, size_t len)SX127x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX127x virtual
reset () overrideSX1278 virtual
@@ -193,7 +193,7 @@ $(document).ready(function(){initNavTree('class_s_x1279.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
startTransmit (String &str, uint8_t addr=0)SX127x
startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX1278 (Module *mod)SX1278
@@ -203,7 +203,7 @@ $(document).ready(function(){initNavTree('class_s_x1279.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX127x
transmit (String &str, uint8_t addr=0)SX127x
transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_s_x1279.html b/class_s_x1279.html
index fb8b23ff..b0eff040 100644
--- a/class_s_x1279.html
+++ b/class_s_x1279.html
@@ -410,30 +410,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
diff --git a/class_s_x127x-members.html b/class_s_x127x-members.html
index b502ef31..0425ed59 100644
--- a/class_s_x127x-members.html
+++ b/class_s_x127x-members.html
@@ -129,11 +129,11 @@ $(document).ready(function(){initNavTree('class_s_x127x.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)SX127x virtual
readData (uint8_t *data, size_t len) overrideSX127x virtual
readData (String &str, size_t len=0)SX127x
- readData (uint8_t *data, size_t len)=0SX127x
+ readData (uint8_t *data, size_t len)SX127x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX127x virtual
receive (String &str, size_t len=0)SX127x
- receive (uint8_t *data, size_t len)=0SX127x
+ receive (uint8_t *data, size_t len)SX127x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX127x virtual
reset ()=0SX127x pure virtual
@@ -145,7 +145,7 @@ $(document).ready(function(){initNavTree('class_s_x127x.html',''); initResizable
setBroadcastAddress (uint8_t broadAddr)SX127x
setCrcFiltering (bool crcOn=true)SX127x
setCurrentLimit (uint8_t currentLimit)SX127x
- setDataShaping (uint8_t sh)=0PhysicalLayer pure virtual
+ setDataShaping (uint8_t sh)PhysicalLayer virtual
setDio0Action (void(*func)(void), RADIOLIB_INTERRUPT_STATUS dir=RISING)SX127x
setDio1Action (void(*func)(void), RADIOLIB_INTERRUPT_STATUS dir=RISING)SX127x
setDIOMapping (RADIOLIB_PIN_TYPE pin, uint8_t value)SX127x virtual
@@ -156,7 +156,7 @@ $(document).ready(function(){initNavTree('class_s_x127x.html',''); initResizable
setFHSSHoppingPeriod (uint8_t freqHoppingPeriod)SX127x
setFifoEmptyAction (void(*func)(void))SX127x
setFifoFullAction (void(*func)(void))SX127x
- setFrequency (float freq)=0PhysicalLayer pure virtual
+ setFrequency (float freq)PhysicalLayer virtual
setFrequencyDeviation (float freqDev) overrideSX127x virtual
setNodeAddress (uint8_t nodeAddr)SX127x
setOOK (bool enableOOK)SX127x
@@ -179,7 +179,7 @@ $(document).ready(function(){initNavTree('class_s_x127x.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
startTransmit (String &str, uint8_t addr=0)SX127x
startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX127x (Module *mod)SX127x
@@ -187,7 +187,7 @@ $(document).ready(function(){initNavTree('class_s_x127x.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX127x
transmit (String &str, uint8_t addr=0)SX127x
transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_s_x127x.html b/class_s_x127x.html
index 6ee8b915..a33c8f68 100644
--- a/class_s_x127x.html
+++ b/class_s_x127x.html
@@ -355,30 +355,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
@@ -404,12 +404,12 @@ void int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t setFrequency (float freq)=0
- Sets carrier frequency. Must be implemented in module class. More...
-
-virtual int16_t setDataShaping (uint8_t sh)=0
- Sets GFSK data shaping. Only available in FSK mode. Must be implemented in module class. More...
-
+virtual int16_t setFrequency (float freq)
+ Sets carrier frequency. Must be implemented in module class. More...
+
+virtual int16_t setDataShaping (uint8_t sh)
+ Sets GFSK data shaping. Only available in FSK mode. Must be implemented in module class. More...
+
float getFreqStep () const
Gets the module frequency step size that was set in constructor. More...
@@ -753,7 +753,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -986,7 +986,7 @@ void Returns Length of last received packet in bytes.
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1130,7 +1130,7 @@ void Returns TRNG byte.
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1166,7 +1166,7 @@ void PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1192,10 +1192,34 @@ void Returns Status Codes
+
+
+
+◆ readData() [2/3]
+
+
+
+
+
+ int16_t PhysicalLayer::readData
+
+
+
+
+
Reads data that was received after calling startReceive method.
+
Parameters
+
+ data Pointer to array to save the received binary data.
+ len Number of bytes that will be read. When set to 0, the packet length will be retreived automatically. When more bytes than received are requested, only the number of bytes requested will be returned.
+
+
+
+
Returns Status Codes
+
-◆ readData() [2/3]
+◆ readData() [3/3]
@@ -1238,31 +1262,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ readData() [3/3]
-
-
-
-
-
- virtual int16_t PhysicalLayer::readData
-
-
-
-
-
Reads data that was received after calling startReceive method.
-
Parameters
-
- data Pointer to array to save the received binary data.
- len Number of bytes that will be read. When set to 0, the packet length will be retreived automatically. When more bytes than received are requested, only the number of bytes requested will be returned.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -1288,10 +1288,34 @@ void Returns Status Codes
+
+
+
+◆ receive() [2/3]
+
+
+
+
+
+ int16_t PhysicalLayer::receive
+
+
+
+
+
Binary receive method. Must be implemented in module class.
+
Parameters
+
+ data Pointer to array to save the received binary data.
+ len Number of bytes that will be received. Must be known in advance for binary transmissions.
+
+
+
+
Returns Status Codes
+
-◆ receive() [2/3]
+◆ receive() [3/3]
@@ -1334,31 +1358,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ receive() [3/3]
-
-
-
-
-
- virtual int16_t PhysicalLayer::receive
-
-
-
-
-
Binary receive method. Must be implemented in module class.
-
Parameters
-
- data Pointer to array to save the received binary data.
- len Number of bytes that will be received. Must be known in advance for binary transmissions.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -1388,7 +1388,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1527,7 +1527,7 @@ void Returns Status Codes
Todo: fractional part of bit rate setting (not in OOK)
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1793,7 +1793,7 @@ void PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1830,7 +1830,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1946,7 +1946,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -2379,7 +2379,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -2487,10 +2487,35 @@ void Returns Status Codes
+
+
+
+◆ startTransmit() [3/4]
+
+
+
+
+
+ int16_t PhysicalLayer::startTransmit
+
+
+
+
+
Interrupt-driven binary transmit method.
+
Parameters
+
+ data Binary data that will be transmitted.
+ len Length of binary data to transmit (in bytes).
+ addr Node address to transmit the packet to. Only used in FSK mode.
+
+
+
+
Returns Status Codes
+
-◆ startTransmit() [3/4]
+◆ startTransmit() [4/4]
@@ -2540,32 +2565,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ startTransmit() [4/4]
-
-
-
-
-
- virtual int16_t PhysicalLayer::startTransmit
-
-
-
-
-
Interrupt-driven binary transmit method.
-
Parameters
-
- data Binary data that will be transmitted.
- len Length of binary data to transmit (in bytes).
- addr Node address to transmit the packet to. Only used in FSK mode.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -2639,10 +2639,35 @@ void Returns Status Codes
+
+
+
+◆ transmit() [4/5]
+
+
+
+
+
+ int16_t PhysicalLayer::transmit
+
+
+
+
+
Binary transmit method. Must be implemented in module class.
+
Parameters
+
+ data Binary data that will be transmitted.
+ len Length of binary data to transmit (in bytes).
+ addr Node address to transmit the packet to. Only used in FSK mode.
+
+
+
+
Returns Status Codes
+
-◆ transmit() [4/5]
+◆ transmit() [5/5]
@@ -2692,32 +2717,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ transmit() [5/5]
-
-
-
-
-
- virtual int16_t PhysicalLayer::transmit
-
-
-
-
-
Binary transmit method. Must be implemented in module class.
-
Parameters
-
- data Binary data that will be transmitted.
- len Length of binary data to transmit (in bytes).
- addr Node address to transmit the packet to. Only used in FSK mode.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -2754,7 +2754,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
diff --git a/class_s_x127x.js b/class_s_x127x.js
index cf3e3179..78efe713 100644
--- a/class_s_x127x.js
+++ b/class_s_x127x.js
@@ -33,11 +33,11 @@ var class_s_x127x =
[ "randomByte", "class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450", null ],
[ "readBit", "class_s_x127x.html#a071442611a32154e8b3db7981f242a53", null ],
[ "readData", "class_s_x127x.html#ae8eed0e888a7c8742e89d2b850977de2", null ],
+ [ "readData", "class_s_x127x.html#a3563453988a83d22dd07d4691543a300", null ],
[ "readData", "class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745", null ],
- [ "readData", "class_s_x127x.html#ae8b6c756eb4b92855433ca389d73c632", null ],
[ "receive", "class_s_x127x.html#afb1b090348d9091bfa3a0b5ba3d85b36", null ],
+ [ "receive", "class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8", null ],
[ "receive", "class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c", null ],
- [ "receive", "class_s_x127x.html#a2ad4c6a8ac267f8ac590260414ffcda3", null ],
[ "receiveDirect", "class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f", null ],
[ "reset", "class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68", null ],
[ "scanChannel", "class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5", null ],
@@ -77,13 +77,13 @@ var class_s_x127x =
[ "startReceive", "class_s_x127x.html#adffb96b7f80dc43909bb4cebde68fe9d", null ],
[ "startTransmit", "class_s_x127x.html#a923654706eff5118ef6e84214e837f27", null ],
[ "startTransmit", "class_s_x127x.html#af068e6e862c99e39d0261a7971dd56db", null ],
+ [ "startTransmit", "class_s_x127x.html#ad59e37ce0606dc8051e40be9d14cfec3", null ],
[ "startTransmit", "class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083", null ],
- [ "startTransmit", "class_s_x127x.html#a41a1de0ebffe7b65de6fd8cceb9a5123", null ],
[ "transmit", "class_s_x127x.html#ab139a34e03a6fd5a781cd54da21d308f", null ],
[ "transmit", "class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534", null ],
[ "transmit", "class_s_x127x.html#aeb62c5a521aafc1e0525c58e9364482b", null ],
+ [ "transmit", "class_s_x127x.html#a3dd42f8d5569487ea74f004ca652a709", null ],
[ "transmit", "class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29", null ],
- [ "transmit", "class_s_x127x.html#af81565ee82ef9a7de9c5663c745f4ef7", null ],
[ "transmitDirect", "class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84", null ],
[ "variablePacketLengthMode", "class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c", null ]
];
\ No newline at end of file
diff --git a/class_s_x1280-members.html b/class_s_x1280-members.html
index 632930c1..3f83f100 100644
--- a/class_s_x1280-members.html
+++ b/class_s_x1280-members.html
@@ -118,11 +118,11 @@ $(document).ready(function(){initNavTree('class_s_x1280.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)SX128x virtual
readData (uint8_t *data, size_t len) overrideSX128x virtual
readData (String &str, size_t len=0)SX128x
- readData (uint8_t *data, size_t len)=0SX128x
+ readData (uint8_t *data, size_t len)SX128x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX128x virtual
receive (String &str, size_t len=0)SX128x
- receive (uint8_t *data, size_t len)=0SX128x
+ receive (uint8_t *data, size_t len)SX128x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX128x virtual
reset (bool verify=true)SX128x
@@ -158,7 +158,7 @@ $(document).ready(function(){initNavTree('class_s_x1280.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
startTransmit (String &str, uint8_t addr=0)SX128x
startTransmit (const char *str, uint8_t addr=0)SX128x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX1280 (Module *mod)SX1280
@@ -168,7 +168,7 @@ $(document).ready(function(){initNavTree('class_s_x1280.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX128x
transmit (String &str, uint8_t addr=0)SX128x
transmit (const char *str, uint8_t addr=0)SX128x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_s_x1280.html b/class_s_x1280.html
index 1ed70c66..8760f3e8 100644
--- a/class_s_x1280.html
+++ b/class_s_x1280.html
@@ -289,30 +289,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
diff --git a/class_s_x1281-members.html b/class_s_x1281-members.html
index 5f2b659b..d2417efa 100644
--- a/class_s_x1281-members.html
+++ b/class_s_x1281-members.html
@@ -116,11 +116,11 @@ $(document).ready(function(){initNavTree('class_s_x1281.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)SX128x virtual
readData (uint8_t *data, size_t len) overrideSX128x virtual
readData (String &str, size_t len=0)SX128x
- readData (uint8_t *data, size_t len)=0SX128x
+ readData (uint8_t *data, size_t len)SX128x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX128x virtual
receive (String &str, size_t len=0)SX128x
- receive (uint8_t *data, size_t len)=0SX128x
+ receive (uint8_t *data, size_t len)SX128x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX128x virtual
reset (bool verify=true)SX128x
@@ -155,7 +155,7 @@ $(document).ready(function(){initNavTree('class_s_x1281.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
startTransmit (String &str, uint8_t addr=0)SX128x
startTransmit (const char *str, uint8_t addr=0)SX128x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX1281 (Module *mod)SX1281
@@ -164,7 +164,7 @@ $(document).ready(function(){initNavTree('class_s_x1281.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX128x
transmit (String &str, uint8_t addr=0)SX128x
transmit (const char *str, uint8_t addr=0)SX128x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_s_x1281.html b/class_s_x1281.html
index 60e6ee99..6ef8e91e 100644
--- a/class_s_x1281.html
+++ b/class_s_x1281.html
@@ -276,30 +276,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
diff --git a/class_s_x1282-members.html b/class_s_x1282-members.html
index e5260f51..2f35ed16 100644
--- a/class_s_x1282-members.html
+++ b/class_s_x1282-members.html
@@ -118,11 +118,11 @@ $(document).ready(function(){initNavTree('class_s_x1282.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)SX128x virtual
readData (uint8_t *data, size_t len) overrideSX128x virtual
readData (String &str, size_t len=0)SX128x
- readData (uint8_t *data, size_t len)=0SX128x
+ readData (uint8_t *data, size_t len)SX128x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX128x virtual
receive (String &str, size_t len=0)SX128x
- receive (uint8_t *data, size_t len)=0SX128x
+ receive (uint8_t *data, size_t len)SX128x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX128x virtual
reset (bool verify=true)SX128x
@@ -158,7 +158,7 @@ $(document).ready(function(){initNavTree('class_s_x1282.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
startTransmit (String &str, uint8_t addr=0)SX128x
startTransmit (const char *str, uint8_t addr=0)SX128x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX1280 (Module *mod)SX1280
@@ -169,7 +169,7 @@ $(document).ready(function(){initNavTree('class_s_x1282.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX128x
transmit (String &str, uint8_t addr=0)SX128x
transmit (const char *str, uint8_t addr=0)SX128x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_s_x1282.html b/class_s_x1282.html
index ced8eb48..c5c8f408 100644
--- a/class_s_x1282.html
+++ b/class_s_x1282.html
@@ -293,30 +293,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
diff --git a/class_s_x128x-members.html b/class_s_x128x-members.html
index 73b0410f..ccd37fc7 100644
--- a/class_s_x128x-members.html
+++ b/class_s_x128x-members.html
@@ -116,11 +116,11 @@ $(document).ready(function(){initNavTree('class_s_x128x.html',''); initResizable
readBit (RADIOLIB_PIN_TYPE pin)SX128x virtual
readData (uint8_t *data, size_t len) overrideSX128x virtual
readData (String &str, size_t len=0)SX128x
- readData (uint8_t *data, size_t len)=0SX128x
+ readData (uint8_t *data, size_t len)SX128x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSX128x virtual
receive (String &str, size_t len=0)SX128x
- receive (uint8_t *data, size_t len)=0SX128x
+ receive (uint8_t *data, size_t len)SX128x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSX128x virtual
reset (bool verify=true)SX128x
@@ -155,7 +155,7 @@ $(document).ready(function(){initNavTree('class_s_x128x.html',''); initResizable
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
startTransmit (String &str, uint8_t addr=0)SX128x
startTransmit (const char *str, uint8_t addr=0)SX128x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
SX128x (Module *mod)SX128x
@@ -163,7 +163,7 @@ $(document).ready(function(){initNavTree('class_s_x128x.html',''); initResizable
transmit (__FlashStringHelper *fstr, uint8_t addr=0)SX128x
transmit (String &str, uint8_t addr=0)SX128x
transmit (const char *str, uint8_t addr=0)SX128x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_s_x128x.html b/class_s_x128x.html
index fde91de7..ac35ade5 100644
--- a/class_s_x128x.html
+++ b/class_s_x128x.html
@@ -272,30 +272,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
@@ -689,7 +689,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -786,7 +786,7 @@ void Returns Length of last received packet in bytes.
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -905,7 +905,7 @@ void PhysicalLayer compatibility.
Returns Always returns 0.
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -941,7 +941,7 @@ void PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -967,10 +967,34 @@ void Returns Status Codes
+
+
+
+◆ readData() [2/3]
+
+
+
+
+
+ int16_t PhysicalLayer::readData
+
+
+
+
+
Reads data that was received after calling startReceive method.
+
Parameters
+
+ data Pointer to array to save the received binary data.
+ len Number of bytes that will be read. When set to 0, the packet length will be retreived automatically. When more bytes than received are requested, only the number of bytes requested will be returned.
+
+
+
+
Returns Status Codes
+
-◆ readData() [2/3]
+◆ readData() [3/3]
@@ -1013,31 +1037,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ readData() [3/3]
-
-
-
-
-
- virtual int16_t PhysicalLayer::readData
-
-
-
-
-
Reads data that was received after calling startReceive method.
-
Parameters
-
- data Pointer to array to save the received binary data.
- len Number of bytes that will be read. When set to 0, the packet length will be retreived automatically. When more bytes than received are requested, only the number of bytes requested will be returned.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -1063,10 +1063,34 @@ void Returns Status Codes
+
+
+
+◆ receive() [2/3]
+
+
+
+
+
+ int16_t PhysicalLayer::receive
+
+
+
+
+
Binary receive method. Must be implemented in module class.
+
Parameters
+
+ data Pointer to array to save the received binary data.
+ len Number of bytes that will be received. Must be known in advance for binary transmissions.
+
+
+
+
Returns Status Codes
+
-◆ receive() [2/3]
+◆ receive() [3/3]
@@ -1109,31 +1133,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ receive() [3/3]
-
-
-
-
-
- virtual int16_t PhysicalLayer::receive
-
-
-
-
-
Binary receive method. Must be implemented in module class.
-
Parameters
-
- data Pointer to array to save the received binary data.
- len Number of bytes that will be received. Must be known in advance for binary transmissions.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -1163,7 +1163,7 @@ void PhysicalLayer compatibility, as SX128x series does not support direct mode reception. Will always return RADIOLIB_ERR_UNKNOWN.
Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1301,7 +1301,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1421,7 +1421,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1483,7 +1483,7 @@ void PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1520,7 +1520,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1557,7 +1557,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1594,7 +1594,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1927,7 +1927,7 @@ void PhysicalLayer compatibility, uses 13 MHz RC oscillator).
Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -2031,10 +2031,35 @@ void Returns Status Codes
+
+
+
+◆ startTransmit() [3/4]
+
+
+
+
+
+ int16_t PhysicalLayer::startTransmit
+
+
+
+
+
Interrupt-driven binary transmit method.
+
Parameters
+
+ data Binary data that will be transmitted.
+ len Length of binary data to transmit (in bytes).
+ addr Node address to transmit the packet to. Only used in FSK mode.
+
+
+
+
Returns Status Codes
+
-◆ startTransmit() [3/4]
+◆ startTransmit() [4/4]
@@ -2084,32 +2109,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ startTransmit() [4/4]
-
-
-
-
-
- virtual int16_t PhysicalLayer::startTransmit
-
-
-
-
-
Interrupt-driven binary transmit method.
-
Parameters
-
- data Binary data that will be transmitted.
- len Length of binary data to transmit (in bytes).
- addr Node address to transmit the packet to. Only used in FSK mode.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -2183,10 +2183,35 @@ void Returns Status Codes
+
+
+
+◆ transmit() [4/5]
+
+
+
+
+
+ int16_t PhysicalLayer::transmit
+
+
+
+
+
Binary transmit method. Must be implemented in module class.
+
Parameters
+
+ data Binary data that will be transmitted.
+ len Length of binary data to transmit (in bytes).
+ addr Node address to transmit the packet to. Only used in FSK mode.
+
+
+
+
Returns Status Codes
+
-◆ transmit() [4/5]
+◆ transmit() [5/5]
@@ -2236,32 +2261,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ transmit() [5/5]
-
-
-
-
-
- virtual int16_t PhysicalLayer::transmit
-
-
-
-
-
Binary transmit method. Must be implemented in module class.
-
Parameters
-
- data Binary data that will be transmitted.
- len Length of binary data to transmit (in bytes).
- addr Node address to transmit the packet to. Only used in FSK mode.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -2298,7 +2298,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
diff --git a/class_s_x128x.js b/class_s_x128x.js
index 39367dce..6a2c13bb 100644
--- a/class_s_x128x.js
+++ b/class_s_x128x.js
@@ -20,11 +20,11 @@ var class_s_x128x =
[ "randomByte", "class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a", null ],
[ "readBit", "class_s_x128x.html#a2dd0ecae9f54cf6943cf702ae15f5039", null ],
[ "readData", "class_s_x128x.html#ae8eed0e888a7c8742e89d2b850977de2", null ],
+ [ "readData", "class_s_x128x.html#a3563453988a83d22dd07d4691543a300", null ],
[ "readData", "class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb", null ],
- [ "readData", "class_s_x128x.html#ae8b6c756eb4b92855433ca389d73c632", null ],
[ "receive", "class_s_x128x.html#afb1b090348d9091bfa3a0b5ba3d85b36", null ],
+ [ "receive", "class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8", null ],
[ "receive", "class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99", null ],
- [ "receive", "class_s_x128x.html#a2ad4c6a8ac267f8ac590260414ffcda3", null ],
[ "receiveDirect", "class_s_x128x.html#aff7d86352c98771595375e17d19a2a97", null ],
[ "reset", "class_s_x128x.html#a2643ce22176293631fea2169f5e68e66", null ],
[ "scanChannel", "class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb", null ],
@@ -54,12 +54,12 @@ var class_s_x128x =
[ "startReceive", "class_s_x128x.html#ad59ee052d8ab1f250245a14039fc8b66", null ],
[ "startTransmit", "class_s_x128x.html#a923654706eff5118ef6e84214e837f27", null ],
[ "startTransmit", "class_s_x128x.html#af068e6e862c99e39d0261a7971dd56db", null ],
+ [ "startTransmit", "class_s_x128x.html#ad59e37ce0606dc8051e40be9d14cfec3", null ],
[ "startTransmit", "class_s_x128x.html#aef221e7d463c5228ce00ed6934512848", null ],
- [ "startTransmit", "class_s_x128x.html#a41a1de0ebffe7b65de6fd8cceb9a5123", null ],
[ "transmit", "class_s_x128x.html#ab139a34e03a6fd5a781cd54da21d308f", null ],
[ "transmit", "class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534", null ],
[ "transmit", "class_s_x128x.html#aeb62c5a521aafc1e0525c58e9364482b", null ],
+ [ "transmit", "class_s_x128x.html#a3dd42f8d5569487ea74f004ca652a709", null ],
[ "transmit", "class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5", null ],
- [ "transmit", "class_s_x128x.html#af81565ee82ef9a7de9c5663c745f4ef7", null ],
[ "transmitDirect", "class_s_x128x.html#a53892566b0259d348158efe3c3c3601a", null ]
];
\ No newline at end of file
diff --git a/class_si4430-members.html b/class_si4430-members.html
index 1f16da16..219028ea 100644
--- a/class_si4430-members.html
+++ b/class_si4430-members.html
@@ -109,11 +109,11 @@ $(document).ready(function(){initNavTree('class_si4430.html',''); initResizable(
readBit (RADIOLIB_PIN_TYPE pin)Si443x virtual
readData (uint8_t *data, size_t len) overrideSi443x virtual
readData (String &str, size_t len=0)Si443x
- readData (uint8_t *data, size_t len)=0Si443x
+ readData (uint8_t *data, size_t len)Si443x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSi443x virtual
receive (String &str, size_t len=0)Si443x
- receive (uint8_t *data, size_t len)=0Si443x
+ receive (uint8_t *data, size_t len)Si443x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSi443x virtual
reset ()Si443x
@@ -141,14 +141,14 @@ $(document).ready(function(){initNavTree('class_si4430.html',''); initResizable(
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSi443x virtual
startTransmit (String &str, uint8_t addr=0)Si443x
startTransmit (const char *str, uint8_t addr=0)Si443x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0Si443x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)Si443x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSi443x virtual
transmit (__FlashStringHelper *fstr, uint8_t addr=0)Si443x
transmit (String &str, uint8_t addr=0)Si443x
transmit (const char *str, uint8_t addr=0)Si443x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0Si443x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)Si443x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_si4430.html b/class_si4430.html
index 0894fb6e..72ae46d8 100644
--- a/class_si4430.html
+++ b/class_si4430.html
@@ -241,30 +241,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
@@ -448,7 +448,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
diff --git a/class_si4431-members.html b/class_si4431-members.html
index c0c8511c..caa71b8d 100644
--- a/class_si4431-members.html
+++ b/class_si4431-members.html
@@ -109,11 +109,11 @@ $(document).ready(function(){initNavTree('class_si4431.html',''); initResizable(
readBit (RADIOLIB_PIN_TYPE pin)Si443x virtual
readData (uint8_t *data, size_t len) overrideSi443x virtual
readData (String &str, size_t len=0)Si443x
- readData (uint8_t *data, size_t len)=0Si443x
+ readData (uint8_t *data, size_t len)Si443x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSi443x virtual
receive (String &str, size_t len=0)Si443x
- receive (uint8_t *data, size_t len)=0Si443x
+ receive (uint8_t *data, size_t len)Si443x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSi443x virtual
reset ()Si443x
@@ -141,14 +141,14 @@ $(document).ready(function(){initNavTree('class_si4431.html',''); initResizable(
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSi443x virtual
startTransmit (String &str, uint8_t addr=0)Si443x
startTransmit (const char *str, uint8_t addr=0)Si443x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0Si443x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)Si443x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSi443x virtual
transmit (__FlashStringHelper *fstr, uint8_t addr=0)Si443x
transmit (String &str, uint8_t addr=0)Si443x
transmit (const char *str, uint8_t addr=0)Si443x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0Si443x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)Si443x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_si4431.html b/class_si4431.html
index 93536ed3..fb2c00d0 100644
--- a/class_si4431.html
+++ b/class_si4431.html
@@ -238,30 +238,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
diff --git a/class_si4432-members.html b/class_si4432-members.html
index 2fc579c6..a6cce682 100644
--- a/class_si4432-members.html
+++ b/class_si4432-members.html
@@ -109,11 +109,11 @@ $(document).ready(function(){initNavTree('class_si4432.html',''); initResizable(
readBit (RADIOLIB_PIN_TYPE pin)Si443x virtual
readData (uint8_t *data, size_t len) overrideSi443x virtual
readData (String &str, size_t len=0)Si443x
- readData (uint8_t *data, size_t len)=0Si443x
+ readData (uint8_t *data, size_t len)Si443x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSi443x virtual
receive (String &str, size_t len=0)Si443x
- receive (uint8_t *data, size_t len)=0Si443x
+ receive (uint8_t *data, size_t len)Si443x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSi443x virtual
reset ()Si443x
@@ -140,14 +140,14 @@ $(document).ready(function(){initNavTree('class_si4432.html',''); initResizable(
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSi443x virtual
startTransmit (String &str, uint8_t addr=0)Si443x
startTransmit (const char *str, uint8_t addr=0)Si443x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0Si443x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)Si443x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSi443x virtual
transmit (__FlashStringHelper *fstr, uint8_t addr=0)Si443x
transmit (String &str, uint8_t addr=0)Si443x
transmit (const char *str, uint8_t addr=0)Si443x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0Si443x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)Si443x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_si4432.html b/class_si4432.html
index 3902cfde..241d7647 100644
--- a/class_si4432.html
+++ b/class_si4432.html
@@ -229,30 +229,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
@@ -436,7 +436,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
diff --git a/class_si443x-members.html b/class_si443x-members.html
index 4505c659..c7735761 100644
--- a/class_si443x-members.html
+++ b/class_si443x-members.html
@@ -108,11 +108,11 @@ $(document).ready(function(){initNavTree('class_si443x.html',''); initResizable(
readBit (RADIOLIB_PIN_TYPE pin)Si443x virtual
readData (uint8_t *data, size_t len) overrideSi443x virtual
readData (String &str, size_t len=0)Si443x
- readData (uint8_t *data, size_t len)=0Si443x
+ readData (uint8_t *data, size_t len)Si443x
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overrideSi443x virtual
receive (String &str, size_t len=0)Si443x
- receive (uint8_t *data, size_t len)=0Si443x
+ receive (uint8_t *data, size_t len)Si443x
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overrideSi443x virtual
reset ()Si443x
@@ -122,7 +122,7 @@ $(document).ready(function(){initNavTree('class_si443x.html',''); initResizable(
setDirectAction (void(*func)(void))Si443x virtual
setDirectSyncWord (uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding (uint8_t encoding) overrideSi443x virtual
- setFrequency (float freq)=0PhysicalLayer pure virtual
+ setFrequency (float freq)PhysicalLayer virtual
setFrequencyDeviation (float freqDev) overrideSi443x virtual
setIrqAction (void(*func)(void))Si443x
setPreambleLength (uint8_t preambleLen)Si443x
@@ -137,14 +137,14 @@ $(document).ready(function(){initNavTree('class_si443x.html',''); initResizable(
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSi443x virtual
startTransmit (String &str, uint8_t addr=0)Si443x
startTransmit (const char *str, uint8_t addr=0)Si443x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0Si443x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)Si443x
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSi443x virtual
transmit (__FlashStringHelper *fstr, uint8_t addr=0)Si443x
transmit (String &str, uint8_t addr=0)Si443x
transmit (const char *str, uint8_t addr=0)Si443x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)=0Si443x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)Si443x
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/class_si443x.html b/class_si443x.html
index 83794cda..ea24dc1f 100644
--- a/class_si443x.html
+++ b/class_si443x.html
@@ -216,30 +216,30 @@ void int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
@@ -265,9 +265,9 @@ void int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t setFrequency (float freq)=0
- Sets carrier frequency. Must be implemented in module class. More...
-
+virtual int16_t setFrequency (float freq)
+ Sets carrier frequency. Must be implemented in module class. More...
+
float getFreqStep () const
Gets the module frequency step size that was set in constructor. More...
@@ -405,7 +405,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -489,7 +489,7 @@ void Returns Length of last received packet in bytes.
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -539,7 +539,7 @@ void Returns TRNG byte.
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -575,7 +575,7 @@ void PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -601,10 +601,34 @@ void Returns Status Codes
+
+
+
+◆ readData() [2/3]
+
+
+
+
+
+ int16_t PhysicalLayer::readData
+
+
+
+
+
Reads data that was received after calling startReceive method.
+
Parameters
+
+ data Pointer to array to save the received binary data.
+ len Number of bytes that will be read. When set to 0, the packet length will be retreived automatically. When more bytes than received are requested, only the number of bytes requested will be returned.
+
+
+
+
Returns Status Codes
+
-◆ readData() [2/3]
+◆ readData() [3/3]
@@ -647,31 +671,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ readData() [3/3]
-
-
-
-
-
- virtual int16_t PhysicalLayer::readData
-
-
-
-
-
Reads data that was received after calling startReceive method.
-
Parameters
-
- data Pointer to array to save the received binary data.
- len Number of bytes that will be read. When set to 0, the packet length will be retreived automatically. When more bytes than received are requested, only the number of bytes requested will be returned.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -697,10 +697,34 @@ void Returns Status Codes
+
+
+
+◆ receive() [2/3]
+
+
+
+
+
+ int16_t PhysicalLayer::receive
+
+
+
+
+
Binary receive method. Must be implemented in module class.
+
Parameters
+
+ data Pointer to array to save the received binary data.
+ len Number of bytes that will be received. Must be known in advance for binary transmissions.
+
+
+
+
Returns Status Codes
+
-◆ receive() [2/3]
+◆ receive() [3/3]
@@ -743,31 +767,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ receive() [3/3]
-
-
-
-
-
- virtual int16_t PhysicalLayer::receive
-
-
-
-
-
Binary receive method. Must be implemented in module class.
-
Parameters
-
- data Pointer to array to save the received binary data.
- len Number of bytes that will be received. Must be known in advance for binary transmissions.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -797,7 +797,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -834,7 +834,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -871,7 +871,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -907,7 +907,7 @@ void PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -948,7 +948,7 @@ void PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -985,7 +985,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1190,7 +1190,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1260,10 +1260,35 @@ void Returns Status Codes
+
+
+
+◆ startTransmit() [3/4]
+
+
+
+
+
+ int16_t PhysicalLayer::startTransmit
+
+
+
+
+
Interrupt-driven binary transmit method.
+
Parameters
+
+ data Binary data that will be transmitted.
+ len Length of binary data to transmit (in bytes).
+ addr Node address to transmit the packet to. Only used in FSK mode.
+
+
+
+
Returns Status Codes
+
-◆ startTransmit() [3/4]
+◆ startTransmit() [4/4]
@@ -1314,32 +1339,7 @@ void
Returns Status Codes
Todo: use header as address field?
-Implements PhysicalLayer .
-
-
-
-
-◆ startTransmit() [4/4]
-
-
-
-
-
- virtual int16_t PhysicalLayer::startTransmit
-
-
-
-
-
Interrupt-driven binary transmit method.
-
Parameters
-
- data Binary data that will be transmitted.
- len Length of binary data to transmit (in bytes).
- addr Node address to transmit the packet to. Only used in FSK mode.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -1413,10 +1413,35 @@ void Returns Status Codes
+
+
+
+◆ transmit() [4/5]
+
+
+
+
+
+ int16_t PhysicalLayer::transmit
+
+
+
+
+
Binary transmit method. Must be implemented in module class.
+
Parameters
+
+ data Binary data that will be transmitted.
+ len Length of binary data to transmit (in bytes).
+ addr Node address to transmit the packet to. Only used in FSK mode.
+
+
+
+
Returns Status Codes
+
-◆ transmit() [4/5]
+◆ transmit() [5/5]
@@ -1466,32 +1491,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ transmit() [5/5]
-
-
-
-
-
- virtual int16_t PhysicalLayer::transmit
-
-
-
-
-
Binary transmit method. Must be implemented in module class.
-
Parameters
-
- data Binary data that will be transmitted.
- len Length of binary data to transmit (in bytes).
- addr Node address to transmit the packet to. Only used in FSK mode.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -1529,7 +1529,7 @@ void Returns Status Codes
Todo: integers only
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
diff --git a/class_si443x.js b/class_si443x.js
index a84cd665..b2e07b64 100644
--- a/class_si443x.js
+++ b/class_si443x.js
@@ -12,11 +12,11 @@ var class_si443x =
[ "randomByte", "class_si443x.html#a74848176d435227e601c86ff37b0edbe", null ],
[ "readBit", "class_si443x.html#a45d3ffcb312c34a2f6391be6d609d7b7", null ],
[ "readData", "class_si443x.html#ae8eed0e888a7c8742e89d2b850977de2", null ],
+ [ "readData", "class_si443x.html#a3563453988a83d22dd07d4691543a300", null ],
[ "readData", "class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e", null ],
- [ "readData", "class_si443x.html#ae8b6c756eb4b92855433ca389d73c632", null ],
[ "receive", "class_si443x.html#afb1b090348d9091bfa3a0b5ba3d85b36", null ],
+ [ "receive", "class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8", null ],
[ "receive", "class_si443x.html#aabca3ba8eda212938febab1df2e764b4", null ],
- [ "receive", "class_si443x.html#a2ad4c6a8ac267f8ac590260414ffcda3", null ],
[ "receiveDirect", "class_si443x.html#a178b471527813a608c04db7d3c9648d6", null ],
[ "reset", "class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97", null ],
[ "setBitRate", "class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170", null ],
@@ -34,13 +34,13 @@ var class_si443x =
[ "startReceive", "class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2", null ],
[ "startTransmit", "class_si443x.html#a923654706eff5118ef6e84214e837f27", null ],
[ "startTransmit", "class_si443x.html#af068e6e862c99e39d0261a7971dd56db", null ],
+ [ "startTransmit", "class_si443x.html#ad59e37ce0606dc8051e40be9d14cfec3", null ],
[ "startTransmit", "class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314", null ],
- [ "startTransmit", "class_si443x.html#a41a1de0ebffe7b65de6fd8cceb9a5123", null ],
[ "transmit", "class_si443x.html#ab139a34e03a6fd5a781cd54da21d308f", null ],
[ "transmit", "class_si443x.html#a492b2d057dd803c3884fa1adc8e22534", null ],
[ "transmit", "class_si443x.html#aeb62c5a521aafc1e0525c58e9364482b", null ],
+ [ "transmit", "class_si443x.html#a3dd42f8d5569487ea74f004ca652a709", null ],
[ "transmit", "class_si443x.html#a782748025e19ec6e597293afb6570bff", null ],
- [ "transmit", "class_si443x.html#af81565ee82ef9a7de9c5663c745f4ef7", null ],
[ "transmitDirect", "class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99", null ],
[ "variablePacketLengthMode", "class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a", null ]
];
\ No newline at end of file
diff --git a/classes.html b/classes.html
index ff103cd6..51d5cc72 100644
--- a/classes.html
+++ b/classes.html
@@ -86,7 +86,7 @@ $(document).ready(function(){initNavTree('classes.html',''); initResizable(); })
Class Index
-
+
diff --git a/classn_r_f24-members.html b/classn_r_f24-members.html
index 9eb5f9f8..8c8f34c6 100644
--- a/classn_r_f24-members.html
+++ b/classn_r_f24-members.html
@@ -108,11 +108,11 @@ $(document).ready(function(){initNavTree('classn_r_f24.html',''); initResizable(
readBit (RADIOLIB_PIN_TYPE pin)nRF24 virtual
readData (uint8_t *data, size_t len) overridenRF24 virtual
readData (String &str, size_t len=0)nRF24
-
readData (uint8_t *data, size_t len)=0nRF24
+
readData (uint8_t *data, size_t len)nRF24
PhysicalLayer::readData (String &str, size_t len=0)PhysicalLayer
receive (uint8_t *data, size_t len) overridenRF24 virtual
receive (String &str, size_t len=0)nRF24
-
receive (uint8_t *data, size_t len)=0nRF24
+
receive (uint8_t *data, size_t len)nRF24
PhysicalLayer::receive (String &str, size_t len=0)PhysicalLayer
receiveDirect () overridenRF24 virtual
setAddressWidth (uint8_t addrWidth)nRF24
@@ -139,14 +139,14 @@ $(document).ready(function(){initNavTree('classn_r_f24.html',''); initResizable(
startTransmit (uint8_t *data, size_t len, uint8_t addr) overridenRF24 virtual
startTransmit (String &str, uint8_t addr=0)nRF24
startTransmit (const char *str, uint8_t addr=0)nRF24
-
startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0nRF24
+
startTransmit (uint8_t *data, size_t len, uint8_t addr=0)nRF24
PhysicalLayer::startTransmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
transmit (uint8_t *data, size_t len, uint8_t addr) overridenRF24 virtual
transmit (__FlashStringHelper *fstr, uint8_t addr=0)nRF24
transmit (String &str, uint8_t addr=0)nRF24
transmit (const char *str, uint8_t addr=0)nRF24
-
transmit (uint8_t *data, size_t len, uint8_t addr=0)=0nRF24
+
transmit (uint8_t *data, size_t len, uint8_t addr=0)nRF24
PhysicalLayer::transmit (__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
diff --git a/classn_r_f24.html b/classn_r_f24.html
index aa89f19d..25f1c24f 100644
--- a/classn_r_f24.html
+++ b/classn_r_f24.html
@@ -217,30 +217,30 @@ Public Member Functions
int16_t transmit (const char *str, uint8_t addr=0)
C-string transmit method. More...
-virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Binary transmit method. Must be implemented in module class. More...
-
+virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Binary transmit method. Must be implemented in module class. More...
+
int16_t receive (String &str, size_t len=0)
Arduino String receive method. More...
-virtual int16_t receive (uint8_t *data, size_t len)=0
- Binary receive method. Must be implemented in module class. More...
-
+virtual int16_t receive (uint8_t *data, size_t len)
+ Binary receive method. Must be implemented in module class. More...
+
int16_t startTransmit (String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
int16_t startTransmit (const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
-virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
- Interrupt-driven binary transmit method. More...
-
+virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)
+ Interrupt-driven binary transmit method. More...
+
int16_t readData (String &str, size_t len=0)
Reads data that was received after calling startReceive method. More...
-virtual int16_t readData (uint8_t *data, size_t len)=0
- Reads data that was received after calling startReceive method. More...
-
+virtual int16_t readData (uint8_t *data, size_t len)
+ Reads data that was received after calling startReceive method. More...
+
PhysicalLayer (float freqStep, size_t maxPacketLength)
Default constructor. More...
@@ -430,7 +430,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -467,7 +467,7 @@ void Returns Length of last received packet in bytes.
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -544,7 +544,7 @@ void PhysicalLayer compatibility.
Returns Always returns 0.
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -580,7 +580,7 @@ void PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -606,10 +606,34 @@ void Returns Status Codes
+
+
+
+◆ readData() [2/3]
+
+
+
+
+
+ int16_t PhysicalLayer::readData
+
+
+
+
+
Reads data that was received after calling startReceive method.
+
Parameters
+
+ data Pointer to array to save the received binary data.
+ len Number of bytes that will be read. When set to 0, the packet length will be retreived automatically. When more bytes than received are requested, only the number of bytes requested will be returned.
+
+
+
+
Returns Status Codes
+
-◆ readData() [2/3]
+◆ readData() [3/3]
@@ -652,31 +676,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ readData() [3/3]
-
-
-
-
-
- virtual int16_t PhysicalLayer::readData
-
-
-
-
-
Reads data that was received after calling startReceive method.
-
Parameters
-
- data Pointer to array to save the received binary data.
- len Number of bytes that will be read. When set to 0, the packet length will be retreived automatically. When more bytes than received are requested, only the number of bytes requested will be returned.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -702,10 +702,34 @@ void Returns Status Codes
+
+
+
+◆ receive() [2/3]
+
+
+
+
+
+ int16_t PhysicalLayer::receive
+
+
+
+
+
Binary receive method. Must be implemented in module class.
+
Parameters
+
+ data Pointer to array to save the received binary data.
+ len Number of bytes that will be received. Must be known in advance for binary transmissions.
+
+
+
+
Returns Status Codes
+
-◆ receive() [2/3]
+◆ receive() [3/3]
@@ -748,31 +772,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
-
-
-
-
-◆ receive() [3/3]
-
-
-
-
-
- virtual int16_t PhysicalLayer::receive
-
-
-
-
-
Binary receive method. Must be implemented in module class.
-
Parameters
-
- data Pointer to array to save the received binary data.
- len Number of bytes that will be received. Must be known in advance for binary transmissions.
-
-
-
-
Returns Status Codes
+
Reimplemented from PhysicalLayer .
@@ -802,7 +802,7 @@ void PhysicalLayer compatibility.
Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -931,7 +931,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -995,7 +995,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1031,7 +1031,7 @@ void PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1068,7 +1068,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1105,7 +1105,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1142,7 +1142,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1348,7 +1348,7 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
@@ -1471,18 +1471,18 @@ void Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
-
-◆ startTransmit() [4/4]
+
+◆ startTransmit() [4/4]
- virtual int16_t PhysicalLayer::startTransmit
+ int16_t PhysicalLayer::startTransmit
@@ -1623,18 +1623,18 @@ void
Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
-
-◆ transmit() [5/5]
+
+◆ transmit() [5/5]
- virtual int16_t PhysicalLayer::transmit
+ int16_t PhysicalLayer::transmit
@@ -1685,7 +1685,7 @@ void
Returns Status Codes
-Implements PhysicalLayer .
+Reimplemented from PhysicalLayer .
diff --git a/classn_r_f24.js b/classn_r_f24.js
index b0c80d5a..ee696785 100644
--- a/classn_r_f24.js
+++ b/classn_r_f24.js
@@ -11,11 +11,11 @@ var classn_r_f24 =
[ "randomByte", "classn_r_f24.html#a5cc7cd54db2a6af1c9183a2d0653fe2e", null ],
[ "readBit", "classn_r_f24.html#a2db0cd487b03f937afc0bc2e3eccb6f6", null ],
[ "readData", "classn_r_f24.html#ae8eed0e888a7c8742e89d2b850977de2", null ],
+ [ "readData", "classn_r_f24.html#a3563453988a83d22dd07d4691543a300", null ],
[ "readData", "classn_r_f24.html#a410fb78acb4ed358818c132687b8857a", null ],
- [ "readData", "classn_r_f24.html#ae8b6c756eb4b92855433ca389d73c632", null ],
[ "receive", "classn_r_f24.html#afb1b090348d9091bfa3a0b5ba3d85b36", null ],
+ [ "receive", "classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8", null ],
[ "receive", "classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac", null ],
- [ "receive", "classn_r_f24.html#a2ad4c6a8ac267f8ac590260414ffcda3", null ],
[ "receiveDirect", "classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c", null ],
[ "setAddressWidth", "classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4", null ],
[ "setAutoAck", "classn_r_f24.html#aca941c9235ba1212257288554eb4b7fe", null ],
@@ -38,11 +38,11 @@ var classn_r_f24 =
[ "startTransmit", "classn_r_f24.html#a923654706eff5118ef6e84214e837f27", null ],
[ "startTransmit", "classn_r_f24.html#af068e6e862c99e39d0261a7971dd56db", null ],
[ "startTransmit", "classn_r_f24.html#a42fdc828b49f2b8e15457189bd57d917", null ],
- [ "startTransmit", "classn_r_f24.html#a41a1de0ebffe7b65de6fd8cceb9a5123", null ],
+ [ "startTransmit", "classn_r_f24.html#ad59e37ce0606dc8051e40be9d14cfec3", null ],
[ "transmit", "classn_r_f24.html#ab139a34e03a6fd5a781cd54da21d308f", null ],
[ "transmit", "classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534", null ],
[ "transmit", "classn_r_f24.html#aeb62c5a521aafc1e0525c58e9364482b", null ],
[ "transmit", "classn_r_f24.html#a583d505bd3a638ecc5576dd2dd95f044", null ],
- [ "transmit", "classn_r_f24.html#af81565ee82ef9a7de9c5663c745f4ef7", null ],
+ [ "transmit", "classn_r_f24.html#a3dd42f8d5569487ea74f004ca652a709", null ],
[ "transmitDirect", "classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303", null ]
];
\ No newline at end of file
diff --git a/dir_19ff327ef62766d556984fbbdb5e6cc3.html b/dir_19ff327ef62766d556984fbbdb5e6cc3.html
new file mode 100644
index 00000000..0eabc6b5
--- /dev/null
+++ b/dir_19ff327ef62766d556984fbbdb5e6cc3.html
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+RadioLib: src/protocols/ExternalRadio Directory Reference
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RadioLib
+
+ Universal wireless communication library for Arduino
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dir_19ff327ef62766d556984fbbdb5e6cc3.js b/dir_19ff327ef62766d556984fbbdb5e6cc3.js
new file mode 100644
index 00000000..930bf91d
--- /dev/null
+++ b/dir_19ff327ef62766d556984fbbdb5e6cc3.js
@@ -0,0 +1,4 @@
+var dir_19ff327ef62766d556984fbbdb5e6cc3 =
+[
+ [ "ExternalRadio.h", "_external_radio_8h_source.html", null ]
+];
\ No newline at end of file
diff --git a/dir_79690749eba542503bb1a9a3dbb495e1.js b/dir_79690749eba542503bb1a9a3dbb495e1.js
index 4a0b6ea3..4928de1f 100644
--- a/dir_79690749eba542503bb1a9a3dbb495e1.js
+++ b/dir_79690749eba542503bb1a9a3dbb495e1.js
@@ -3,6 +3,7 @@ var dir_79690749eba542503bb1a9a3dbb495e1 =
[ "AFSK", "dir_70c194bd40717a4946dbd8bc35f09b17.html", "dir_70c194bd40717a4946dbd8bc35f09b17" ],
[ "APRS", "dir_dc014d80157d44ffbeb680b891580471.html", "dir_dc014d80157d44ffbeb680b891580471" ],
[ "AX25", "dir_2d04440730a0443b949b3f3ffedccfc3.html", "dir_2d04440730a0443b949b3f3ffedccfc3" ],
+ [ "ExternalRadio", "dir_19ff327ef62766d556984fbbdb5e6cc3.html", "dir_19ff327ef62766d556984fbbdb5e6cc3" ],
[ "FSK4", "dir_daa71c65dcbe444af3aedb7a2ef08741.html", "dir_daa71c65dcbe444af3aedb7a2ef08741" ],
[ "Hellschreiber", "dir_c14921ab4918e015c91d11c846a1924a.html", "dir_c14921ab4918e015c91d11c846a1924a" ],
[ "Morse", "dir_d916eb25599dc82f14db514c97a6ae6d.html", "dir_d916eb25599dc82f14db514c97a6ae6d" ],
diff --git a/files.html b/files.html
index 0bcbb490..c2f96404 100644
--- a/files.html
+++ b/files.html
@@ -137,20 +137,22 @@ $(document).ready(function(){initNavTree('files.html',''); initResizable(); });
APRS.h
▼ AX25
AX25.h
- ▼ FSK4
- FSK4.h
- ▼ Hellschreiber
- Hellschreiber.h
- ▼ Morse
- Morse.h
- ▼ Pager
- Pager.h
- ▼ PhysicalLayer
- PhysicalLayer.h
- ▼ RTTY
- RTTY.h
- ▼ SSTV
- SSTV.h
+ ▼ ExternalRadio
+ ExternalRadio.h
+ ▼ FSK4
+ FSK4.h
+ ▼ Hellschreiber
+ Hellschreiber.h
+ ▼ Morse
+ Morse.h
+ ▼ Pager
+ Pager.h
+ ▼ PhysicalLayer
+ PhysicalLayer.h
+ ▼ RTTY
+ RTTY.h
+ ▼ SSTV
+ SSTV.h
BuildOpt.h
Module.h
RadioLib.h
diff --git a/functions_f.html b/functions_f.html
index ce16e094..d8e4efc2 100644
--- a/functions_f.html
+++ b/functions_f.html
@@ -96,7 +96,7 @@ $(document).ready(function(){initNavTree('functions_f.html',''); initResizable()
finishTransmit()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
diff --git a/functions_func_f.html b/functions_func_f.html
index b70ce057..36cd753d 100644
--- a/functions_func_f.html
+++ b/functions_func_f.html
@@ -96,7 +96,7 @@ $(document).ready(function(){initNavTree('functions_func_f.html',''); initResiza
finishTransmit()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
diff --git a/functions_func_g.html b/functions_func_g.html
index e3f4da98..4cf58c76 100644
--- a/functions_func_g.html
+++ b/functions_func_g.html
@@ -153,7 +153,7 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza
getPacketLength()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
diff --git a/functions_func_r.html b/functions_func_r.html
index 71ff5bc3..d47c8cf3 100644
--- a/functions_func_r.html
+++ b/functions_func_r.html
@@ -91,7 +91,7 @@ $(document).ready(function(){initNavTree('functions_func_r.html',''); initResiza
randomByte()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
@@ -108,7 +108,7 @@ $(document).ready(function(){initNavTree('functions_func_r.html',''); initResiza
readBit()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
@@ -120,7 +120,7 @@ $(document).ready(function(){initNavTree('functions_func_r.html',''); initResiza
, nRF24
, PagerClient
, PhysicalLayer
-, RF69
+, RF69
, Si443x
, SX126x
, SX127x
@@ -130,7 +130,7 @@ $(document).ready(function(){initNavTree('functions_func_r.html',''); initResiza
: CC1101
, nRF24
, PhysicalLayer
-, RF69
+, RF69
, Si443x
, SX126x
, SX127x
@@ -139,7 +139,7 @@ $(document).ready(function(){initNavTree('functions_func_r.html',''); initResiza
receiveDirect()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
diff --git a/functions_func_s.html b/functions_func_s.html
index 90b12a7e..fa1b43d8 100644
--- a/functions_func_s.html
+++ b/functions_func_s.html
@@ -140,7 +140,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
setBitRate()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
@@ -182,7 +182,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
setDataShaping()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
@@ -219,7 +219,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
setDirectAction()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
@@ -232,7 +232,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
setEncoding()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
@@ -253,7 +253,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
setFrequency()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, RFM95
, RFM96
@@ -271,7 +271,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
setFrequencyDeviation()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
@@ -481,7 +481,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
: CC1101
, FSK4Client
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, RTTYClient
, Si443x
@@ -521,12 +521,12 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
startTransmit()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
, SX127x
-, SX128x
+, SX128x
SX1231()
: SX1231
diff --git a/functions_func_t.html b/functions_func_t.html
index f20f6237..5881c86b 100644
--- a/functions_func_t.html
+++ b/functions_func_t.html
@@ -110,7 +110,7 @@ $(document).ready(function(){initNavTree('functions_func_t.html',''); initResiza
transmitDirect()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
diff --git a/functions_g.html b/functions_g.html
index 0e3db2c9..599e5daf 100644
--- a/functions_g.html
+++ b/functions_g.html
@@ -153,7 +153,7 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable()
getPacketLength()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
diff --git a/functions_r.html b/functions_r.html
index 42806294..48a03789 100644
--- a/functions_r.html
+++ b/functions_r.html
@@ -91,7 +91,7 @@ $(document).ready(function(){initNavTree('functions_r.html',''); initResizable()
randomByte()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
@@ -111,7 +111,7 @@ $(document).ready(function(){initNavTree('functions_r.html',''); initResizable()
readBit()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
@@ -123,7 +123,7 @@ $(document).ready(function(){initNavTree('functions_r.html',''); initResizable()
, nRF24
, PagerClient
, PhysicalLayer
-, RF69
+, RF69
, Si443x
, SX126x
, SX127x
@@ -142,7 +142,7 @@ $(document).ready(function(){initNavTree('functions_r.html',''); initResizable()
receiveDirect()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
diff --git a/functions_s.html b/functions_s.html
index 7d5831f9..658797cb 100644
--- a/functions_s.html
+++ b/functions_s.html
@@ -146,7 +146,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
setBitRate()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
@@ -188,7 +188,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
setDataShaping()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
@@ -225,7 +225,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
setDirectAction()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
@@ -238,7 +238,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
setEncoding()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
@@ -259,7 +259,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
setFrequency()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, RFM95
, RFM96
@@ -277,7 +277,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
setFrequencyDeviation()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
@@ -499,7 +499,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
: CC1101
, FSK4Client
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, RTTYClient
, Si443x
@@ -544,7 +544,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
, Si443x
, SX126x
, SX127x
-, SX128x
+, SX128x
SX1231()
: SX1231
diff --git a/functions_t.html b/functions_t.html
index ec7992bb..8ea6e7a8 100644
--- a/functions_t.html
+++ b/functions_t.html
@@ -113,7 +113,7 @@ $(document).ready(function(){initNavTree('functions_t.html',''); initResizable()
transmitDirect()
: CC1101
, nRF24
-, PhysicalLayer
+, PhysicalLayer
, RF69
, Si443x
, SX126x
diff --git a/hierarchy.html b/hierarchy.html
index 0d4e12b5..ba8f1dbf 100644
--- a/hierarchy.html
+++ b/hierarchy.html
@@ -100,39 +100,40 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();
C PagerClient Client for Pager communication
▼ C PhysicalLayer Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN. Also extracts some common module-independent methods. Using this interface class allows to use the protocols on various modules without much code duplicity. Because this class is used mainly as interface, all of its virtual members must be implemented in the module class
C CC1101 Control class for CC1101 module
- ▼ C RF69 Control class for RF69 module. Also serves as base class for SX1231
- C SX1231 Control class for SX1231 module. Overrides some methods from RF69 due to different register values
- ▼ C SX126x Base class for SX126x series. All derived classes for SX126x (e.g. SX1262 or SX1268 ) inherit from this base class. This class should not be instantiated directly from Arduino sketch, only from its derived classes
- ▼ C SX1262 Derived class for SX1262 modules
- C LLCC68 Derived class for LLCC68 modules
- C SX1261 Derived class for SX1261 modules
- C SX1268 Derived class for SX1268 modules
- ▼ C SX127x Base class for SX127x series. All derived classes for SX127x (e.g. SX1278 or SX1272 ) inherit from this base class. This class should not be instantiated directly from Arduino sketch, only from its derived classes
- ▼ C SX1272 Derived class for SX1272 modules. Also used as base class for SX1273 . Both modules use the same basic hardware and only differ in parameter ranges
- C SX1273 Derived class for SX1273 modules. Overrides some methods from SX1272 due to different parameter ranges
- ▼ C SX1278 Derived class for SX1278 modules. Also used as base class for SX1276 , SX1277 , SX1279 , RFM95 and RFM96 . All of these modules use the same basic hardware and only differ in parameter ranges (and names)
- ▼ C RFM95 Derived class for RFM95 modules. Overrides some methods from SX1278 due to different parameter ranges
- C RFM97 Derived class for RFM97 modules. Overrides some methods from RFM95 due to different parameter ranges
- C RFM96 Derived class for RFM96 modules. Overrides some methods from SX1278 due to different parameter ranges
- C SX1276 Derived class for SX1276 modules. Overrides some methods from SX1278 due to different parameter ranges
- C SX1277 Derived class for SX1277 modules. Overrides some methods from SX1278 due to different parameter ranges
- C SX1279 Derived class for SX1279 modules. Overrides some methods from SX1278 due to different parameter ranges
- ▼ C SX128x Base class for SX128x series. All derived classes for SX128x (e.g. SX1280 or SX1281 ) inherit from this base class. This class should not be instantiated directly from Arduino sketch, only from its derived classes
- ▼ C SX1281 Derived class for SX1281 modules
- ▼ C SX1280 Derived class for SX1280 modules
- C SX1282 Derived class for SX1282 modules
- ▼ C Si443x Base class for Si443x series. All derived classes for Si443x (e.g. Si4431 or Si4432 ) inherit from this base class. This class should not be instantiated directly from Arduino sketch, only from its derived classes
- ▼ C Si4432 Derived class for Si4432 modules
- C Si4430 Derived class for Si4430 modules
- C Si4431 Derived class for Si4431 modules
- C nRF24 Control class for nRF24 module
- C RFM22 Only exists as alias for Si4432 , since there seems to be no difference between RFM22 and Si4432 modules
- C RFM23 Only exists as alias for Si4431 , since there seems to be no difference between RFM23 and Si4431 modules
- C RFM98 Only exists as alias for RFM96 , since there seems to be no difference between RFM96 and RFM98 modules
- C RTTYClient Client for RTTY communication. The public interface is the same as Arduino Serial
- C SSTVClient Client for SSTV transmissions
- C SSTVMode_t Structure to save data about supported SSTV modes
- C tone_t Structure to save data about tone
+ C ExternalRadio
+ ▼ C RF69 Control class for RF69 module. Also serves as base class for SX1231
+ C SX1231 Control class for SX1231 module. Overrides some methods from RF69 due to different register values
+ ▼ C SX126x Base class for SX126x series. All derived classes for SX126x (e.g. SX1262 or SX1268 ) inherit from this base class. This class should not be instantiated directly from Arduino sketch, only from its derived classes
+ ▼ C SX1262 Derived class for SX1262 modules
+ C LLCC68 Derived class for LLCC68 modules
+ C SX1261 Derived class for SX1261 modules
+ C SX1268 Derived class for SX1268 modules
+ ▼ C SX127x Base class for SX127x series. All derived classes for SX127x (e.g. SX1278 or SX1272 ) inherit from this base class. This class should not be instantiated directly from Arduino sketch, only from its derived classes
+ ▼ C SX1272 Derived class for SX1272 modules. Also used as base class for SX1273 . Both modules use the same basic hardware and only differ in parameter ranges
+ C SX1273 Derived class for SX1273 modules. Overrides some methods from SX1272 due to different parameter ranges
+ ▼ C SX1278 Derived class for SX1278 modules. Also used as base class for SX1276 , SX1277 , SX1279 , RFM95 and RFM96 . All of these modules use the same basic hardware and only differ in parameter ranges (and names)
+ ▼ C RFM95 Derived class for RFM95 modules. Overrides some methods from SX1278 due to different parameter ranges
+ C RFM97 Derived class for RFM97 modules. Overrides some methods from RFM95 due to different parameter ranges
+ C RFM96 Derived class for RFM96 modules. Overrides some methods from SX1278 due to different parameter ranges
+ C SX1276 Derived class for SX1276 modules. Overrides some methods from SX1278 due to different parameter ranges
+ C SX1277 Derived class for SX1277 modules. Overrides some methods from SX1278 due to different parameter ranges
+ C SX1279 Derived class for SX1279 modules. Overrides some methods from SX1278 due to different parameter ranges
+ ▼ C SX128x Base class for SX128x series. All derived classes for SX128x (e.g. SX1280 or SX1281 ) inherit from this base class. This class should not be instantiated directly from Arduino sketch, only from its derived classes
+ ▼ C SX1281 Derived class for SX1281 modules
+ ▼ C SX1280 Derived class for SX1280 modules
+ C SX1282 Derived class for SX1282 modules
+ ▼ C Si443x Base class for Si443x series. All derived classes for Si443x (e.g. Si4431 or Si4432 ) inherit from this base class. This class should not be instantiated directly from Arduino sketch, only from its derived classes
+ ▼ C Si4432 Derived class for Si4432 modules
+ C Si4430 Derived class for Si4430 modules
+ C Si4431 Derived class for Si4431 modules
+ C nRF24 Control class for nRF24 module
+ C RFM22 Only exists as alias for Si4432 , since there seems to be no difference between RFM22 and Si4432 modules
+ C RFM23 Only exists as alias for Si4431 , since there seems to be no difference between RFM23 and Si4431 modules
+ C RFM98 Only exists as alias for RFM96 , since there seems to be no difference between RFM96 and RFM98 modules
+ C RTTYClient Client for RTTY communication. The public interface is the same as Arduino Serial
+ C SSTVClient Client for SSTV transmissions
+ C SSTVMode_t Structure to save data about supported SSTV modes
+ C tone_t Structure to save data about tone
diff --git a/hierarchy.js b/hierarchy.js
index 9388c127..fab3c25e 100644
--- a/hierarchy.js
+++ b/hierarchy.js
@@ -12,6 +12,7 @@ var hierarchy =
[ "PagerClient", "class_pager_client.html", null ],
[ "PhysicalLayer", "class_physical_layer.html", [
[ "CC1101", "class_c_c1101.html", null ],
+ [ "ExternalRadio", "class_external_radio.html", null ],
[ "RF69", "class_r_f69.html", [
[ "SX1231", "class_s_x1231.html", null ]
] ],
diff --git a/n_r_f24_8h_source.html b/n_r_f24_8h_source.html
index c280aa38..43c41f4b 100644
--- a/n_r_f24_8h_source.html
+++ b/n_r_f24_8h_source.html
@@ -381,9 +381,9 @@ $(document).ready(function(){initNavTree('n_r_f24_8h_source.html',''); initResiz
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:16
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:14
int16_t transmit(__FlashStringHelper *fstr, uint8_t addr=0)
Arduino Flash String transmit method.
Definition: PhysicalLayer.cpp:12
-int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:61
-int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:53
-int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:104
+int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:136
+int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:117
+int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:60
Control class for nRF24 module.
Definition: nRF24.h:186
int16_t sleep()
Sets the module to sleep mode.
Definition: nRF24.cpp:70
int16_t setEncoding(uint8_t encoding) override
Dummy encoding configuration method, to ensure PhysicalLayer compatibility.
Definition: nRF24.cpp:529
@@ -411,11 +411,11 @@ $(document).ready(function(){initNavTree('n_r_f24_8h_source.html',''); initResiz
void setIrqAction(void(*func)(void))
Sets interrupt service routine to call when IRQ activates.
Definition: nRF24.cpp:153
int16_t setAutoAck(bool autoAckOn=true)
Enable or disable auto-acknowledge packets on all pipes.
Definition: nRF24.cpp:493
bool isCarrierDetected()
Checks if carrier was detected during last RX.
Definition: nRF24.cpp:464
-int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:61
-int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:53
+int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:136
+int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:117
int16_t finishTransmit() override
Clean up after transmission is done.
Definition: nRF24.cpp:197
int16_t startReceive()
Interrupt-driven receive method. IRQ will be activated when full packet is received.
Definition: nRF24.cpp:205
-int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:104
+int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:60
diff --git a/navtreedata.js b/navtreedata.js
index 9df6892d..6db5cc76 100644
--- a/navtreedata.js
+++ b/navtreedata.js
@@ -47,10 +47,10 @@ var NAVTREE =
var NAVTREEINDEX =
[
"_a_f_s_k_8h_source.html",
-"class_morse_client.html#a178726e7279d49d873c715371d558751",
-"class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf",
-"class_s_x128x.html#a94b7fb26cc99385d30b0c98b76d8188d",
-"group__status__codes.html#ga85e34d08b298a4125f77ddede011db3b"
+"class_module.html#af998b86ce1243f616f6fcb6df5336207",
+"class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08",
+"class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f",
+"group__status__codes.html#ga733a7f3f12109103384522dac4d1146e"
];
var SYNCONMSG = 'click to disable panel synchronisation';
diff --git a/navtreeindex0.js b/navtreeindex0.js
index f6c946fb..eb3361c3 100644
--- a/navtreeindex0.js
+++ b/navtreeindex0.js
@@ -5,22 +5,23 @@ var NAVTREEINDEX0 =
"_a_x25_8h_source.html":[4,0,0,1,2,0],
"_build_opt_8h_source.html":[4,0,0,2],
"_c_c1101_8h_source.html":[4,0,0,0,0,0],
-"_f_s_k4_8h_source.html":[4,0,0,1,3,0],
-"_hellschreiber_8h_source.html":[4,0,0,1,4,0],
+"_external_radio_8h_source.html":[4,0,0,1,3,0],
+"_f_s_k4_8h_source.html":[4,0,0,1,4,0],
+"_hellschreiber_8h_source.html":[4,0,0,1,5,0],
"_l_l_c_c68_8h_source.html":[4,0,0,0,1,0],
"_module_8h_source.html":[4,0,0,3],
-"_morse_8h_source.html":[4,0,0,1,5,0],
-"_pager_8h_source.html":[4,0,0,1,6,0],
-"_physical_layer_8h_source.html":[4,0,0,1,7,0],
+"_morse_8h_source.html":[4,0,0,1,6,0],
+"_pager_8h_source.html":[4,0,0,1,7,0],
+"_physical_layer_8h_source.html":[4,0,0,1,8,0],
"_r_f69_8h_source.html":[4,0,0,0,3,0],
"_r_f_m22_8h_source.html":[4,0,0,0,4,0],
"_r_f_m23_8h_source.html":[4,0,0,0,4,1],
"_r_f_m95_8h_source.html":[4,0,0,0,5,0],
"_r_f_m96_8h_source.html":[4,0,0,0,5,1],
"_r_f_m97_8h_source.html":[4,0,0,0,5,2],
-"_r_t_t_y_8h_source.html":[4,0,0,1,8,0],
+"_r_t_t_y_8h_source.html":[4,0,0,1,9,0],
"_radio_lib_8h_source.html":[4,0,0,4],
-"_s_s_t_v_8h_source.html":[4,0,0,1,9,0],
+"_s_s_t_v_8h_source.html":[4,0,0,1,10,0],
"_s_x1231_8h_source.html":[4,0,0,0,7,0],
"_s_x1261_8h_source.html":[4,0,0,0,8,0],
"_s_x1262_8h_source.html":[4,0,0,0,8,1],
@@ -94,16 +95,16 @@ var NAVTREEINDEX0 =
"class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8":[3,0,3,11],
"class_c_c1101.html":[3,0,4],
"class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3":[3,0,4,34],
-"class_c_c1101.html#a0df2938e2509a8f2746b20ae0558d4ea":[3,0,4,50],
+"class_c_c1101.html#a0df2938e2509a8f2746b20ae0558d4ea":[3,0,4,51],
"class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0":[3,0,4,13],
"class_c_c1101.html#a1acad996e9452c504cf0f89806c46c8a":[3,0,4,30],
"class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46":[3,0,4,57],
"class_c_c1101.html#a2911d49d1c293542f7a374c9af60df0e":[3,0,4,41],
"class_c_c1101.html#a2a4c6e622dffd2788d8ac52d708b0705":[3,0,4,9],
-"class_c_c1101.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,4,24],
+"class_c_c1101.html#a3563453988a83d22dd07d4691543a300":[3,0,4,20],
"class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6":[3,0,4,43],
"class_c_c1101.html#a38f6978c757b0dd73e3ef98164a735a2":[3,0,4,16],
-"class_c_c1101.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,4,51],
+"class_c_c1101.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,4,55],
"class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6":[3,0,4,45],
"class_c_c1101.html#a45ab4e3f4f9db367185333d36ba21ed2":[3,0,4,42],
"class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc":[3,0,4,15],
@@ -117,9 +118,9 @@ var NAVTREEINDEX0 =
"class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8":[3,0,4,37],
"class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4":[3,0,4,6],
"class_c_c1101.html#a7612bf81e48086004c62548de2682266":[3,0,4,46],
-"class_c_c1101.html#a7cb99a9200b21829b50e3fc3878573f4":[3,0,4,55],
+"class_c_c1101.html#a7cb99a9200b21829b50e3fc3878573f4":[3,0,4,56],
"class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833":[3,0,4,17],
-"class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22":[3,0,4,20],
+"class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22":[3,0,4,21],
"class_c_c1101.html#a923654706eff5118ef6e84214e837f27":[3,0,4,48],
"class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e":[3,0,4,33],
"class_c_c1101.html#a9aee5df428d30b9c80b8a8700609a883":[3,0,4,4],
@@ -130,6 +131,7 @@ var NAVTREEINDEX0 =
"class_c_c1101.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,4,52],
"class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea":[3,0,4,32],
"class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8":[3,0,4,2],
+"class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,4,23],
"class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001":[3,0,4,44],
"class_c_c1101.html#abe26fa310e973bf2b14750b9eae02124":[3,0,4,10],
"class_c_c1101.html#ac3ff8051af5ca50c349e02257f1a3bda":[3,0,4,39],
@@ -138,116 +140,114 @@ var NAVTREEINDEX0 =
"class_c_c1101.html#acbfa80f431f335d5597500319f0affa8":[3,0,4,40],
"class_c_c1101.html#ad25ad96cddf62273bffd601384d22275":[3,0,4,8],
"class_c_c1101.html#ad47b3b7bd67159638ff9afcfe002fc66":[3,0,4,12],
+"class_c_c1101.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,4,50],
"class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6":[3,0,4,29],
"class_c_c1101.html#ae60ea5cacfb1543fcecde5bfac16361a":[3,0,4,35],
-"class_c_c1101.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,4,21],
"class_c_c1101.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,4,19],
"class_c_c1101.html#ae8ef8463220f2c5fa3120c4a5995e61f":[3,0,4,1],
"class_c_c1101.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,4,54],
-"class_c_c1101.html#aedc1067d0334bb69ed5316146014097d":[3,0,4,23],
+"class_c_c1101.html#aedc1067d0334bb69ed5316146014097d":[3,0,4,24],
"class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6":[3,0,4,14],
"class_c_c1101.html#aef7c152858537a40e71cf133962cb893":[3,0,4,58],
"class_c_c1101.html#af068e6e862c99e39d0261a7971dd56db":[3,0,4,49],
"class_c_c1101.html#af70ea860154cd6d2b2e2a6962e161c8f":[3,0,4,7],
"class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3":[3,0,4,47],
-"class_c_c1101.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,4,56],
"class_c_c1101.html#afa64d1ad4789d3146b38d14437234756":[3,0,4,38],
"class_c_c1101.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,4,22],
-"class_f_s_k4_client.html":[3,0,5],
-"class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9":[3,0,5,2],
-"class_f_s_k4_client.html#a2cdcea538e5b58e99a23f98ef4a68617":[3,0,5,0],
-"class_f_s_k4_client.html#a31218736d4f9a3412ee9009a4c4f5a22":[3,0,5,7],
-"class_f_s_k4_client.html#a65105b2744c4721b75ca0894c654bf82":[3,0,5,1],
-"class_f_s_k4_client.html#a79ca465012acc9223d61d5b063ff8257":[3,0,5,3],
-"class_f_s_k4_client.html#a8b5765371ebbf68a21bc0bbfdf9f82ac":[3,0,5,5],
-"class_f_s_k4_client.html#aa59fb42d3eeafe5ab3f0437ef5567ec2":[3,0,5,6],
-"class_f_s_k4_client.html#aab85cb6519e5448dc332bf17bd60f90a":[3,0,5,4],
-"class_hell_client.html":[3,0,6],
-"class_hell_client.html#a079475eb50465c6b9c8e5e568648925d":[3,0,6,12],
-"class_hell_client.html#a0b47e81258fd838dc8c587daad9c75ef":[3,0,6,8],
-"class_hell_client.html#a0dcf129b97dda7cd7f343344dabfa2ec":[3,0,6,10],
-"class_hell_client.html#a0ff4b94104bc9058884f7129c629a6d3":[3,0,6,3],
-"class_hell_client.html#a1779f13c8052c2392a1f2f0e1164343e":[3,0,6,25],
-"class_hell_client.html#a225775fe87f9ed3c3a04142697641242":[3,0,6,2],
-"class_hell_client.html#a236dc21d338d36fd3b7130fe2c46e85e":[3,0,6,20],
-"class_hell_client.html#a3f6a25662f28c525fb8ed727358890ea":[3,0,6,15],
-"class_hell_client.html#a41acb11ec5afacce7217d94a038442b6":[3,0,6,7],
-"class_hell_client.html#a472555cea11854700db91843c335bded":[3,0,6,27],
-"class_hell_client.html#a5be90660b3fa491fcfa80609b8f29f56":[3,0,6,19],
-"class_hell_client.html#a5c5117dadbe33da1cda5fd4981b405eb":[3,0,6,28],
-"class_hell_client.html#a68683a4d8c8b2f4a4d987d5c08a027d0":[3,0,6,6],
-"class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0":[3,0,6,0],
-"class_hell_client.html#a72ee891123decbb2d883b8c120e30c18":[3,0,6,23],
-"class_hell_client.html#a96110fc9b723c92455e0427d4fc7563f":[3,0,6,4],
-"class_hell_client.html#a9c8af8fbfefda966f5400d06dfa10d76":[3,0,6,16],
-"class_hell_client.html#aa6a4e522a21ffd337de213f7f5ead190":[3,0,6,5],
-"class_hell_client.html#aab738dbdadc60e5aec75e877d8d64143":[3,0,6,14],
-"class_hell_client.html#aabac8ec885594abbd85ec2e7b4e07d95":[3,0,6,17],
-"class_hell_client.html#ac3fa4949b30186a215bcdc4eedb8ef7a":[3,0,6,9],
-"class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9":[3,0,6,13],
-"class_hell_client.html#ac7eab91507bf0413563c097cfca5196f":[3,0,6,22],
-"class_hell_client.html#ad82abc52034fafdea84c15530039a6f5":[3,0,6,26],
-"class_hell_client.html#ad929fdea641afb17dd56cfcc6e47a438":[3,0,6,18],
-"class_hell_client.html#aed7039049b21c0ae5acf650449f6d001":[3,0,6,11],
-"class_hell_client.html#aeded114263fcd3c023a5a7b177041449":[3,0,6,24],
-"class_hell_client.html#afd39423e75134b2587983418a6a37682":[3,0,6,21],
-"class_hell_client.html#afeb347f04148700427ad40614fd057c3":[3,0,6,1],
-"class_i_t_a2_string.html":[3,0,7],
-"class_i_t_a2_string.html#a3f42f7ad98473dbe36515e676622ed3d":[3,0,7,3],
-"class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e":[3,0,7,4],
-"class_i_t_a2_string.html#a92ca563bdc2ae4d05ee91ce9372e7a55":[3,0,7,1],
-"class_i_t_a2_string.html#addb6c39167aa5da53fb72e9a94c9c8f5":[3,0,7,0],
-"class_i_t_a2_string.html#afde24c931997581878953660192e09a2":[3,0,7,2],
-"class_l_l_c_c68.html":[3,0,8],
-"class_l_l_c_c68.html#a039fc3259e4f208d96eaa310720b161d":[3,0,8,1],
-"class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf":[3,0,8,2],
-"class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261":[3,0,8,0],
-"class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4":[3,0,8,3],
-"class_module.html":[3,0,9],
-"class_module.html#a015226566efc5131c8a39a184b6c4e6b":[3,0,9,11],
-"class_module.html#a0ecbb4e1e98094c1296b1e823dc14703":[3,0,9,24],
-"class_module.html#a1101d49f597f756141fc9de88a504f21":[3,0,9,0],
-"class_module.html#a1286d7fd9673cbfab945c26b2585a129":[3,0,9,31],
-"class_module.html#a1310b9594f86fb1dc6646479922a1fdc":[3,0,9,22],
-"class_module.html#a14d7cd8220bfa4440bda055ce5be748c":[3,0,9,6],
-"class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3":[3,0,9,29],
-"class_module.html#a216dd0c6ce140857f2b003ab8d89fbac":[3,0,9,18],
-"class_module.html#a227d2d38e4747d0f49bb4df1c80b45d7":[3,0,9,40],
-"class_module.html#a33e33df69d58660b8cd0e2dafe5e9189":[3,0,9,37],
-"class_module.html#a3d0caa9f5e38cfa2c609570a89a4a703":[3,0,9,4],
-"class_module.html#a45bd514a1f2859d9a867c8f9b13eb332":[3,0,9,36],
-"class_module.html#a45e7823c44ac0aa8a10bd4f365890c98":[3,0,9,38],
-"class_module.html#a46ad10b113df7c7e0a932be19eff63cd":[3,0,9,9],
-"class_module.html#a47978200f7e2e408fb64f506c81cee9f":[3,0,9,39],
-"class_module.html#a4a87d59ad2bf6bb1bb9de1856a81b824":[3,0,9,25],
-"class_module.html#a4ea888758b4a7784082d513a1e7849a4":[3,0,9,20],
-"class_module.html#a5ecd52243289112f35a9644cdafbe49f":[3,0,9,26],
-"class_module.html#a656738f2fe41fb236d27aed02efa8ad4":[3,0,9,7],
-"class_module.html#a6fa5239d73379e4140f5c4f513b1b8d2":[3,0,9,30],
-"class_module.html#a7216d32fc55130d111409c6f2050d9c0":[3,0,9,23],
-"class_module.html#a7495c81640aac8f4686221dad34a274f":[3,0,9,8],
-"class_module.html#a849ad85fc1bc3a7130e660c13973ab26":[3,0,9,41],
-"class_module.html#a8c7f17a63b67117d953f1ba990b17f80":[3,0,9,14],
-"class_module.html#a919baf2e46c357ebfcdbc1025b6c551e":[3,0,9,1],
-"class_module.html#a91aaa34aecdfeaf24948551b037033be":[3,0,9,2],
-"class_module.html#a9d77a08070cbd48fd4ece62a739333e9":[3,0,9,35],
-"class_module.html#aa7fc017ee35f40c90e5badc5bc568c3d":[3,0,9,10],
-"class_module.html#ab814614ddd34b57f5a612a20f5fe4c57":[3,0,9,34],
-"class_module.html#abb9e88a881632cb2c72931c5b8c2ae90":[3,0,9,32],
-"class_module.html#acabb23f1cded0a43ffc38cfcc649dcb2":[3,0,9,27],
-"class_module.html#ad1956ac81429ec1f61f83dbc081cf18c":[3,0,9,16],
-"class_module.html#ad7ca9ae5a22cdacdf9437ca9cd37c9b4":[3,0,9,28],
-"class_module.html#ae352c7a7b997fc1b17189c1312a8347f":[3,0,9,15],
-"class_module.html#ae53e355a77f2b7ce6473c62ac5f37334":[3,0,9,12],
-"class_module.html#ae89764d15e8df5694a6aec0e18f72d3f":[3,0,9,42],
-"class_module.html#aeb4c7447372d56a7cae6db91994aacfc":[3,0,9,13],
-"class_module.html#aefd955f1cd6d588b2cc229db87cb2121":[3,0,9,33],
-"class_module.html#af0f870b09b9dd9636f1587d708f07d38":[3,0,9,5],
-"class_module.html#af3f51e517a825949891ad29e30fd3f59":[3,0,9,17],
-"class_module.html#af6bfd022681d360082e3dd31a984e1f7":[3,0,9,3],
-"class_module.html#af7e4872dad3d19b6f75f532c88683168":[3,0,9,21],
-"class_module.html#af998b86ce1243f616f6fcb6df5336207":[3,0,9,19],
-"class_morse_client.html":[3,0,10],
-"class_morse_client.html#a051cba718c88b0d25a0f6f6dbfeb1e46":[3,0,10,3],
-"class_morse_client.html#a1125d874d18a507b2e77675b687cce0f":[3,0,10,4]
+"class_external_radio.html":[3,0,5],
+"class_external_radio.html#a7082988b50a892421237e462067b54fd":[3,0,5,0],
+"class_external_radio.html#ae6f8473e407cfcba0e1f07c225b5cb50":[3,0,5,1],
+"class_f_s_k4_client.html":[3,0,6],
+"class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9":[3,0,6,2],
+"class_f_s_k4_client.html#a2cdcea538e5b58e99a23f98ef4a68617":[3,0,6,0],
+"class_f_s_k4_client.html#a31218736d4f9a3412ee9009a4c4f5a22":[3,0,6,7],
+"class_f_s_k4_client.html#a65105b2744c4721b75ca0894c654bf82":[3,0,6,1],
+"class_f_s_k4_client.html#a79ca465012acc9223d61d5b063ff8257":[3,0,6,3],
+"class_f_s_k4_client.html#a8b5765371ebbf68a21bc0bbfdf9f82ac":[3,0,6,5],
+"class_f_s_k4_client.html#aa59fb42d3eeafe5ab3f0437ef5567ec2":[3,0,6,6],
+"class_f_s_k4_client.html#aab85cb6519e5448dc332bf17bd60f90a":[3,0,6,4],
+"class_hell_client.html":[3,0,7],
+"class_hell_client.html#a079475eb50465c6b9c8e5e568648925d":[3,0,7,12],
+"class_hell_client.html#a0b47e81258fd838dc8c587daad9c75ef":[3,0,7,8],
+"class_hell_client.html#a0dcf129b97dda7cd7f343344dabfa2ec":[3,0,7,10],
+"class_hell_client.html#a0ff4b94104bc9058884f7129c629a6d3":[3,0,7,3],
+"class_hell_client.html#a1779f13c8052c2392a1f2f0e1164343e":[3,0,7,25],
+"class_hell_client.html#a225775fe87f9ed3c3a04142697641242":[3,0,7,2],
+"class_hell_client.html#a236dc21d338d36fd3b7130fe2c46e85e":[3,0,7,20],
+"class_hell_client.html#a3f6a25662f28c525fb8ed727358890ea":[3,0,7,15],
+"class_hell_client.html#a41acb11ec5afacce7217d94a038442b6":[3,0,7,7],
+"class_hell_client.html#a472555cea11854700db91843c335bded":[3,0,7,27],
+"class_hell_client.html#a5be90660b3fa491fcfa80609b8f29f56":[3,0,7,19],
+"class_hell_client.html#a5c5117dadbe33da1cda5fd4981b405eb":[3,0,7,28],
+"class_hell_client.html#a68683a4d8c8b2f4a4d987d5c08a027d0":[3,0,7,6],
+"class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0":[3,0,7,0],
+"class_hell_client.html#a72ee891123decbb2d883b8c120e30c18":[3,0,7,23],
+"class_hell_client.html#a96110fc9b723c92455e0427d4fc7563f":[3,0,7,4],
+"class_hell_client.html#a9c8af8fbfefda966f5400d06dfa10d76":[3,0,7,16],
+"class_hell_client.html#aa6a4e522a21ffd337de213f7f5ead190":[3,0,7,5],
+"class_hell_client.html#aab738dbdadc60e5aec75e877d8d64143":[3,0,7,14],
+"class_hell_client.html#aabac8ec885594abbd85ec2e7b4e07d95":[3,0,7,17],
+"class_hell_client.html#ac3fa4949b30186a215bcdc4eedb8ef7a":[3,0,7,9],
+"class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9":[3,0,7,13],
+"class_hell_client.html#ac7eab91507bf0413563c097cfca5196f":[3,0,7,22],
+"class_hell_client.html#ad82abc52034fafdea84c15530039a6f5":[3,0,7,26],
+"class_hell_client.html#ad929fdea641afb17dd56cfcc6e47a438":[3,0,7,18],
+"class_hell_client.html#aed7039049b21c0ae5acf650449f6d001":[3,0,7,11],
+"class_hell_client.html#aeded114263fcd3c023a5a7b177041449":[3,0,7,24],
+"class_hell_client.html#afd39423e75134b2587983418a6a37682":[3,0,7,21],
+"class_hell_client.html#afeb347f04148700427ad40614fd057c3":[3,0,7,1],
+"class_i_t_a2_string.html":[3,0,8],
+"class_i_t_a2_string.html#a3f42f7ad98473dbe36515e676622ed3d":[3,0,8,3],
+"class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e":[3,0,8,4],
+"class_i_t_a2_string.html#a92ca563bdc2ae4d05ee91ce9372e7a55":[3,0,8,1],
+"class_i_t_a2_string.html#addb6c39167aa5da53fb72e9a94c9c8f5":[3,0,8,0],
+"class_i_t_a2_string.html#afde24c931997581878953660192e09a2":[3,0,8,2],
+"class_l_l_c_c68.html":[3,0,9],
+"class_l_l_c_c68.html#a039fc3259e4f208d96eaa310720b161d":[3,0,9,1],
+"class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf":[3,0,9,2],
+"class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261":[3,0,9,0],
+"class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4":[3,0,9,3],
+"class_module.html":[3,0,10],
+"class_module.html#a015226566efc5131c8a39a184b6c4e6b":[3,0,10,11],
+"class_module.html#a0ecbb4e1e98094c1296b1e823dc14703":[3,0,10,24],
+"class_module.html#a1101d49f597f756141fc9de88a504f21":[3,0,10,0],
+"class_module.html#a1286d7fd9673cbfab945c26b2585a129":[3,0,10,31],
+"class_module.html#a1310b9594f86fb1dc6646479922a1fdc":[3,0,10,22],
+"class_module.html#a14d7cd8220bfa4440bda055ce5be748c":[3,0,10,6],
+"class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3":[3,0,10,29],
+"class_module.html#a216dd0c6ce140857f2b003ab8d89fbac":[3,0,10,18],
+"class_module.html#a227d2d38e4747d0f49bb4df1c80b45d7":[3,0,10,40],
+"class_module.html#a33e33df69d58660b8cd0e2dafe5e9189":[3,0,10,37],
+"class_module.html#a3d0caa9f5e38cfa2c609570a89a4a703":[3,0,10,4],
+"class_module.html#a45bd514a1f2859d9a867c8f9b13eb332":[3,0,10,36],
+"class_module.html#a45e7823c44ac0aa8a10bd4f365890c98":[3,0,10,38],
+"class_module.html#a46ad10b113df7c7e0a932be19eff63cd":[3,0,10,9],
+"class_module.html#a47978200f7e2e408fb64f506c81cee9f":[3,0,10,39],
+"class_module.html#a4a87d59ad2bf6bb1bb9de1856a81b824":[3,0,10,25],
+"class_module.html#a4ea888758b4a7784082d513a1e7849a4":[3,0,10,20],
+"class_module.html#a5ecd52243289112f35a9644cdafbe49f":[3,0,10,26],
+"class_module.html#a656738f2fe41fb236d27aed02efa8ad4":[3,0,10,7],
+"class_module.html#a6fa5239d73379e4140f5c4f513b1b8d2":[3,0,10,30],
+"class_module.html#a7216d32fc55130d111409c6f2050d9c0":[3,0,10,23],
+"class_module.html#a7495c81640aac8f4686221dad34a274f":[3,0,10,8],
+"class_module.html#a849ad85fc1bc3a7130e660c13973ab26":[3,0,10,41],
+"class_module.html#a8c7f17a63b67117d953f1ba990b17f80":[3,0,10,14],
+"class_module.html#a919baf2e46c357ebfcdbc1025b6c551e":[3,0,10,1],
+"class_module.html#a91aaa34aecdfeaf24948551b037033be":[3,0,10,2],
+"class_module.html#a9d77a08070cbd48fd4ece62a739333e9":[3,0,10,35],
+"class_module.html#aa7fc017ee35f40c90e5badc5bc568c3d":[3,0,10,10],
+"class_module.html#ab814614ddd34b57f5a612a20f5fe4c57":[3,0,10,34],
+"class_module.html#abb9e88a881632cb2c72931c5b8c2ae90":[3,0,10,32],
+"class_module.html#acabb23f1cded0a43ffc38cfcc649dcb2":[3,0,10,27],
+"class_module.html#ad1956ac81429ec1f61f83dbc081cf18c":[3,0,10,16],
+"class_module.html#ad7ca9ae5a22cdacdf9437ca9cd37c9b4":[3,0,10,28],
+"class_module.html#ae352c7a7b997fc1b17189c1312a8347f":[3,0,10,15],
+"class_module.html#ae53e355a77f2b7ce6473c62ac5f37334":[3,0,10,12],
+"class_module.html#ae89764d15e8df5694a6aec0e18f72d3f":[3,0,10,42],
+"class_module.html#aeb4c7447372d56a7cae6db91994aacfc":[3,0,10,13],
+"class_module.html#aefd955f1cd6d588b2cc229db87cb2121":[3,0,10,33],
+"class_module.html#af0f870b09b9dd9636f1587d708f07d38":[3,0,10,5],
+"class_module.html#af3f51e517a825949891ad29e30fd3f59":[3,0,10,17],
+"class_module.html#af6bfd022681d360082e3dd31a984e1f7":[3,0,10,3],
+"class_module.html#af7e4872dad3d19b6f75f532c88683168":[3,0,10,21]
};
diff --git a/navtreeindex1.js b/navtreeindex1.js
index 0f9a5e3f..d2529730 100644
--- a/navtreeindex1.js
+++ b/navtreeindex1.js
@@ -1,253 +1,253 @@
var NAVTREEINDEX1 =
{
-"class_morse_client.html#a178726e7279d49d873c715371d558751":[3,0,10,15],
-"class_morse_client.html#a1b7a4467adf49a3afa062fc93bf6f80f":[3,0,10,9],
-"class_morse_client.html#a1be826249b4936e2b0bca20311714726":[3,0,10,26],
-"class_morse_client.html#a2040051afe09bbd4fada12bdf76203b1":[3,0,10,6],
-"class_morse_client.html#a2f4433a88741564f28f673cf51486615":[3,0,10,13],
-"class_morse_client.html#a2fcdfba81f12782f44fff8fdf845ea0b":[3,0,10,8],
-"class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3":[3,0,10,25],
-"class_morse_client.html#a516f19bb51b87ead7f7ed149f2ca92cf":[3,0,10,2],
-"class_morse_client.html#a5714515867807053a63843d5ae647dd1":[3,0,10,11],
-"class_morse_client.html#a5e0ecaccbc92e6790f73542133c34535":[3,0,10,5],
-"class_morse_client.html#a64e20542281e100ab92ebe5e8f915c3c":[3,0,10,7],
-"class_morse_client.html#a709093c92d69f29f1520f0b290af374b":[3,0,10,24],
-"class_morse_client.html#a7eecc8f5a61115b39fa67f1f7be4747e":[3,0,10,20],
-"class_morse_client.html#a83a064f138d5bf55420ffbfd534dacfb":[3,0,10,16],
-"class_morse_client.html#a8b54b926bcd4115822e4c901371f1e53":[3,0,10,10],
-"class_morse_client.html#a9094ea2ccb2528be5a830485575e2b5e":[3,0,10,21],
-"class_morse_client.html#a95d0edd2ab9a590668c6aaa67a893c49":[3,0,10,22],
-"class_morse_client.html#a9b46b2755abd59ece4abd69fab4f7808":[3,0,10,27],
-"class_morse_client.html#aa26d803db2d9ab6f3b13f843811f923f":[3,0,10,14],
-"class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2":[3,0,10,1],
-"class_morse_client.html#aa930ef3852b22e973129daf2ceaf58c3":[3,0,10,18],
-"class_morse_client.html#abcbc1b964ddb20984c3d6f32f07c8cce":[3,0,10,12],
-"class_morse_client.html#abd37869212f3338eb7c95c6f16dadbba":[3,0,10,28],
-"class_morse_client.html#ae1dd17e96858c9b6948ee7e5871c7efd":[3,0,10,23],
-"class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a":[3,0,10,0],
-"class_morse_client.html#af466855a342b3cc70b496a79caf65232":[3,0,10,17],
-"class_morse_client.html#afea22f16b6360e122116da4b7b6cc2f7":[3,0,10,19],
-"class_pager_client.html":[3,0,12],
-"class_pager_client.html#a1a1dc569f9b60b0ddd6ead7af5a8244f":[3,0,12,2],
-"class_pager_client.html#a77aafe7c86e6e1e4e22990be4e7f090b":[3,0,12,9],
-"class_pager_client.html#a897f990002a4a2196fcdb31c547e0648":[3,0,12,8],
-"class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111":[3,0,12,5],
-"class_pager_client.html#a9f978120467b13104fb356e9b7d855ec":[3,0,12,0],
-"class_pager_client.html#aab6a8977f89d43620b98bcedf5a47dbd":[3,0,12,7],
-"class_pager_client.html#ac000d0d6b1eb389ead95290f8895d02d":[3,0,12,3],
-"class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b":[3,0,12,4],
-"class_pager_client.html#ad6f4f034b71311144f76b629a8ef8f8d":[3,0,12,6],
-"class_pager_client.html#aec073fa9e5adcff9730482d9583715e9":[3,0,12,1],
-"class_physical_layer.html":[3,0,13],
-"class_physical_layer.html#a0012621c1414f4c7573e961b57884a5b":[3,0,13,35],
-"class_physical_layer.html#a018393f703a257e39cd263cccf4ffad5":[3,0,13,40],
-"class_physical_layer.html#a0bd6046e068ef63e3f2b6bead48e02a7":[3,0,13,5],
-"class_physical_layer.html#a0e77da761a2cbb5c9535df0bdea993f9":[3,0,13,24],
-"class_physical_layer.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,13,14],
-"class_physical_layer.html#a34543b885aa57ade08a4c659991e523e":[3,0,13,8],
-"class_physical_layer.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,13,28],
-"class_physical_layer.html#a41ff2710d9e3a626becfa7a093900052":[3,0,13,39],
-"class_physical_layer.html#a429796eb2e7ea86781a2e8ca42af43f3":[3,0,13,2],
-"class_physical_layer.html#a46b22145b33e97cf6065ed826799b6b4":[3,0,13,15],
-"class_physical_layer.html#a47c1d94d2ad2fd7eb5d11480b44cc368":[3,0,13,18],
-"class_physical_layer.html#a4928642e647f2dd5b614b87b681cb0a6":[3,0,13,22],
-"class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,13,30],
-"class_physical_layer.html#a4b04eb6155b06d8ef400131c647d54e7":[3,0,13,33],
-"class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c":[3,0,13,9],
-"class_physical_layer.html#a56e9cf39bc8847492f7f3cd67ebf1c46":[3,0,13,16],
-"class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62":[3,0,13,0],
-"class_physical_layer.html#a76113e10481743094a1cd0280692b0a9":[3,0,13,7],
-"class_physical_layer.html#a7d3419227d201d6912b77784636d437d":[3,0,13,21],
-"class_physical_layer.html#a88a10657bd2215a11a2331f937414b55":[3,0,13,25],
-"class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab":[3,0,13,20],
-"class_physical_layer.html#a923654706eff5118ef6e84214e837f27":[3,0,13,26],
-"class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c":[3,0,13,4],
-"class_physical_layer.html#a9b720e7776ad7ea805932578907b0058":[3,0,13,10],
-"class_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,13,29],
-"class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26":[3,0,13,1],
-"class_physical_layer.html#ab643a814dce48f71a13bf6ea23f44cbd":[3,0,13,17],
-"class_physical_layer.html#ab76fe7d3e0f453a807b205161c980086":[3,0,13,19],
-"class_physical_layer.html#ab9060e8ab7a2da192b3bf53b3501553b":[3,0,13,23],
-"class_physical_layer.html#ac0313fe86041eb37d290019203e095d3":[3,0,13,36],
-"class_physical_layer.html#acb94e5999123b5a1c63dd279b2a5a251":[3,0,13,34],
-"class_physical_layer.html#acd9171bd71aa80fb86113b612c42de53":[3,0,13,6],
-"class_physical_layer.html#ae5c5757c553100373984a416b6c3690a":[3,0,13,38],
-"class_physical_layer.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,13,12],
-"class_physical_layer.html#ae8dd4f2f60ef4fd1fa1868a7a630ab20":[3,0,13,41],
-"class_physical_layer.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,13,11],
-"class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,13,31],
-"class_physical_layer.html#aeba51a21ad3c6d56b61a55061de7fc92":[3,0,13,3],
-"class_physical_layer.html#af068e6e862c99e39d0261a7971dd56db":[3,0,13,27],
-"class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,13,32],
-"class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,13,13],
-"class_physical_layer.html#afeb005bab389f137def61f1acc3714d3":[3,0,13,37],
-"class_r_f69.html":[3,0,14],
-"class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853":[3,0,14,23],
-"class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847":[3,0,14,73],
-"class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638":[3,0,14,17],
-"class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa":[3,0,14,26],
-"class_r_f69.html#a0d7b67499462777f7909860405ca6b62":[3,0,14,4],
-"class_r_f69.html#a0de2a07f264839cda945faebf7319e0e":[3,0,14,16],
-"class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa":[3,0,14,7],
-"class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b":[3,0,14,47],
-"class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8":[3,0,14,38],
-"class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69":[3,0,14,10],
-"class_r_f69.html#a2023f0f22aad00a702bdf598c2154043":[3,0,14,25],
-"class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1":[3,0,14,64],
-"class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a":[3,0,14,55],
-"class_r_f69.html#a222682569338abb49d6952430b6eebdd":[3,0,14,75],
-"class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed":[3,0,14,18],
-"class_r_f69.html#a26667d50ec845c28e17236c69c886561":[3,0,14,62],
-"class_r_f69.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,14,32],
-"class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9":[3,0,14,19],
-"class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459":[3,0,14,53],
-"class_r_f69.html#a3983b66c83818b4082805bcafc712f00":[3,0,14,28],
-"class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b":[3,0,14,15],
-"class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80":[3,0,14,9],
-"class_r_f69.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,14,69],
-"class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a":[3,0,14,40],
-"class_r_f69.html#a434420f2def6c383608223105469fda1":[3,0,14,54],
-"class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb":[3,0,14,63],
-"class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,14,71],
-"class_r_f69.html#a4b879c689b19036411d884f6657f95db":[3,0,14,43],
-"class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee":[3,0,14,6],
-"class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417":[3,0,14,12],
-"class_r_f69.html#a693faf6ab777d5612392b43152e744cb":[3,0,14,1],
-"class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f":[3,0,14,24],
-"class_r_f69.html#a6d90ad1d455de045c53c5758babd876c":[3,0,14,58],
-"class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a":[3,0,14,61],
-"class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d":[3,0,14,46],
-"class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9":[3,0,14,57],
-"class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0":[3,0,14,11],
-"class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28":[3,0,14,44],
-"class_r_f69.html#a855dc194947b095b821ec1524ba6814c":[3,0,14,68],
-"class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1":[3,0,14,21],
-"class_r_f69.html#a923654706eff5118ef6e84214e837f27":[3,0,14,66],
-"class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942":[3,0,14,2],
-"class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad":[3,0,14,8],
-"class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc":[3,0,14,56],
-"class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a":[3,0,14,52],
-"class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77":[3,0,14,41],
-"class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194":[3,0,14,50],
-"class_r_f69.html#aa6886410230c654400c76ec7710d623c":[3,0,14,14],
-"class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf":[3,0,14,42],
-"class_r_f69.html#aada7c48828b950cdfd260594d502b03d":[3,0,14,59],
-"class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2":[3,0,14,45],
-"class_r_f69.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,14,70],
-"class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b":[3,0,14,48],
-"class_r_f69.html#ab6d98f3f2d964d1833e20da246a5be89":[3,0,14,13],
-"class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c":[3,0,14,51],
-"class_r_f69.html#abd556b0f455f9510213b17588a4baf1b":[3,0,14,33],
-"class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3":[3,0,14,35],
-"class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e":[3,0,14,39],
-"class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703":[3,0,14,36],
-"class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7":[3,0,14,22],
-"class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13":[3,0,14,37],
-"class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be":[3,0,14,49],
-"class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51":[3,0,14,3],
-"class_r_f69.html#ae36e8e6042245621a182b29526fe2245":[3,0,14,31],
-"class_r_f69.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,14,29],
-"class_r_f69.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,14,27],
-"class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3":[3,0,14,5],
-"class_r_f69.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,14,72],
-"class_r_f69.html#af068e6e862c99e39d0261a7971dd56db":[3,0,14,67],
-"class_r_f69.html#af434c67aabe02258ee6696a59973617b":[3,0,14,76],
-"class_r_f69.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,14,74],
-"class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a":[3,0,14,34],
-"class_r_f69.html#afae38fa64242043de34096bf497725f1":[3,0,14,65],
-"class_r_f69.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,14,30],
-"class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448":[3,0,14,0],
-"class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a":[3,0,14,60],
-"class_r_f69.html#afd3a98c6ff75e1036c9ba6d5423851df":[3,0,14,20],
-"class_r_f_m22.html":[3,0,15],
-"class_r_f_m23.html":[3,0,16],
-"class_r_f_m95.html":[3,0,17],
-"class_r_f_m95.html#a5c37eaf6ae8c558a9a623157dd9f894a":[3,0,17,1],
-"class_r_f_m95.html#a7e0f8fa59ddd48f7b026b0f996202b30":[3,0,17,2],
-"class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326":[3,0,17,0],
-"class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87":[3,0,17,3],
-"class_r_f_m96.html":[3,0,18],
-"class_r_f_m96.html#a82ef1b7354238637eee6f4d65b9be6e5":[3,0,18,2],
-"class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a":[3,0,18,0],
-"class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84":[3,0,18,3],
-"class_r_f_m96.html#aef1588799e5855cb464259e8ce2d865b":[3,0,18,1],
-"class_r_f_m97.html":[3,0,19],
-"class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be":[3,0,19,0],
-"class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67":[3,0,19,1],
-"class_r_f_m98.html":[3,0,20],
-"class_r_t_t_y_client.html":[3,0,21],
-"class_r_t_t_y_client.html#a02feea7bcdeaee42f91507d34399777d":[3,0,21,21],
-"class_r_t_t_y_client.html#a05633ffc5007424aaa97b55f9bb4832f":[3,0,21,6],
-"class_r_t_t_y_client.html#a077a21423deee0393cead0b3a239691f":[3,0,21,30],
-"class_r_t_t_y_client.html#a094aa9c3506c0620d01e9c5e04a60e3e":[3,0,21,28],
-"class_r_t_t_y_client.html#a0b131a635864b56e8e4ed7450d69c593":[3,0,21,7],
-"class_r_t_t_y_client.html#a3854b00703118c3f024eb032216b3d6d":[3,0,21,13],
-"class_r_t_t_y_client.html#a49169d8cf3b4121f6930a9c70e3dc9dc":[3,0,21,29],
-"class_r_t_t_y_client.html#a4cdfebbf555f3e02e650df8eef2386b8":[3,0,21,25],
-"class_r_t_t_y_client.html#a4dc1637ed62069b787d27779c7a5982f":[3,0,21,14],
-"class_r_t_t_y_client.html#a523a0617c3729989e18405096e5283d5":[3,0,21,11],
-"class_r_t_t_y_client.html#a56981a884b5d76d820493dddb7d605ec":[3,0,21,24],
-"class_r_t_t_y_client.html#a59962fb30c431d5e975cd82fcfb0b86d":[3,0,21,12],
-"class_r_t_t_y_client.html#a5fc5f8235ec0a330ae602b162e09c8bb":[3,0,21,5],
-"class_r_t_t_y_client.html#a6c005f4bf067d1bfa6ef7793ffb25d16":[3,0,21,22],
-"class_r_t_t_y_client.html#a7201a35a28f1c43ab16c71b69153e232":[3,0,21,15],
-"class_r_t_t_y_client.html#a73281624d10f9c05810527f4762fdeb9":[3,0,21,23],
-"class_r_t_t_y_client.html#a7a2c72461356b6569a2076436a14d94b":[3,0,21,8],
-"class_r_t_t_y_client.html#a7ec7cc1dd981198972a0d4ad031dd987":[3,0,21,17],
-"class_r_t_t_y_client.html#a7f45fcc2c241a95939d34560f5631664":[3,0,21,10],
-"class_r_t_t_y_client.html#a9086c57441dc8712d940a0186e3c573e":[3,0,21,16],
-"class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22":[3,0,21,27],
-"class_r_t_t_y_client.html#ab0e11944c2f1e2c60fc45bcd2db18570":[3,0,21,1],
-"class_r_t_t_y_client.html#ab31265a133757ae99b1fd6de074a1824":[3,0,21,4],
-"class_r_t_t_y_client.html#ac1ce7543eccd14a22865c1cb7b1bc69f":[3,0,21,20],
-"class_r_t_t_y_client.html#ac477e65ea756e56bb9043d778a51b4bc":[3,0,21,3],
-"class_r_t_t_y_client.html#ac4ae2458f8005c87161c74cf827d35b9":[3,0,21,2],
-"class_r_t_t_y_client.html#ac5d60281fe24f0724ffd727034d2851d":[3,0,21,26],
-"class_r_t_t_y_client.html#ac6b22c13d227bca5ac80ce3fa855f75a":[3,0,21,9],
-"class_r_t_t_y_client.html#ae4f9506d85cde12c8265d71b5088dec6":[3,0,21,19],
-"class_r_t_t_y_client.html#ae6bc08fa88457ee00a992448be1d63ea":[3,0,21,0],
-"class_r_t_t_y_client.html#af51f7af5ca169a1dcfab604789b466dc":[3,0,21,18],
-"class_s_s_t_v_client.html":[3,0,26],
-"class_s_s_t_v_client.html#a0126ac04934f589b8cb04a038c342044":[3,0,26,5],
-"class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e":[3,0,26,8],
-"class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e":[3,0,26,6],
-"class_s_s_t_v_client.html#a3769dcdebf8b1fa01eb2d8bd2bb3815a":[3,0,26,3],
-"class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0":[3,0,26,7],
-"class_s_s_t_v_client.html#a99e46bec8403dfc36b9e5b102b1f7cf1":[3,0,26,1],
-"class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d":[3,0,26,4],
-"class_s_s_t_v_client.html#af15cf501c00172270d2d2c43d7a7100a":[3,0,26,0],
-"class_s_s_t_v_client.html#afd4257e858a88e5847854a46f166a9b0":[3,0,26,2],
-"class_s_x1231.html":[3,0,28],
-"class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244":[3,0,28,1],
-"class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269":[3,0,28,0],
-"class_s_x1261.html":[3,0,29],
-"class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35":[3,0,29,0],
-"class_s_x1261.html#aa541f927995a1756c651b93fd24edc65":[3,0,29,1],
-"class_s_x1262.html":[3,0,30],
-"class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d":[3,0,30,0],
-"class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6":[3,0,30,4],
-"class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1":[3,0,30,2],
-"class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc":[3,0,30,1],
-"class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc":[3,0,30,5],
-"class_s_x1262.html#abb018b820eb71ca6b0cd92c62affa767":[3,0,30,3],
-"class_s_x1268.html":[3,0,31],
-"class_s_x1268.html#a59b538f4971525849b7aaa3456de9929":[3,0,31,4],
-"class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45":[3,0,31,5],
-"class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f":[3,0,31,0],
-"class_s_x1268.html#abf338b7036d692a4a8ca6bf305c0cb12":[3,0,31,3],
-"class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71":[3,0,31,1],
-"class_s_x1268.html#af6b041392136b599eec57085e2067a6f":[3,0,31,2],
-"class_s_x126x.html":[3,0,32],
-"class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d":[3,0,32,40],
-"class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925":[3,0,32,17],
-"class_s_x126x.html#a10a0e75571350fb05fa100e5d5151be2":[3,0,32,60],
-"class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676":[3,0,32,39],
-"class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2":[3,0,32,48],
-"class_s_x126x.html#a288257242e483cb3eb6944333179dd26":[3,0,32,49],
-"class_s_x126x.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,32,29],
-"class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60":[3,0,32,43],
-"class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c":[3,0,32,3],
-"class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08":[3,0,32,33],
-"class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2":[3,0,32,25],
-"class_s_x126x.html#a3765f534418d4e0540c179621c019138":[3,0,32,6]
+"class_module.html#af998b86ce1243f616f6fcb6df5336207":[3,0,10,19],
+"class_morse_client.html":[3,0,11],
+"class_morse_client.html#a051cba718c88b0d25a0f6f6dbfeb1e46":[3,0,11,3],
+"class_morse_client.html#a1125d874d18a507b2e77675b687cce0f":[3,0,11,4],
+"class_morse_client.html#a178726e7279d49d873c715371d558751":[3,0,11,15],
+"class_morse_client.html#a1b7a4467adf49a3afa062fc93bf6f80f":[3,0,11,9],
+"class_morse_client.html#a1be826249b4936e2b0bca20311714726":[3,0,11,26],
+"class_morse_client.html#a2040051afe09bbd4fada12bdf76203b1":[3,0,11,6],
+"class_morse_client.html#a2f4433a88741564f28f673cf51486615":[3,0,11,13],
+"class_morse_client.html#a2fcdfba81f12782f44fff8fdf845ea0b":[3,0,11,8],
+"class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3":[3,0,11,25],
+"class_morse_client.html#a516f19bb51b87ead7f7ed149f2ca92cf":[3,0,11,2],
+"class_morse_client.html#a5714515867807053a63843d5ae647dd1":[3,0,11,11],
+"class_morse_client.html#a5e0ecaccbc92e6790f73542133c34535":[3,0,11,5],
+"class_morse_client.html#a64e20542281e100ab92ebe5e8f915c3c":[3,0,11,7],
+"class_morse_client.html#a709093c92d69f29f1520f0b290af374b":[3,0,11,24],
+"class_morse_client.html#a7eecc8f5a61115b39fa67f1f7be4747e":[3,0,11,20],
+"class_morse_client.html#a83a064f138d5bf55420ffbfd534dacfb":[3,0,11,16],
+"class_morse_client.html#a8b54b926bcd4115822e4c901371f1e53":[3,0,11,10],
+"class_morse_client.html#a9094ea2ccb2528be5a830485575e2b5e":[3,0,11,21],
+"class_morse_client.html#a95d0edd2ab9a590668c6aaa67a893c49":[3,0,11,22],
+"class_morse_client.html#a9b46b2755abd59ece4abd69fab4f7808":[3,0,11,27],
+"class_morse_client.html#aa26d803db2d9ab6f3b13f843811f923f":[3,0,11,14],
+"class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2":[3,0,11,1],
+"class_morse_client.html#aa930ef3852b22e973129daf2ceaf58c3":[3,0,11,18],
+"class_morse_client.html#abcbc1b964ddb20984c3d6f32f07c8cce":[3,0,11,12],
+"class_morse_client.html#abd37869212f3338eb7c95c6f16dadbba":[3,0,11,28],
+"class_morse_client.html#ae1dd17e96858c9b6948ee7e5871c7efd":[3,0,11,23],
+"class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a":[3,0,11,0],
+"class_morse_client.html#af466855a342b3cc70b496a79caf65232":[3,0,11,17],
+"class_morse_client.html#afea22f16b6360e122116da4b7b6cc2f7":[3,0,11,19],
+"class_pager_client.html":[3,0,13],
+"class_pager_client.html#a1a1dc569f9b60b0ddd6ead7af5a8244f":[3,0,13,2],
+"class_pager_client.html#a77aafe7c86e6e1e4e22990be4e7f090b":[3,0,13,9],
+"class_pager_client.html#a897f990002a4a2196fcdb31c547e0648":[3,0,13,8],
+"class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111":[3,0,13,5],
+"class_pager_client.html#a9f978120467b13104fb356e9b7d855ec":[3,0,13,0],
+"class_pager_client.html#aab6a8977f89d43620b98bcedf5a47dbd":[3,0,13,7],
+"class_pager_client.html#ac000d0d6b1eb389ead95290f8895d02d":[3,0,13,3],
+"class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b":[3,0,13,4],
+"class_pager_client.html#ad6f4f034b71311144f76b629a8ef8f8d":[3,0,13,6],
+"class_pager_client.html#aec073fa9e5adcff9730482d9583715e9":[3,0,13,1],
+"class_physical_layer.html":[3,0,14],
+"class_physical_layer.html#a0012621c1414f4c7573e961b57884a5b":[3,0,14,35],
+"class_physical_layer.html#a018393f703a257e39cd263cccf4ffad5":[3,0,14,40],
+"class_physical_layer.html#a1a5985308904261dd431f373d47ddee4":[3,0,14,8],
+"class_physical_layer.html#a1de26f68b939f5af79ec29cc34c7be18":[3,0,14,3],
+"class_physical_layer.html#a2f4f9b428d9ea9af886ca85e5088ed7b":[3,0,14,23],
+"class_physical_layer.html#a2fe95169b5cdc8cabe1f2af66cad6ef6":[3,0,14,5],
+"class_physical_layer.html#a3563453988a83d22dd07d4691543a300":[3,0,14,12],
+"class_physical_layer.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,14,32],
+"class_physical_layer.html#a41ff2710d9e3a626becfa7a093900052":[3,0,14,39],
+"class_physical_layer.html#a429796eb2e7ea86781a2e8ca42af43f3":[3,0,14,2],
+"class_physical_layer.html#a47c1d94d2ad2fd7eb5d11480b44cc368":[3,0,14,18],
+"class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,14,30],
+"class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c":[3,0,14,9],
+"class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62":[3,0,14,0],
+"class_physical_layer.html#a76113e10481743094a1cd0280692b0a9":[3,0,14,7],
+"class_physical_layer.html#a88a10657bd2215a11a2331f937414b55":[3,0,14,25],
+"class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e":[3,0,14,22],
+"class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab":[3,0,14,20],
+"class_physical_layer.html#a923654706eff5118ef6e84214e837f27":[3,0,14,26],
+"class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c":[3,0,14,4],
+"class_physical_layer.html#aa4c99ac794ee653c2061be4201724b65":[3,0,14,33],
+"class_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,14,29],
+"class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26":[3,0,14,1],
+"class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,14,14],
+"class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966":[3,0,14,19],
+"class_physical_layer.html#ac0313fe86041eb37d290019203e095d3":[3,0,14,36],
+"class_physical_layer.html#acb45b2342400a03a914a91d2ac7fb488":[3,0,14,21],
+"class_physical_layer.html#acb94e5999123b5a1c63dd279b2a5a251":[3,0,14,34],
+"class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018":[3,0,14,24],
+"class_physical_layer.html#acd9171bd71aa80fb86113b612c42de53":[3,0,14,6],
+"class_physical_layer.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,14,28],
+"class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6":[3,0,14,15],
+"class_physical_layer.html#ae5c5757c553100373984a416b6c3690a":[3,0,14,38],
+"class_physical_layer.html#ae868adcc63ee0869999e8ccac86b6ff2":[3,0,14,10],
+"class_physical_layer.html#ae8dd4f2f60ef4fd1fa1868a7a630ab20":[3,0,14,41],
+"class_physical_layer.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,14,11],
+"class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,14,31],
+"class_physical_layer.html#aeba04366a0cf05ff3d8227c4f7c8e1e9":[3,0,14,17],
+"class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c":[3,0,14,16],
+"class_physical_layer.html#af068e6e862c99e39d0261a7971dd56db":[3,0,14,27],
+"class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,14,13],
+"class_physical_layer.html#afeb005bab389f137def61f1acc3714d3":[3,0,14,37],
+"class_r_f69.html":[3,0,15],
+"class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853":[3,0,15,23],
+"class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847":[3,0,15,74],
+"class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638":[3,0,15,17],
+"class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa":[3,0,15,26],
+"class_r_f69.html#a0d7b67499462777f7909860405ca6b62":[3,0,15,4],
+"class_r_f69.html#a0de2a07f264839cda945faebf7319e0e":[3,0,15,16],
+"class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa":[3,0,15,7],
+"class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b":[3,0,15,47],
+"class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8":[3,0,15,38],
+"class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69":[3,0,15,10],
+"class_r_f69.html#a2023f0f22aad00a702bdf598c2154043":[3,0,15,25],
+"class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1":[3,0,15,64],
+"class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a":[3,0,15,55],
+"class_r_f69.html#a222682569338abb49d6952430b6eebdd":[3,0,15,75],
+"class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed":[3,0,15,18],
+"class_r_f69.html#a26667d50ec845c28e17236c69c886561":[3,0,15,62],
+"class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9":[3,0,15,19],
+"class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459":[3,0,15,53],
+"class_r_f69.html#a3563453988a83d22dd07d4691543a300":[3,0,15,28],
+"class_r_f69.html#a3983b66c83818b4082805bcafc712f00":[3,0,15,29],
+"class_r_f69.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,15,73],
+"class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b":[3,0,15,15],
+"class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80":[3,0,15,9],
+"class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a":[3,0,15,40],
+"class_r_f69.html#a434420f2def6c383608223105469fda1":[3,0,15,54],
+"class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb":[3,0,15,63],
+"class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,15,71],
+"class_r_f69.html#a4b879c689b19036411d884f6657f95db":[3,0,15,43],
+"class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee":[3,0,15,6],
+"class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417":[3,0,15,12],
+"class_r_f69.html#a693faf6ab777d5612392b43152e744cb":[3,0,15,1],
+"class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f":[3,0,15,24],
+"class_r_f69.html#a6d90ad1d455de045c53c5758babd876c":[3,0,15,58],
+"class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a":[3,0,15,61],
+"class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d":[3,0,15,46],
+"class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9":[3,0,15,57],
+"class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0":[3,0,15,11],
+"class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28":[3,0,15,44],
+"class_r_f69.html#a855dc194947b095b821ec1524ba6814c":[3,0,15,69],
+"class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1":[3,0,15,21],
+"class_r_f69.html#a923654706eff5118ef6e84214e837f27":[3,0,15,66],
+"class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942":[3,0,15,2],
+"class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad":[3,0,15,8],
+"class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc":[3,0,15,56],
+"class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a":[3,0,15,52],
+"class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77":[3,0,15,41],
+"class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194":[3,0,15,50],
+"class_r_f69.html#aa6886410230c654400c76ec7710d623c":[3,0,15,14],
+"class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf":[3,0,15,42],
+"class_r_f69.html#aada7c48828b950cdfd260594d502b03d":[3,0,15,59],
+"class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2":[3,0,15,45],
+"class_r_f69.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,15,70],
+"class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b":[3,0,15,48],
+"class_r_f69.html#ab6d98f3f2d964d1833e20da246a5be89":[3,0,15,13],
+"class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,15,31],
+"class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c":[3,0,15,51],
+"class_r_f69.html#abd556b0f455f9510213b17588a4baf1b":[3,0,15,33],
+"class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3":[3,0,15,35],
+"class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e":[3,0,15,39],
+"class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703":[3,0,15,36],
+"class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7":[3,0,15,22],
+"class_r_f69.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,15,68],
+"class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13":[3,0,15,37],
+"class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be":[3,0,15,49],
+"class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51":[3,0,15,3],
+"class_r_f69.html#ae36e8e6042245621a182b29526fe2245":[3,0,15,32],
+"class_r_f69.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,15,27],
+"class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3":[3,0,15,5],
+"class_r_f69.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,15,72],
+"class_r_f69.html#af068e6e862c99e39d0261a7971dd56db":[3,0,15,67],
+"class_r_f69.html#af434c67aabe02258ee6696a59973617b":[3,0,15,76],
+"class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a":[3,0,15,34],
+"class_r_f69.html#afae38fa64242043de34096bf497725f1":[3,0,15,65],
+"class_r_f69.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,15,30],
+"class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448":[3,0,15,0],
+"class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a":[3,0,15,60],
+"class_r_f69.html#afd3a98c6ff75e1036c9ba6d5423851df":[3,0,15,20],
+"class_r_f_m22.html":[3,0,16],
+"class_r_f_m23.html":[3,0,17],
+"class_r_f_m95.html":[3,0,18],
+"class_r_f_m95.html#a5c37eaf6ae8c558a9a623157dd9f894a":[3,0,18,1],
+"class_r_f_m95.html#a7e0f8fa59ddd48f7b026b0f996202b30":[3,0,18,2],
+"class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326":[3,0,18,0],
+"class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87":[3,0,18,3],
+"class_r_f_m96.html":[3,0,19],
+"class_r_f_m96.html#a82ef1b7354238637eee6f4d65b9be6e5":[3,0,19,2],
+"class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a":[3,0,19,0],
+"class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84":[3,0,19,3],
+"class_r_f_m96.html#aef1588799e5855cb464259e8ce2d865b":[3,0,19,1],
+"class_r_f_m97.html":[3,0,20],
+"class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be":[3,0,20,0],
+"class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67":[3,0,20,1],
+"class_r_f_m98.html":[3,0,21],
+"class_r_t_t_y_client.html":[3,0,22],
+"class_r_t_t_y_client.html#a02feea7bcdeaee42f91507d34399777d":[3,0,22,21],
+"class_r_t_t_y_client.html#a05633ffc5007424aaa97b55f9bb4832f":[3,0,22,6],
+"class_r_t_t_y_client.html#a077a21423deee0393cead0b3a239691f":[3,0,22,30],
+"class_r_t_t_y_client.html#a094aa9c3506c0620d01e9c5e04a60e3e":[3,0,22,28],
+"class_r_t_t_y_client.html#a0b131a635864b56e8e4ed7450d69c593":[3,0,22,7],
+"class_r_t_t_y_client.html#a3854b00703118c3f024eb032216b3d6d":[3,0,22,13],
+"class_r_t_t_y_client.html#a49169d8cf3b4121f6930a9c70e3dc9dc":[3,0,22,29],
+"class_r_t_t_y_client.html#a4cdfebbf555f3e02e650df8eef2386b8":[3,0,22,25],
+"class_r_t_t_y_client.html#a4dc1637ed62069b787d27779c7a5982f":[3,0,22,14],
+"class_r_t_t_y_client.html#a523a0617c3729989e18405096e5283d5":[3,0,22,11],
+"class_r_t_t_y_client.html#a56981a884b5d76d820493dddb7d605ec":[3,0,22,24],
+"class_r_t_t_y_client.html#a59962fb30c431d5e975cd82fcfb0b86d":[3,0,22,12],
+"class_r_t_t_y_client.html#a5fc5f8235ec0a330ae602b162e09c8bb":[3,0,22,5],
+"class_r_t_t_y_client.html#a6c005f4bf067d1bfa6ef7793ffb25d16":[3,0,22,22],
+"class_r_t_t_y_client.html#a7201a35a28f1c43ab16c71b69153e232":[3,0,22,15],
+"class_r_t_t_y_client.html#a73281624d10f9c05810527f4762fdeb9":[3,0,22,23],
+"class_r_t_t_y_client.html#a7a2c72461356b6569a2076436a14d94b":[3,0,22,8],
+"class_r_t_t_y_client.html#a7ec7cc1dd981198972a0d4ad031dd987":[3,0,22,17],
+"class_r_t_t_y_client.html#a7f45fcc2c241a95939d34560f5631664":[3,0,22,10],
+"class_r_t_t_y_client.html#a9086c57441dc8712d940a0186e3c573e":[3,0,22,16],
+"class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22":[3,0,22,27],
+"class_r_t_t_y_client.html#ab0e11944c2f1e2c60fc45bcd2db18570":[3,0,22,1],
+"class_r_t_t_y_client.html#ab31265a133757ae99b1fd6de074a1824":[3,0,22,4],
+"class_r_t_t_y_client.html#ac1ce7543eccd14a22865c1cb7b1bc69f":[3,0,22,20],
+"class_r_t_t_y_client.html#ac477e65ea756e56bb9043d778a51b4bc":[3,0,22,3],
+"class_r_t_t_y_client.html#ac4ae2458f8005c87161c74cf827d35b9":[3,0,22,2],
+"class_r_t_t_y_client.html#ac5d60281fe24f0724ffd727034d2851d":[3,0,22,26],
+"class_r_t_t_y_client.html#ac6b22c13d227bca5ac80ce3fa855f75a":[3,0,22,9],
+"class_r_t_t_y_client.html#ae4f9506d85cde12c8265d71b5088dec6":[3,0,22,19],
+"class_r_t_t_y_client.html#ae6bc08fa88457ee00a992448be1d63ea":[3,0,22,0],
+"class_r_t_t_y_client.html#af51f7af5ca169a1dcfab604789b466dc":[3,0,22,18],
+"class_s_s_t_v_client.html":[3,0,27],
+"class_s_s_t_v_client.html#a0126ac04934f589b8cb04a038c342044":[3,0,27,5],
+"class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e":[3,0,27,8],
+"class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e":[3,0,27,6],
+"class_s_s_t_v_client.html#a3769dcdebf8b1fa01eb2d8bd2bb3815a":[3,0,27,3],
+"class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0":[3,0,27,7],
+"class_s_s_t_v_client.html#a99e46bec8403dfc36b9e5b102b1f7cf1":[3,0,27,1],
+"class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d":[3,0,27,4],
+"class_s_s_t_v_client.html#af15cf501c00172270d2d2c43d7a7100a":[3,0,27,0],
+"class_s_s_t_v_client.html#afd4257e858a88e5847854a46f166a9b0":[3,0,27,2],
+"class_s_x1231.html":[3,0,29],
+"class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244":[3,0,29,1],
+"class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269":[3,0,29,0],
+"class_s_x1261.html":[3,0,30],
+"class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35":[3,0,30,0],
+"class_s_x1261.html#aa541f927995a1756c651b93fd24edc65":[3,0,30,1],
+"class_s_x1262.html":[3,0,31],
+"class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d":[3,0,31,0],
+"class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6":[3,0,31,4],
+"class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1":[3,0,31,2],
+"class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc":[3,0,31,1],
+"class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc":[3,0,31,5],
+"class_s_x1262.html#abb018b820eb71ca6b0cd92c62affa767":[3,0,31,3],
+"class_s_x1268.html":[3,0,32],
+"class_s_x1268.html#a59b538f4971525849b7aaa3456de9929":[3,0,32,4],
+"class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45":[3,0,32,5],
+"class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f":[3,0,32,0],
+"class_s_x1268.html#abf338b7036d692a4a8ca6bf305c0cb12":[3,0,32,3],
+"class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71":[3,0,32,1],
+"class_s_x1268.html#af6b041392136b599eec57085e2067a6f":[3,0,32,2],
+"class_s_x126x.html":[3,0,33],
+"class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d":[3,0,33,40],
+"class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925":[3,0,33,17],
+"class_s_x126x.html#a10a0e75571350fb05fa100e5d5151be2":[3,0,33,60],
+"class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676":[3,0,33,39],
+"class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2":[3,0,33,48],
+"class_s_x126x.html#a288257242e483cb3eb6944333179dd26":[3,0,33,49],
+"class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60":[3,0,33,43],
+"class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c":[3,0,33,3]
};
diff --git a/navtreeindex2.js b/navtreeindex2.js
index 0b68b973..aaf0b610 100644
--- a/navtreeindex2.js
+++ b/navtreeindex2.js
@@ -1,253 +1,253 @@
var NAVTREEINDEX2 =
{
-"class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf":[3,0,32,53],
-"class_s_x126x.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,32,67],
-"class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8":[3,0,32,9],
-"class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,32,69],
-"class_s_x126x.html#a514cabe74bbe3434d7e4f244c4077752":[3,0,32,45],
-"class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6":[3,0,32,55],
-"class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22":[3,0,32,50],
-"class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8":[3,0,32,47],
-"class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376":[3,0,32,56],
-"class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd":[3,0,32,4],
-"class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f":[3,0,32,63],
-"class_s_x126x.html#a755e7df4b0958f7c793d0c058408831a":[3,0,32,32],
-"class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71":[3,0,32,58],
-"class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3":[3,0,32,44],
-"class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e":[3,0,32,34],
-"class_s_x126x.html#a7e342ddbef84cf845bef8f4448b8da10":[3,0,32,20],
-"class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561":[3,0,32,22],
-"class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435":[3,0,32,30],
-"class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e":[3,0,32,7],
-"class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e":[3,0,32,38],
-"class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b":[3,0,32,73],
-"class_s_x126x.html#a923654706eff5118ef6e84214e837f27":[3,0,32,64],
-"class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d":[3,0,32,74],
-"class_s_x126x.html#a936a40038e05740a528f2b53f8e17010":[3,0,32,2],
-"class_s_x126x.html#a95007639c2648a1dbb614493224606f1":[3,0,32,37],
-"class_s_x126x.html#a9a9b090eddcb811ee19b595debfab1df":[3,0,32,13],
-"class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f":[3,0,32,31],
-"class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f":[3,0,32,54],
-"class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab":[3,0,32,11],
-"class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009":[3,0,32,71],
-"class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8":[3,0,32,0],
-"class_s_x126x.html#aae1af90432c457e5bf8f8f362295399b":[3,0,32,15],
-"class_s_x126x.html#ab00f765bbfbfaa8c693532ea3a90c29b":[3,0,32,46],
-"class_s_x126x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,32,68],
-"class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1":[3,0,32,66],
-"class_s_x126x.html#ab9ce38cfeaa36ddcc2d82b2974d7088c":[3,0,32,1],
-"class_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a":[3,0,32,42],
-"class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5":[3,0,32,8],
-"class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034":[3,0,32,35],
-"class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f":[3,0,32,10],
-"class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987":[3,0,32,16],
-"class_s_x126x.html#ac594fbb30c5010658c970a64654c7162":[3,0,32,52],
-"class_s_x126x.html#ac71eb1209354837ced2e21e66534bff3":[3,0,32,14],
-"class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9":[3,0,32,12],
-"class_s_x126x.html#ad7569396f09f3867dc1bd4d4a0613acd":[3,0,32,59],
-"class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136":[3,0,32,62],
-"class_s_x126x.html#adec09cba71494bd927ad1da786606ca6":[3,0,32,21],
-"class_s_x126x.html#ae36664f9c605a8fe74b2f357e0ec3323":[3,0,32,18],
-"class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca":[3,0,32,19],
-"class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0":[3,0,32,28],
-"class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf":[3,0,32,41],
-"class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d":[3,0,32,51],
-"class_s_x126x.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,32,26],
-"class_s_x126x.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,32,24],
-"class_s_x126x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,32,70],
-"class_s_x126x.html#aeb92dc9d2e2a2b3a3a5ff2856528d497":[3,0,32,61],
-"class_s_x126x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,32,65],
-"class_s_x126x.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,32,72],
-"class_s_x126x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,32,27],
-"class_s_x126x.html#afb5509f0705cdd971065251ed6b2fb4e":[3,0,32,57],
-"class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2":[3,0,32,5],
-"class_s_x126x.html#afd3113858966e878e9c67a1e710bd586":[3,0,32,36],
-"class_s_x126x.html#aff80db65e546934980feac7e6c81dd80":[3,0,32,23],
-"class_s_x1272.html":[3,0,33],
-"class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac":[3,0,33,8],
-"class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b":[3,0,33,9],
-"class_s_x1272.html#a0d8e68cf913422535dc43cbdf73a3f10":[3,0,33,6],
-"class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47":[3,0,33,13],
-"class_s_x1272.html#a4aaf9d61310fa7b4fce413ae53d30ac0":[3,0,33,5],
-"class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3":[3,0,33,7],
-"class_s_x1272.html#a6677a04aa0c2f3bbde2509786b6a66de":[3,0,33,16],
-"class_s_x1272.html#a82084ac58502c83d2ada998410307490":[3,0,33,17],
-"class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260":[3,0,33,3],
-"class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea":[3,0,33,12],
-"class_s_x1272.html#a960913438feccad4c1913a9222384a5f":[3,0,33,10],
-"class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626":[3,0,33,0],
-"class_s_x1272.html#abb4bbfe8acc6026c833d267d78417b63":[3,0,33,1],
-"class_s_x1272.html#abd912314a977f92c464d36d862329ffc":[3,0,33,11],
-"class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852":[3,0,33,15],
-"class_s_x1272.html#ae3c9704cb58232f696b5f90f69c115f7":[3,0,33,4],
-"class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9":[3,0,33,2],
-"class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8":[3,0,33,14],
-"class_s_x1273.html":[3,0,34],
-"class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2":[3,0,34,1],
-"class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f":[3,0,34,2],
-"class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b":[3,0,34,0],
-"class_s_x1276.html":[3,0,35],
-"class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008":[3,0,35,3],
-"class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b":[3,0,35,0],
-"class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7":[3,0,35,1],
-"class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840":[3,0,35,2],
-"class_s_x1277.html":[3,0,36],
-"class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf":[3,0,36,4],
-"class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda":[3,0,36,0],
-"class_s_x1277.html#a42adde5eecccdca95214980848795e82":[3,0,36,3],
-"class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3":[3,0,36,1],
-"class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44":[3,0,36,2],
-"class_s_x1278.html":[3,0,37],
-"class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e":[3,0,37,0],
-"class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4":[3,0,37,13],
-"class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6":[3,0,37,9],
-"class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e":[3,0,37,7],
-"class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4":[3,0,37,14],
-"class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad":[3,0,37,8],
-"class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856":[3,0,37,5],
-"class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1":[3,0,37,4],
-"class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88":[3,0,37,16],
-"class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1":[3,0,37,10],
-"class_s_x1278.html#a86464af008b71d12948690b780280e7d":[3,0,37,3],
-"class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf":[3,0,37,2],
-"class_s_x1278.html#aa57b713988cfa224a6db2ff325052931":[3,0,37,15],
-"class_s_x1278.html#ac0be7586b8e40355bbd29d78ae9941d1":[3,0,37,11],
-"class_s_x1278.html#ae02adcde8c2978c0d1b157729dd5df1e":[3,0,37,1],
-"class_s_x1278.html#ae52d84fa301309a4a4294312571fc3b8":[3,0,37,6],
-"class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08":[3,0,37,17],
-"class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563":[3,0,37,12],
-"class_s_x1279.html":[3,0,38],
-"class_s_x1279.html#a324a37dee0522f43692cd414141becc2":[3,0,38,1],
-"class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b":[3,0,38,2],
-"class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a":[3,0,38,0],
-"class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817":[3,0,38,3],
-"class_s_x127x.html":[3,0,39],
-"class_s_x127x.html#a071442611a32154e8b3db7981f242a53":[3,0,39,31],
-"class_s_x127x.html#a0995088d37689a3c240a1af791df6cf1":[3,0,39,29],
-"class_s_x127x.html#a0f041e91ab2fbb6f05eef56b5addac71":[3,0,39,7],
-"class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538":[3,0,39,60],
-"class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa":[3,0,39,10],
-"class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c":[3,0,39,85],
-"class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059":[3,0,39,73],
-"class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04":[3,0,39,28],
-"class_s_x127x.html#a201c31366f32c41b801724fb662265c1":[3,0,39,56],
-"class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee":[3,0,39,59],
-"class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a":[3,0,39,12],
-"class_s_x127x.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,39,37],
-"class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53":[3,0,39,68],
-"class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc":[3,0,39,23],
-"class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68":[3,0,39,39],
-"class_s_x127x.html#a36dbd1697a415c6db3b47cd620c8c02e":[3,0,39,11],
-"class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002":[3,0,39,47],
-"class_s_x127x.html#a41089d9e5b45217d3e31ac22b5326b66":[3,0,39,5],
-"class_s_x127x.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,39,78],
-"class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e":[3,0,39,41],
-"class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df":[3,0,39,71],
-"class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679":[3,0,39,57],
-"class_s_x127x.html#a462fa74275e67c296328a01f361892d5":[3,0,39,24],
-"class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54":[3,0,39,62],
-"class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,39,80],
-"class_s_x127x.html#a4c27736905cf848a67d6cbc92df823b8":[3,0,39,22],
-"class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544":[3,0,39,15],
-"class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76":[3,0,39,67],
-"class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c":[3,0,39,18],
-"class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430":[3,0,39,1],
-"class_s_x127x.html#a606d839b3a992c681ac9ad7ca6020022":[3,0,39,44],
-"class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef":[3,0,39,43],
-"class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450":[3,0,39,30],
-"class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359":[3,0,39,14],
-"class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb":[3,0,39,55],
-"class_s_x127x.html#a71ecfed743942c4195d8668e8588a0fc":[3,0,39,48],
-"class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823":[3,0,39,3],
-"class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41":[3,0,39,72],
-"class_s_x127x.html#a7b85344084b800966a46ace59dcb5277":[3,0,39,51],
-"class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1":[3,0,39,54],
-"class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f":[3,0,39,13],
-"class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd":[3,0,39,9],
-"class_s_x127x.html#a8b93142202167270db109d18b743c744":[3,0,39,63],
-"class_s_x127x.html#a923654706eff5118ef6e84214e837f27":[3,0,39,75],
-"class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1":[3,0,39,26],
-"class_s_x127x.html#a9b3a76eb89cad60dcad92513e6848f5a":[3,0,39,46],
-"class_s_x127x.html#a9b6532a25e1730973ac08146008adca5":[3,0,39,4],
-"class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc":[3,0,39,69],
-"class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29":[3,0,39,82],
-"class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238":[3,0,39,52],
-"class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f":[3,0,39,38],
-"class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1":[3,0,39,6],
-"class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d":[3,0,39,61],
-"class_s_x127x.html#ab0f67330124cefc07a462e77922453d0":[3,0,39,42],
-"class_s_x127x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,39,79],
-"class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed":[3,0,39,64],
-"class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95":[3,0,39,58],
-"class_s_x127x.html#abad2d455012bd28d304589c8164390eb":[3,0,39,53],
-"class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb":[3,0,39,25],
-"class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40":[3,0,39,45],
-"class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745":[3,0,39,33],
-"class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde":[3,0,39,70],
-"class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d":[3,0,39,21],
-"class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c":[3,0,39,0],
-"class_s_x127x.html#ad3955f85f456edae772a51025a19029b":[3,0,39,66],
-"class_s_x127x.html#ad532e1a62c6ee2c58f9517e6e62728ac":[3,0,39,27],
-"class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617":[3,0,39,19],
-"class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5":[3,0,39,40],
-"class_s_x127x.html#adbea7515add3d81c3024ceb0d570266b":[3,0,39,50],
-"class_s_x127x.html#adc25b685de0859b799488bf7729350b6":[3,0,39,17],
-"class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083":[3,0,39,77],
-"class_s_x127x.html#add78edb65673d9e88931a55b0672a9f3":[3,0,39,2],
-"class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c":[3,0,39,36],
-"class_s_x127x.html#adffb96b7f80dc43909bb4cebde68fe9d":[3,0,39,74],
-"class_s_x127x.html#ae72f140bc934016411d7d54ebc14d69c":[3,0,39,49],
-"class_s_x127x.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,39,34],
-"class_s_x127x.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,39,32],
-"class_s_x127x.html#ae9781180418c1ec9c365b74acbc98d8a":[3,0,39,65],
-"class_s_x127x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,39,81],
-"class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd":[3,0,39,16],
-"class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84":[3,0,39,84],
-"class_s_x127x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,39,76],
-"class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362":[3,0,39,20],
-"class_s_x127x.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,39,83],
-"class_s_x127x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,39,35],
-"class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5":[3,0,39,8],
-"class_s_x1280.html":[3,0,40],
-"class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb":[3,0,40,0],
-"class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2":[3,0,40,2],
-"class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10":[3,0,40,3],
-"class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f":[3,0,40,1],
-"class_s_x1281.html":[3,0,41],
-"class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998":[3,0,41,0],
-"class_s_x1282.html":[3,0,42],
-"class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232":[3,0,42,0],
-"class_s_x128x.html":[3,0,43],
-"class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed":[3,0,43,34],
-"class_s_x128x.html#a0efa595867624a54153d693d16f9f731":[3,0,43,45],
-"class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133":[3,0,43,42],
-"class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1":[3,0,43,46],
-"class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f":[3,0,43,48],
-"class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371":[3,0,43,37],
-"class_s_x128x.html#a2361a94f2e12ebc93e750a027d633232":[3,0,43,15],
-"class_s_x128x.html#a2643ce22176293631fea2169f5e68e66":[3,0,43,26],
-"class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1":[3,0,43,38],
-"class_s_x128x.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,43,24],
-"class_s_x128x.html#a2b424000856a9dc212f571d0e8890635":[3,0,43,8],
-"class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45":[3,0,43,49],
-"class_s_x128x.html#a2dd0ecae9f54cf6943cf702ae15f5039":[3,0,43,18],
-"class_s_x128x.html#a316340d7ba2a6e7cb5742e3ff21e728c":[3,0,43,2],
-"class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99":[3,0,43,23],
-"class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91":[3,0,43,39],
-"class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735":[3,0,43,12],
-"class_s_x128x.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,43,55],
-"class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4":[3,0,43,7],
-"class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee":[3,0,43,30],
-"class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,43,57],
-"class_s_x128x.html#a53892566b0259d348158efe3c3c3601a":[3,0,43,61],
-"class_s_x128x.html#a5f11803b3430bc059321b443f407e78b":[3,0,43,43],
-"class_s_x128x.html#a69ee7379f4b79abf626df186b2db6441":[3,0,43,11],
-"class_s_x128x.html#a73e3655e92bca9a06e2d0abbf1a4bed4":[3,0,43,40],
-"class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947":[3,0,43,36],
-"class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb":[3,0,43,27],
-"class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2":[3,0,43,14],
-"class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f":[3,0,43,47],
-"class_s_x128x.html#a8dd8ce38bc9d0d8dbd711b373e864e93":[3,0,43,4],
-"class_s_x128x.html#a923654706eff5118ef6e84214e837f27":[3,0,43,52],
-"class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5":[3,0,43,28]
+"class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08":[3,0,33,33],
+"class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2":[3,0,33,26],
+"class_s_x126x.html#a3563453988a83d22dd07d4691543a300":[3,0,33,25],
+"class_s_x126x.html#a3765f534418d4e0540c179621c019138":[3,0,33,6],
+"class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf":[3,0,33,53],
+"class_s_x126x.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,33,71],
+"class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8":[3,0,33,9],
+"class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,33,69],
+"class_s_x126x.html#a514cabe74bbe3434d7e4f244c4077752":[3,0,33,45],
+"class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6":[3,0,33,55],
+"class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22":[3,0,33,50],
+"class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8":[3,0,33,47],
+"class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376":[3,0,33,56],
+"class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd":[3,0,33,4],
+"class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f":[3,0,33,63],
+"class_s_x126x.html#a755e7df4b0958f7c793d0c058408831a":[3,0,33,32],
+"class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71":[3,0,33,58],
+"class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3":[3,0,33,44],
+"class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e":[3,0,33,34],
+"class_s_x126x.html#a7e342ddbef84cf845bef8f4448b8da10":[3,0,33,20],
+"class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561":[3,0,33,22],
+"class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435":[3,0,33,30],
+"class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e":[3,0,33,7],
+"class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e":[3,0,33,38],
+"class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b":[3,0,33,73],
+"class_s_x126x.html#a923654706eff5118ef6e84214e837f27":[3,0,33,64],
+"class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d":[3,0,33,74],
+"class_s_x126x.html#a936a40038e05740a528f2b53f8e17010":[3,0,33,2],
+"class_s_x126x.html#a95007639c2648a1dbb614493224606f1":[3,0,33,37],
+"class_s_x126x.html#a9a9b090eddcb811ee19b595debfab1df":[3,0,33,13],
+"class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f":[3,0,33,31],
+"class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f":[3,0,33,54],
+"class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab":[3,0,33,11],
+"class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009":[3,0,33,72],
+"class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8":[3,0,33,0],
+"class_s_x126x.html#aae1af90432c457e5bf8f8f362295399b":[3,0,33,15],
+"class_s_x126x.html#ab00f765bbfbfaa8c693532ea3a90c29b":[3,0,33,46],
+"class_s_x126x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,33,68],
+"class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,33,28],
+"class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1":[3,0,33,67],
+"class_s_x126x.html#ab9ce38cfeaa36ddcc2d82b2974d7088c":[3,0,33,1],
+"class_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a":[3,0,33,42],
+"class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5":[3,0,33,8],
+"class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034":[3,0,33,35],
+"class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f":[3,0,33,10],
+"class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987":[3,0,33,16],
+"class_s_x126x.html#ac594fbb30c5010658c970a64654c7162":[3,0,33,52],
+"class_s_x126x.html#ac71eb1209354837ced2e21e66534bff3":[3,0,33,14],
+"class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9":[3,0,33,12],
+"class_s_x126x.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,33,66],
+"class_s_x126x.html#ad7569396f09f3867dc1bd4d4a0613acd":[3,0,33,59],
+"class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136":[3,0,33,62],
+"class_s_x126x.html#adec09cba71494bd927ad1da786606ca6":[3,0,33,21],
+"class_s_x126x.html#ae36664f9c605a8fe74b2f357e0ec3323":[3,0,33,18],
+"class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca":[3,0,33,19],
+"class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0":[3,0,33,29],
+"class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf":[3,0,33,41],
+"class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d":[3,0,33,51],
+"class_s_x126x.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,33,24],
+"class_s_x126x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,33,70],
+"class_s_x126x.html#aeb92dc9d2e2a2b3a3a5ff2856528d497":[3,0,33,61],
+"class_s_x126x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,33,65],
+"class_s_x126x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,33,27],
+"class_s_x126x.html#afb5509f0705cdd971065251ed6b2fb4e":[3,0,33,57],
+"class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2":[3,0,33,5],
+"class_s_x126x.html#afd3113858966e878e9c67a1e710bd586":[3,0,33,36],
+"class_s_x126x.html#aff80db65e546934980feac7e6c81dd80":[3,0,33,23],
+"class_s_x1272.html":[3,0,34],
+"class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac":[3,0,34,8],
+"class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b":[3,0,34,9],
+"class_s_x1272.html#a0d8e68cf913422535dc43cbdf73a3f10":[3,0,34,6],
+"class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47":[3,0,34,13],
+"class_s_x1272.html#a4aaf9d61310fa7b4fce413ae53d30ac0":[3,0,34,5],
+"class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3":[3,0,34,7],
+"class_s_x1272.html#a6677a04aa0c2f3bbde2509786b6a66de":[3,0,34,16],
+"class_s_x1272.html#a82084ac58502c83d2ada998410307490":[3,0,34,17],
+"class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260":[3,0,34,3],
+"class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea":[3,0,34,12],
+"class_s_x1272.html#a960913438feccad4c1913a9222384a5f":[3,0,34,10],
+"class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626":[3,0,34,0],
+"class_s_x1272.html#abb4bbfe8acc6026c833d267d78417b63":[3,0,34,1],
+"class_s_x1272.html#abd912314a977f92c464d36d862329ffc":[3,0,34,11],
+"class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852":[3,0,34,15],
+"class_s_x1272.html#ae3c9704cb58232f696b5f90f69c115f7":[3,0,34,4],
+"class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9":[3,0,34,2],
+"class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8":[3,0,34,14],
+"class_s_x1273.html":[3,0,35],
+"class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2":[3,0,35,1],
+"class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f":[3,0,35,2],
+"class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b":[3,0,35,0],
+"class_s_x1276.html":[3,0,36],
+"class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008":[3,0,36,3],
+"class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b":[3,0,36,0],
+"class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7":[3,0,36,1],
+"class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840":[3,0,36,2],
+"class_s_x1277.html":[3,0,37],
+"class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf":[3,0,37,4],
+"class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda":[3,0,37,0],
+"class_s_x1277.html#a42adde5eecccdca95214980848795e82":[3,0,37,3],
+"class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3":[3,0,37,1],
+"class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44":[3,0,37,2],
+"class_s_x1278.html":[3,0,38],
+"class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e":[3,0,38,0],
+"class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4":[3,0,38,13],
+"class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6":[3,0,38,9],
+"class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e":[3,0,38,7],
+"class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4":[3,0,38,14],
+"class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad":[3,0,38,8],
+"class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856":[3,0,38,5],
+"class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1":[3,0,38,4],
+"class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88":[3,0,38,16],
+"class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1":[3,0,38,10],
+"class_s_x1278.html#a86464af008b71d12948690b780280e7d":[3,0,38,3],
+"class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf":[3,0,38,2],
+"class_s_x1278.html#aa57b713988cfa224a6db2ff325052931":[3,0,38,15],
+"class_s_x1278.html#ac0be7586b8e40355bbd29d78ae9941d1":[3,0,38,11],
+"class_s_x1278.html#ae02adcde8c2978c0d1b157729dd5df1e":[3,0,38,1],
+"class_s_x1278.html#ae52d84fa301309a4a4294312571fc3b8":[3,0,38,6],
+"class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08":[3,0,38,17],
+"class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563":[3,0,38,12],
+"class_s_x1279.html":[3,0,39],
+"class_s_x1279.html#a324a37dee0522f43692cd414141becc2":[3,0,39,1],
+"class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b":[3,0,39,2],
+"class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a":[3,0,39,0],
+"class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817":[3,0,39,3],
+"class_s_x127x.html":[3,0,40],
+"class_s_x127x.html#a071442611a32154e8b3db7981f242a53":[3,0,40,31],
+"class_s_x127x.html#a0995088d37689a3c240a1af791df6cf1":[3,0,40,29],
+"class_s_x127x.html#a0f041e91ab2fbb6f05eef56b5addac71":[3,0,40,7],
+"class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538":[3,0,40,60],
+"class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa":[3,0,40,10],
+"class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c":[3,0,40,85],
+"class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059":[3,0,40,73],
+"class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04":[3,0,40,28],
+"class_s_x127x.html#a201c31366f32c41b801724fb662265c1":[3,0,40,56],
+"class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee":[3,0,40,59],
+"class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a":[3,0,40,12],
+"class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53":[3,0,40,68],
+"class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc":[3,0,40,23],
+"class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68":[3,0,40,39],
+"class_s_x127x.html#a3563453988a83d22dd07d4691543a300":[3,0,40,33],
+"class_s_x127x.html#a36dbd1697a415c6db3b47cd620c8c02e":[3,0,40,11],
+"class_s_x127x.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,40,82],
+"class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002":[3,0,40,47],
+"class_s_x127x.html#a41089d9e5b45217d3e31ac22b5326b66":[3,0,40,5],
+"class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e":[3,0,40,41],
+"class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df":[3,0,40,71],
+"class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679":[3,0,40,57],
+"class_s_x127x.html#a462fa74275e67c296328a01f361892d5":[3,0,40,24],
+"class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54":[3,0,40,62],
+"class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,40,80],
+"class_s_x127x.html#a4c27736905cf848a67d6cbc92df823b8":[3,0,40,22],
+"class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544":[3,0,40,15],
+"class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76":[3,0,40,67],
+"class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c":[3,0,40,18],
+"class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430":[3,0,40,1],
+"class_s_x127x.html#a606d839b3a992c681ac9ad7ca6020022":[3,0,40,44],
+"class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef":[3,0,40,43],
+"class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450":[3,0,40,30],
+"class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359":[3,0,40,14],
+"class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb":[3,0,40,55],
+"class_s_x127x.html#a71ecfed743942c4195d8668e8588a0fc":[3,0,40,48],
+"class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823":[3,0,40,3],
+"class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41":[3,0,40,72],
+"class_s_x127x.html#a7b85344084b800966a46ace59dcb5277":[3,0,40,51],
+"class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1":[3,0,40,54],
+"class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f":[3,0,40,13],
+"class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd":[3,0,40,9],
+"class_s_x127x.html#a8b93142202167270db109d18b743c744":[3,0,40,63],
+"class_s_x127x.html#a923654706eff5118ef6e84214e837f27":[3,0,40,75],
+"class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1":[3,0,40,26],
+"class_s_x127x.html#a9b3a76eb89cad60dcad92513e6848f5a":[3,0,40,46],
+"class_s_x127x.html#a9b6532a25e1730973ac08146008adca5":[3,0,40,4],
+"class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc":[3,0,40,69],
+"class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29":[3,0,40,83],
+"class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238":[3,0,40,52],
+"class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f":[3,0,40,38],
+"class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1":[3,0,40,6],
+"class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d":[3,0,40,61],
+"class_s_x127x.html#ab0f67330124cefc07a462e77922453d0":[3,0,40,42],
+"class_s_x127x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,40,79],
+"class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed":[3,0,40,64],
+"class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,40,36],
+"class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95":[3,0,40,58],
+"class_s_x127x.html#abad2d455012bd28d304589c8164390eb":[3,0,40,53],
+"class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb":[3,0,40,25],
+"class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40":[3,0,40,45],
+"class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745":[3,0,40,34],
+"class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde":[3,0,40,70],
+"class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d":[3,0,40,21],
+"class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c":[3,0,40,0],
+"class_s_x127x.html#ad3955f85f456edae772a51025a19029b":[3,0,40,66],
+"class_s_x127x.html#ad532e1a62c6ee2c58f9517e6e62728ac":[3,0,40,27],
+"class_s_x127x.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,40,77],
+"class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617":[3,0,40,19],
+"class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5":[3,0,40,40],
+"class_s_x127x.html#adbea7515add3d81c3024ceb0d570266b":[3,0,40,50],
+"class_s_x127x.html#adc25b685de0859b799488bf7729350b6":[3,0,40,17],
+"class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083":[3,0,40,78],
+"class_s_x127x.html#add78edb65673d9e88931a55b0672a9f3":[3,0,40,2],
+"class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c":[3,0,40,37],
+"class_s_x127x.html#adffb96b7f80dc43909bb4cebde68fe9d":[3,0,40,74],
+"class_s_x127x.html#ae72f140bc934016411d7d54ebc14d69c":[3,0,40,49],
+"class_s_x127x.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,40,32],
+"class_s_x127x.html#ae9781180418c1ec9c365b74acbc98d8a":[3,0,40,65],
+"class_s_x127x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,40,81],
+"class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd":[3,0,40,16],
+"class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84":[3,0,40,84],
+"class_s_x127x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,40,76],
+"class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362":[3,0,40,20],
+"class_s_x127x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,40,35],
+"class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5":[3,0,40,8],
+"class_s_x1280.html":[3,0,41],
+"class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb":[3,0,41,0],
+"class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2":[3,0,41,2],
+"class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10":[3,0,41,3],
+"class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f":[3,0,41,1],
+"class_s_x1281.html":[3,0,42],
+"class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998":[3,0,42,0],
+"class_s_x1282.html":[3,0,43],
+"class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232":[3,0,43,0],
+"class_s_x128x.html":[3,0,44],
+"class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed":[3,0,44,34],
+"class_s_x128x.html#a0efa595867624a54153d693d16f9f731":[3,0,44,45],
+"class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133":[3,0,44,42],
+"class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1":[3,0,44,46],
+"class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f":[3,0,44,48],
+"class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371":[3,0,44,37],
+"class_s_x128x.html#a2361a94f2e12ebc93e750a027d633232":[3,0,44,15],
+"class_s_x128x.html#a2643ce22176293631fea2169f5e68e66":[3,0,44,26],
+"class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1":[3,0,44,38],
+"class_s_x128x.html#a2b424000856a9dc212f571d0e8890635":[3,0,44,8],
+"class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45":[3,0,44,49],
+"class_s_x128x.html#a2dd0ecae9f54cf6943cf702ae15f5039":[3,0,44,18],
+"class_s_x128x.html#a316340d7ba2a6e7cb5742e3ff21e728c":[3,0,44,2],
+"class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99":[3,0,44,24],
+"class_s_x128x.html#a3563453988a83d22dd07d4691543a300":[3,0,44,20],
+"class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91":[3,0,44,39],
+"class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735":[3,0,44,12],
+"class_s_x128x.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,44,59],
+"class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4":[3,0,44,7],
+"class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee":[3,0,44,30],
+"class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,44,57],
+"class_s_x128x.html#a53892566b0259d348158efe3c3c3601a":[3,0,44,61],
+"class_s_x128x.html#a5f11803b3430bc059321b443f407e78b":[3,0,44,43],
+"class_s_x128x.html#a69ee7379f4b79abf626df186b2db6441":[3,0,44,11],
+"class_s_x128x.html#a73e3655e92bca9a06e2d0abbf1a4bed4":[3,0,44,40],
+"class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947":[3,0,44,36],
+"class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb":[3,0,44,27],
+"class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2":[3,0,44,14]
};
diff --git a/navtreeindex3.js b/navtreeindex3.js
index 8fc29cbb..1f33eb94 100644
--- a/navtreeindex3.js
+++ b/navtreeindex3.js
@@ -1,158 +1,163 @@
var NAVTREEINDEX3 =
{
-"class_s_x128x.html#a94b7fb26cc99385d30b0c98b76d8188d":[3,0,43,6],
-"class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb":[3,0,43,20],
-"class_s_x128x.html#a94d3003277925e2dc3372548b3311008":[3,0,43,13],
-"class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a":[3,0,43,17],
-"class_s_x128x.html#a99491c705e88dddc820f884b778f1660":[3,0,43,33],
-"class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7":[3,0,43,0],
-"class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a":[3,0,43,31],
-"class_s_x128x.html#aa11ba80f0cebb3e6927c775ad5f96b4e":[3,0,43,50],
-"class_s_x128x.html#aa4b1e0b96347011522e053f30202c0fe":[3,0,43,32],
-"class_s_x128x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,43,56],
-"class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f":[3,0,43,5],
-"class_s_x128x.html#abefabeb0ecd6c441fbd388340bb7b2b2":[3,0,43,10],
-"class_s_x128x.html#ac69cc622020419cb3393eac5cc88915b":[3,0,43,16],
-"class_s_x128x.html#ac7df67afbb0b1a88daf5ec50f3d65660":[3,0,43,3],
-"class_s_x128x.html#acbd0d1a48051ccd35f4a89c9b8d05bdf":[3,0,43,1],
-"class_s_x128x.html#ad59ee052d8ab1f250245a14039fc8b66":[3,0,43,51],
-"class_s_x128x.html#ad6e2b46c317a8d8512cf0380025147a9":[3,0,43,41],
-"class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22":[3,0,43,9],
-"class_s_x128x.html#ae435f57132f76f4283abb870176acf54":[3,0,43,44],
-"class_s_x128x.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,43,21],
-"class_s_x128x.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,43,19],
-"class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a":[3,0,43,29],
-"class_s_x128x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,43,58],
-"class_s_x128x.html#aef221e7d463c5228ce00ed6934512848":[3,0,43,54],
-"class_s_x128x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,43,53],
-"class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5":[3,0,43,59],
-"class_s_x128x.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,43,60],
-"class_s_x128x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,43,22],
-"class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236":[3,0,43,35],
-"class_s_x128x.html#aff7d86352c98771595375e17d19a2a97":[3,0,43,25],
-"class_si4430.html":[3,0,22],
-"class_si4430.html#a025a31861d1511090168e416140d0343":[3,0,22,2],
-"class_si4430.html#aaed612b8936609442042d8156e085d2c":[3,0,22,1],
-"class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9":[3,0,22,0],
-"class_si4430.html#af8d615431bf66e06b45487f3fff73d16":[3,0,22,3],
-"class_si4431.html":[3,0,23],
-"class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0":[3,0,23,0],
-"class_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3":[3,0,23,1],
-"class_si4431.html#a4da296b35056e076ff69a288bd801d19":[3,0,23,2],
-"class_si4432.html":[3,0,24],
-"class_si4432.html#a5efc3a08f91a411da011201dc128fb34":[3,0,24,1],
-"class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca":[3,0,24,3],
-"class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84":[3,0,24,2],
-"class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac":[3,0,24,0],
-"class_si443x.html":[3,0,25],
-"class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2":[3,0,25,31],
-"class_si443x.html#a1382fc3b68f447e381613e6670747128":[3,0,25,22],
-"class_si443x.html#a178b471527813a608c04db7d3c9648d6":[3,0,25,17],
-"class_si443x.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,25,16],
-"class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10":[3,0,25,7],
-"class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314":[3,0,25,34],
-"class_si443x.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,25,35],
-"class_si443x.html#a427f24f614f04e87094354047bf1bf00":[3,0,25,6],
-"class_si443x.html#a453eda5436dc4dfe0dad676dc3977752":[3,0,25,1],
-"class_si443x.html#a45d3ffcb312c34a2f6391be6d609d7b7":[3,0,25,10],
-"class_si443x.html#a4821a6141caf16141074615c976ecd91":[3,0,25,25],
-"class_si443x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,25,37],
-"class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a":[3,0,25,28],
-"class_si443x.html#a51e6b7c677e82042224798114f311175":[3,0,25,27],
-"class_si443x.html#a55252bda74e8c67636a8c1fa0e9f58d3":[3,0,25,5],
-"class_si443x.html#a55fae20e81755c8b014d080741d61913":[3,0,25,21],
-"class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99":[3,0,25,41],
-"class_si443x.html#a616eb24c4b11c5d39caaade160be8092":[3,0,25,8],
-"class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3":[3,0,25,3],
-"class_si443x.html#a74848176d435227e601c86ff37b0edbe":[3,0,25,9],
-"class_si443x.html#a782748025e19ec6e597293afb6570bff":[3,0,25,39],
-"class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66":[3,0,25,23],
-"class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726":[3,0,25,24],
-"class_si443x.html#a8d019f58551346c3f3bd8b72d2486109":[3,0,25,2],
-"class_si443x.html#a923654706eff5118ef6e84214e837f27":[3,0,25,32],
-"class_si443x.html#aabca3ba8eda212938febab1df2e764b4":[3,0,25,15],
-"class_si443x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,25,36],
-"class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a":[3,0,25,42],
-"class_si443x.html#ac45d2776df3ff338db154ead143fb7b8":[3,0,25,30],
-"class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e":[3,0,25,12],
-"class_si443x.html#ad2b3a961a99d9e8f3a7ead6e8b69e858":[3,0,25,4],
-"class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170":[3,0,25,19],
-"class_si443x.html#ada90718aeb67d7f0e9899da534de9695":[3,0,25,29],
-"class_si443x.html#ade08c79074c7e4414d34eefa25cee168":[3,0,25,20],
-"class_si443x.html#ae365087803b88b29932b5c793edff1d4":[3,0,25,26],
-"class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97":[3,0,25,18],
-"class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9":[3,0,25,0],
-"class_si443x.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,25,13],
-"class_si443x.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,25,11],
-"class_si443x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,25,38],
-"class_si443x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,25,33],
-"class_si443x.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,25,40],
-"class_si443x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,25,14],
+"class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f":[3,0,44,47],
+"class_s_x128x.html#a8dd8ce38bc9d0d8dbd711b373e864e93":[3,0,44,4],
+"class_s_x128x.html#a923654706eff5118ef6e84214e837f27":[3,0,44,52],
+"class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5":[3,0,44,28],
+"class_s_x128x.html#a94b7fb26cc99385d30b0c98b76d8188d":[3,0,44,6],
+"class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb":[3,0,44,21],
+"class_s_x128x.html#a94d3003277925e2dc3372548b3311008":[3,0,44,13],
+"class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a":[3,0,44,17],
+"class_s_x128x.html#a99491c705e88dddc820f884b778f1660":[3,0,44,33],
+"class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7":[3,0,44,0],
+"class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a":[3,0,44,31],
+"class_s_x128x.html#aa11ba80f0cebb3e6927c775ad5f96b4e":[3,0,44,50],
+"class_s_x128x.html#aa4b1e0b96347011522e053f30202c0fe":[3,0,44,32],
+"class_s_x128x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,44,56],
+"class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,44,23],
+"class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f":[3,0,44,5],
+"class_s_x128x.html#abefabeb0ecd6c441fbd388340bb7b2b2":[3,0,44,10],
+"class_s_x128x.html#ac69cc622020419cb3393eac5cc88915b":[3,0,44,16],
+"class_s_x128x.html#ac7df67afbb0b1a88daf5ec50f3d65660":[3,0,44,3],
+"class_s_x128x.html#acbd0d1a48051ccd35f4a89c9b8d05bdf":[3,0,44,1],
+"class_s_x128x.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,44,54],
+"class_s_x128x.html#ad59ee052d8ab1f250245a14039fc8b66":[3,0,44,51],
+"class_s_x128x.html#ad6e2b46c317a8d8512cf0380025147a9":[3,0,44,41],
+"class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22":[3,0,44,9],
+"class_s_x128x.html#ae435f57132f76f4283abb870176acf54":[3,0,44,44],
+"class_s_x128x.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,44,19],
+"class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a":[3,0,44,29],
+"class_s_x128x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,44,58],
+"class_s_x128x.html#aef221e7d463c5228ce00ed6934512848":[3,0,44,55],
+"class_s_x128x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,44,53],
+"class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5":[3,0,44,60],
+"class_s_x128x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,44,22],
+"class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236":[3,0,44,35],
+"class_s_x128x.html#aff7d86352c98771595375e17d19a2a97":[3,0,44,25],
+"class_si4430.html":[3,0,23],
+"class_si4430.html#a025a31861d1511090168e416140d0343":[3,0,23,2],
+"class_si4430.html#aaed612b8936609442042d8156e085d2c":[3,0,23,1],
+"class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9":[3,0,23,0],
+"class_si4430.html#af8d615431bf66e06b45487f3fff73d16":[3,0,23,3],
+"class_si4431.html":[3,0,24],
+"class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0":[3,0,24,0],
+"class_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3":[3,0,24,1],
+"class_si4431.html#a4da296b35056e076ff69a288bd801d19":[3,0,24,2],
+"class_si4432.html":[3,0,25],
+"class_si4432.html#a5efc3a08f91a411da011201dc128fb34":[3,0,25,1],
+"class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca":[3,0,25,3],
+"class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84":[3,0,25,2],
+"class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac":[3,0,25,0],
+"class_si443x.html":[3,0,26],
+"class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2":[3,0,26,31],
+"class_si443x.html#a1382fc3b68f447e381613e6670747128":[3,0,26,22],
+"class_si443x.html#a178b471527813a608c04db7d3c9648d6":[3,0,26,17],
+"class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10":[3,0,26,7],
+"class_si443x.html#a3563453988a83d22dd07d4691543a300":[3,0,26,12],
+"class_si443x.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,26,39],
+"class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314":[3,0,26,35],
+"class_si443x.html#a427f24f614f04e87094354047bf1bf00":[3,0,26,6],
+"class_si443x.html#a453eda5436dc4dfe0dad676dc3977752":[3,0,26,1],
+"class_si443x.html#a45d3ffcb312c34a2f6391be6d609d7b7":[3,0,26,10],
+"class_si443x.html#a4821a6141caf16141074615c976ecd91":[3,0,26,25],
+"class_si443x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,26,37],
+"class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a":[3,0,26,28],
+"class_si443x.html#a51e6b7c677e82042224798114f311175":[3,0,26,27],
+"class_si443x.html#a55252bda74e8c67636a8c1fa0e9f58d3":[3,0,26,5],
+"class_si443x.html#a55fae20e81755c8b014d080741d61913":[3,0,26,21],
+"class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99":[3,0,26,41],
+"class_si443x.html#a616eb24c4b11c5d39caaade160be8092":[3,0,26,8],
+"class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3":[3,0,26,3],
+"class_si443x.html#a74848176d435227e601c86ff37b0edbe":[3,0,26,9],
+"class_si443x.html#a782748025e19ec6e597293afb6570bff":[3,0,26,40],
+"class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66":[3,0,26,23],
+"class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726":[3,0,26,24],
+"class_si443x.html#a8d019f58551346c3f3bd8b72d2486109":[3,0,26,2],
+"class_si443x.html#a923654706eff5118ef6e84214e837f27":[3,0,26,32],
+"class_si443x.html#aabca3ba8eda212938febab1df2e764b4":[3,0,26,16],
+"class_si443x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,26,36],
+"class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,26,15],
+"class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a":[3,0,26,42],
+"class_si443x.html#ac45d2776df3ff338db154ead143fb7b8":[3,0,26,30],
+"class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e":[3,0,26,13],
+"class_si443x.html#ad2b3a961a99d9e8f3a7ead6e8b69e858":[3,0,26,4],
+"class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170":[3,0,26,19],
+"class_si443x.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,26,34],
+"class_si443x.html#ada90718aeb67d7f0e9899da534de9695":[3,0,26,29],
+"class_si443x.html#ade08c79074c7e4414d34eefa25cee168":[3,0,26,20],
+"class_si443x.html#ae365087803b88b29932b5c793edff1d4":[3,0,26,26],
+"class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97":[3,0,26,18],
+"class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9":[3,0,26,0],
+"class_si443x.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,26,11],
+"class_si443x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,26,38],
+"class_si443x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,26,33],
+"class_si443x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,26,14],
"classes.html":[3,1],
-"classn_r_f24.html":[3,0,11],
-"classn_r_f24.html#a033287e33c532638c11e2775a073f297":[3,0,11,32],
-"classn_r_f24.html#a03533af894b373fbff01601dd027b36a":[3,0,11,4],
-"classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf":[3,0,11,24],
-"classn_r_f24.html#a0873f58ae62e41cff99813e21cc8b02a":[3,0,11,20],
-"classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303":[3,0,11,44],
-"classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916":[3,0,11,22],
-"classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac":[3,0,11,14],
-"classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b":[3,0,11,5],
-"classn_r_f24.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,11,15],
-"classn_r_f24.html#a2db0cd487b03f937afc0bc2e3eccb6f6":[3,0,11,9],
-"classn_r_f24.html#a31bcc5a8c3747bf08a273dbdadc5481a":[3,0,11,29],
-"classn_r_f24.html#a3da63a447659f92153654d31a5d2854c":[3,0,11,23],
-"classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282":[3,0,11,21],
-"classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9":[3,0,11,6],
-"classn_r_f24.html#a408278336cdf25fd205ecffea86c26e8":[3,0,11,25],
-"classn_r_f24.html#a410fb78acb4ed358818c132687b8857a":[3,0,11,11],
-"classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c":[3,0,11,16],
-"classn_r_f24.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,11,38],
-"classn_r_f24.html#a42fdc828b49f2b8e15457189bd57d917":[3,0,11,37],
-"classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,11,40],
-"classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a":[3,0,11,2],
-"classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4":[3,0,11,26],
-"classn_r_f24.html#a583d505bd3a638ecc5576dd2dd95f044":[3,0,11,42],
-"classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56":[3,0,11,33],
-"classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4":[3,0,11,17],
-"classn_r_f24.html#a5cc7cd54db2a6af1c9183a2d0653fe2e":[3,0,11,8],
-"classn_r_f24.html#a824453d547c0b42ac1988acb42032ca4":[3,0,11,28],
-"classn_r_f24.html#a923654706eff5118ef6e84214e837f27":[3,0,11,35],
-"classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af":[3,0,11,31],
-"classn_r_f24.html#aab701c0336394e0473981913fbfd5da6":[3,0,11,1],
-"classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e":[3,0,11,0],
-"classn_r_f24.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,11,39],
-"classn_r_f24.html#ab5bc08aef88d8cf41c38369044005da8":[3,0,11,30],
-"classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3":[3,0,11,27],
-"classn_r_f24.html#ac1c3419442d93abeede39e7fda4db62e":[3,0,11,19],
-"classn_r_f24.html#aca941c9235ba1212257288554eb4b7fe":[3,0,11,18],
-"classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37":[3,0,11,7],
-"classn_r_f24.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,11,12],
-"classn_r_f24.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,11,10],
-"classn_r_f24.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,11,41],
-"classn_r_f24.html#af068e6e862c99e39d0261a7971dd56db":[3,0,11,36],
-"classn_r_f24.html#af0c21ff66c011dfdc1ad12bc7dd11c2f":[3,0,11,3],
-"classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c":[3,0,11,34],
-"classn_r_f24.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,11,43],
-"classn_r_f24.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,11,13],
+"classn_r_f24.html":[3,0,12],
+"classn_r_f24.html#a033287e33c532638c11e2775a073f297":[3,0,12,32],
+"classn_r_f24.html#a03533af894b373fbff01601dd027b36a":[3,0,12,4],
+"classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf":[3,0,12,24],
+"classn_r_f24.html#a0873f58ae62e41cff99813e21cc8b02a":[3,0,12,20],
+"classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303":[3,0,12,44],
+"classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916":[3,0,12,22],
+"classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac":[3,0,12,15],
+"classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b":[3,0,12,5],
+"classn_r_f24.html#a2db0cd487b03f937afc0bc2e3eccb6f6":[3,0,12,9],
+"classn_r_f24.html#a31bcc5a8c3747bf08a273dbdadc5481a":[3,0,12,29],
+"classn_r_f24.html#a3563453988a83d22dd07d4691543a300":[3,0,12,11],
+"classn_r_f24.html#a3da63a447659f92153654d31a5d2854c":[3,0,12,23],
+"classn_r_f24.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,12,43],
+"classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282":[3,0,12,21],
+"classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9":[3,0,12,6],
+"classn_r_f24.html#a408278336cdf25fd205ecffea86c26e8":[3,0,12,25],
+"classn_r_f24.html#a410fb78acb4ed358818c132687b8857a":[3,0,12,12],
+"classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c":[3,0,12,16],
+"classn_r_f24.html#a42fdc828b49f2b8e15457189bd57d917":[3,0,12,37],
+"classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,12,40],
+"classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a":[3,0,12,2],
+"classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4":[3,0,12,26],
+"classn_r_f24.html#a583d505bd3a638ecc5576dd2dd95f044":[3,0,12,42],
+"classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56":[3,0,12,33],
+"classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4":[3,0,12,17],
+"classn_r_f24.html#a5cc7cd54db2a6af1c9183a2d0653fe2e":[3,0,12,8],
+"classn_r_f24.html#a824453d547c0b42ac1988acb42032ca4":[3,0,12,28],
+"classn_r_f24.html#a923654706eff5118ef6e84214e837f27":[3,0,12,35],
+"classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af":[3,0,12,31],
+"classn_r_f24.html#aab701c0336394e0473981913fbfd5da6":[3,0,12,1],
+"classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e":[3,0,12,0],
+"classn_r_f24.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,12,39],
+"classn_r_f24.html#ab5bc08aef88d8cf41c38369044005da8":[3,0,12,30],
+"classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,12,14],
+"classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3":[3,0,12,27],
+"classn_r_f24.html#ac1c3419442d93abeede39e7fda4db62e":[3,0,12,19],
+"classn_r_f24.html#aca941c9235ba1212257288554eb4b7fe":[3,0,12,18],
+"classn_r_f24.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,12,38],
+"classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37":[3,0,12,7],
+"classn_r_f24.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,12,10],
+"classn_r_f24.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,12,41],
+"classn_r_f24.html#af068e6e862c99e39d0261a7971dd56db":[3,0,12,36],
+"classn_r_f24.html#af0c21ff66c011dfdc1ad12bc7dd11c2f":[3,0,12,3],
+"classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c":[3,0,12,34],
+"classn_r_f24.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,12,13],
"dir_1496c164e9c77875dd570f4157f3157f.html":[4,0,0,0,4],
"dir_17a0c4358d096e2caf9f04fe2ab66c1d.html":[4,0,0,0,1],
-"dir_2cdd3c47e80335731aa10f67042c391a.html":[4,0,0,1,7],
+"dir_19ff327ef62766d556984fbbdb5e6cc3.html":[4,0,0,1,3],
+"dir_2cdd3c47e80335731aa10f67042c391a.html":[4,0,0,1,8],
"dir_2d04440730a0443b949b3f3ffedccfc3.html":[4,0,0,1,2],
"dir_3a277ada553fbb989028f9b071a02542.html":[4,0,0,0,3],
-"dir_620e20826520c01cf981aa9c981ff885.html":[4,0,0,1,8],
-"dir_66ce0d8112a82c480b60d648cf9cb1ca.html":[4,0,0,1,9],
+"dir_620e20826520c01cf981aa9c981ff885.html":[4,0,0,1,9],
+"dir_66ce0d8112a82c480b60d648cf9cb1ca.html":[4,0,0,1,10],
"dir_68267d1309a1af8e8297ef4c3efbcdba.html":[4,0,0],
"dir_6baa7f88a31cf8c1ad1b651eaa1fd5b9.html":[4,0,0,0,5],
-"dir_6dea20bfcf2e1a380cdc520d491b79a2.html":[4,0,0,1,6],
+"dir_6dea20bfcf2e1a380cdc520d491b79a2.html":[4,0,0,1,7],
"dir_70c194bd40717a4946dbd8bc35f09b17.html":[4,0,0,1,0],
"dir_747c20e84f9dfe1cc835713177129efc.html":[4,0,0,0,8],
"dir_79690749eba542503bb1a9a3dbb495e1.html":[4,0,0,1],
"dir_8d5439df06ea2679013aa8390703d116.html":[4,0,0,0,2],
"dir_a758e8e29d8436beff5e1f16d5ed2d65.html":[4,0,0,0,7],
-"dir_c14921ab4918e015c91d11c846a1924a.html":[4,0,0,1,4],
-"dir_d916eb25599dc82f14db514c97a6ae6d.html":[4,0,0,1,5],
-"dir_daa71c65dcbe444af3aedb7a2ef08741.html":[4,0,0,1,3],
+"dir_c14921ab4918e015c91d11c846a1924a.html":[4,0,0,1,5],
+"dir_d916eb25599dc82f14db514c97a6ae6d.html":[4,0,0,1,6],
+"dir_daa71c65dcbe444af3aedb7a2ef08741.html":[4,0,0,1,4],
"dir_dc014d80157d44ffbeb680b891580471.html":[4,0,0,1,1],
"dir_ddb4d7e95cc2d6c8e1ade10a20d7247d.html":[4,0,0,0],
"dir_e2961291c878e1b3ab9447d79b865c81.html":[4,0,0,0,6],
@@ -244,10 +249,5 @@ var NAVTREEINDEX3 =
"group__status__codes.html#ga684497ce1c94442b5fe0396ea4ec930d":[2,3,33],
"group__status__codes.html#ga691e968e9f057a6cecb37a5dd5d8bd68":[2,3,43],
"group__status__codes.html#ga6b75df06d8c18366f85848331c49a1af":[2,3,36],
-"group__status__codes.html#ga72b849c71b8fdf112d318518a3b1ac7d":[2,3,54],
-"group__status__codes.html#ga733a7f3f12109103384522dac4d1146e":[2,3,9],
-"group__status__codes.html#ga7afc28738967d4d91c13d1d412d6f5e4":[2,3,45],
-"group__status__codes.html#ga7f57f6eddc68b9a59cceab4fdf6556ba":[2,3,24],
-"group__status__codes.html#ga7f9712de2117b89215410fc18776dc84":[2,3,41],
-"group__status__codes.html#ga806183ed238159d317132b0d44d7a0a2":[2,3,2]
+"group__status__codes.html#ga72b849c71b8fdf112d318518a3b1ac7d":[2,3,54]
};
diff --git a/navtreeindex4.js b/navtreeindex4.js
index 42fa3780..8baa4c54 100644
--- a/navtreeindex4.js
+++ b/navtreeindex4.js
@@ -1,5 +1,10 @@
var NAVTREEINDEX4 =
{
+"group__status__codes.html#ga733a7f3f12109103384522dac4d1146e":[2,3,9],
+"group__status__codes.html#ga7afc28738967d4d91c13d1d412d6f5e4":[2,3,45],
+"group__status__codes.html#ga7f57f6eddc68b9a59cceab4fdf6556ba":[2,3,24],
+"group__status__codes.html#ga7f9712de2117b89215410fc18776dc84":[2,3,41],
+"group__status__codes.html#ga806183ed238159d317132b0d44d7a0a2":[2,3,2],
"group__status__codes.html#ga85e34d08b298a4125f77ddede011db3b":[2,3,22],
"group__status__codes.html#ga908f3a5ab6937d28536791c96cf9de23":[2,3,20],
"group__status__codes.html#ga9a098ceda0c3f153515c8cc36f1d683e":[2,3,14],
@@ -36,16 +41,16 @@ var NAVTREEINDEX4 =
"modules.html":[2],
"n_r_f24_8h_source.html":[4,0,0,0,2,0],
"pages.html":[],
-"struct_s_s_t_v_mode__t.html":[3,0,27],
-"struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad":[3,0,27,3],
-"struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820":[3,0,27,4],
-"struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694":[3,0,27,2],
-"struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031":[3,0,27,0],
-"struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40":[3,0,27,5],
-"struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096":[3,0,27,1],
-"structtone__t.html":[3,0,44],
-"structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf":[3,0,44,0],
-"structtone__t.html#a3b0421dd255c7c59552741957a6224ed":[3,0,44,1],
-"structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40":[3,0,44,2],
+"struct_s_s_t_v_mode__t.html":[3,0,28],
+"struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad":[3,0,28,3],
+"struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820":[3,0,28,4],
+"struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694":[3,0,28,2],
+"struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031":[3,0,28,0],
+"struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40":[3,0,28,5],
+"struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096":[3,0,28,1],
+"structtone__t.html":[3,0,45],
+"structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf":[3,0,45,0],
+"structtone__t.html#a3b0421dd255c7c59552741957a6224ed":[3,0,45,1],
+"structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40":[3,0,45,2],
"todo.html":[1]
};
diff --git a/search/all_10.js b/search/all_10.js
index 41a1c13f..a232718d 100644
--- a/search/all_10.js
+++ b/search/all_10.js
@@ -1,13 +1,13 @@
var searchData=
[
- ['term_331',['term',['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module']]],
- ['todo_20list_332',['Todo List',['../todo.html',1,'']]],
- ['tone_333',['tone',['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()'],['../class_module.html#a33e33df69d58660b8cd0e2dafe5e9189',1,'Module::tone()']]],
- ['tone_5ft_334',['tone_t',['../structtone__t.html',1,'']]],
- ['tones_335',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]],
- ['transfer_336',['transfer',['../class_module.html#a45e7823c44ac0aa8a10bd4f365890c98',1,'Module']]],
- ['transmit_337',['transmit',['../classn_r_f24.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'nRF24::transmit()'],['../class_r_f69.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'RF69::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_r_f69.html#ab139a34e03a6fd5a781cd54da21d308f',1,'RF69::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_r_f69.html#aeb62c5a521aafc1e0525c58e9364482b',1,'RF69::transmit(String &str, uint8_t addr=0)'],['../class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534',1,'RF69::transmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#ab139a34e03a6fd5a781cd54da21d308f',1,'Si443x::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_si443x.html#aeb62c5a521aafc1e0525c58e9364482b',1,'Si443x::transmit(String &str, uint8_t addr=0)'],['../class_si443x.html#a492b2d057dd803c3884fa1adc8e22534',1,'Si443x::transmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'Si443x::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_s_x126x.html#ab139a34e03a6fd5a781cd54da21d308f',1,'SX126x::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_s_x126x.html#aeb62c5a521aafc1e0525c58e9364482b',1,'SX126x::transmit(String &str, uint8_t addr=0)'],['../class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX126x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'SX126x::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_s_x127x.html#ab139a34e03a6fd5a781cd54da21d308f',1,'SX127x::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_s_x127x.html#aeb62c5a521aafc1e0525c58e9364482b',1,'SX127x::transmit(String &str, uint8_t addr=0)'],['../class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX127x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'SX127x::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_s_x128x.html#ab139a34e03a6fd5a781cd54da21d308f',1,'SX128x::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_s_x128x.html#aeb62c5a521aafc1e0525c58e9364482b',1,'SX128x::transmit(String &str, uint8_t addr=0)'],['../class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX128x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'SX128x::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5',1,'SX128x::transmit(uint8_t *data, size_t len, uint8_t addr=0) override'],['../class_c_c1101.html#a7cb99a9200b21829b50e3fc3878573f4',1,'CC1101::transmit()'],['../classn_r_f24.html#a583d505bd3a638ecc5576dd2dd95f044',1,'nRF24::transmit()'],['../class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847',1,'RF69::transmit()'],['../class_si443x.html#a782748025e19ec6e597293afb6570bff',1,'Si443x::transmit()'],['../class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009',1,'SX126x::transmit()'],['../class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29',1,'SX127x::transmit()'],['../classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534',1,'nRF24::transmit()'],['../class_a_x25_client.html#ada21695e373b3e9b0e0f5d3cfbf29826',1,'AX25Client::transmit(String &str, const char *destCallsign, uint8_t destSSID=0x00)'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit(const char *str, const char *destCallsign, uint8_t destSSID=0x00)'],['../class_pager_client.html#a897f990002a4a2196fcdb31c547e0648',1,'PagerClient::transmit(String &str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_pager_client.html#aab6a8977f89d43620b98bcedf5a47dbd',1,'PagerClient::transmit(const char *str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f',1,'PhysicalLayer::transmit()'],['../classn_r_f24.html#aeb62c5a521aafc1e0525c58e9364482b',1,'nRF24::transmit(String &str, uint8_t addr=0)'],['../classn_r_f24.html#ab139a34e03a6fd5a781cd54da21d308f',1,'nRF24::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_c_c1101.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'CC1101::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_c_c1101.html#a492b2d057dd803c3884fa1adc8e22534',1,'CC1101::transmit(const char *str, uint8_t addr=0)'],['../class_c_c1101.html#aeb62c5a521aafc1e0525c58e9364482b',1,'CC1101::transmit(String &str, uint8_t addr=0)'],['../class_c_c1101.html#ab139a34e03a6fd5a781cd54da21d308f',1,'CC1101::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'PhysicalLayer::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b',1,'PhysicalLayer::transmit(String &str, uint8_t addr=0)'],['../class_pager_client.html#a77aafe7c86e6e1e4e22990be4e7f090b',1,'PagerClient::transmit()']]],
- ['transmitdirect_338',['transmitDirect',['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect()'],['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_physical_layer.html#a4b04eb6155b06d8ef400131c647d54e7',1,'PhysicalLayer::transmitDirect()']]],
- ['transmitdirectasync_339',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]],
- ['type_340',['type',['../structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40',1,'tone_t']]]
+ ['term_332',['term',['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module']]],
+ ['todo_20list_333',['Todo List',['../todo.html',1,'']]],
+ ['tone_334',['tone',['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()'],['../class_module.html#a33e33df69d58660b8cd0e2dafe5e9189',1,'Module::tone()']]],
+ ['tone_5ft_335',['tone_t',['../structtone__t.html',1,'']]],
+ ['tones_336',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]],
+ ['transfer_337',['transfer',['../class_module.html#a45e7823c44ac0aa8a10bd4f365890c98',1,'Module']]],
+ ['transmit_338',['transmit',['../classn_r_f24.html#a3dd42f8d5569487ea74f004ca652a709',1,'nRF24::transmit()'],['../class_r_f69.html#a3dd42f8d5569487ea74f004ca652a709',1,'RF69::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_r_f69.html#ab139a34e03a6fd5a781cd54da21d308f',1,'RF69::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_r_f69.html#aeb62c5a521aafc1e0525c58e9364482b',1,'RF69::transmit(String &str, uint8_t addr=0)'],['../class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534',1,'RF69::transmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#ab139a34e03a6fd5a781cd54da21d308f',1,'Si443x::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_si443x.html#aeb62c5a521aafc1e0525c58e9364482b',1,'Si443x::transmit(String &str, uint8_t addr=0)'],['../class_si443x.html#a492b2d057dd803c3884fa1adc8e22534',1,'Si443x::transmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#a3dd42f8d5569487ea74f004ca652a709',1,'Si443x::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x126x.html#ab139a34e03a6fd5a781cd54da21d308f',1,'SX126x::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_s_x126x.html#aeb62c5a521aafc1e0525c58e9364482b',1,'SX126x::transmit(String &str, uint8_t addr=0)'],['../class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX126x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#a3dd42f8d5569487ea74f004ca652a709',1,'SX126x::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x127x.html#ab139a34e03a6fd5a781cd54da21d308f',1,'SX127x::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_s_x127x.html#aeb62c5a521aafc1e0525c58e9364482b',1,'SX127x::transmit(String &str, uint8_t addr=0)'],['../class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX127x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#a3dd42f8d5569487ea74f004ca652a709',1,'SX127x::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#ab139a34e03a6fd5a781cd54da21d308f',1,'SX128x::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_s_x128x.html#aeb62c5a521aafc1e0525c58e9364482b',1,'SX128x::transmit(String &str, uint8_t addr=0)'],['../class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX128x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#a3dd42f8d5569487ea74f004ca652a709',1,'SX128x::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5',1,'SX128x::transmit(uint8_t *data, size_t len, uint8_t addr=0) override'],['../class_c_c1101.html#a7cb99a9200b21829b50e3fc3878573f4',1,'CC1101::transmit()'],['../classn_r_f24.html#a583d505bd3a638ecc5576dd2dd95f044',1,'nRF24::transmit()'],['../class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847',1,'RF69::transmit()'],['../class_si443x.html#a782748025e19ec6e597293afb6570bff',1,'Si443x::transmit()'],['../class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009',1,'SX126x::transmit()'],['../class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29',1,'SX127x::transmit()'],['../classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534',1,'nRF24::transmit()'],['../class_a_x25_client.html#ada21695e373b3e9b0e0f5d3cfbf29826',1,'AX25Client::transmit(String &str, const char *destCallsign, uint8_t destSSID=0x00)'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit(const char *str, const char *destCallsign, uint8_t destSSID=0x00)'],['../class_pager_client.html#a897f990002a4a2196fcdb31c547e0648',1,'PagerClient::transmit(String &str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_pager_client.html#aab6a8977f89d43620b98bcedf5a47dbd',1,'PagerClient::transmit(const char *str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f',1,'PhysicalLayer::transmit()'],['../classn_r_f24.html#aeb62c5a521aafc1e0525c58e9364482b',1,'nRF24::transmit(String &str, uint8_t addr=0)'],['../classn_r_f24.html#ab139a34e03a6fd5a781cd54da21d308f',1,'nRF24::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_c_c1101.html#a3dd42f8d5569487ea74f004ca652a709',1,'CC1101::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_c_c1101.html#a492b2d057dd803c3884fa1adc8e22534',1,'CC1101::transmit(const char *str, uint8_t addr=0)'],['../class_c_c1101.html#aeb62c5a521aafc1e0525c58e9364482b',1,'CC1101::transmit(String &str, uint8_t addr=0)'],['../class_c_c1101.html#ab139a34e03a6fd5a781cd54da21d308f',1,'CC1101::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_physical_layer.html#a3dd42f8d5569487ea74f004ca652a709',1,'PhysicalLayer::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b',1,'PhysicalLayer::transmit(String &str, uint8_t addr=0)'],['../class_pager_client.html#a77aafe7c86e6e1e4e22990be4e7f090b',1,'PagerClient::transmit()']]],
+ ['transmitdirect_339',['transmitDirect',['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect()'],['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_physical_layer.html#aa4c99ac794ee653c2061be4201724b65',1,'PhysicalLayer::transmitDirect()']]],
+ ['transmitdirectasync_340',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]],
+ ['type_341',['type',['../structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40',1,'tone_t']]]
];
diff --git a/search/all_11.js b/search/all_11.js
index 3686328b..8e481f05 100644
--- a/search/all_11.js
+++ b/search/all_11.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['variablepacketlengthmode_341',['variablePacketLengthMode',['../class_c_c1101.html#a50b9e73d2d82a4cd03841f465825b73f',1,'CC1101::variablePacketLengthMode()'],['../class_r_f69.html#af434c67aabe02258ee6696a59973617b',1,'RF69::variablePacketLengthMode()'],['../class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a',1,'Si443x::variablePacketLengthMode()'],['../class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c',1,'SX127x::variablePacketLengthMode()']]],
- ['viscode_342',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]]
+ ['variablepacketlengthmode_342',['variablePacketLengthMode',['../class_c_c1101.html#a50b9e73d2d82a4cd03841f465825b73f',1,'CC1101::variablePacketLengthMode()'],['../class_r_f69.html#af434c67aabe02258ee6696a59973617b',1,'RF69::variablePacketLengthMode()'],['../class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a',1,'Si443x::variablePacketLengthMode()'],['../class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c',1,'SX127x::variablePacketLengthMode()']]],
+ ['viscode_343',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]]
];
diff --git a/search/all_12.js b/search/all_12.js
index 0d99531f..d91ac9a7 100644
--- a/search/all_12.js
+++ b/search/all_12.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['waitformicroseconds_343',['waitForMicroseconds',['../class_module.html#a47978200f7e2e408fb64f506c81cee9f',1,'Module']]],
- ['width_344',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]],
- ['write_345',['write',['../class_f_s_k4_client.html#aa59fb42d3eeafe5ab3f0437ef5567ec2',1,'FSK4Client::write(uint8_t *buff, size_t len)'],['../class_f_s_k4_client.html#a31218736d4f9a3412ee9009a4c4f5a22',1,'FSK4Client::write(uint8_t b)']]]
+ ['waitformicroseconds_344',['waitForMicroseconds',['../class_module.html#a47978200f7e2e408fb64f506c81cee9f',1,'Module']]],
+ ['width_345',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]],
+ ['write_346',['write',['../class_f_s_k4_client.html#aa59fb42d3eeafe5ab3f0437ef5567ec2',1,'FSK4Client::write(uint8_t *buff, size_t len)'],['../class_f_s_k4_client.html#a31218736d4f9a3412ee9009a4c4f5a22',1,'FSK4Client::write(uint8_t b)']]]
];
diff --git a/search/all_13.js b/search/all_13.js
index 1eaa97cb..d957148f 100644
--- a/search/all_13.js
+++ b/search/all_13.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['yield_346',['yield',['../class_module.html#a227d2d38e4747d0f49bb4df1c80b45d7',1,'Module']]]
+ ['yield_347',['yield',['../class_module.html#a227d2d38e4747d0f49bb4df1c80b45d7',1,'Module']]]
];
diff --git a/search/all_14.js b/search/all_14.js
index 19a4e5b7..fb30acb3 100644
--- a/search/all_14.js
+++ b/search/all_14.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['_7eax25frame_347',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]],
- ['_7eita2string_348',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]]
+ ['_7eax25frame_348',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]],
+ ['_7eita2string_349',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]]
];
diff --git a/search/all_4.js b/search/all_4.js
index c7dcd203..96a12a1c 100644
--- a/search/all_4.js
+++ b/search/all_4.js
@@ -7,5 +7,6 @@ var searchData=
['encoding_20type_20aliases_2e_44',['Encoding type aliases.',['../group__config__encoding.html',1,'']]],
['end_45',['end',['../class_module.html#aa7fc017ee35f40c90e5badc5bc568c3d',1,'Module']]],
['endtransaction_46',['endTransaction',['../class_module.html#a015226566efc5131c8a39a184b6c4e6b',1,'Module']]],
- ['explicitheader_47',['explicitHeader',['../class_s_x126x.html#a3765f534418d4e0540c179621c019138',1,'SX126x::explicitHeader()'],['../class_s_x1272.html#ae3c9704cb58232f696b5f90f69c115f7',1,'SX1272::explicitHeader()'],['../class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1',1,'SX1278::explicitHeader()'],['../class_s_x128x.html#a94b7fb26cc99385d30b0c98b76d8188d',1,'SX128x::explicitHeader()']]]
+ ['explicitheader_47',['explicitHeader',['../class_s_x126x.html#a3765f534418d4e0540c179621c019138',1,'SX126x::explicitHeader()'],['../class_s_x1272.html#ae3c9704cb58232f696b5f90f69c115f7',1,'SX1272::explicitHeader()'],['../class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1',1,'SX1278::explicitHeader()'],['../class_s_x128x.html#a94b7fb26cc99385d30b0c98b76d8188d',1,'SX128x::explicitHeader()']]],
+ ['externalradio_48',['ExternalRadio',['../class_external_radio.html',1,'']]]
];
diff --git a/search/all_5.js b/search/all_5.js
index ebd50792..ac66298d 100644
--- a/search/all_5.js
+++ b/search/all_5.js
@@ -1,12 +1,12 @@
var searchData=
[
- ['fifoadd_48',['fifoAdd',['../class_r_f69.html#ab6d98f3f2d964d1833e20da246a5be89',1,'RF69::fifoAdd()'],['../class_s_x127x.html#a36dbd1697a415c6db3b47cd620c8c02e',1,'SX127x::fifoAdd()']]],
- ['fifoget_49',['fifoGet',['../class_r_f69.html#aa6886410230c654400c76ec7710d623c',1,'RF69::fifoGet()'],['../class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a',1,'SX127x::fifoGet()']]],
- ['finishtransmit_50',['finishTransmit',['../class_c_c1101.html#af70ea860154cd6d2b2e2a6962e161c8f',1,'CC1101::finishTransmit()'],['../classn_r_f24.html#af0c21ff66c011dfdc1ad12bc7dd11c2f',1,'nRF24::finishTransmit()'],['../class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b',1,'RF69::finishTransmit()'],['../class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3',1,'Si443x::finishTransmit()'],['../class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e',1,'SX126x::finishTransmit()'],['../class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f',1,'SX127x::finishTransmit()'],['../class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4',1,'SX128x::finishTransmit()'],['../class_physical_layer.html#aeba51a21ad3c6d56b61a55061de7fc92',1,'PhysicalLayer::finishTransmit()']]],
- ['fixedpacketlengthmode_51',['fixedPacketLengthMode',['../class_c_c1101.html#ad25ad96cddf62273bffd601384d22275',1,'CC1101::fixedPacketLengthMode()'],['../class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359',1,'SX127x::fixedPacketLengthMode()'],['../class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5',1,'SX126x::fixedPacketLengthMode()'],['../class_si443x.html#ad2b3a961a99d9e8f3a7ead6e8b69e858',1,'Si443x::fixedPacketLengthMode()'],['../class_r_f69.html#a0de2a07f264839cda945faebf7319e0e',1,'RF69::fixedPacketLengthMode()']]],
- ['flipbits_52',['flipBits',['../class_module.html#a7f5fd7409f21d33a16ea1de589962ae6',1,'Module']]],
- ['flipbits16_53',['flipBits16',['../class_module.html#a160006371be8e121a8a54cc4462b3a72',1,'Module']]],
- ['forceldro_54',['forceLDRO',['../class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8',1,'SX126x::forceLDRO()'],['../class_s_x1272.html#a4aaf9d61310fa7b4fce413ae53d30ac0',1,'SX1272::forceLDRO()'],['../class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856',1,'SX1278::forceLDRO()']]],
- ['freq_55',['freq',['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t']]],
- ['fsk4client_56',['FSK4Client',['../class_f_s_k4_client.html',1,'FSK4Client'],['../class_f_s_k4_client.html#a2cdcea538e5b58e99a23f98ef4a68617',1,'FSK4Client::FSK4Client(PhysicalLayer *phy)'],['../class_f_s_k4_client.html#a65105b2744c4721b75ca0894c654bf82',1,'FSK4Client::FSK4Client(AFSKClient *audio)']]]
+ ['fifoadd_49',['fifoAdd',['../class_r_f69.html#ab6d98f3f2d964d1833e20da246a5be89',1,'RF69::fifoAdd()'],['../class_s_x127x.html#a36dbd1697a415c6db3b47cd620c8c02e',1,'SX127x::fifoAdd()']]],
+ ['fifoget_50',['fifoGet',['../class_r_f69.html#aa6886410230c654400c76ec7710d623c',1,'RF69::fifoGet()'],['../class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a',1,'SX127x::fifoGet()']]],
+ ['finishtransmit_51',['finishTransmit',['../class_c_c1101.html#af70ea860154cd6d2b2e2a6962e161c8f',1,'CC1101::finishTransmit()'],['../classn_r_f24.html#af0c21ff66c011dfdc1ad12bc7dd11c2f',1,'nRF24::finishTransmit()'],['../class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b',1,'RF69::finishTransmit()'],['../class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3',1,'Si443x::finishTransmit()'],['../class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e',1,'SX126x::finishTransmit()'],['../class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f',1,'SX127x::finishTransmit()'],['../class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4',1,'SX128x::finishTransmit()'],['../class_physical_layer.html#a1de26f68b939f5af79ec29cc34c7be18',1,'PhysicalLayer::finishTransmit()']]],
+ ['fixedpacketlengthmode_52',['fixedPacketLengthMode',['../class_c_c1101.html#ad25ad96cddf62273bffd601384d22275',1,'CC1101::fixedPacketLengthMode()'],['../class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359',1,'SX127x::fixedPacketLengthMode()'],['../class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5',1,'SX126x::fixedPacketLengthMode()'],['../class_si443x.html#ad2b3a961a99d9e8f3a7ead6e8b69e858',1,'Si443x::fixedPacketLengthMode()'],['../class_r_f69.html#a0de2a07f264839cda945faebf7319e0e',1,'RF69::fixedPacketLengthMode()']]],
+ ['flipbits_53',['flipBits',['../class_module.html#a7f5fd7409f21d33a16ea1de589962ae6',1,'Module']]],
+ ['flipbits16_54',['flipBits16',['../class_module.html#a160006371be8e121a8a54cc4462b3a72',1,'Module']]],
+ ['forceldro_55',['forceLDRO',['../class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8',1,'SX126x::forceLDRO()'],['../class_s_x1272.html#a4aaf9d61310fa7b4fce413ae53d30ac0',1,'SX1272::forceLDRO()'],['../class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856',1,'SX1278::forceLDRO()']]],
+ ['freq_56',['freq',['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t']]],
+ ['fsk4client_57',['FSK4Client',['../class_f_s_k4_client.html',1,'FSK4Client'],['../class_f_s_k4_client.html#a2cdcea538e5b58e99a23f98ef4a68617',1,'FSK4Client::FSK4Client(PhysicalLayer *phy)'],['../class_f_s_k4_client.html#a65105b2744c4721b75ca0894c654bf82',1,'FSK4Client::FSK4Client(AFSKClient *audio)']]]
];
diff --git a/search/all_6.js b/search/all_6.js
index 9c1e3e7c..9fcfdb36 100644
--- a/search/all_6.js
+++ b/search/all_6.js
@@ -1,34 +1,34 @@
var searchData=
[
- ['getafcerror_57',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]],
- ['getchannelscanresult_58',['getChannelScanResult',['../class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f',1,'SX126x']]],
- ['getchipversion_59',['getChipVersion',['../class_c_c1101.html#a2a4c6e622dffd2788d8ac52d708b0705',1,'CC1101::getChipVersion()'],['../class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638',1,'RF69::getChipVersion()'],['../class_si443x.html#a55252bda74e8c67636a8c1fa0e9f58d3',1,'Si443x::getChipVersion()'],['../class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd',1,'SX127x::getChipVersion()']]],
- ['getcs_60',['getCs',['../class_module.html#ae53e355a77f2b7ce6473c62ac5f37334',1,'Module']]],
- ['getcurrentlimit_61',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]],
- ['getdatarate_62',['getDataRate',['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate() const']]],
- ['getfhsschannel_63',['getFHSSChannel',['../class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c',1,'SX127x']]],
- ['getfhsshoppingperiod_64',['getFHSSHoppingPeriod',['../class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617',1,'SX127x']]],
- ['getfreqstep_65',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]],
- ['getfrequency_66',['getFrequency',['../class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed',1,'RF69']]],
- ['getfrequencydeviation_67',['getFrequencyDeviation',['../class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9',1,'RF69::getFrequencyDeviation()'],['../class_c_c1101.html#abe26fa310e973bf2b14750b9eae02124',1,'CC1101::getFrequencyDeviation()']]],
- ['getfrequencyerror_68',['getFrequencyError',['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x::getFrequencyError()'],['../class_s_x128x.html#a2b424000856a9dc212f571d0e8890635',1,'SX128x::getFrequencyError()']]],
- ['getgpio_69',['getGpio',['../class_module.html#aeb4c7447372d56a7cae6db91994aacfc',1,'Module']]],
- ['getirq_70',['getIrq',['../class_module.html#a8c7f17a63b67117d953f1ba990b17f80',1,'Module']]],
- ['getirqflags_71',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]],
- ['getirqstatus_72',['getIrqStatus',['../class_s_x126x.html#a9a9b090eddcb811ee19b595debfab1df',1,'SX126x::getIrqStatus()'],['../class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22',1,'SX128x::getIrqStatus()']]],
- ['getlasterror_73',['getLastError',['../class_s_x126x.html#ac71eb1209354837ced2e21e66534bff3',1,'SX126x::getLastError()'],['../class_s_x128x.html#abefabeb0ecd6c441fbd388340bb7b2b2',1,'SX128x::getLastError()']]],
- ['getlqi_74',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]],
- ['getmodemstatus_75',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]],
- ['getpacketlength_76',['getPacketLength',['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()'],['../class_physical_layer.html#a0bd6046e068ef63e3f2b6bead48e02a7',1,'PhysicalLayer::getPacketLength()'],['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength()']]],
- ['getpictureheight_77',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]],
- ['getpromiscuousmode_78',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]],
- ['getrangingresult_79',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]],
- ['getrssi_80',['getRSSI',['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()'],['../class_s_x1278.html#ae52d84fa301309a4a4294312571fc3b8',1,'SX1278::getRSSI()'],['../class_s_x1272.html#a0d8e68cf913422535dc43cbdf73a3f10',1,'SX1272::getRSSI()'],['../class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925',1,'SX126x::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc',1,'CC1101::getRSSI()']]],
- ['getrssiinst_81',['getRSSIInst',['../class_s_x126x.html#ae36664f9c605a8fe74b2f357e0ec3323',1,'SX126x']]],
- ['getrst_82',['getRst',['../class_module.html#ae352c7a7b997fc1b17189c1312a8347f',1,'Module']]],
- ['getsnr_83',['getSNR',['../class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca',1,'SX126x::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()']]],
- ['getstatus_84',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]],
- ['gettemperature_85',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]],
- ['gettempraw_86',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]],
- ['gettimeonair_87',['getTimeOnAir',['../class_s_x126x.html#a7e342ddbef84cf845bef8f4448b8da10',1,'SX126x::getTimeOnAir()'],['../class_s_x127x.html#ad532e1a62c6ee2c58f9517e6e62728ac',1,'SX127x::getTimeOnAir()'],['../class_s_x128x.html#a2361a94f2e12ebc93e750a027d633232',1,'SX128x::getTimeOnAir()']]]
+ ['getafcerror_58',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]],
+ ['getchannelscanresult_59',['getChannelScanResult',['../class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f',1,'SX126x']]],
+ ['getchipversion_60',['getChipVersion',['../class_c_c1101.html#a2a4c6e622dffd2788d8ac52d708b0705',1,'CC1101::getChipVersion()'],['../class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638',1,'RF69::getChipVersion()'],['../class_si443x.html#a55252bda74e8c67636a8c1fa0e9f58d3',1,'Si443x::getChipVersion()'],['../class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd',1,'SX127x::getChipVersion()']]],
+ ['getcs_61',['getCs',['../class_module.html#ae53e355a77f2b7ce6473c62ac5f37334',1,'Module']]],
+ ['getcurrentlimit_62',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]],
+ ['getdatarate_63',['getDataRate',['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate() const']]],
+ ['getfhsschannel_64',['getFHSSChannel',['../class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c',1,'SX127x']]],
+ ['getfhsshoppingperiod_65',['getFHSSHoppingPeriod',['../class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617',1,'SX127x']]],
+ ['getfreqstep_66',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]],
+ ['getfrequency_67',['getFrequency',['../class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed',1,'RF69']]],
+ ['getfrequencydeviation_68',['getFrequencyDeviation',['../class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9',1,'RF69::getFrequencyDeviation()'],['../class_c_c1101.html#abe26fa310e973bf2b14750b9eae02124',1,'CC1101::getFrequencyDeviation()']]],
+ ['getfrequencyerror_69',['getFrequencyError',['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x::getFrequencyError()'],['../class_s_x128x.html#a2b424000856a9dc212f571d0e8890635',1,'SX128x::getFrequencyError()']]],
+ ['getgpio_70',['getGpio',['../class_module.html#aeb4c7447372d56a7cae6db91994aacfc',1,'Module']]],
+ ['getirq_71',['getIrq',['../class_module.html#a8c7f17a63b67117d953f1ba990b17f80',1,'Module']]],
+ ['getirqflags_72',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]],
+ ['getirqstatus_73',['getIrqStatus',['../class_s_x126x.html#a9a9b090eddcb811ee19b595debfab1df',1,'SX126x::getIrqStatus()'],['../class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22',1,'SX128x::getIrqStatus()']]],
+ ['getlasterror_74',['getLastError',['../class_s_x126x.html#ac71eb1209354837ced2e21e66534bff3',1,'SX126x::getLastError()'],['../class_s_x128x.html#abefabeb0ecd6c441fbd388340bb7b2b2',1,'SX128x::getLastError()']]],
+ ['getlqi_75',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]],
+ ['getmodemstatus_76',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]],
+ ['getpacketlength_77',['getPacketLength',['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()'],['../class_physical_layer.html#a2fe95169b5cdc8cabe1f2af66cad6ef6',1,'PhysicalLayer::getPacketLength()'],['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength()']]],
+ ['getpictureheight_78',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]],
+ ['getpromiscuousmode_79',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]],
+ ['getrangingresult_80',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]],
+ ['getrssi_81',['getRSSI',['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()'],['../class_s_x1278.html#ae52d84fa301309a4a4294312571fc3b8',1,'SX1278::getRSSI()'],['../class_s_x1272.html#a0d8e68cf913422535dc43cbdf73a3f10',1,'SX1272::getRSSI()'],['../class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925',1,'SX126x::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc',1,'CC1101::getRSSI()']]],
+ ['getrssiinst_82',['getRSSIInst',['../class_s_x126x.html#ae36664f9c605a8fe74b2f357e0ec3323',1,'SX126x']]],
+ ['getrst_83',['getRst',['../class_module.html#ae352c7a7b997fc1b17189c1312a8347f',1,'Module']]],
+ ['getsnr_84',['getSNR',['../class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca',1,'SX126x::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()']]],
+ ['getstatus_85',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]],
+ ['gettemperature_86',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]],
+ ['gettempraw_87',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]],
+ ['gettimeonair_88',['getTimeOnAir',['../class_s_x126x.html#a7e342ddbef84cf845bef8f4448b8da10',1,'SX126x::getTimeOnAir()'],['../class_s_x127x.html#ad532e1a62c6ee2c58f9517e6e62728ac',1,'SX127x::getTimeOnAir()'],['../class_s_x128x.html#a2361a94f2e12ebc93e750a027d633232',1,'SX128x::getTimeOnAir()']]]
];
diff --git a/search/all_7.js b/search/all_7.js
index a05f6a89..96cd1448 100644
--- a/search/all_7.js
+++ b/search/all_7.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['height_88',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]],
- ['hellclient_89',['HellClient',['../class_hell_client.html',1,'HellClient'],['../class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0',1,'HellClient::HellClient(PhysicalLayer *phy)'],['../class_hell_client.html#afeb347f04148700427ad40614fd057c3',1,'HellClient::HellClient(AFSKClient *audio)']]],
- ['hexdump_90',['hexdump',['../class_module.html#ac2dc188128f32f9360a178f31659291a',1,'Module']]]
+ ['height_89',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]],
+ ['hellclient_90',['HellClient',['../class_hell_client.html',1,'HellClient'],['../class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0',1,'HellClient::HellClient(PhysicalLayer *phy)'],['../class_hell_client.html#afeb347f04148700427ad40614fd057c3',1,'HellClient::HellClient(AFSKClient *audio)']]],
+ ['hexdump_91',['hexdump',['../class_module.html#ac2dc188128f32f9360a178f31659291a',1,'Module']]]
];
diff --git a/search/all_8.js b/search/all_8.js
index 18dab8ac..c692b6c8 100644
--- a/search/all_8.js
+++ b/search/all_8.js
@@ -1,11 +1,11 @@
var searchData=
[
- ['idle_91',['idle',['../class_f_s_k4_client.html#a79ca465012acc9223d61d5b063ff8257',1,'FSK4Client::idle()'],['../class_r_t_t_y_client.html#ac477e65ea756e56bb9043d778a51b4bc',1,'RTTYClient::idle()'],['../class_s_s_t_v_client.html#a0126ac04934f589b8cb04a038c342044',1,'SSTVClient::idle()']]],
- ['implicitheader_92',['implicitHeader',['../class_s_x126x.html#adec09cba71494bd927ad1da786606ca6',1,'SX126x::implicitHeader()'],['../class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3',1,'SX1272::implicitHeader()'],['../class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e',1,'SX1278::implicitHeader()'],['../class_s_x128x.html#ac69cc622020419cb3393eac5cc88915b',1,'SX128x::implicitHeader()']]],
- ['info_93',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]],
- ['infolen_94',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]],
- ['init_95',['init',['../class_module.html#ad1956ac81429ec1f61f83dbc081cf18c',1,'Module']]],
- ['invertiq_96',['invertIQ',['../class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04',1,'SX127x']]],
- ['iscarrierdetected_97',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]],
- ['ita2string_98',['ITA2String',['../class_i_t_a2_string.html',1,'ITA2String'],['../class_i_t_a2_string.html#addb6c39167aa5da53fb72e9a94c9c8f5',1,'ITA2String::ITA2String(char c)'],['../class_i_t_a2_string.html#a92ca563bdc2ae4d05ee91ce9372e7a55',1,'ITA2String::ITA2String(const char *str)']]]
+ ['idle_92',['idle',['../class_f_s_k4_client.html#a79ca465012acc9223d61d5b063ff8257',1,'FSK4Client::idle()'],['../class_r_t_t_y_client.html#ac477e65ea756e56bb9043d778a51b4bc',1,'RTTYClient::idle()'],['../class_s_s_t_v_client.html#a0126ac04934f589b8cb04a038c342044',1,'SSTVClient::idle()']]],
+ ['implicitheader_93',['implicitHeader',['../class_s_x126x.html#adec09cba71494bd927ad1da786606ca6',1,'SX126x::implicitHeader()'],['../class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3',1,'SX1272::implicitHeader()'],['../class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e',1,'SX1278::implicitHeader()'],['../class_s_x128x.html#ac69cc622020419cb3393eac5cc88915b',1,'SX128x::implicitHeader()']]],
+ ['info_94',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]],
+ ['infolen_95',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]],
+ ['init_96',['init',['../class_module.html#ad1956ac81429ec1f61f83dbc081cf18c',1,'Module']]],
+ ['invertiq_97',['invertIQ',['../class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04',1,'SX127x']]],
+ ['iscarrierdetected_98',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]],
+ ['ita2string_99',['ITA2String',['../class_i_t_a2_string.html',1,'ITA2String'],['../class_i_t_a2_string.html#addb6c39167aa5da53fb72e9a94c9c8f5',1,'ITA2String::ITA2String(char c)'],['../class_i_t_a2_string.html#a92ca563bdc2ae4d05ee91ce9372e7a55',1,'ITA2String::ITA2String(const char *str)']]]
];
diff --git a/search/all_9.js b/search/all_9.js
index 597fb00d..7f6d56b7 100644
--- a/search/all_9.js
+++ b/search/all_9.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['len_99',['len',['../structtone__t.html#a3b0421dd255c7c59552741957a6224ed',1,'tone_t']]],
- ['length_100',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]],
- ['llcc68_101',['LLCC68',['../class_l_l_c_c68.html',1,'LLCC68'],['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68::LLCC68()']]]
+ ['len_100',['len',['../structtone__t.html#a3b0421dd255c7c59552741957a6224ed',1,'tone_t']]],
+ ['length_101',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]],
+ ['llcc68_102',['LLCC68',['../class_l_l_c_c68.html',1,'LLCC68'],['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68::LLCC68()']]]
];
diff --git a/search/all_a.js b/search/all_a.js
index 73aacd2d..cc18118e 100644
--- a/search/all_a.js
+++ b/search/all_a.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['mic_2de_20message_20types_2e_102',['Mic-E message types.',['../group__mic__e__message__types.html',1,'']]],
- ['micros_103',['micros',['../class_module.html#af3f51e517a825949891ad29e30fd3f59',1,'Module']]],
- ['millis_104',['millis',['../class_module.html#a216dd0c6ce140857f2b003ab8d89fbac',1,'Module']]],
- ['module_105',['Module',['../class_module.html',1,'Module'],['../class_module.html#a1101d49f597f756141fc9de88a504f21',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE gpio=RADIOLIB_NC)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]],
- ['morseclient_106',['MorseClient',['../class_morse_client.html',1,'MorseClient'],['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)']]]
+ ['mic_2de_20message_20types_2e_103',['Mic-E message types.',['../group__mic__e__message__types.html',1,'']]],
+ ['micros_104',['micros',['../class_module.html#af3f51e517a825949891ad29e30fd3f59',1,'Module']]],
+ ['millis_105',['millis',['../class_module.html#a216dd0c6ce140857f2b003ab8d89fbac',1,'Module']]],
+ ['module_106',['Module',['../class_module.html',1,'Module'],['../class_module.html#a1101d49f597f756141fc9de88a504f21',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE gpio=RADIOLIB_NC)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]],
+ ['morseclient_107',['MorseClient',['../class_morse_client.html',1,'MorseClient'],['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)']]]
];
diff --git a/search/all_b.js b/search/all_b.js
index 0ddc45eb..9c446b67 100644
--- a/search/all_b.js
+++ b/search/all_b.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['notone_107',['noTone',['../class_module.html#af998b86ce1243f616f6fcb6df5336207',1,'Module::noTone()'],['../class_a_f_s_k_client.html#a664c1de9b5cd792826a5a77ac5457bae',1,'AFSKClient::noTone()']]],
- ['nrf24_108',['nRF24',['../classn_r_f24.html',1,'nRF24'],['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24::nRF24()']]],
- ['numrepeaters_109',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]],
- ['numtones_110',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]]
+ ['notone_108',['noTone',['../class_module.html#af998b86ce1243f616f6fcb6df5336207',1,'Module::noTone()'],['../class_a_f_s_k_client.html#a664c1de9b5cd792826a5a77ac5457bae',1,'AFSKClient::noTone()']]],
+ ['nrf24_109',['nRF24',['../classn_r_f24.html',1,'nRF24'],['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24::nRF24()']]],
+ ['numrepeaters_110',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]],
+ ['numtones_111',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]]
];
diff --git a/search/all_c.js b/search/all_c.js
index 394a3975..e29e1ca7 100644
--- a/search/all_c.js
+++ b/search/all_c.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['operator_3d_111',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()']]]
+ ['operator_3d_112',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()']]]
];
diff --git a/search/all_d.js b/search/all_d.js
index 83d82503..fdac602a 100644
--- a/search/all_d.js
+++ b/search/all_d.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['packetmode_112',['packetMode',['../class_c_c1101.html#a38f6978c757b0dd73e3ef98164a735a2',1,'CC1101::packetMode()'],['../class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f',1,'RF69::packetMode()'],['../class_si443x.html#a616eb24c4b11c5d39caaade160be8092',1,'Si443x::packetMode()'],['../class_s_x127x.html#a0995088d37689a3c240a1af791df6cf1',1,'SX127x::packetMode()']]],
- ['pagerclient_113',['PagerClient',['../class_pager_client.html',1,'PagerClient'],['../class_pager_client.html#a9f978120467b13104fb356e9b7d855ec',1,'PagerClient::PagerClient()']]],
- ['physicallayer_114',['PhysicalLayer',['../class_physical_layer.html',1,'PhysicalLayer'],['../class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62',1,'PhysicalLayer::PhysicalLayer()']]],
- ['pinmode_115',['pinMode',['../class_module.html#af7e4872dad3d19b6f75f532c88683168',1,'Module']]],
- ['printglyph_116',['printGlyph',['../class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9',1,'HellClient']]],
- ['protocolid_117',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]],
- ['pulsein_118',['pulseIn',['../class_module.html#a1310b9594f86fb1dc6646479922a1fdc',1,'Module']]]
+ ['packetmode_113',['packetMode',['../class_c_c1101.html#a38f6978c757b0dd73e3ef98164a735a2',1,'CC1101::packetMode()'],['../class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f',1,'RF69::packetMode()'],['../class_si443x.html#a616eb24c4b11c5d39caaade160be8092',1,'Si443x::packetMode()'],['../class_s_x127x.html#a0995088d37689a3c240a1af791df6cf1',1,'SX127x::packetMode()']]],
+ ['pagerclient_114',['PagerClient',['../class_pager_client.html',1,'PagerClient'],['../class_pager_client.html#a9f978120467b13104fb356e9b7d855ec',1,'PagerClient::PagerClient()']]],
+ ['physicallayer_115',['PhysicalLayer',['../class_physical_layer.html',1,'PhysicalLayer'],['../class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62',1,'PhysicalLayer::PhysicalLayer()']]],
+ ['pinmode_116',['pinMode',['../class_module.html#af7e4872dad3d19b6f75f532c88683168',1,'Module']]],
+ ['printglyph_117',['printGlyph',['../class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9',1,'HellClient']]],
+ ['protocolid_118',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]],
+ ['pulsein_119',['pulseIn',['../class_module.html#a1310b9594f86fb1dc6646479922a1fdc',1,'Module']]]
];
diff --git a/search/all_e.js b/search/all_e.js
index c4b3dff7..e439582e 100644
--- a/search/all_e.js
+++ b/search/all_e.js
@@ -1,97 +1,97 @@
var searchData=
[
- ['radiolib_20documentation_119',['RadioLib Documentation',['../index.html',1,'']]],
- ['radiolib_5fchannel_5ffree_120',['RADIOLIB_CHANNEL_FREE',['../group__status__codes.html#ga4673596b2cc7290be5ee0a2e9ee42718',1,'TypeDef.h']]],
- ['radiolib_5fencoding_5fmanchester_121',['RADIOLIB_ENCODING_MANCHESTER',['../group__config__encoding.html#gaffff394bbc47c05ed1bfde2e16a596e8',1,'TypeDef.h']]],
- ['radiolib_5fencoding_5fnrz_122',['RADIOLIB_ENCODING_NRZ',['../group__config__encoding.html#ga0253ae0c289d950e36106102a983f9cb',1,'TypeDef.h']]],
- ['radiolib_5fencoding_5fwhitening_123',['RADIOLIB_ENCODING_WHITENING',['../group__config__encoding.html#ga0bfc51be5abf0b434a49540bddb65328',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fack_5fnot_5freceived_124',['RADIOLIB_ERR_ACK_NOT_RECEIVED',['../group__status__codes.html#gafeff72bd7b618959d86b804a11f09063',1,'TypeDef.h']]],
- ['radiolib_5ferr_5faddress_5fnot_5ffound_125',['RADIOLIB_ERR_ADDRESS_NOT_FOUND',['../group__status__codes.html#ga806183ed238159d317132b0d44d7a0a2',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fchip_5fnot_5ffound_126',['RADIOLIB_ERR_CHIP_NOT_FOUND',['../group__status__codes.html#ga5d11e8ce64fb412c2169d0f30b9e9c62',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fcrc_5fmismatch_127',['RADIOLIB_ERR_CRC_MISMATCH',['../group__status__codes.html#ga9da949184e940a4fa6f4afb63c315963',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5faddress_5fwidth_128',['RADIOLIB_ERR_INVALID_ADDRESS_WIDTH',['../group__status__codes.html#gafbc04b924d23cba05307e94972d7d607',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fbandwidth_129',['RADIOLIB_ERR_INVALID_BANDWIDTH',['../group__status__codes.html#ga0710b406a7e12ab6e0f77fdb3374cd9a',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fbit_5frange_130',['RADIOLIB_ERR_INVALID_BIT_RANGE',['../group__status__codes.html#ga508806c18663156b0d00d1a21c957468',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fbit_5frate_131',['RADIOLIB_ERR_INVALID_BIT_RATE',['../group__status__codes.html#gac192dbf5134a10ed561100b01129224c',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fbit_5frate_5fbw_5fratio_132',['RADIOLIB_ERR_INVALID_BIT_RATE_BW_RATIO',['../group__status__codes.html#ga733a7f3f12109103384522dac4d1146e',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fcallsign_133',['RADIOLIB_ERR_INVALID_CALLSIGN',['../group__status__codes.html#gac1c27fd5a9ec38601a53c1c5ad428063',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fcoding_5frate_134',['RADIOLIB_ERR_INVALID_CODING_RATE',['../group__status__codes.html#ga4e64d3ed035b21bfb81cf2bca35b2ecb',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fcrc_5fconfiguration_135',['RADIOLIB_ERR_INVALID_CRC_CONFIGURATION',['../group__status__codes.html#gaedc74820131d6cb654302d776360f969',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fcurrent_5flimit_136',['RADIOLIB_ERR_INVALID_CURRENT_LIMIT',['../group__status__codes.html#gac314f4bd89f306c8a16237be9a9c80cb',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fdata_5frate_137',['RADIOLIB_ERR_INVALID_DATA_RATE',['../group__status__codes.html#ga9a098ceda0c3f153515c8cc36f1d683e',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fdata_5fshaping_138',['RADIOLIB_ERR_INVALID_DATA_SHAPING',['../group__status__codes.html#gaf16af86f43ac2946e82a1e87aea2882b',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fdio_5fpin_139',['RADIOLIB_ERR_INVALID_DIO_PIN',['../group__status__codes.html#ga193402d53d354b58c70e5324d1e5b531',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fencoding_140',['RADIOLIB_ERR_INVALID_ENCODING',['../group__status__codes.html#ga41b17f0207ad1aa10d666c8a9e4830c5',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5ffrequency_141',['RADIOLIB_ERR_INVALID_FREQUENCY',['../group__status__codes.html#ga9f80eb00fad12bb0bec384ad83b6941b',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5ffrequency_5fdeviation_142',['RADIOLIB_ERR_INVALID_FREQUENCY_DEVIATION',['../group__status__codes.html#gaabe141287f2d6ba723658309f4464662',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fgain_143',['RADIOLIB_ERR_INVALID_GAIN',['../group__status__codes.html#ga908f3a5ab6937d28536791c96cf9de23',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fmic_5fe_5ftelemetry_144',['RADIOLIB_ERR_INVALID_MIC_E_TELEMETRY',['../group__status__codes.html#gaeafdfcb2b10b08385feea93163fc3918',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fmic_5fe_5ftelemetry_5flength_145',['RADIOLIB_ERR_INVALID_MIC_E_TELEMETRY_LENGTH',['../group__status__codes.html#ga85e34d08b298a4125f77ddede011db3b',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fmodulation_146',['RADIOLIB_ERR_INVALID_MODULATION',['../group__status__codes.html#gab0f9cb8ee829a8504fc110de18c4ff67',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fmodulation_5fparameters_147',['RADIOLIB_ERR_INVALID_MODULATION_PARAMETERS',['../group__status__codes.html#ga7f57f6eddc68b9a59cceab4fdf6556ba',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fnum_5fbroad_5faddrs_148',['RADIOLIB_ERR_INVALID_NUM_BROAD_ADDRS',['../group__status__codes.html#gae0e8ebbd71661b8a107b01befc997e5e',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fnum_5frepeaters_149',['RADIOLIB_ERR_INVALID_NUM_REPEATERS',['../group__status__codes.html#ga47f1cc22b76c6b8685bd7e265ab78a1a',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fnum_5fsamples_150',['RADIOLIB_ERR_INVALID_NUM_SAMPLES',['../group__status__codes.html#gaa5d0e76a10099c6e1cfd8f24e48995a2',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fook_5frssi_5fpeak_5ftype_151',['RADIOLIB_ERR_INVALID_OOK_RSSI_PEAK_TYPE',['../group__status__codes.html#gabc97efb9f410af5c0a9c1e5f882e41d8',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5foutput_5fpower_152',['RADIOLIB_ERR_INVALID_OUTPUT_POWER',['../group__status__codes.html#ga55da4b2ee0661872a37f1c57fc61c666',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fpayload_153',['RADIOLIB_ERR_INVALID_PAYLOAD',['../group__status__codes.html#ga5529b54dc67d5ccdc2a29989ebf43711',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fpipe_5fnumber_154',['RADIOLIB_ERR_INVALID_PIPE_NUMBER',['../group__status__codes.html#ga3ed4264643f97b76f9f3cf242338573d',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fpreamble_5flength_155',['RADIOLIB_ERR_INVALID_PREAMBLE_LENGTH',['../group__status__codes.html#ga9dc55947447ed9c91217f86a9bca75bb',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5frepeater_5fcallsign_156',['RADIOLIB_ERR_INVALID_REPEATER_CALLSIGN',['../group__status__codes.html#ga684497ce1c94442b5fe0396ea4ec930d',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5frssi_5foffset_157',['RADIOLIB_ERR_INVALID_RSSI_OFFSET',['../group__status__codes.html#ga0f1e3d5da7867511500fcd4a43f4df2f',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5frssi_5fthreshold_158',['RADIOLIB_ERR_INVALID_RSSI_THRESHOLD',['../group__status__codes.html#ga0f0aad5acd6d24fc7da9269664912d48',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5frtty_5fshift_159',['RADIOLIB_ERR_INVALID_RTTY_SHIFT',['../group__status__codes.html#ga6b75df06d8c18366f85848331c49a1af',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5frx_5fbandwidth_160',['RADIOLIB_ERR_INVALID_RX_BANDWIDTH',['../group__status__codes.html#gaa1f484c73f9abe05408c84fe5891539b',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5frx_5fperiod_161',['RADIOLIB_ERR_INVALID_RX_PERIOD',['../group__status__codes.html#ga4b30b822814dc8d49d3f3229011c8aff',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fsleep_5fperiod_162',['RADIOLIB_ERR_INVALID_SLEEP_PERIOD',['../group__status__codes.html#ga0066a30650888853a622413a579d891c',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fspreading_5ffactor_163',['RADIOLIB_ERR_INVALID_SPREADING_FACTOR',['../group__status__codes.html#ga0e196b0ec8efd606cd60592f88b626e8',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fsymbol_164',['RADIOLIB_ERR_INVALID_SYMBOL',['../group__status__codes.html#ga7f9712de2117b89215410fc18776dc84',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fsync_5fword_165',['RADIOLIB_ERR_INVALID_SYNC_WORD',['../group__status__codes.html#ga5584a219fcb1a8e1789142b18a3a511e',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5ftcxo_5fvoltage_166',['RADIOLIB_ERR_INVALID_TCXO_VOLTAGE',['../group__status__codes.html#ga691e968e9f057a6cecb37a5dd5d8bd68',1,'TypeDef.h']]],
- ['radiolib_5ferr_5flora_5fheader_5fdamaged_167',['RADIOLIB_ERR_LORA_HEADER_DAMAGED',['../group__status__codes.html#gab152891bb13f6f70e6631820904e9d90',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fmemory_5fallocation_5ffailed_168',['RADIOLIB_ERR_MEMORY_ALLOCATION_FAILED',['../group__status__codes.html#ga7afc28738967d4d91c13d1d412d6f5e4',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fmic_5fe_5ftelemetry_5fstatus_169',['RADIOLIB_ERR_MIC_E_TELEMETRY_STATUS',['../group__status__codes.html#ga54a2fc9441c25b56979c6edab097ff12',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fnone_170',['RADIOLIB_ERR_NONE',['../group__status__codes.html#ga4c1dd3c7f2b37c973a047c58506729f5',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fnull_5fpointer_171',['RADIOLIB_ERR_NULL_POINTER',['../group__status__codes.html#gaad31ccea119011fd05441ed83e0f3b3d',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fpacket_5ftoo_5flong_172',['RADIOLIB_ERR_PACKET_TOO_LONG',['../group__status__codes.html#ga4602702eac86c5c3a13b93a06d846fac',1,'TypeDef.h']]],
- ['radiolib_5ferr_5franging_5ftimeout_173',['RADIOLIB_ERR_RANGING_TIMEOUT',['../group__status__codes.html#gabf529b0d150265c071c2255cb45f9e4f',1,'TypeDef.h']]],
- ['radiolib_5ferr_5frx_5ftimeout_174',['RADIOLIB_ERR_RX_TIMEOUT',['../group__status__codes.html#gafadba2c16b7296cbaf96978e8eadfa45',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fspi_5fcmd_5ffailed_175',['RADIOLIB_ERR_SPI_CMD_FAILED',['../group__status__codes.html#gabc695a4fae689e856ae6f618e334066f',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fspi_5fcmd_5finvalid_176',['RADIOLIB_ERR_SPI_CMD_INVALID',['../group__status__codes.html#gac1902fa5b8d5c9469dd9261880ba2957',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fspi_5fcmd_5ftimeout_177',['RADIOLIB_ERR_SPI_CMD_TIMEOUT',['../group__status__codes.html#ga72b849c71b8fdf112d318518a3b1ac7d',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fspi_5fwrite_5ffailed_178',['RADIOLIB_ERR_SPI_WRITE_FAILED',['../group__status__codes.html#ga31e0864281b5ea21c53206c49877b670',1,'TypeDef.h']]],
- ['radiolib_5ferr_5ftx_5ftimeout_179',['RADIOLIB_ERR_TX_TIMEOUT',['../group__status__codes.html#gac4185b9eaead4de110763759f01e1f4f',1,'TypeDef.h']]],
- ['radiolib_5ferr_5funknown_180',['RADIOLIB_ERR_UNKNOWN',['../group__status__codes.html#gacc0baeb3e5fc99760a07d18ba55531b6',1,'TypeDef.h']]],
- ['radiolib_5ferr_5funsupported_181',['RADIOLIB_ERR_UNSUPPORTED',['../group__status__codes.html#ga00c1c2b500feea59d0d47dddd7179be1',1,'TypeDef.h']]],
- ['radiolib_5ferr_5funsupported_5fencoding_182',['RADIOLIB_ERR_UNSUPPORTED_ENCODING',['../group__status__codes.html#gae4d77c5138cc5f21fb2af4b0791e9f81',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fwrong_5fmodem_183',['RADIOLIB_ERR_WRONG_MODEM',['../group__status__codes.html#gad95d2455d580745d41ef2f319c6585f8',1,'TypeDef.h']]],
- ['radiolib_5flora_5fdetected_184',['RADIOLIB_LORA_DETECTED',['../group__status__codes.html#ga58ff08f4dba334cf8e26474ec2d3facd',1,'TypeDef.h']]],
- ['radiolib_5fpreamble_5fdetected_185',['RADIOLIB_PREAMBLE_DETECTED',['../group__status__codes.html#ga382dc113e93f196401914853ec176b18',1,'TypeDef.h']]],
- ['radiolib_5fshaping_5f0_5f3_186',['RADIOLIB_SHAPING_0_3',['../group__config__shaping.html#ga6a562fca42573d39e4a214c293756f64',1,'TypeDef.h']]],
- ['radiolib_5fshaping_5f0_5f5_187',['RADIOLIB_SHAPING_0_5',['../group__config__shaping.html#gaa778d14c29d21fe329137a28a3f54a5d',1,'TypeDef.h']]],
- ['radiolib_5fshaping_5f0_5f7_188',['RADIOLIB_SHAPING_0_7',['../group__config__shaping.html#ga677dde0ea956d5e99af30cf501a727ad',1,'TypeDef.h']]],
- ['radiolib_5fshaping_5f1_5f0_189',['RADIOLIB_SHAPING_1_0',['../group__config__shaping.html#ga80e2185af1123c7632aa40cad1691e6d',1,'TypeDef.h']]],
- ['radiolib_5fshaping_5fnone_190',['RADIOLIB_SHAPING_NONE',['../group__config__shaping.html#gaa9495bc5eb54df04f2ed7b1ccbb4f277',1,'TypeDef.h']]],
- ['random_191',['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_192',['randomByte',['../class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833',1,'CC1101::randomByte()'],['../classn_r_f24.html#a5cc7cd54db2a6af1c9183a2d0653fe2e',1,'nRF24::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',1,'SX126x::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_physical_layer.html#a34543b885aa57ade08a4c659991e523e',1,'PhysicalLayer::randomByte()']]],
- ['range_193',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]],
- ['rcvseqnumber_194',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]],
- ['read_195',['read',['../class_morse_client.html#a709093c92d69f29f1520f0b290af374b',1,'MorseClient::read()'],['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()']]],
- ['readbit_196',['readBit',['../class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa',1,'RF69::readBit()'],['../class_c_c1101.html#a5cebec89fc0fa0f5ccbce28c6ce7d2dc',1,'CC1101::readBit()'],['../class_physical_layer.html#a9b720e7776ad7ea805932578907b0058',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#a2dd0ecae9f54cf6943cf702ae15f5039',1,'SX128x::readBit()'],['../class_s_x127x.html#a071442611a32154e8b3db7981f242a53',1,'SX127x::readBit()'],['../class_s_x126x.html#aff80db65e546934980feac7e6c81dd80',1,'SX126x::readBit()'],['../class_si443x.html#a45d3ffcb312c34a2f6391be6d609d7b7',1,'Si443x::readBit()'],['../classn_r_f24.html#a2db0cd487b03f937afc0bc2e3eccb6f6',1,'nRF24::readBit()']]],
- ['readdata_197',['readData',['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../class_physical_layer.html#ae8eed0e888a7c8742e89d2b850977de2',1,'PhysicalLayer::readData(String &str, size_t len=0)'],['../class_physical_layer.html#ae8b6c756eb4b92855433ca389d73c632',1,'PhysicalLayer::readData(uint8_t *data, size_t len)=0'],['../class_c_c1101.html#ae8eed0e888a7c8742e89d2b850977de2',1,'CC1101::readData(String &str, size_t len=0)'],['../class_c_c1101.html#ae8b6c756eb4b92855433ca389d73c632',1,'CC1101::readData(uint8_t *data, size_t len)=0'],['../class_s_x127x.html#ae8eed0e888a7c8742e89d2b850977de2',1,'SX127x::readData()'],['../classn_r_f24.html#ae8eed0e888a7c8742e89d2b850977de2',1,'nRF24::readData()'],['../class_pager_client.html#ac000d0d6b1eb389ead95290f8895d02d',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_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData()'],['../class_r_f69.html#ae8eed0e888a7c8742e89d2b850977de2',1,'RF69::readData()'],['../classn_r_f24.html#ae8b6c756eb4b92855433ca389d73c632',1,'nRF24::readData()'],['../class_s_x128x.html#ae8b6c756eb4b92855433ca389d73c632',1,'SX128x::readData(uint8_t *data, size_t len)=0'],['../class_s_x128x.html#ae8eed0e888a7c8742e89d2b850977de2',1,'SX128x::readData(String &str, size_t len=0)'],['../class_s_x127x.html#ae8b6c756eb4b92855433ca389d73c632',1,'SX127x::readData()'],['../class_s_x126x.html#ae8b6c756eb4b92855433ca389d73c632',1,'SX126x::readData(uint8_t *data, size_t len)=0'],['../class_s_x126x.html#ae8eed0e888a7c8742e89d2b850977de2',1,'SX126x::readData(String &str, size_t len=0)'],['../class_si443x.html#ae8b6c756eb4b92855433ca389d73c632',1,'Si443x::readData(uint8_t *data, size_t len)=0'],['../class_si443x.html#ae8eed0e888a7c8742e89d2b850977de2',1,'Si443x::readData(String &str, size_t len=0)'],['../class_r_f69.html#ae8b6c756eb4b92855433ca389d73c632',1,'RF69::readData()']]],
- ['receive_198',['receive',['../class_si443x.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'Si443x::receive()'],['../classn_r_f24.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'nRF24::receive(String &str, size_t len=0)'],['../classn_r_f24.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'nRF24::receive(uint8_t *data, size_t len)=0'],['../class_c_c1101.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'CC1101::receive(uint8_t *data, size_t len)=0'],['../class_c_c1101.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'CC1101::receive(String &str, size_t len=0)'],['../class_physical_layer.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'PhysicalLayer::receive(uint8_t *data, size_t len)=0'],['../class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'PhysicalLayer::receive(String &str, size_t len=0)'],['../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_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_r_f69.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'RF69::receive()'],['../class_si443x.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'Si443x::receive()'],['../class_s_x126x.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'SX126x::receive(String &str, size_t len=0)'],['../class_s_x126x.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'SX126x::receive(uint8_t *data, size_t len)=0'],['../class_s_x127x.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'SX127x::receive(String &str, size_t len=0)'],['../class_s_x127x.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'SX127x::receive(uint8_t *data, size_t len)=0'],['../class_s_x128x.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'SX128x::receive(String &str, size_t len=0)'],['../class_s_x128x.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'SX128x::receive(uint8_t *data, size_t len)=0'],['../class_r_f69.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'RF69::receive()']]],
- ['receivedirect_199',['receiveDirect',['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect()'],['../class_physical_layer.html#a46b22145b33e97cf6065ed826799b6b4',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()'],['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()']]],
- ['receivedirectasync_200',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]],
- ['regdump_201',['regdump',['../class_module.html#a7216d32fc55130d111409c6f2050d9c0',1,'Module']]],
- ['repeatercallsigns_202',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]],
- ['repeaterssids_203',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]],
- ['reset_204',['reset',['../class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a',1,'RF69::reset()'],['../class_s_x128x.html#a2643ce22176293631fea2169f5e68e66',1,'SX128x::reset()'],['../class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68',1,'SX127x::reset()'],['../class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad',1,'SX1278::reset()'],['../class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac',1,'SX1272::reset()'],['../class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f',1,'SX126x::reset()'],['../class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97',1,'Si443x::reset()']]],
- ['rf69_205',['RF69',['../class_r_f69.html',1,'RF69'],['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69::RF69()']]],
- ['rfm22_206',['RFM22',['../class_r_f_m22.html',1,'']]],
- ['rfm23_207',['RFM23',['../class_r_f_m23.html',1,'']]],
- ['rfm95_208',['RFM95',['../class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326',1,'RFM95::RFM95()'],['../class_r_f_m95.html',1,'RFM95']]],
- ['rfm96_209',['RFM96',['../class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a',1,'RFM96::RFM96()'],['../class_r_f_m96.html',1,'RFM96']]],
- ['rfm97_210',['RFM97',['../class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be',1,'RFM97::RFM97()'],['../class_r_f_m97.html',1,'RFM97']]],
- ['rfm98_211',['RFM98',['../class_r_f_m98.html',1,'']]],
- ['rttyclient_212',['RTTYClient',['../class_r_t_t_y_client.html#ae6bc08fa88457ee00a992448be1d63ea',1,'RTTYClient::RTTYClient()'],['../class_r_t_t_y_client.html',1,'RTTYClient'],['../class_r_t_t_y_client.html#ab0e11944c2f1e2c60fc45bcd2db18570',1,'RTTYClient::RTTYClient()']]]
+ ['radiolib_20documentation_120',['RadioLib Documentation',['../index.html',1,'']]],
+ ['radiolib_5fchannel_5ffree_121',['RADIOLIB_CHANNEL_FREE',['../group__status__codes.html#ga4673596b2cc7290be5ee0a2e9ee42718',1,'TypeDef.h']]],
+ ['radiolib_5fencoding_5fmanchester_122',['RADIOLIB_ENCODING_MANCHESTER',['../group__config__encoding.html#gaffff394bbc47c05ed1bfde2e16a596e8',1,'TypeDef.h']]],
+ ['radiolib_5fencoding_5fnrz_123',['RADIOLIB_ENCODING_NRZ',['../group__config__encoding.html#ga0253ae0c289d950e36106102a983f9cb',1,'TypeDef.h']]],
+ ['radiolib_5fencoding_5fwhitening_124',['RADIOLIB_ENCODING_WHITENING',['../group__config__encoding.html#ga0bfc51be5abf0b434a49540bddb65328',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fack_5fnot_5freceived_125',['RADIOLIB_ERR_ACK_NOT_RECEIVED',['../group__status__codes.html#gafeff72bd7b618959d86b804a11f09063',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5faddress_5fnot_5ffound_126',['RADIOLIB_ERR_ADDRESS_NOT_FOUND',['../group__status__codes.html#ga806183ed238159d317132b0d44d7a0a2',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fchip_5fnot_5ffound_127',['RADIOLIB_ERR_CHIP_NOT_FOUND',['../group__status__codes.html#ga5d11e8ce64fb412c2169d0f30b9e9c62',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fcrc_5fmismatch_128',['RADIOLIB_ERR_CRC_MISMATCH',['../group__status__codes.html#ga9da949184e940a4fa6f4afb63c315963',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5faddress_5fwidth_129',['RADIOLIB_ERR_INVALID_ADDRESS_WIDTH',['../group__status__codes.html#gafbc04b924d23cba05307e94972d7d607',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fbandwidth_130',['RADIOLIB_ERR_INVALID_BANDWIDTH',['../group__status__codes.html#ga0710b406a7e12ab6e0f77fdb3374cd9a',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fbit_5frange_131',['RADIOLIB_ERR_INVALID_BIT_RANGE',['../group__status__codes.html#ga508806c18663156b0d00d1a21c957468',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fbit_5frate_132',['RADIOLIB_ERR_INVALID_BIT_RATE',['../group__status__codes.html#gac192dbf5134a10ed561100b01129224c',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fbit_5frate_5fbw_5fratio_133',['RADIOLIB_ERR_INVALID_BIT_RATE_BW_RATIO',['../group__status__codes.html#ga733a7f3f12109103384522dac4d1146e',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fcallsign_134',['RADIOLIB_ERR_INVALID_CALLSIGN',['../group__status__codes.html#gac1c27fd5a9ec38601a53c1c5ad428063',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fcoding_5frate_135',['RADIOLIB_ERR_INVALID_CODING_RATE',['../group__status__codes.html#ga4e64d3ed035b21bfb81cf2bca35b2ecb',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fcrc_5fconfiguration_136',['RADIOLIB_ERR_INVALID_CRC_CONFIGURATION',['../group__status__codes.html#gaedc74820131d6cb654302d776360f969',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fcurrent_5flimit_137',['RADIOLIB_ERR_INVALID_CURRENT_LIMIT',['../group__status__codes.html#gac314f4bd89f306c8a16237be9a9c80cb',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fdata_5frate_138',['RADIOLIB_ERR_INVALID_DATA_RATE',['../group__status__codes.html#ga9a098ceda0c3f153515c8cc36f1d683e',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fdata_5fshaping_139',['RADIOLIB_ERR_INVALID_DATA_SHAPING',['../group__status__codes.html#gaf16af86f43ac2946e82a1e87aea2882b',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fdio_5fpin_140',['RADIOLIB_ERR_INVALID_DIO_PIN',['../group__status__codes.html#ga193402d53d354b58c70e5324d1e5b531',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fencoding_141',['RADIOLIB_ERR_INVALID_ENCODING',['../group__status__codes.html#ga41b17f0207ad1aa10d666c8a9e4830c5',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5ffrequency_142',['RADIOLIB_ERR_INVALID_FREQUENCY',['../group__status__codes.html#ga9f80eb00fad12bb0bec384ad83b6941b',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5ffrequency_5fdeviation_143',['RADIOLIB_ERR_INVALID_FREQUENCY_DEVIATION',['../group__status__codes.html#gaabe141287f2d6ba723658309f4464662',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fgain_144',['RADIOLIB_ERR_INVALID_GAIN',['../group__status__codes.html#ga908f3a5ab6937d28536791c96cf9de23',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fmic_5fe_5ftelemetry_145',['RADIOLIB_ERR_INVALID_MIC_E_TELEMETRY',['../group__status__codes.html#gaeafdfcb2b10b08385feea93163fc3918',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fmic_5fe_5ftelemetry_5flength_146',['RADIOLIB_ERR_INVALID_MIC_E_TELEMETRY_LENGTH',['../group__status__codes.html#ga85e34d08b298a4125f77ddede011db3b',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fmodulation_147',['RADIOLIB_ERR_INVALID_MODULATION',['../group__status__codes.html#gab0f9cb8ee829a8504fc110de18c4ff67',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fmodulation_5fparameters_148',['RADIOLIB_ERR_INVALID_MODULATION_PARAMETERS',['../group__status__codes.html#ga7f57f6eddc68b9a59cceab4fdf6556ba',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fnum_5fbroad_5faddrs_149',['RADIOLIB_ERR_INVALID_NUM_BROAD_ADDRS',['../group__status__codes.html#gae0e8ebbd71661b8a107b01befc997e5e',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fnum_5frepeaters_150',['RADIOLIB_ERR_INVALID_NUM_REPEATERS',['../group__status__codes.html#ga47f1cc22b76c6b8685bd7e265ab78a1a',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fnum_5fsamples_151',['RADIOLIB_ERR_INVALID_NUM_SAMPLES',['../group__status__codes.html#gaa5d0e76a10099c6e1cfd8f24e48995a2',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fook_5frssi_5fpeak_5ftype_152',['RADIOLIB_ERR_INVALID_OOK_RSSI_PEAK_TYPE',['../group__status__codes.html#gabc97efb9f410af5c0a9c1e5f882e41d8',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5foutput_5fpower_153',['RADIOLIB_ERR_INVALID_OUTPUT_POWER',['../group__status__codes.html#ga55da4b2ee0661872a37f1c57fc61c666',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fpayload_154',['RADIOLIB_ERR_INVALID_PAYLOAD',['../group__status__codes.html#ga5529b54dc67d5ccdc2a29989ebf43711',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fpipe_5fnumber_155',['RADIOLIB_ERR_INVALID_PIPE_NUMBER',['../group__status__codes.html#ga3ed4264643f97b76f9f3cf242338573d',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fpreamble_5flength_156',['RADIOLIB_ERR_INVALID_PREAMBLE_LENGTH',['../group__status__codes.html#ga9dc55947447ed9c91217f86a9bca75bb',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5frepeater_5fcallsign_157',['RADIOLIB_ERR_INVALID_REPEATER_CALLSIGN',['../group__status__codes.html#ga684497ce1c94442b5fe0396ea4ec930d',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5frssi_5foffset_158',['RADIOLIB_ERR_INVALID_RSSI_OFFSET',['../group__status__codes.html#ga0f1e3d5da7867511500fcd4a43f4df2f',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5frssi_5fthreshold_159',['RADIOLIB_ERR_INVALID_RSSI_THRESHOLD',['../group__status__codes.html#ga0f0aad5acd6d24fc7da9269664912d48',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5frtty_5fshift_160',['RADIOLIB_ERR_INVALID_RTTY_SHIFT',['../group__status__codes.html#ga6b75df06d8c18366f85848331c49a1af',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5frx_5fbandwidth_161',['RADIOLIB_ERR_INVALID_RX_BANDWIDTH',['../group__status__codes.html#gaa1f484c73f9abe05408c84fe5891539b',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5frx_5fperiod_162',['RADIOLIB_ERR_INVALID_RX_PERIOD',['../group__status__codes.html#ga4b30b822814dc8d49d3f3229011c8aff',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fsleep_5fperiod_163',['RADIOLIB_ERR_INVALID_SLEEP_PERIOD',['../group__status__codes.html#ga0066a30650888853a622413a579d891c',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fspreading_5ffactor_164',['RADIOLIB_ERR_INVALID_SPREADING_FACTOR',['../group__status__codes.html#ga0e196b0ec8efd606cd60592f88b626e8',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fsymbol_165',['RADIOLIB_ERR_INVALID_SYMBOL',['../group__status__codes.html#ga7f9712de2117b89215410fc18776dc84',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fsync_5fword_166',['RADIOLIB_ERR_INVALID_SYNC_WORD',['../group__status__codes.html#ga5584a219fcb1a8e1789142b18a3a511e',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5ftcxo_5fvoltage_167',['RADIOLIB_ERR_INVALID_TCXO_VOLTAGE',['../group__status__codes.html#ga691e968e9f057a6cecb37a5dd5d8bd68',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5flora_5fheader_5fdamaged_168',['RADIOLIB_ERR_LORA_HEADER_DAMAGED',['../group__status__codes.html#gab152891bb13f6f70e6631820904e9d90',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fmemory_5fallocation_5ffailed_169',['RADIOLIB_ERR_MEMORY_ALLOCATION_FAILED',['../group__status__codes.html#ga7afc28738967d4d91c13d1d412d6f5e4',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fmic_5fe_5ftelemetry_5fstatus_170',['RADIOLIB_ERR_MIC_E_TELEMETRY_STATUS',['../group__status__codes.html#ga54a2fc9441c25b56979c6edab097ff12',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fnone_171',['RADIOLIB_ERR_NONE',['../group__status__codes.html#ga4c1dd3c7f2b37c973a047c58506729f5',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fnull_5fpointer_172',['RADIOLIB_ERR_NULL_POINTER',['../group__status__codes.html#gaad31ccea119011fd05441ed83e0f3b3d',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fpacket_5ftoo_5flong_173',['RADIOLIB_ERR_PACKET_TOO_LONG',['../group__status__codes.html#ga4602702eac86c5c3a13b93a06d846fac',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5franging_5ftimeout_174',['RADIOLIB_ERR_RANGING_TIMEOUT',['../group__status__codes.html#gabf529b0d150265c071c2255cb45f9e4f',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5frx_5ftimeout_175',['RADIOLIB_ERR_RX_TIMEOUT',['../group__status__codes.html#gafadba2c16b7296cbaf96978e8eadfa45',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fspi_5fcmd_5ffailed_176',['RADIOLIB_ERR_SPI_CMD_FAILED',['../group__status__codes.html#gabc695a4fae689e856ae6f618e334066f',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fspi_5fcmd_5finvalid_177',['RADIOLIB_ERR_SPI_CMD_INVALID',['../group__status__codes.html#gac1902fa5b8d5c9469dd9261880ba2957',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fspi_5fcmd_5ftimeout_178',['RADIOLIB_ERR_SPI_CMD_TIMEOUT',['../group__status__codes.html#ga72b849c71b8fdf112d318518a3b1ac7d',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fspi_5fwrite_5ffailed_179',['RADIOLIB_ERR_SPI_WRITE_FAILED',['../group__status__codes.html#ga31e0864281b5ea21c53206c49877b670',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5ftx_5ftimeout_180',['RADIOLIB_ERR_TX_TIMEOUT',['../group__status__codes.html#gac4185b9eaead4de110763759f01e1f4f',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5funknown_181',['RADIOLIB_ERR_UNKNOWN',['../group__status__codes.html#gacc0baeb3e5fc99760a07d18ba55531b6',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5funsupported_182',['RADIOLIB_ERR_UNSUPPORTED',['../group__status__codes.html#ga00c1c2b500feea59d0d47dddd7179be1',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5funsupported_5fencoding_183',['RADIOLIB_ERR_UNSUPPORTED_ENCODING',['../group__status__codes.html#gae4d77c5138cc5f21fb2af4b0791e9f81',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fwrong_5fmodem_184',['RADIOLIB_ERR_WRONG_MODEM',['../group__status__codes.html#gad95d2455d580745d41ef2f319c6585f8',1,'TypeDef.h']]],
+ ['radiolib_5flora_5fdetected_185',['RADIOLIB_LORA_DETECTED',['../group__status__codes.html#ga58ff08f4dba334cf8e26474ec2d3facd',1,'TypeDef.h']]],
+ ['radiolib_5fpreamble_5fdetected_186',['RADIOLIB_PREAMBLE_DETECTED',['../group__status__codes.html#ga382dc113e93f196401914853ec176b18',1,'TypeDef.h']]],
+ ['radiolib_5fshaping_5f0_5f3_187',['RADIOLIB_SHAPING_0_3',['../group__config__shaping.html#ga6a562fca42573d39e4a214c293756f64',1,'TypeDef.h']]],
+ ['radiolib_5fshaping_5f0_5f5_188',['RADIOLIB_SHAPING_0_5',['../group__config__shaping.html#gaa778d14c29d21fe329137a28a3f54a5d',1,'TypeDef.h']]],
+ ['radiolib_5fshaping_5f0_5f7_189',['RADIOLIB_SHAPING_0_7',['../group__config__shaping.html#ga677dde0ea956d5e99af30cf501a727ad',1,'TypeDef.h']]],
+ ['radiolib_5fshaping_5f1_5f0_190',['RADIOLIB_SHAPING_1_0',['../group__config__shaping.html#ga80e2185af1123c7632aa40cad1691e6d',1,'TypeDef.h']]],
+ ['radiolib_5fshaping_5fnone_191',['RADIOLIB_SHAPING_NONE',['../group__config__shaping.html#gaa9495bc5eb54df04f2ed7b1ccbb4f277',1,'TypeDef.h']]],
+ ['random_192',['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_193',['randomByte',['../class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833',1,'CC1101::randomByte()'],['../classn_r_f24.html#a5cc7cd54db2a6af1c9183a2d0653fe2e',1,'nRF24::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',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_194',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]],
+ ['rcvseqnumber_195',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]],
+ ['read_196',['read',['../class_morse_client.html#a709093c92d69f29f1520f0b290af374b',1,'MorseClient::read()'],['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()']]],
+ ['readbit_197',['readBit',['../class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa',1,'RF69::readBit()'],['../class_c_c1101.html#a5cebec89fc0fa0f5ccbce28c6ce7d2dc',1,'CC1101::readBit()'],['../class_physical_layer.html#ae868adcc63ee0869999e8ccac86b6ff2',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#a2dd0ecae9f54cf6943cf702ae15f5039',1,'SX128x::readBit()'],['../class_s_x127x.html#a071442611a32154e8b3db7981f242a53',1,'SX127x::readBit()'],['../class_s_x126x.html#aff80db65e546934980feac7e6c81dd80',1,'SX126x::readBit()'],['../class_si443x.html#a45d3ffcb312c34a2f6391be6d609d7b7',1,'Si443x::readBit()'],['../classn_r_f24.html#a2db0cd487b03f937afc0bc2e3eccb6f6',1,'nRF24::readBit()']]],
+ ['readdata_198',['readData',['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../class_physical_layer.html#ae8eed0e888a7c8742e89d2b850977de2',1,'PhysicalLayer::readData(String &str, size_t len=0)'],['../class_physical_layer.html#a3563453988a83d22dd07d4691543a300',1,'PhysicalLayer::readData(uint8_t *data, size_t len)'],['../class_c_c1101.html#ae8eed0e888a7c8742e89d2b850977de2',1,'CC1101::readData(String &str, size_t len=0)'],['../class_c_c1101.html#a3563453988a83d22dd07d4691543a300',1,'CC1101::readData(uint8_t *data, size_t len)'],['../class_s_x127x.html#ae8eed0e888a7c8742e89d2b850977de2',1,'SX127x::readData()'],['../classn_r_f24.html#ae8eed0e888a7c8742e89d2b850977de2',1,'nRF24::readData()'],['../class_pager_client.html#ac000d0d6b1eb389ead95290f8895d02d',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_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData()'],['../class_r_f69.html#ae8eed0e888a7c8742e89d2b850977de2',1,'RF69::readData()'],['../classn_r_f24.html#a3563453988a83d22dd07d4691543a300',1,'nRF24::readData()'],['../class_s_x128x.html#a3563453988a83d22dd07d4691543a300',1,'SX128x::readData(uint8_t *data, size_t len)'],['../class_s_x128x.html#ae8eed0e888a7c8742e89d2b850977de2',1,'SX128x::readData(String &str, size_t len=0)'],['../class_s_x127x.html#a3563453988a83d22dd07d4691543a300',1,'SX127x::readData()'],['../class_s_x126x.html#a3563453988a83d22dd07d4691543a300',1,'SX126x::readData(uint8_t *data, size_t len)'],['../class_s_x126x.html#ae8eed0e888a7c8742e89d2b850977de2',1,'SX126x::readData(String &str, size_t len=0)'],['../class_si443x.html#a3563453988a83d22dd07d4691543a300',1,'Si443x::readData(uint8_t *data, size_t len)'],['../class_si443x.html#ae8eed0e888a7c8742e89d2b850977de2',1,'Si443x::readData(String &str, size_t len=0)'],['../class_r_f69.html#a3563453988a83d22dd07d4691543a300',1,'RF69::readData()']]],
+ ['receive_199',['receive',['../class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'Si443x::receive()'],['../classn_r_f24.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'nRF24::receive(String &str, size_t len=0)'],['../classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'nRF24::receive(uint8_t *data, size_t len)'],['../class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'CC1101::receive(uint8_t *data, size_t len)'],['../class_c_c1101.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'CC1101::receive(String &str, size_t len=0)'],['../class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'PhysicalLayer::receive(uint8_t *data, size_t len)'],['../class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'PhysicalLayer::receive(String &str, size_t len=0)'],['../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_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'RF69::receive()'],['../class_si443x.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'Si443x::receive()'],['../class_s_x126x.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'SX126x::receive(String &str, size_t len=0)'],['../class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX126x::receive(uint8_t *data, size_t len)'],['../class_s_x127x.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'SX127x::receive(String &str, size_t len=0)'],['../class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX127x::receive(uint8_t *data, size_t len)'],['../class_s_x128x.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'SX128x::receive(String &str, size_t len=0)'],['../class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX128x::receive(uint8_t *data, size_t len)'],['../class_r_f69.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'RF69::receive()']]],
+ ['receivedirect_200',['receiveDirect',['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::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()'],['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()']]],
+ ['receivedirectasync_201',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]],
+ ['regdump_202',['regdump',['../class_module.html#a7216d32fc55130d111409c6f2050d9c0',1,'Module']]],
+ ['repeatercallsigns_203',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]],
+ ['repeaterssids_204',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]],
+ ['reset_205',['reset',['../class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a',1,'RF69::reset()'],['../class_s_x128x.html#a2643ce22176293631fea2169f5e68e66',1,'SX128x::reset()'],['../class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68',1,'SX127x::reset()'],['../class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad',1,'SX1278::reset()'],['../class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac',1,'SX1272::reset()'],['../class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f',1,'SX126x::reset()'],['../class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97',1,'Si443x::reset()']]],
+ ['rf69_206',['RF69',['../class_r_f69.html',1,'RF69'],['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69::RF69()']]],
+ ['rfm22_207',['RFM22',['../class_r_f_m22.html',1,'']]],
+ ['rfm23_208',['RFM23',['../class_r_f_m23.html',1,'']]],
+ ['rfm95_209',['RFM95',['../class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326',1,'RFM95::RFM95()'],['../class_r_f_m95.html',1,'RFM95']]],
+ ['rfm96_210',['RFM96',['../class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a',1,'RFM96::RFM96()'],['../class_r_f_m96.html',1,'RFM96']]],
+ ['rfm97_211',['RFM97',['../class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be',1,'RFM97::RFM97()'],['../class_r_f_m97.html',1,'RFM97']]],
+ ['rfm98_212',['RFM98',['../class_r_f_m98.html',1,'']]],
+ ['rttyclient_213',['RTTYClient',['../class_r_t_t_y_client.html#ae6bc08fa88457ee00a992448be1d63ea',1,'RTTYClient::RTTYClient()'],['../class_r_t_t_y_client.html',1,'RTTYClient'],['../class_r_t_t_y_client.html#ab0e11944c2f1e2c60fc45bcd2db18570',1,'RTTYClient::RTTYClient()']]]
];
diff --git a/search/all_f.js b/search/all_f.js
index 63741c1c..d4b96b7b 100644
--- a/search/all_f.js
+++ b/search/all_f.js
@@ -1,121 +1,121 @@
var searchData=
[
- ['scanchannel_213',['scanChannel',['../class_s_x126x.html#a755e7df4b0958f7c793d0c058408831a',1,'SX126x::scanChannel()'],['../class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5',1,'SX127x::scanChannel()'],['../class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb',1,'SX128x::scanChannel()']]],
- ['scanpixellen_214',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]],
- ['sendframe_215',['sendFrame',['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()'],['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()']]],
- ['sendheader_216',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]],
- ['sendline_217',['sendLine',['../class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0',1,'SSTVClient']]],
- ['sendposition_218',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]],
- ['sendseqnumber_219',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]],
- ['sendtone_220',['sendTone',['../class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111',1,'PagerClient']]],
- ['setaccessaddress_221',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]],
- ['setaddresswidth_222',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]],
- ['setaeskey_223',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]],
- ['setafc_224',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]],
- ['setafcagctrigger_225',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]],
- ['setafcbandwidth_226',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]],
- ['setambienttemperature_227',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]],
- ['setautoack_228',['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_229',['setBandwidth',['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::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_230',['setBitRate',['../class_s_x127x.html#a606d839b3a992c681ac9ad7ca6020022',1,'SX127x::setBitRate()'],['../class_physical_layer.html#a56e9cf39bc8847492f7f3cd67ebf1c46',1,'PhysicalLayer::setBitRate()'],['../class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee',1,'SX128x::setBitRate()'],['../class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e',1,'SX126x::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_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::setBitRate()']]],
- ['setbroadcastaddress_231',['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()']]],
- ['setcodingrate_232',['setCodingRate',['../class_s_x126x.html#afd3113858966e878e9c67a1e710bd586',1,'SX126x::setCodingRate()'],['../class_s_x1272.html#a960913438feccad4c1913a9222384a5f',1,'SX1272::setCodingRate()'],['../class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1',1,'SX1278::setCodingRate()'],['../class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a',1,'SX128x::setCodingRate()']]],
- ['setcorrection_233',['setCorrection',['../class_f_s_k4_client.html#aab85cb6519e5448dc332bf17bd60f90a',1,'FSK4Client::setCorrection()'],['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client::setCorrection()'],['../class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e',1,'SSTVClient::setCorrection()']]],
- ['setcrc_234',['setCRC',['../class_s_x126x.html#a95007639c2648a1dbb614493224606f1',1,'SX126x::setCRC()'],['../class_s_x1272.html#abd912314a977f92c464d36d862329ffc',1,'SX1272::setCRC()'],['../class_s_x1278.html#ac0be7586b8e40355bbd29d78ae9941d1',1,'SX1278::setCRC()'],['../class_s_x128x.html#aa4b1e0b96347011522e053f30202c0fe',1,'SX128x::setCRC()']]],
- ['setcrcfiltering_235',['setCrcFiltering',['../class_c_c1101.html#aafac40359c4a1bb01aae12da6b03be26',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#a9b3a76eb89cad60dcad92513e6848f5a',1,'SX127x::setCrcFiltering()']]],
- ['setcurrentlimit_236',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]],
- ['setdatashaping_237',['setDataShaping',['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()'],['../class_physical_layer.html#ab643a814dce48f71a13bf6ea23f44cbd',1,'PhysicalLayer::setDataShaping()'],['../class_s_x128x.html#a99491c705e88dddc820f884b778f1660',1,'SX128x::setDataShaping()'],['../class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563',1,'SX1278::setDataShaping()'],['../class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea',1,'SX1272::setDataShaping()'],['../class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676',1,'SX126x::setDataShaping()'],['../class_si443x.html#ade08c79074c7e4414d34eefa25cee168',1,'Si443x::setDataShaping()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::setDataShaping()']]],
- ['setdatashapingook_238',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]],
- ['setdio0action_239',['setDio0Action',['../class_s_x127x.html#a71ecfed743942c4195d8668e8588a0fc',1,'SX127x::setDio0Action()'],['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action(void(*func)(void))']]],
- ['setdio1action_240',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#ae72f140bc934016411d7d54ebc14d69c',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()']]],
- ['setdio2asrfswitch_241',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]],
- ['setdiomapping_242',['setDIOMapping',['../class_c_c1101.html#a1acad996e9452c504cf0f89806c46c8a',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a4b879c689b19036411d884f6657f95db',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#adbea7515add3d81c3024ceb0d570266b',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a47c1d94d2ad2fd7eb5d11480b44cc368',1,'PhysicalLayer::setDIOMapping()']]],
- ['setdiopreambledetect_243',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]],
- ['setdirectaction_244',['setDirectAction',['../class_c_c1101.html#a5161fa10b19d857840579601ef565363',1,'CC1101::setDirectAction()'],['../classn_r_f24.html#a3da63a447659f92153654d31a5d2854c',1,'nRF24::setDirectAction()'],['../class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28',1,'RF69::setDirectAction()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a',1,'SX126x::setDirectAction()'],['../class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238',1,'SX127x::setDirectAction()'],['../class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236',1,'SX128x::setDirectAction()'],['../class_physical_layer.html#ab76fe7d3e0f453a807b205161c980086',1,'PhysicalLayer::setDirectAction(void(*func)(void))=0']]],
- ['setdirectsyncword_245',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]],
- ['setencoding_246',['setEncoding',['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()'],['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_physical_layer.html#a7d3419227d201d6912b77784636d437d',1,'PhysicalLayer::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()']]],
- ['setfhsshoppingperiod_247',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]],
- ['setfifoemptyaction_248',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction(void(*func)(void))']]],
- ['setfifofullaction_249',['setFifoFullAction',['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()'],['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()']]],
- ['setfrequency_250',['setFrequency',['../class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e',1,'CC1101::setFrequency()'],['../classn_r_f24.html#a408278336cdf25fd205ecffea86c26e8',1,'nRF24::setFrequency()'],['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87',1,'RFM95::setFrequency()'],['../class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84',1,'RFM96::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_s_x1262.html#abb018b820eb71ca6b0cd92c62affa767',1,'SX1262::setFrequency(float freq)'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency(float freq, bool calibrate)'],['../class_s_x1268.html#abf338b7036d692a4a8ca6bf305c0cb12',1,'SX1268::setFrequency()'],['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008',1,'SX1276::setFrequency()'],['../class_s_x1277.html#a42adde5eecccdca95214980848795e82',1,'SX1277::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#a4928642e647f2dd5b614b87b681cb0a6',1,'PhysicalLayer::setFrequency()'],['../class_s_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::setFrequency()']]],
- ['setfrequencydeviation_251',['setFrequencyDeviation',['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_physical_layer.html#ab9060e8ab7a2da192b3bf53b3501553b',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_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()']]],
- ['setgain_252',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]],
- ['setgaincontrol_253',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]],
- ['setgdo0action_254',['setGdo0Action',['../class_c_c1101.html#ae60ea5cacfb1543fcecde5bfac16361a',1,'CC1101']]],
- ['setgdo2action_255',['setGdo2Action',['../class_c_c1101.html#ac6338c2f5c937a12dac06069944ffb77',1,'CC1101']]],
- ['sethighsensitivitymode_256',['setHighSensitivityMode',['../class_s_x128x.html#a73e3655e92bca9a06e2d0abbf1a4bed4',1,'SX128x']]],
- ['setinversion_257',['setInversion',['../class_hell_client.html#a1779f13c8052c2392a1f2f0e1164343e',1,'HellClient']]],
- ['setirqaction_258',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]],
- ['setlnatestboost_259',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]],
- ['setnodeaddress_260',['setNodeAddress',['../class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8',1,'CC1101::setNodeAddress()'],['../class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c',1,'RF69::setNodeAddress()'],['../class_s_x126x.html#a514cabe74bbe3434d7e4f244c4077752',1,'SX126x::setNodeAddress()'],['../class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95',1,'SX127x::setNodeAddress()']]],
- ['setook_261',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK(bool enableOOK)']]],
- ['setookfixedorfloorthreshold_262',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]],
- ['setookfixedthreshold_263',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]],
- ['setookpeakthresholddecrement_264',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement(uint8_t value)']]],
- ['setookpeakthresholdstep_265',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]],
- ['setookthresholdtype_266',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]],
- ['setoutputpower_267',['setOutputPower',['../class_c_c1101.html#ac3ff8051af5ca50c349e02257f1a3bda',1,'CC1101::setOutputPower()'],['../classn_r_f24.html#a824453d547c0b42ac1988acb42032ca4',1,'nRF24::setOutputPower()'],['../class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc',1,'RF69::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_s_x1261.html#aa541f927995a1756c651b93fd24edc65',1,'SX1261::setOutputPower()'],['../class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc',1,'SX1262::setOutputPower()'],['../class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45',1,'SX1268::setOutputPower()'],['../class_s_x1272.html#a6677a04aa0c2f3bbde2509786b6a66de',1,'SX1272::setOutputPower()'],['../class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88',1,'SX1278::setOutputPower()'],['../class_s_x128x.html#ad6e2b46c317a8d8512cf0380025147a9',1,'SX128x::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()']]],
- ['setpreamblelength_268',['setPreambleLength',['../class_s_x126x.html#ab00f765bbfbfaa8c693532ea3a90c29b',1,'SX126x::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()'],['../class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed',1,'SX127x::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_c_c1101.html#acbfa80f431f335d5597500319f0affa8',1,'CC1101::setPreambleLength(uint8_t preambleLength)']]],
- ['setpromiscuousmode_269',['setPromiscuousMode',['../class_c_c1101.html#a2911d49d1c293542f7a374c9af60df0e',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#a6d90ad1d455de045c53c5758babd876c',1,'RF69::setPromiscuousMode()']]],
- ['setreceivepipe_270',['setReceivePipe',['../classn_r_f24.html#a31bcc5a8c3747bf08a273dbdadc5481a',1,'nRF24::setReceivePipe(uint8_t pipeNum, uint8_t *addr)'],['../classn_r_f24.html#ab5bc08aef88d8cf41c38369044005da8',1,'nRF24::setReceivePipe(uint8_t pipeNum, uint8_t addrByte)']]],
- ['setrecvsequence_271',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]],
- ['setregulatordcdc_272',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x']]],
- ['setregulatorldo_273',['setRegulatorLDO',['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x']]],
- ['setrepeaters_274',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]],
- ['setrfswitchpins_275',['setRfSwitchPins',['../class_c_c1101.html#a45ab4e3f4f9db367185333d36ba21ed2',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#aada7c48828b950cdfd260594d502b03d',1,'RF69::setRfSwitchPins()'],['../class_si443x.html#ae365087803b88b29932b5c793edff1d4',1,'Si443x::setRfSwitchPins()'],['../class_s_x126x.html#a288257242e483cb3eb6944333179dd26',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#ae9781180418c1ec9c365b74acbc98d8a',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5f11803b3430bc059321b443f407e78b',1,'SX128x::setRfSwitchPins()'],['../class_module.html#a0ecbb4e1e98094c1296b1e823dc14703',1,'Module::setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)']]],
- ['setrfswitchstate_276',['setRfSwitchState',['../class_module.html#a4a87d59ad2bf6bb1bb9de1856a81b824',1,'Module']]],
- ['setrssiconfig_277',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]],
- ['setrssithreshold_278',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]],
- ['setrxbandwidth_279',['setRxBandwidth',['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()'],['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()']]],
- ['setsendsequence_280',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]],
- ['setspreadingfactor_281',['setSpreadingFactor',['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67',1,'RFM97::setSpreadingFactor()'],['../class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d',1,'SX126x::setSpreadingFactor()'],['../class_s_x1272.html#a82084ac58502c83d2ada998410307490',1,'SX1272::setSpreadingFactor()'],['../class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f',1,'SX1273::setSpreadingFactor()'],['../class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08',1,'SX1278::setSpreadingFactor()'],['../class_s_x128x.html#ae435f57132f76f4283abb870176acf54',1,'SX128x::setSpreadingFactor()'],['../class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf',1,'SX1277::setSpreadingFactor()']]],
- ['setsyncbits_282',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]],
- ['setsyncword_283',['setSyncWord',['../class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc',1,'SX127x::setSyncWord()'],['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_s_x128x.html#a0efa595867624a54153d693d16f9f731',1,'SX128x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord()'],['../class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf',1,'SX126x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a',1,'Si443x::setSyncWord()'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord(uint8_t *syncWord, uint8_t len, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)']]],
- ['settcxo_284',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]],
- ['settransmitpipe_285',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]],
- ['setwhitening_286',['setWhitening',['../class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]],
- ['si4430_287',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430::Si4430()'],['../class_si4430.html',1,'Si4430']]],
- ['si4431_288',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431::Si4431()'],['../class_si4431.html',1,'Si4431']]],
- ['si4432_289',['Si4432',['../class_si4432.html',1,'Si4432'],['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432::Si4432()']]],
- ['si443x_290',['Si443x',['../class_si443x.html',1,'Si443x'],['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x::Si443x()']]],
- ['sleep_291',['sleep',['../class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df',1,'SX127x::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_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f',1,'SX128x::sleep()']]],
- ['spigetregvalue_292',['SPIgetRegValue',['../class_module.html#ad7ca9ae5a22cdacdf9437ca9cd37c9b4',1,'Module']]],
- ['spireadcommand_293',['SPIreadCommand',['../class_module.html#a849ad85fc1bc3a7130e660c13973ab26',1,'Module']]],
- ['spireadregister_294',['SPIreadRegister',['../class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3',1,'Module']]],
- ['spireadregisterburst_295',['SPIreadRegisterBurst',['../class_module.html#a6fa5239d73379e4140f5c4f513b1b8d2',1,'Module']]],
- ['spisetregvalue_296',['SPIsetRegValue',['../class_module.html#a1286d7fd9673cbfab945c26b2585a129',1,'Module']]],
- ['spitransfer_297',['SPItransfer',['../class_module.html#aefd955f1cd6d588b2cc229db87cb2121',1,'Module']]],
- ['spiwritecommand_298',['SPIwriteCommand',['../class_module.html#ae89764d15e8df5694a6aec0e18f72d3f',1,'Module']]],
- ['spiwriteregister_299',['SPIwriteRegister',['../class_module.html#ab814614ddd34b57f5a612a20f5fe4c57',1,'Module']]],
- ['spiwriteregisterburst_300',['SPIwriteRegisterBurst',['../class_module.html#a9d77a08070cbd48fd4ece62a739333e9',1,'Module']]],
- ['srccallsign_301',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]],
- ['srcssid_302',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]],
- ['sstvclient_303',['SSTVClient',['../class_s_s_t_v_client.html#af15cf501c00172270d2d2c43d7a7100a',1,'SSTVClient::SSTVClient(PhysicalLayer *phy)'],['../class_s_s_t_v_client.html#a99e46bec8403dfc36b9e5b102b1f7cf1',1,'SSTVClient::SSTVClient(AFSKClient *audio)'],['../class_s_s_t_v_client.html',1,'SSTVClient']]],
- ['sstvmode_5ft_304',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]],
- ['standby_305',['standby',['../class_physical_layer.html#a0e77da761a2cbb5c9535df0bdea993f9',1,'PhysicalLayer::standby()'],['../class_f_s_k4_client.html#a8b5765371ebbf68a21bc0bbfdf9f82ac',1,'FSK4Client::standby()'],['../class_s_x128x.html#aa11ba80f0cebb3e6927c775ad5f96b4e',1,'SX128x::standby(uint8_t mode)'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby()'],['../class_s_x126x.html#ad7569396f09f3867dc1bd4d4a0613acd',1,'SX126x::standby(uint8_t mode)'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby() override'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby()'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby()'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby()'],['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()']]],
- ['startchannelscan_306',['startChannelScan',['../class_s_x126x.html#a10a0e75571350fb05fa100e5d5151be2',1,'SX126x::startChannelScan()'],['../class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059',1,'SX127x::startChannelScan()']]],
- ['startdirect_307',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]],
- ['startranging_308',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]],
- ['startreceive_309',['startReceive',['../class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3',1,'CC1101::startReceive()'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_s_x126x.html#aeb92dc9d2e2a2b3a3a5ff2856528d497',1,'SX126x::startReceive()'],['../class_s_x127x.html#adffb96b7f80dc43909bb4cebde68fe9d',1,'SX127x::startReceive()'],['../class_s_x128x.html#ad59ee052d8ab1f250245a14039fc8b66',1,'SX128x::startReceive()'],['../class_pager_client.html#ad6f4f034b71311144f76b629a8ef8f8d',1,'PagerClient::startReceive()']]],
- ['startreceivedutycycle_310',['startReceiveDutyCycle',['../class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136',1,'SX126x']]],
- ['startreceivedutycycleauto_311',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f',1,'SX126x']]],
- ['startsignal_312',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]],
- ['starttransmit_313',['startTransmit',['../class_c_c1101.html#a0df2938e2509a8f2746b20ae0558d4ea',1,'CC1101::startTransmit()'],['../classn_r_f24.html#a42fdc828b49f2b8e15457189bd57d917',1,'nRF24::startTransmit()'],['../class_r_f69.html#a855dc194947b095b821ec1524ba6814c',1,'RF69::startTransmit()'],['../class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314',1,'Si443x::startTransmit()'],['../class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1',1,'SX126x::startTransmit()'],['../class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083',1,'SX127x::startTransmit()'],['../class_s_x128x.html#aef221e7d463c5228ce00ed6934512848',1,'SX128x::startTransmit()'],['../class_physical_layer.html#af068e6e862c99e39d0261a7971dd56db',1,'PhysicalLayer::startTransmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'PhysicalLayer::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_c_c1101.html#af068e6e862c99e39d0261a7971dd56db',1,'CC1101::startTransmit(String &str, uint8_t addr=0)'],['../class_c_c1101.html#a923654706eff5118ef6e84214e837f27',1,'CC1101::startTransmit(const char *str, uint8_t addr=0)'],['../class_c_c1101.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'CC1101::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../classn_r_f24.html#af068e6e862c99e39d0261a7971dd56db',1,'nRF24::startTransmit(String &str, uint8_t addr=0)'],['../classn_r_f24.html#a923654706eff5118ef6e84214e837f27',1,'nRF24::startTransmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'nRF24::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_r_f69.html#af068e6e862c99e39d0261a7971dd56db',1,'RF69::startTransmit(String &str, uint8_t addr=0)'],['../class_r_f69.html#a923654706eff5118ef6e84214e837f27',1,'RF69::startTransmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'RF69::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_si443x.html#af068e6e862c99e39d0261a7971dd56db',1,'Si443x::startTransmit(String &str, uint8_t addr=0)'],['../class_si443x.html#a923654706eff5118ef6e84214e837f27',1,'Si443x::startTransmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'Si443x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_s_x126x.html#af068e6e862c99e39d0261a7971dd56db',1,'SX126x::startTransmit(String &str, uint8_t addr=0)'],['../class_s_x126x.html#a923654706eff5118ef6e84214e837f27',1,'SX126x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'SX126x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_s_x127x.html#af068e6e862c99e39d0261a7971dd56db',1,'SX127x::startTransmit(String &str, uint8_t addr=0)'],['../class_s_x127x.html#a923654706eff5118ef6e84214e837f27',1,'SX127x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'SX127x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_s_x128x.html#af068e6e862c99e39d0261a7971dd56db',1,'SX128x::startTransmit(String &str, uint8_t addr=0)'],['../class_s_x128x.html#a923654706eff5118ef6e84214e837f27',1,'SX128x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'SX128x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]],
- ['status_20codes_314',['Status Codes',['../group__status__codes.html',1,'']]],
- ['sx1231_315',['SX1231',['../class_s_x1231.html',1,'SX1231'],['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231::SX1231()']]],
- ['sx1261_316',['SX1261',['../class_s_x1261.html',1,'SX1261'],['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261::SX1261()']]],
- ['sx1262_317',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262::SX1262()'],['../class_s_x1262.html',1,'SX1262']]],
- ['sx1268_318',['SX1268',['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268::SX1268()'],['../class_s_x1268.html',1,'SX1268']]],
- ['sx126x_319',['SX126x',['../class_s_x126x.html',1,'SX126x'],['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x::SX126x()']]],
- ['sx1272_320',['SX1272',['../class_s_x1272.html',1,'SX1272'],['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272::SX1272()']]],
- ['sx1273_321',['SX1273',['../class_s_x1273.html',1,'SX1273'],['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273::SX1273()']]],
- ['sx1276_322',['SX1276',['../class_s_x1276.html',1,'SX1276'],['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276::SX1276()']]],
- ['sx1277_323',['SX1277',['../class_s_x1277.html',1,'SX1277'],['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277::SX1277()']]],
- ['sx1278_324',['SX1278',['../class_s_x1278.html',1,'SX1278'],['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278::SX1278()']]],
- ['sx1279_325',['SX1279',['../class_s_x1279.html',1,'SX1279'],['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279::SX1279()']]],
- ['sx127x_326',['SX127x',['../class_s_x127x.html',1,'SX127x'],['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x::SX127x()']]],
- ['sx1280_327',['SX1280',['../class_s_x1280.html',1,'SX1280'],['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280::SX1280()']]],
- ['sx1281_328',['SX1281',['../class_s_x1281.html',1,'SX1281'],['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281::SX1281()']]],
- ['sx1282_329',['SX1282',['../class_s_x1282.html',1,'SX1282'],['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282::SX1282()']]],
- ['sx128x_330',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x::SX128x()'],['../class_s_x128x.html',1,'SX128x']]]
+ ['scanchannel_214',['scanChannel',['../class_s_x126x.html#a755e7df4b0958f7c793d0c058408831a',1,'SX126x::scanChannel()'],['../class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5',1,'SX127x::scanChannel()'],['../class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb',1,'SX128x::scanChannel()']]],
+ ['scanpixellen_215',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]],
+ ['sendframe_216',['sendFrame',['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()'],['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()']]],
+ ['sendheader_217',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]],
+ ['sendline_218',['sendLine',['../class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0',1,'SSTVClient']]],
+ ['sendposition_219',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]],
+ ['sendseqnumber_220',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]],
+ ['sendtone_221',['sendTone',['../class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111',1,'PagerClient']]],
+ ['setaccessaddress_222',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]],
+ ['setaddresswidth_223',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]],
+ ['setaeskey_224',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]],
+ ['setafc_225',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]],
+ ['setafcagctrigger_226',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]],
+ ['setafcbandwidth_227',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]],
+ ['setambienttemperature_228',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]],
+ ['setautoack_229',['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_230',['setBandwidth',['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::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_231',['setBitRate',['../class_s_x127x.html#a606d839b3a992c681ac9ad7ca6020022',1,'SX127x::setBitRate()'],['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee',1,'SX128x::setBitRate()'],['../class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e',1,'SX126x::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_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::setBitRate()']]],
+ ['setbroadcastaddress_232',['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()']]],
+ ['setcodingrate_233',['setCodingRate',['../class_s_x126x.html#afd3113858966e878e9c67a1e710bd586',1,'SX126x::setCodingRate()'],['../class_s_x1272.html#a960913438feccad4c1913a9222384a5f',1,'SX1272::setCodingRate()'],['../class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1',1,'SX1278::setCodingRate()'],['../class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a',1,'SX128x::setCodingRate()']]],
+ ['setcorrection_234',['setCorrection',['../class_f_s_k4_client.html#aab85cb6519e5448dc332bf17bd60f90a',1,'FSK4Client::setCorrection()'],['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client::setCorrection()'],['../class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e',1,'SSTVClient::setCorrection()']]],
+ ['setcrc_235',['setCRC',['../class_s_x126x.html#a95007639c2648a1dbb614493224606f1',1,'SX126x::setCRC()'],['../class_s_x1272.html#abd912314a977f92c464d36d862329ffc',1,'SX1272::setCRC()'],['../class_s_x1278.html#ac0be7586b8e40355bbd29d78ae9941d1',1,'SX1278::setCRC()'],['../class_s_x128x.html#aa4b1e0b96347011522e053f30202c0fe',1,'SX128x::setCRC()']]],
+ ['setcrcfiltering_236',['setCrcFiltering',['../class_c_c1101.html#aafac40359c4a1bb01aae12da6b03be26',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#a9b3a76eb89cad60dcad92513e6848f5a',1,'SX127x::setCrcFiltering()']]],
+ ['setcurrentlimit_237',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]],
+ ['setdatashaping_238',['setDataShaping',['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()'],['../class_physical_layer.html#aeba04366a0cf05ff3d8227c4f7c8e1e9',1,'PhysicalLayer::setDataShaping()'],['../class_s_x128x.html#a99491c705e88dddc820f884b778f1660',1,'SX128x::setDataShaping()'],['../class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563',1,'SX1278::setDataShaping()'],['../class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea',1,'SX1272::setDataShaping()'],['../class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676',1,'SX126x::setDataShaping()'],['../class_si443x.html#ade08c79074c7e4414d34eefa25cee168',1,'Si443x::setDataShaping()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::setDataShaping()']]],
+ ['setdatashapingook_239',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]],
+ ['setdio0action_240',['setDio0Action',['../class_s_x127x.html#a71ecfed743942c4195d8668e8588a0fc',1,'SX127x::setDio0Action()'],['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action(void(*func)(void))']]],
+ ['setdio1action_241',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#ae72f140bc934016411d7d54ebc14d69c',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()']]],
+ ['setdio2asrfswitch_242',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]],
+ ['setdiomapping_243',['setDIOMapping',['../class_c_c1101.html#a1acad996e9452c504cf0f89806c46c8a',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a4b879c689b19036411d884f6657f95db',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#adbea7515add3d81c3024ceb0d570266b',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a47c1d94d2ad2fd7eb5d11480b44cc368',1,'PhysicalLayer::setDIOMapping()']]],
+ ['setdiopreambledetect_244',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]],
+ ['setdirectaction_245',['setDirectAction',['../class_c_c1101.html#a5161fa10b19d857840579601ef565363',1,'CC1101::setDirectAction()'],['../classn_r_f24.html#a3da63a447659f92153654d31a5d2854c',1,'nRF24::setDirectAction()'],['../class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28',1,'RF69::setDirectAction()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a',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_246',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]],
+ ['setencoding_247',['setEncoding',['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()'],['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_physical_layer.html#acb45b2342400a03a914a91d2ac7fb488',1,'PhysicalLayer::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()']]],
+ ['setfhsshoppingperiod_248',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]],
+ ['setfifoemptyaction_249',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction(void(*func)(void))']]],
+ ['setfifofullaction_250',['setFifoFullAction',['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()'],['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()']]],
+ ['setfrequency_251',['setFrequency',['../class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e',1,'CC1101::setFrequency()'],['../classn_r_f24.html#a408278336cdf25fd205ecffea86c26e8',1,'nRF24::setFrequency()'],['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87',1,'RFM95::setFrequency()'],['../class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84',1,'RFM96::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_s_x1262.html#abb018b820eb71ca6b0cd92c62affa767',1,'SX1262::setFrequency(float freq)'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency(float freq, bool calibrate)'],['../class_s_x1268.html#abf338b7036d692a4a8ca6bf305c0cb12',1,'SX1268::setFrequency()'],['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008',1,'SX1276::setFrequency()'],['../class_s_x1277.html#a42adde5eecccdca95214980848795e82',1,'SX1277::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_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::setFrequency()']]],
+ ['setfrequencydeviation_252',['setFrequencyDeviation',['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::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_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()']]],
+ ['setgain_253',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]],
+ ['setgaincontrol_254',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]],
+ ['setgdo0action_255',['setGdo0Action',['../class_c_c1101.html#ae60ea5cacfb1543fcecde5bfac16361a',1,'CC1101']]],
+ ['setgdo2action_256',['setGdo2Action',['../class_c_c1101.html#ac6338c2f5c937a12dac06069944ffb77',1,'CC1101']]],
+ ['sethighsensitivitymode_257',['setHighSensitivityMode',['../class_s_x128x.html#a73e3655e92bca9a06e2d0abbf1a4bed4',1,'SX128x']]],
+ ['setinversion_258',['setInversion',['../class_hell_client.html#a1779f13c8052c2392a1f2f0e1164343e',1,'HellClient']]],
+ ['setirqaction_259',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]],
+ ['setlnatestboost_260',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]],
+ ['setnodeaddress_261',['setNodeAddress',['../class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8',1,'CC1101::setNodeAddress()'],['../class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c',1,'RF69::setNodeAddress()'],['../class_s_x126x.html#a514cabe74bbe3434d7e4f244c4077752',1,'SX126x::setNodeAddress()'],['../class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95',1,'SX127x::setNodeAddress()']]],
+ ['setook_262',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK(bool enableOOK)']]],
+ ['setookfixedorfloorthreshold_263',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]],
+ ['setookfixedthreshold_264',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]],
+ ['setookpeakthresholddecrement_265',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement(uint8_t value)']]],
+ ['setookpeakthresholdstep_266',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]],
+ ['setookthresholdtype_267',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]],
+ ['setoutputpower_268',['setOutputPower',['../class_c_c1101.html#ac3ff8051af5ca50c349e02257f1a3bda',1,'CC1101::setOutputPower()'],['../classn_r_f24.html#a824453d547c0b42ac1988acb42032ca4',1,'nRF24::setOutputPower()'],['../class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc',1,'RF69::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_s_x1261.html#aa541f927995a1756c651b93fd24edc65',1,'SX1261::setOutputPower()'],['../class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc',1,'SX1262::setOutputPower()'],['../class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45',1,'SX1268::setOutputPower()'],['../class_s_x1272.html#a6677a04aa0c2f3bbde2509786b6a66de',1,'SX1272::setOutputPower()'],['../class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88',1,'SX1278::setOutputPower()'],['../class_s_x128x.html#ad6e2b46c317a8d8512cf0380025147a9',1,'SX128x::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()']]],
+ ['setpreamblelength_269',['setPreambleLength',['../class_s_x126x.html#ab00f765bbfbfaa8c693532ea3a90c29b',1,'SX126x::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()'],['../class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed',1,'SX127x::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_c_c1101.html#acbfa80f431f335d5597500319f0affa8',1,'CC1101::setPreambleLength(uint8_t preambleLength)']]],
+ ['setpromiscuousmode_270',['setPromiscuousMode',['../class_c_c1101.html#a2911d49d1c293542f7a374c9af60df0e',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#a6d90ad1d455de045c53c5758babd876c',1,'RF69::setPromiscuousMode()']]],
+ ['setreceivepipe_271',['setReceivePipe',['../classn_r_f24.html#a31bcc5a8c3747bf08a273dbdadc5481a',1,'nRF24::setReceivePipe(uint8_t pipeNum, uint8_t *addr)'],['../classn_r_f24.html#ab5bc08aef88d8cf41c38369044005da8',1,'nRF24::setReceivePipe(uint8_t pipeNum, uint8_t addrByte)']]],
+ ['setrecvsequence_272',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]],
+ ['setregulatordcdc_273',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x']]],
+ ['setregulatorldo_274',['setRegulatorLDO',['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x']]],
+ ['setrepeaters_275',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]],
+ ['setrfswitchpins_276',['setRfSwitchPins',['../class_c_c1101.html#a45ab4e3f4f9db367185333d36ba21ed2',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#aada7c48828b950cdfd260594d502b03d',1,'RF69::setRfSwitchPins()'],['../class_si443x.html#ae365087803b88b29932b5c793edff1d4',1,'Si443x::setRfSwitchPins()'],['../class_s_x126x.html#a288257242e483cb3eb6944333179dd26',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#ae9781180418c1ec9c365b74acbc98d8a',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5f11803b3430bc059321b443f407e78b',1,'SX128x::setRfSwitchPins()'],['../class_module.html#a0ecbb4e1e98094c1296b1e823dc14703',1,'Module::setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)']]],
+ ['setrfswitchstate_277',['setRfSwitchState',['../class_module.html#a4a87d59ad2bf6bb1bb9de1856a81b824',1,'Module']]],
+ ['setrssiconfig_278',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]],
+ ['setrssithreshold_279',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]],
+ ['setrxbandwidth_280',['setRxBandwidth',['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()'],['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()']]],
+ ['setsendsequence_281',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]],
+ ['setspreadingfactor_282',['setSpreadingFactor',['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67',1,'RFM97::setSpreadingFactor()'],['../class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d',1,'SX126x::setSpreadingFactor()'],['../class_s_x1272.html#a82084ac58502c83d2ada998410307490',1,'SX1272::setSpreadingFactor()'],['../class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f',1,'SX1273::setSpreadingFactor()'],['../class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08',1,'SX1278::setSpreadingFactor()'],['../class_s_x128x.html#ae435f57132f76f4283abb870176acf54',1,'SX128x::setSpreadingFactor()'],['../class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf',1,'SX1277::setSpreadingFactor()']]],
+ ['setsyncbits_283',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]],
+ ['setsyncword_284',['setSyncWord',['../class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc',1,'SX127x::setSyncWord()'],['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_s_x128x.html#a0efa595867624a54153d693d16f9f731',1,'SX128x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord()'],['../class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf',1,'SX126x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a',1,'Si443x::setSyncWord()'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord(uint8_t *syncWord, uint8_t len, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)']]],
+ ['settcxo_285',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]],
+ ['settransmitpipe_286',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]],
+ ['setwhitening_287',['setWhitening',['../class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]],
+ ['si4430_288',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430::Si4430()'],['../class_si4430.html',1,'Si4430']]],
+ ['si4431_289',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431::Si4431()'],['../class_si4431.html',1,'Si4431']]],
+ ['si4432_290',['Si4432',['../class_si4432.html',1,'Si4432'],['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432::Si4432()']]],
+ ['si443x_291',['Si443x',['../class_si443x.html',1,'Si443x'],['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x::Si443x()']]],
+ ['sleep_292',['sleep',['../class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df',1,'SX127x::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_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f',1,'SX128x::sleep()']]],
+ ['spigetregvalue_293',['SPIgetRegValue',['../class_module.html#ad7ca9ae5a22cdacdf9437ca9cd37c9b4',1,'Module']]],
+ ['spireadcommand_294',['SPIreadCommand',['../class_module.html#a849ad85fc1bc3a7130e660c13973ab26',1,'Module']]],
+ ['spireadregister_295',['SPIreadRegister',['../class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3',1,'Module']]],
+ ['spireadregisterburst_296',['SPIreadRegisterBurst',['../class_module.html#a6fa5239d73379e4140f5c4f513b1b8d2',1,'Module']]],
+ ['spisetregvalue_297',['SPIsetRegValue',['../class_module.html#a1286d7fd9673cbfab945c26b2585a129',1,'Module']]],
+ ['spitransfer_298',['SPItransfer',['../class_module.html#aefd955f1cd6d588b2cc229db87cb2121',1,'Module']]],
+ ['spiwritecommand_299',['SPIwriteCommand',['../class_module.html#ae89764d15e8df5694a6aec0e18f72d3f',1,'Module']]],
+ ['spiwriteregister_300',['SPIwriteRegister',['../class_module.html#ab814614ddd34b57f5a612a20f5fe4c57',1,'Module']]],
+ ['spiwriteregisterburst_301',['SPIwriteRegisterBurst',['../class_module.html#a9d77a08070cbd48fd4ece62a739333e9',1,'Module']]],
+ ['srccallsign_302',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]],
+ ['srcssid_303',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]],
+ ['sstvclient_304',['SSTVClient',['../class_s_s_t_v_client.html#af15cf501c00172270d2d2c43d7a7100a',1,'SSTVClient::SSTVClient(PhysicalLayer *phy)'],['../class_s_s_t_v_client.html#a99e46bec8403dfc36b9e5b102b1f7cf1',1,'SSTVClient::SSTVClient(AFSKClient *audio)'],['../class_s_s_t_v_client.html',1,'SSTVClient']]],
+ ['sstvmode_5ft_305',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]],
+ ['standby_306',['standby',['../class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018',1,'PhysicalLayer::standby()'],['../class_f_s_k4_client.html#a8b5765371ebbf68a21bc0bbfdf9f82ac',1,'FSK4Client::standby()'],['../class_s_x128x.html#aa11ba80f0cebb3e6927c775ad5f96b4e',1,'SX128x::standby(uint8_t mode)'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby()'],['../class_s_x126x.html#ad7569396f09f3867dc1bd4d4a0613acd',1,'SX126x::standby(uint8_t mode)'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby() override'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby()'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby()'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby()'],['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()']]],
+ ['startchannelscan_307',['startChannelScan',['../class_s_x126x.html#a10a0e75571350fb05fa100e5d5151be2',1,'SX126x::startChannelScan()'],['../class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059',1,'SX127x::startChannelScan()']]],
+ ['startdirect_308',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]],
+ ['startranging_309',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]],
+ ['startreceive_310',['startReceive',['../class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3',1,'CC1101::startReceive()'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_s_x126x.html#aeb92dc9d2e2a2b3a3a5ff2856528d497',1,'SX126x::startReceive()'],['../class_s_x127x.html#adffb96b7f80dc43909bb4cebde68fe9d',1,'SX127x::startReceive()'],['../class_s_x128x.html#ad59ee052d8ab1f250245a14039fc8b66',1,'SX128x::startReceive()'],['../class_pager_client.html#ad6f4f034b71311144f76b629a8ef8f8d',1,'PagerClient::startReceive()']]],
+ ['startreceivedutycycle_311',['startReceiveDutyCycle',['../class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136',1,'SX126x']]],
+ ['startreceivedutycycleauto_312',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f',1,'SX126x']]],
+ ['startsignal_313',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]],
+ ['starttransmit_314',['startTransmit',['../class_c_c1101.html#a0df2938e2509a8f2746b20ae0558d4ea',1,'CC1101::startTransmit()'],['../classn_r_f24.html#a42fdc828b49f2b8e15457189bd57d917',1,'nRF24::startTransmit()'],['../class_r_f69.html#a855dc194947b095b821ec1524ba6814c',1,'RF69::startTransmit()'],['../class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314',1,'Si443x::startTransmit()'],['../class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1',1,'SX126x::startTransmit()'],['../class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083',1,'SX127x::startTransmit()'],['../class_s_x128x.html#aef221e7d463c5228ce00ed6934512848',1,'SX128x::startTransmit()'],['../class_physical_layer.html#af068e6e862c99e39d0261a7971dd56db',1,'PhysicalLayer::startTransmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'PhysicalLayer::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_c_c1101.html#af068e6e862c99e39d0261a7971dd56db',1,'CC1101::startTransmit(String &str, uint8_t addr=0)'],['../class_c_c1101.html#a923654706eff5118ef6e84214e837f27',1,'CC1101::startTransmit(const char *str, uint8_t addr=0)'],['../class_c_c1101.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'CC1101::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../classn_r_f24.html#af068e6e862c99e39d0261a7971dd56db',1,'nRF24::startTransmit(String &str, uint8_t addr=0)'],['../classn_r_f24.html#a923654706eff5118ef6e84214e837f27',1,'nRF24::startTransmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'nRF24::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_r_f69.html#af068e6e862c99e39d0261a7971dd56db',1,'RF69::startTransmit(String &str, uint8_t addr=0)'],['../class_r_f69.html#a923654706eff5118ef6e84214e837f27',1,'RF69::startTransmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'RF69::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#af068e6e862c99e39d0261a7971dd56db',1,'Si443x::startTransmit(String &str, uint8_t addr=0)'],['../class_si443x.html#a923654706eff5118ef6e84214e837f27',1,'Si443x::startTransmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'Si443x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x126x.html#af068e6e862c99e39d0261a7971dd56db',1,'SX126x::startTransmit(String &str, uint8_t addr=0)'],['../class_s_x126x.html#a923654706eff5118ef6e84214e837f27',1,'SX126x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'SX126x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x127x.html#af068e6e862c99e39d0261a7971dd56db',1,'SX127x::startTransmit(String &str, uint8_t addr=0)'],['../class_s_x127x.html#a923654706eff5118ef6e84214e837f27',1,'SX127x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'SX127x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#af068e6e862c99e39d0261a7971dd56db',1,'SX128x::startTransmit(String &str, uint8_t addr=0)'],['../class_s_x128x.html#a923654706eff5118ef6e84214e837f27',1,'SX128x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'SX128x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)']]],
+ ['status_20codes_315',['Status Codes',['../group__status__codes.html',1,'']]],
+ ['sx1231_316',['SX1231',['../class_s_x1231.html',1,'SX1231'],['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231::SX1231()']]],
+ ['sx1261_317',['SX1261',['../class_s_x1261.html',1,'SX1261'],['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261::SX1261()']]],
+ ['sx1262_318',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262::SX1262()'],['../class_s_x1262.html',1,'SX1262']]],
+ ['sx1268_319',['SX1268',['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268::SX1268()'],['../class_s_x1268.html',1,'SX1268']]],
+ ['sx126x_320',['SX126x',['../class_s_x126x.html',1,'SX126x'],['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x::SX126x()']]],
+ ['sx1272_321',['SX1272',['../class_s_x1272.html',1,'SX1272'],['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272::SX1272()']]],
+ ['sx1273_322',['SX1273',['../class_s_x1273.html',1,'SX1273'],['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273::SX1273()']]],
+ ['sx1276_323',['SX1276',['../class_s_x1276.html',1,'SX1276'],['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276::SX1276()']]],
+ ['sx1277_324',['SX1277',['../class_s_x1277.html',1,'SX1277'],['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277::SX1277()']]],
+ ['sx1278_325',['SX1278',['../class_s_x1278.html',1,'SX1278'],['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278::SX1278()']]],
+ ['sx1279_326',['SX1279',['../class_s_x1279.html',1,'SX1279'],['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279::SX1279()']]],
+ ['sx127x_327',['SX127x',['../class_s_x127x.html',1,'SX127x'],['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x::SX127x()']]],
+ ['sx1280_328',['SX1280',['../class_s_x1280.html',1,'SX1280'],['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280::SX1280()']]],
+ ['sx1281_329',['SX1281',['../class_s_x1281.html',1,'SX1281'],['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281::SX1281()']]],
+ ['sx1282_330',['SX1282',['../class_s_x1282.html',1,'SX1282'],['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282::SX1282()']]],
+ ['sx128x_331',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x::SX128x()'],['../class_s_x128x.html',1,'SX128x']]]
];
diff --git a/search/classes_0.js b/search/classes_0.js
index ba77353e..a3f98c51 100644
--- a/search/classes_0.js
+++ b/search/classes_0.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['afskclient_349',['AFSKClient',['../class_a_f_s_k_client.html',1,'']]],
- ['aprsclient_350',['APRSClient',['../class_a_p_r_s_client.html',1,'']]],
- ['ax25client_351',['AX25Client',['../class_a_x25_client.html',1,'']]],
- ['ax25frame_352',['AX25Frame',['../class_a_x25_frame.html',1,'']]]
+ ['afskclient_350',['AFSKClient',['../class_a_f_s_k_client.html',1,'']]],
+ ['aprsclient_351',['APRSClient',['../class_a_p_r_s_client.html',1,'']]],
+ ['ax25client_352',['AX25Client',['../class_a_x25_client.html',1,'']]],
+ ['ax25frame_353',['AX25Frame',['../class_a_x25_frame.html',1,'']]]
];
diff --git a/search/classes_1.js b/search/classes_1.js
index ed332c1e..3ae10b9e 100644
--- a/search/classes_1.js
+++ b/search/classes_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['cc1101_353',['CC1101',['../class_c_c1101.html',1,'']]]
+ ['cc1101_354',['CC1101',['../class_c_c1101.html',1,'']]]
];
diff --git a/search/classes_2.js b/search/classes_2.js
index 90c40b51..d38cd5ba 100644
--- a/search/classes_2.js
+++ b/search/classes_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['fsk4client_354',['FSK4Client',['../class_f_s_k4_client.html',1,'']]]
+ ['externalradio_355',['ExternalRadio',['../class_external_radio.html',1,'']]]
];
diff --git a/search/classes_3.js b/search/classes_3.js
index 791b376f..c2851d78 100644
--- a/search/classes_3.js
+++ b/search/classes_3.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['hellclient_355',['HellClient',['../class_hell_client.html',1,'']]]
+ ['fsk4client_356',['FSK4Client',['../class_f_s_k4_client.html',1,'']]]
];
diff --git a/search/classes_4.js b/search/classes_4.js
index e152baed..c64298be 100644
--- a/search/classes_4.js
+++ b/search/classes_4.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['ita2string_356',['ITA2String',['../class_i_t_a2_string.html',1,'']]]
+ ['hellclient_357',['HellClient',['../class_hell_client.html',1,'']]]
];
diff --git a/search/classes_5.js b/search/classes_5.js
index 8e5286e5..c0f2d957 100644
--- a/search/classes_5.js
+++ b/search/classes_5.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['llcc68_357',['LLCC68',['../class_l_l_c_c68.html',1,'']]]
+ ['ita2string_358',['ITA2String',['../class_i_t_a2_string.html',1,'']]]
];
diff --git a/search/classes_6.js b/search/classes_6.js
index e3481e18..1792d0e1 100644
--- a/search/classes_6.js
+++ b/search/classes_6.js
@@ -1,5 +1,4 @@
var searchData=
[
- ['module_358',['Module',['../class_module.html',1,'']]],
- ['morseclient_359',['MorseClient',['../class_morse_client.html',1,'']]]
+ ['llcc68_359',['LLCC68',['../class_l_l_c_c68.html',1,'']]]
];
diff --git a/search/classes_7.js b/search/classes_7.js
index 082cab00..69c06069 100644
--- a/search/classes_7.js
+++ b/search/classes_7.js
@@ -1,4 +1,5 @@
var searchData=
[
- ['nrf24_360',['nRF24',['../classn_r_f24.html',1,'']]]
+ ['module_360',['Module',['../class_module.html',1,'']]],
+ ['morseclient_361',['MorseClient',['../class_morse_client.html',1,'']]]
];
diff --git a/search/classes_8.js b/search/classes_8.js
index 36159412..0e414cf5 100644
--- a/search/classes_8.js
+++ b/search/classes_8.js
@@ -1,5 +1,4 @@
var searchData=
[
- ['pagerclient_361',['PagerClient',['../class_pager_client.html',1,'']]],
- ['physicallayer_362',['PhysicalLayer',['../class_physical_layer.html',1,'']]]
+ ['nrf24_362',['nRF24',['../classn_r_f24.html',1,'']]]
];
diff --git a/search/classes_9.js b/search/classes_9.js
index c3ae85fe..a3f036b8 100644
--- a/search/classes_9.js
+++ b/search/classes_9.js
@@ -1,11 +1,5 @@
var searchData=
[
- ['rf69_363',['RF69',['../class_r_f69.html',1,'']]],
- ['rfm22_364',['RFM22',['../class_r_f_m22.html',1,'']]],
- ['rfm23_365',['RFM23',['../class_r_f_m23.html',1,'']]],
- ['rfm95_366',['RFM95',['../class_r_f_m95.html',1,'']]],
- ['rfm96_367',['RFM96',['../class_r_f_m96.html',1,'']]],
- ['rfm97_368',['RFM97',['../class_r_f_m97.html',1,'']]],
- ['rfm98_369',['RFM98',['../class_r_f_m98.html',1,'']]],
- ['rttyclient_370',['RTTYClient',['../class_r_t_t_y_client.html',1,'']]]
+ ['pagerclient_363',['PagerClient',['../class_pager_client.html',1,'']]],
+ ['physicallayer_364',['PhysicalLayer',['../class_physical_layer.html',1,'']]]
];
diff --git a/search/classes_a.js b/search/classes_a.js
index b8f5dbc8..c0cc8e9c 100644
--- a/search/classes_a.js
+++ b/search/classes_a.js
@@ -1,25 +1,11 @@
var searchData=
[
- ['si4430_371',['Si4430',['../class_si4430.html',1,'']]],
- ['si4431_372',['Si4431',['../class_si4431.html',1,'']]],
- ['si4432_373',['Si4432',['../class_si4432.html',1,'']]],
- ['si443x_374',['Si443x',['../class_si443x.html',1,'']]],
- ['sstvclient_375',['SSTVClient',['../class_s_s_t_v_client.html',1,'']]],
- ['sstvmode_5ft_376',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]],
- ['sx1231_377',['SX1231',['../class_s_x1231.html',1,'']]],
- ['sx1261_378',['SX1261',['../class_s_x1261.html',1,'']]],
- ['sx1262_379',['SX1262',['../class_s_x1262.html',1,'']]],
- ['sx1268_380',['SX1268',['../class_s_x1268.html',1,'']]],
- ['sx126x_381',['SX126x',['../class_s_x126x.html',1,'']]],
- ['sx1272_382',['SX1272',['../class_s_x1272.html',1,'']]],
- ['sx1273_383',['SX1273',['../class_s_x1273.html',1,'']]],
- ['sx1276_384',['SX1276',['../class_s_x1276.html',1,'']]],
- ['sx1277_385',['SX1277',['../class_s_x1277.html',1,'']]],
- ['sx1278_386',['SX1278',['../class_s_x1278.html',1,'']]],
- ['sx1279_387',['SX1279',['../class_s_x1279.html',1,'']]],
- ['sx127x_388',['SX127x',['../class_s_x127x.html',1,'']]],
- ['sx1280_389',['SX1280',['../class_s_x1280.html',1,'']]],
- ['sx1281_390',['SX1281',['../class_s_x1281.html',1,'']]],
- ['sx1282_391',['SX1282',['../class_s_x1282.html',1,'']]],
- ['sx128x_392',['SX128x',['../class_s_x128x.html',1,'']]]
+ ['rf69_365',['RF69',['../class_r_f69.html',1,'']]],
+ ['rfm22_366',['RFM22',['../class_r_f_m22.html',1,'']]],
+ ['rfm23_367',['RFM23',['../class_r_f_m23.html',1,'']]],
+ ['rfm95_368',['RFM95',['../class_r_f_m95.html',1,'']]],
+ ['rfm96_369',['RFM96',['../class_r_f_m96.html',1,'']]],
+ ['rfm97_370',['RFM97',['../class_r_f_m97.html',1,'']]],
+ ['rfm98_371',['RFM98',['../class_r_f_m98.html',1,'']]],
+ ['rttyclient_372',['RTTYClient',['../class_r_t_t_y_client.html',1,'']]]
];
diff --git a/search/classes_b.js b/search/classes_b.js
index e3c7745e..ce1ba728 100644
--- a/search/classes_b.js
+++ b/search/classes_b.js
@@ -1,4 +1,25 @@
var searchData=
[
- ['tone_5ft_393',['tone_t',['../structtone__t.html',1,'']]]
+ ['si4430_373',['Si4430',['../class_si4430.html',1,'']]],
+ ['si4431_374',['Si4431',['../class_si4431.html',1,'']]],
+ ['si4432_375',['Si4432',['../class_si4432.html',1,'']]],
+ ['si443x_376',['Si443x',['../class_si443x.html',1,'']]],
+ ['sstvclient_377',['SSTVClient',['../class_s_s_t_v_client.html',1,'']]],
+ ['sstvmode_5ft_378',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]],
+ ['sx1231_379',['SX1231',['../class_s_x1231.html',1,'']]],
+ ['sx1261_380',['SX1261',['../class_s_x1261.html',1,'']]],
+ ['sx1262_381',['SX1262',['../class_s_x1262.html',1,'']]],
+ ['sx1268_382',['SX1268',['../class_s_x1268.html',1,'']]],
+ ['sx126x_383',['SX126x',['../class_s_x126x.html',1,'']]],
+ ['sx1272_384',['SX1272',['../class_s_x1272.html',1,'']]],
+ ['sx1273_385',['SX1273',['../class_s_x1273.html',1,'']]],
+ ['sx1276_386',['SX1276',['../class_s_x1276.html',1,'']]],
+ ['sx1277_387',['SX1277',['../class_s_x1277.html',1,'']]],
+ ['sx1278_388',['SX1278',['../class_s_x1278.html',1,'']]],
+ ['sx1279_389',['SX1279',['../class_s_x1279.html',1,'']]],
+ ['sx127x_390',['SX127x',['../class_s_x127x.html',1,'']]],
+ ['sx1280_391',['SX1280',['../class_s_x1280.html',1,'']]],
+ ['sx1281_392',['SX1281',['../class_s_x1281.html',1,'']]],
+ ['sx1282_393',['SX1282',['../class_s_x1282.html',1,'']]],
+ ['sx128x_394',['SX128x',['../class_s_x128x.html',1,'']]]
];
diff --git a/search/classes_c.html b/search/classes_c.html
new file mode 100644
index 00000000..2f7b1f3d
--- /dev/null
+++ b/search/classes_c.html
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
Loading...
+
+
+
Searching...
+
No Matches
+
+
+
+
diff --git a/search/classes_c.js b/search/classes_c.js
new file mode 100644
index 00000000..28ce2763
--- /dev/null
+++ b/search/classes_c.js
@@ -0,0 +1,4 @@
+var searchData=
+[
+ ['tone_5ft_395',['tone_t',['../structtone__t.html',1,'']]]
+];
diff --git a/search/functions_0.js b/search/functions_0.js
index 90f8cd83..34d79f8e 100644
--- a/search/functions_0.js
+++ b/search/functions_0.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['afskclient_394',['AFSKClient',['../class_a_f_s_k_client.html#acfe53917bcba7f79611e01865c42fefd',1,'AFSKClient']]],
- ['aprsclient_395',['APRSClient',['../class_a_p_r_s_client.html#a08e166ed706d79c66c1d5b48f195724c',1,'APRSClient']]],
- ['attachinterrupt_396',['attachInterrupt',['../class_module.html#a91aaa34aecdfeaf24948551b037033be',1,'Module']]],
- ['autoldro_397',['autoLDRO',['../class_s_x126x.html#ab9ce38cfeaa36ddcc2d82b2974d7088c',1,'SX126x::autoLDRO()'],['../class_s_x1272.html#abb4bbfe8acc6026c833d267d78417b63',1,'SX1272::autoLDRO()'],['../class_s_x1278.html#ae02adcde8c2978c0d1b157729dd5df1e',1,'SX1278::autoLDRO()']]],
- ['available_398',['available',['../class_pager_client.html#aec073fa9e5adcff9730482d9583715e9',1,'PagerClient::available()'],['../class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26',1,'PhysicalLayer::available()']]],
- ['ax25client_399',['AX25Client',['../class_a_x25_client.html#ab074563d4d22a42d5ea9ad1693d6f373',1,'AX25Client::AX25Client(PhysicalLayer *phy)'],['../class_a_x25_client.html#a6e81e629817cdf1b377e4b4f7e4d6520',1,'AX25Client::AX25Client(AFSKClient *audio)']]],
- ['ax25frame_400',['AX25Frame',['../class_a_x25_frame.html#a138d97d90a371bef7ebd86cce1cc4979',1,'AX25Frame::AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control)'],['../class_a_x25_frame.html#a60e1b318d6e4b9299a4eab72e40877fc',1,'AX25Frame::AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control, uint8_t protocolID, const char *info)'],['../class_a_x25_frame.html#a3899b8698d772b8285629d6a4f2a642a',1,'AX25Frame::AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control, uint8_t protocolID, uint8_t *info, uint16_t infoLen)'],['../class_a_x25_frame.html#a25b83cc9c281d2758165833fe238fe0e',1,'AX25Frame::AX25Frame(const AX25Frame &frame)']]]
+ ['afskclient_396',['AFSKClient',['../class_a_f_s_k_client.html#acfe53917bcba7f79611e01865c42fefd',1,'AFSKClient']]],
+ ['aprsclient_397',['APRSClient',['../class_a_p_r_s_client.html#a08e166ed706d79c66c1d5b48f195724c',1,'APRSClient']]],
+ ['attachinterrupt_398',['attachInterrupt',['../class_module.html#a91aaa34aecdfeaf24948551b037033be',1,'Module']]],
+ ['autoldro_399',['autoLDRO',['../class_s_x126x.html#ab9ce38cfeaa36ddcc2d82b2974d7088c',1,'SX126x::autoLDRO()'],['../class_s_x1272.html#abb4bbfe8acc6026c833d267d78417b63',1,'SX1272::autoLDRO()'],['../class_s_x1278.html#ae02adcde8c2978c0d1b157729dd5df1e',1,'SX1278::autoLDRO()']]],
+ ['available_400',['available',['../class_pager_client.html#aec073fa9e5adcff9730482d9583715e9',1,'PagerClient::available()'],['../class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26',1,'PhysicalLayer::available()']]],
+ ['ax25client_401',['AX25Client',['../class_a_x25_client.html#ab074563d4d22a42d5ea9ad1693d6f373',1,'AX25Client::AX25Client(PhysicalLayer *phy)'],['../class_a_x25_client.html#a6e81e629817cdf1b377e4b4f7e4d6520',1,'AX25Client::AX25Client(AFSKClient *audio)']]],
+ ['ax25frame_402',['AX25Frame',['../class_a_x25_frame.html#a138d97d90a371bef7ebd86cce1cc4979',1,'AX25Frame::AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control)'],['../class_a_x25_frame.html#a60e1b318d6e4b9299a4eab72e40877fc',1,'AX25Frame::AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control, uint8_t protocolID, const char *info)'],['../class_a_x25_frame.html#a3899b8698d772b8285629d6a4f2a642a',1,'AX25Frame::AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control, uint8_t protocolID, uint8_t *info, uint16_t infoLen)'],['../class_a_x25_frame.html#a25b83cc9c281d2758165833fe238fe0e',1,'AX25Frame::AX25Frame(const AX25Frame &frame)']]]
];
diff --git a/search/functions_1.js b/search/functions_1.js
index 4d1df9f5..fe1de5b4 100644
--- a/search/functions_1.js
+++ b/search/functions_1.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['begin_401',['begin',['../class_a_x25_client.html#a38be2b9385e4804339b3e4b57b90c2ca',1,'AX25Client::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()'],['../class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3',1,'SX1277::begin()'],['../class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf',1,'SX1278::begin()'],['../class_s_x1279.html#a324a37dee0522f43692cd414141becc2',1,'SX1279::begin()'],['../class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430',1,'SX127x::begin()'],['../class_s_x128x.html#acbd0d1a48051ccd35f4a89c9b8d05bdf',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a4befd17d1f753049f7ec08c48d8b8496',1,'APRSClient::begin()'],['../class_c_c1101.html#ae8ef8463220f2c5fa3120c4a5995e61f',1,'CC1101::begin()'],['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::begin()'],['../class_hell_client.html#a225775fe87f9ed3c3a04142697641242',1,'HellClient::begin()'],['../class_morse_client.html#a516f19bb51b87ead7f7ed149f2ca92cf',1,'MorseClient::begin()'],['../class_pager_client.html#a1a1dc569f9b60b0ddd6ead7af5a8244f',1,'PagerClient::begin()'],['../class_r_t_t_y_client.html#ac4ae2458f8005c87161c74cf827d35b9',1,'RTTYClient::begin()'],['../class_s_s_t_v_client.html#a3769dcdebf8b1fa01eb2d8bd2bb3815a',1,'SSTVClient::begin(float base, const SSTVMode_t &mode)'],['../class_s_s_t_v_client.html#afd4257e858a88e5847854a46f166a9b0',1,'SSTVClient::begin(const SSTVMode_t &mode)'],['../class_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3',1,'Si4431::begin()'],['../class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()'],['../class_module.html#af6bfd022681d360082e3dd31a984e1f7',1,'Module::begin()'],['../class_l_l_c_c68.html#a039fc3259e4f208d96eaa310720b161d',1,'LLCC68::begin()'],['../classn_r_f24.html#aab701c0336394e0473981913fbfd5da6',1,'nRF24::begin()'],['../class_r_f69.html#a693faf6ab777d5612392b43152e744cb',1,'RF69::begin()'],['../class_r_f_m95.html#a5c37eaf6ae8c558a9a623157dd9f894a',1,'RFM95::begin()'],['../class_r_f_m96.html#aef1588799e5855cb464259e8ce2d865b',1,'RFM96::begin()'],['../class_si4430.html#aaed612b8936609442042d8156e085d2c',1,'Si4430::begin()'],['../class_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_s_x126x.html#a936a40038e05740a528f2b53f8e17010',1,'SX126x::begin()'],['../class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9',1,'SX1272::begin()']]],
- ['beginble_402',['beginBLE',['../class_s_x128x.html#a316340d7ba2a6e7cb5742e3ff21e728c',1,'SX128x']]],
- ['beginflrc_403',['beginFLRC',['../class_s_x128x.html#ac7df67afbb0b1a88daf5ec50f3d65660',1,'SX128x']]],
- ['beginfsk_404',['beginFSK',['../class_r_f_m95.html#a7e0f8fa59ddd48f7b026b0f996202b30',1,'RFM95::beginFSK()'],['../class_r_f_m96.html#a82ef1b7354238637eee6f4d65b9be6e5',1,'RFM96::beginFSK()'],['../class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1',1,'SX1262::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840',1,'SX1276::beginFSK()'],['../class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44',1,'SX1277::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b',1,'SX1279::beginFSK()'],['../class_s_x127x.html#add78edb65673d9e88931a55b0672a9f3',1,'SX127x::beginFSK()']]],
- ['begingfsk_405',['beginGFSK',['../class_s_x128x.html#a8dd8ce38bc9d0d8dbd711b373e864e93',1,'SX128x']]],
- ['begintransaction_406',['beginTransaction',['../class_module.html#a3d0caa9f5e38cfa2c609570a89a4a703',1,'Module']]],
- ['bytearr_407',['byteArr',['../class_i_t_a2_string.html#a3f42f7ad98473dbe36515e676622ed3d',1,'ITA2String']]]
+ ['begin_403',['begin',['../class_a_x25_client.html#a38be2b9385e4804339b3e4b57b90c2ca',1,'AX25Client::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()'],['../class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3',1,'SX1277::begin()'],['../class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf',1,'SX1278::begin()'],['../class_s_x1279.html#a324a37dee0522f43692cd414141becc2',1,'SX1279::begin()'],['../class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430',1,'SX127x::begin()'],['../class_s_x128x.html#acbd0d1a48051ccd35f4a89c9b8d05bdf',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a4befd17d1f753049f7ec08c48d8b8496',1,'APRSClient::begin()'],['../class_c_c1101.html#ae8ef8463220f2c5fa3120c4a5995e61f',1,'CC1101::begin()'],['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::begin()'],['../class_hell_client.html#a225775fe87f9ed3c3a04142697641242',1,'HellClient::begin()'],['../class_morse_client.html#a516f19bb51b87ead7f7ed149f2ca92cf',1,'MorseClient::begin()'],['../class_pager_client.html#a1a1dc569f9b60b0ddd6ead7af5a8244f',1,'PagerClient::begin()'],['../class_r_t_t_y_client.html#ac4ae2458f8005c87161c74cf827d35b9',1,'RTTYClient::begin()'],['../class_s_s_t_v_client.html#a3769dcdebf8b1fa01eb2d8bd2bb3815a',1,'SSTVClient::begin(float base, const SSTVMode_t &mode)'],['../class_s_s_t_v_client.html#afd4257e858a88e5847854a46f166a9b0',1,'SSTVClient::begin(const SSTVMode_t &mode)'],['../class_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3',1,'Si4431::begin()'],['../class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()'],['../class_module.html#af6bfd022681d360082e3dd31a984e1f7',1,'Module::begin()'],['../class_l_l_c_c68.html#a039fc3259e4f208d96eaa310720b161d',1,'LLCC68::begin()'],['../classn_r_f24.html#aab701c0336394e0473981913fbfd5da6',1,'nRF24::begin()'],['../class_r_f69.html#a693faf6ab777d5612392b43152e744cb',1,'RF69::begin()'],['../class_r_f_m95.html#a5c37eaf6ae8c558a9a623157dd9f894a',1,'RFM95::begin()'],['../class_r_f_m96.html#aef1588799e5855cb464259e8ce2d865b',1,'RFM96::begin()'],['../class_si4430.html#aaed612b8936609442042d8156e085d2c',1,'Si4430::begin()'],['../class_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_s_x126x.html#a936a40038e05740a528f2b53f8e17010',1,'SX126x::begin()'],['../class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9',1,'SX1272::begin()']]],
+ ['beginble_404',['beginBLE',['../class_s_x128x.html#a316340d7ba2a6e7cb5742e3ff21e728c',1,'SX128x']]],
+ ['beginflrc_405',['beginFLRC',['../class_s_x128x.html#ac7df67afbb0b1a88daf5ec50f3d65660',1,'SX128x']]],
+ ['beginfsk_406',['beginFSK',['../class_r_f_m95.html#a7e0f8fa59ddd48f7b026b0f996202b30',1,'RFM95::beginFSK()'],['../class_r_f_m96.html#a82ef1b7354238637eee6f4d65b9be6e5',1,'RFM96::beginFSK()'],['../class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1',1,'SX1262::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840',1,'SX1276::beginFSK()'],['../class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44',1,'SX1277::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b',1,'SX1279::beginFSK()'],['../class_s_x127x.html#add78edb65673d9e88931a55b0672a9f3',1,'SX127x::beginFSK()']]],
+ ['begingfsk_407',['beginGFSK',['../class_s_x128x.html#a8dd8ce38bc9d0d8dbd711b373e864e93',1,'SX128x']]],
+ ['begintransaction_408',['beginTransaction',['../class_module.html#a3d0caa9f5e38cfa2c609570a89a4a703',1,'Module']]],
+ ['bytearr_409',['byteArr',['../class_i_t_a2_string.html#a3f42f7ad98473dbe36515e676622ed3d',1,'ITA2String']]]
];
diff --git a/search/functions_10.js b/search/functions_10.js
index 21c65de9..9f72f8c8 100644
--- a/search/functions_10.js
+++ b/search/functions_10.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['term_625',['term',['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module']]],
- ['tone_626',['tone',['../class_module.html#a33e33df69d58660b8cd0e2dafe5e9189',1,'Module::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]],
- ['transfer_627',['transfer',['../class_module.html#a45e7823c44ac0aa8a10bd4f365890c98',1,'Module']]],
- ['transmit_628',['transmit',['../classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534',1,'nRF24::transmit()'],['../class_r_f69.html#ab139a34e03a6fd5a781cd54da21d308f',1,'RF69::transmit()'],['../classn_r_f24.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'nRF24::transmit()'],['../class_r_f69.html#aeb62c5a521aafc1e0525c58e9364482b',1,'RF69::transmit(String &str, uint8_t addr=0)'],['../class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534',1,'RF69::transmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'RF69::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_si443x.html#ab139a34e03a6fd5a781cd54da21d308f',1,'Si443x::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_si443x.html#aeb62c5a521aafc1e0525c58e9364482b',1,'Si443x::transmit(String &str, uint8_t addr=0)'],['../class_si443x.html#a492b2d057dd803c3884fa1adc8e22534',1,'Si443x::transmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'Si443x::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_s_x126x.html#ab139a34e03a6fd5a781cd54da21d308f',1,'SX126x::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_s_x126x.html#aeb62c5a521aafc1e0525c58e9364482b',1,'SX126x::transmit(String &str, uint8_t addr=0)'],['../class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX126x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'SX126x::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_s_x127x.html#ab139a34e03a6fd5a781cd54da21d308f',1,'SX127x::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_s_x127x.html#aeb62c5a521aafc1e0525c58e9364482b',1,'SX127x::transmit(String &str, uint8_t addr=0)'],['../class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX127x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'SX127x::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_s_x128x.html#ab139a34e03a6fd5a781cd54da21d308f',1,'SX128x::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_s_x128x.html#aeb62c5a521aafc1e0525c58e9364482b',1,'SX128x::transmit(String &str, uint8_t addr=0)'],['../class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX128x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'SX128x::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../classn_r_f24.html#ab139a34e03a6fd5a781cd54da21d308f',1,'nRF24::transmit()'],['../class_c_c1101.html#a7cb99a9200b21829b50e3fc3878573f4',1,'CC1101::transmit()'],['../classn_r_f24.html#a583d505bd3a638ecc5576dd2dd95f044',1,'nRF24::transmit()'],['../class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847',1,'RF69::transmit()'],['../class_si443x.html#a782748025e19ec6e597293afb6570bff',1,'Si443x::transmit()'],['../class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009',1,'SX126x::transmit()'],['../class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29',1,'SX127x::transmit()'],['../class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5',1,'SX128x::transmit()'],['../class_a_x25_client.html#ada21695e373b3e9b0e0f5d3cfbf29826',1,'AX25Client::transmit(String &str, const char *destCallsign, uint8_t destSSID=0x00)'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit(const char *str, const char *destCallsign, uint8_t destSSID=0x00)'],['../class_pager_client.html#a897f990002a4a2196fcdb31c547e0648',1,'PagerClient::transmit(String &str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_pager_client.html#a77aafe7c86e6e1e4e22990be4e7f090b',1,'PagerClient::transmit(uint8_t *data, size_t len, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../classn_r_f24.html#aeb62c5a521aafc1e0525c58e9364482b',1,'nRF24::transmit()'],['../class_c_c1101.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'CC1101::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_c_c1101.html#a492b2d057dd803c3884fa1adc8e22534',1,'CC1101::transmit(const char *str, uint8_t addr=0)'],['../class_c_c1101.html#aeb62c5a521aafc1e0525c58e9364482b',1,'CC1101::transmit(String &str, uint8_t addr=0)'],['../class_c_c1101.html#ab139a34e03a6fd5a781cd54da21d308f',1,'CC1101::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'PhysicalLayer::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b',1,'PhysicalLayer::transmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f',1,'PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_pager_client.html#aab6a8977f89d43620b98bcedf5a47dbd',1,'PagerClient::transmit()']]],
- ['transmitdirect_629',['transmitDirect',['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect()'],['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_physical_layer.html#a4b04eb6155b06d8ef400131c647d54e7',1,'PhysicalLayer::transmitDirect()']]],
- ['transmitdirectasync_630',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]]
+ ['term_627',['term',['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module']]],
+ ['tone_628',['tone',['../class_module.html#a33e33df69d58660b8cd0e2dafe5e9189',1,'Module::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]],
+ ['transfer_629',['transfer',['../class_module.html#a45e7823c44ac0aa8a10bd4f365890c98',1,'Module']]],
+ ['transmit_630',['transmit',['../classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534',1,'nRF24::transmit()'],['../class_r_f69.html#ab139a34e03a6fd5a781cd54da21d308f',1,'RF69::transmit()'],['../classn_r_f24.html#a3dd42f8d5569487ea74f004ca652a709',1,'nRF24::transmit()'],['../class_r_f69.html#aeb62c5a521aafc1e0525c58e9364482b',1,'RF69::transmit(String &str, uint8_t addr=0)'],['../class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534',1,'RF69::transmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#a3dd42f8d5569487ea74f004ca652a709',1,'RF69::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#ab139a34e03a6fd5a781cd54da21d308f',1,'Si443x::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_si443x.html#aeb62c5a521aafc1e0525c58e9364482b',1,'Si443x::transmit(String &str, uint8_t addr=0)'],['../class_si443x.html#a492b2d057dd803c3884fa1adc8e22534',1,'Si443x::transmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#a3dd42f8d5569487ea74f004ca652a709',1,'Si443x::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x126x.html#ab139a34e03a6fd5a781cd54da21d308f',1,'SX126x::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_s_x126x.html#aeb62c5a521aafc1e0525c58e9364482b',1,'SX126x::transmit(String &str, uint8_t addr=0)'],['../class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX126x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#a3dd42f8d5569487ea74f004ca652a709',1,'SX126x::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x127x.html#ab139a34e03a6fd5a781cd54da21d308f',1,'SX127x::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_s_x127x.html#aeb62c5a521aafc1e0525c58e9364482b',1,'SX127x::transmit(String &str, uint8_t addr=0)'],['../class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX127x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#a3dd42f8d5569487ea74f004ca652a709',1,'SX127x::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#ab139a34e03a6fd5a781cd54da21d308f',1,'SX128x::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_s_x128x.html#aeb62c5a521aafc1e0525c58e9364482b',1,'SX128x::transmit(String &str, uint8_t addr=0)'],['../class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX128x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#a3dd42f8d5569487ea74f004ca652a709',1,'SX128x::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../classn_r_f24.html#ab139a34e03a6fd5a781cd54da21d308f',1,'nRF24::transmit()'],['../class_c_c1101.html#a7cb99a9200b21829b50e3fc3878573f4',1,'CC1101::transmit()'],['../classn_r_f24.html#a583d505bd3a638ecc5576dd2dd95f044',1,'nRF24::transmit()'],['../class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847',1,'RF69::transmit()'],['../class_si443x.html#a782748025e19ec6e597293afb6570bff',1,'Si443x::transmit()'],['../class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009',1,'SX126x::transmit()'],['../class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29',1,'SX127x::transmit()'],['../class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5',1,'SX128x::transmit()'],['../class_a_x25_client.html#ada21695e373b3e9b0e0f5d3cfbf29826',1,'AX25Client::transmit(String &str, const char *destCallsign, uint8_t destSSID=0x00)'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit(const char *str, const char *destCallsign, uint8_t destSSID=0x00)'],['../class_pager_client.html#a897f990002a4a2196fcdb31c547e0648',1,'PagerClient::transmit(String &str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_pager_client.html#a77aafe7c86e6e1e4e22990be4e7f090b',1,'PagerClient::transmit(uint8_t *data, size_t len, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../classn_r_f24.html#aeb62c5a521aafc1e0525c58e9364482b',1,'nRF24::transmit()'],['../class_c_c1101.html#a3dd42f8d5569487ea74f004ca652a709',1,'CC1101::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_c_c1101.html#a492b2d057dd803c3884fa1adc8e22534',1,'CC1101::transmit(const char *str, uint8_t addr=0)'],['../class_c_c1101.html#aeb62c5a521aafc1e0525c58e9364482b',1,'CC1101::transmit(String &str, uint8_t addr=0)'],['../class_c_c1101.html#ab139a34e03a6fd5a781cd54da21d308f',1,'CC1101::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_physical_layer.html#a3dd42f8d5569487ea74f004ca652a709',1,'PhysicalLayer::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b',1,'PhysicalLayer::transmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f',1,'PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_pager_client.html#aab6a8977f89d43620b98bcedf5a47dbd',1,'PagerClient::transmit()']]],
+ ['transmitdirect_631',['transmitDirect',['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect()'],['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_physical_layer.html#aa4c99ac794ee653c2061be4201724b65',1,'PhysicalLayer::transmitDirect()']]],
+ ['transmitdirectasync_632',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]]
];
diff --git a/search/functions_11.js b/search/functions_11.js
index dc4348f2..6f79a5a4 100644
--- a/search/functions_11.js
+++ b/search/functions_11.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['variablepacketlengthmode_631',['variablePacketLengthMode',['../class_c_c1101.html#a50b9e73d2d82a4cd03841f465825b73f',1,'CC1101::variablePacketLengthMode()'],['../class_r_f69.html#af434c67aabe02258ee6696a59973617b',1,'RF69::variablePacketLengthMode()'],['../class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a',1,'Si443x::variablePacketLengthMode()'],['../class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c',1,'SX127x::variablePacketLengthMode()']]]
+ ['variablepacketlengthmode_633',['variablePacketLengthMode',['../class_c_c1101.html#a50b9e73d2d82a4cd03841f465825b73f',1,'CC1101::variablePacketLengthMode()'],['../class_r_f69.html#af434c67aabe02258ee6696a59973617b',1,'RF69::variablePacketLengthMode()'],['../class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a',1,'Si443x::variablePacketLengthMode()'],['../class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c',1,'SX127x::variablePacketLengthMode()']]]
];
diff --git a/search/functions_12.js b/search/functions_12.js
index e6aa97ab..34928256 100644
--- a/search/functions_12.js
+++ b/search/functions_12.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['waitformicroseconds_632',['waitForMicroseconds',['../class_module.html#a47978200f7e2e408fb64f506c81cee9f',1,'Module']]],
- ['write_633',['write',['../class_f_s_k4_client.html#aa59fb42d3eeafe5ab3f0437ef5567ec2',1,'FSK4Client::write(uint8_t *buff, size_t len)'],['../class_f_s_k4_client.html#a31218736d4f9a3412ee9009a4c4f5a22',1,'FSK4Client::write(uint8_t b)']]]
+ ['waitformicroseconds_634',['waitForMicroseconds',['../class_module.html#a47978200f7e2e408fb64f506c81cee9f',1,'Module']]],
+ ['write_635',['write',['../class_f_s_k4_client.html#aa59fb42d3eeafe5ab3f0437ef5567ec2',1,'FSK4Client::write(uint8_t *buff, size_t len)'],['../class_f_s_k4_client.html#a31218736d4f9a3412ee9009a4c4f5a22',1,'FSK4Client::write(uint8_t b)']]]
];
diff --git a/search/functions_13.js b/search/functions_13.js
index b86c28b9..51c7a971 100644
--- a/search/functions_13.js
+++ b/search/functions_13.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['yield_634',['yield',['../class_module.html#a227d2d38e4747d0f49bb4df1c80b45d7',1,'Module']]]
+ ['yield_636',['yield',['../class_module.html#a227d2d38e4747d0f49bb4df1c80b45d7',1,'Module']]]
];
diff --git a/search/functions_14.js b/search/functions_14.js
index 773e00a8..accdb21b 100644
--- a/search/functions_14.js
+++ b/search/functions_14.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['_7eax25frame_635',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]],
- ['_7eita2string_636',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]]
+ ['_7eax25frame_637',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]],
+ ['_7eita2string_638',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]]
];
diff --git a/search/functions_2.js b/search/functions_2.js
index 25913e3b..f14e5134 100644
--- a/search/functions_2.js
+++ b/search/functions_2.js
@@ -1,12 +1,12 @@
var searchData=
[
- ['cc1101_408',['CC1101',['../class_c_c1101.html#a6807e4254c4b55fa8d393b2bf8f2db3e',1,'CC1101']]],
- ['cleardio0action_409',['clearDio0Action',['../class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942',1,'RF69::clearDio0Action()'],['../class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823',1,'SX127x::clearDio0Action()']]],
- ['cleardio1action_410',['clearDio1Action',['../class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51',1,'RF69::clearDio1Action()'],['../class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd',1,'SX126x::clearDio1Action()'],['../class_s_x127x.html#a9b6532a25e1730973ac08146008adca5',1,'SX127x::clearDio1Action()'],['../class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f',1,'SX128x::clearDio1Action()']]],
- ['clearfhssint_411',['clearFHSSInt',['../class_s_x127x.html#a41089d9e5b45217d3e31ac22b5326b66',1,'SX127x']]],
- ['clearfifoemptyaction_412',['clearFifoEmptyAction',['../class_r_f69.html#a0d7b67499462777f7909860405ca6b62',1,'RF69::clearFifoEmptyAction()'],['../class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1',1,'SX127x::clearFifoEmptyAction()']]],
- ['clearfifofullaction_413',['clearFifoFullAction',['../class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3',1,'RF69::clearFifoFullAction()'],['../class_s_x127x.html#a0f041e91ab2fbb6f05eef56b5addac71',1,'SX127x::clearFifoFullAction()']]],
- ['cleargdo0action_414',['clearGdo0Action',['../class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8',1,'CC1101']]],
- ['cleargdo2action_415',['clearGdo2Action',['../class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4',1,'CC1101']]],
- ['clearirqaction_416',['clearIrqAction',['../class_si443x.html#a8d019f58551346c3f3bd8b72d2486109',1,'Si443x']]]
+ ['cc1101_410',['CC1101',['../class_c_c1101.html#a6807e4254c4b55fa8d393b2bf8f2db3e',1,'CC1101']]],
+ ['cleardio0action_411',['clearDio0Action',['../class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942',1,'RF69::clearDio0Action()'],['../class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823',1,'SX127x::clearDio0Action()']]],
+ ['cleardio1action_412',['clearDio1Action',['../class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51',1,'RF69::clearDio1Action()'],['../class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd',1,'SX126x::clearDio1Action()'],['../class_s_x127x.html#a9b6532a25e1730973ac08146008adca5',1,'SX127x::clearDio1Action()'],['../class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f',1,'SX128x::clearDio1Action()']]],
+ ['clearfhssint_413',['clearFHSSInt',['../class_s_x127x.html#a41089d9e5b45217d3e31ac22b5326b66',1,'SX127x']]],
+ ['clearfifoemptyaction_414',['clearFifoEmptyAction',['../class_r_f69.html#a0d7b67499462777f7909860405ca6b62',1,'RF69::clearFifoEmptyAction()'],['../class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1',1,'SX127x::clearFifoEmptyAction()']]],
+ ['clearfifofullaction_415',['clearFifoFullAction',['../class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3',1,'RF69::clearFifoFullAction()'],['../class_s_x127x.html#a0f041e91ab2fbb6f05eef56b5addac71',1,'SX127x::clearFifoFullAction()']]],
+ ['cleargdo0action_416',['clearGdo0Action',['../class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8',1,'CC1101']]],
+ ['cleargdo2action_417',['clearGdo2Action',['../class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4',1,'CC1101']]],
+ ['clearirqaction_418',['clearIrqAction',['../class_si443x.html#a8d019f58551346c3f3bd8b72d2486109',1,'Si443x']]]
];
diff --git a/search/functions_3.js b/search/functions_3.js
index 248d2ae3..cf4e95c9 100644
--- a/search/functions_3.js
+++ b/search/functions_3.js
@@ -1,16 +1,16 @@
var searchData=
[
- ['decode_417',['decode',['../class_morse_client.html#abd1515c8e6c3ddade280be53f612ece7',1,'MorseClient']]],
- ['delay_418',['delay',['../class_module.html#af0f870b09b9dd9636f1587d708f07d38',1,'Module']]],
- ['delaymicroseconds_419',['delayMicroseconds',['../class_module.html#a14d7cd8220bfa4440bda055ce5be748c',1,'Module']]],
- ['detachinterrupt_420',['detachInterrupt',['../class_module.html#a656738f2fe41fb236d27aed02efa8ad4',1,'Module']]],
- ['digitalread_421',['digitalRead',['../class_module.html#a7495c81640aac8f4686221dad34a274f',1,'Module']]],
- ['digitalwrite_422',['digitalWrite',['../class_module.html#a46ad10b113df7c7e0a932be19eff63cd',1,'Module']]],
- ['disableaddressfiltering_423',['disableAddressFiltering',['../class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2',1,'SX126x::disableAddressFiltering()'],['../class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5',1,'SX127x::disableAddressFiltering()'],['../class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee',1,'RF69::disableAddressFiltering()'],['../class_c_c1101.html#a9aee5df428d30b9c80b8a8700609a883',1,'CC1101::disableAddressFiltering()']]],
- ['disableaes_424',['disableAES',['../class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa',1,'RF69']]],
- ['disablebitsync_425',['disableBitSync',['../class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd',1,'SX127x']]],
- ['disablecontinuousmodebitsync_426',['disableContinuousModeBitSync',['../class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad',1,'RF69']]],
- ['disablepipe_427',['disablePipe',['../classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a',1,'nRF24']]],
- ['disablesyncwordfiltering_428',['disableSyncWordFiltering',['../class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b',1,'CC1101::disableSyncWordFiltering()'],['../class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80',1,'RF69::disableSyncWordFiltering()']]],
- ['dropsync_429',['dropSync',['../class_physical_layer.html#a429796eb2e7ea86781a2e8ca42af43f3',1,'PhysicalLayer']]]
+ ['decode_419',['decode',['../class_morse_client.html#abd1515c8e6c3ddade280be53f612ece7',1,'MorseClient']]],
+ ['delay_420',['delay',['../class_module.html#af0f870b09b9dd9636f1587d708f07d38',1,'Module']]],
+ ['delaymicroseconds_421',['delayMicroseconds',['../class_module.html#a14d7cd8220bfa4440bda055ce5be748c',1,'Module']]],
+ ['detachinterrupt_422',['detachInterrupt',['../class_module.html#a656738f2fe41fb236d27aed02efa8ad4',1,'Module']]],
+ ['digitalread_423',['digitalRead',['../class_module.html#a7495c81640aac8f4686221dad34a274f',1,'Module']]],
+ ['digitalwrite_424',['digitalWrite',['../class_module.html#a46ad10b113df7c7e0a932be19eff63cd',1,'Module']]],
+ ['disableaddressfiltering_425',['disableAddressFiltering',['../class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2',1,'SX126x::disableAddressFiltering()'],['../class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5',1,'SX127x::disableAddressFiltering()'],['../class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee',1,'RF69::disableAddressFiltering()'],['../class_c_c1101.html#a9aee5df428d30b9c80b8a8700609a883',1,'CC1101::disableAddressFiltering()']]],
+ ['disableaes_426',['disableAES',['../class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa',1,'RF69']]],
+ ['disablebitsync_427',['disableBitSync',['../class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd',1,'SX127x']]],
+ ['disablecontinuousmodebitsync_428',['disableContinuousModeBitSync',['../class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad',1,'RF69']]],
+ ['disablepipe_429',['disablePipe',['../classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a',1,'nRF24']]],
+ ['disablesyncwordfiltering_430',['disableSyncWordFiltering',['../class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b',1,'CC1101::disableSyncWordFiltering()'],['../class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80',1,'RF69::disableSyncWordFiltering()']]],
+ ['dropsync_431',['dropSync',['../class_physical_layer.html#a429796eb2e7ea86781a2e8ca42af43f3',1,'PhysicalLayer']]]
];
diff --git a/search/functions_4.js b/search/functions_4.js
index f52d144f..b4568c23 100644
--- a/search/functions_4.js
+++ b/search/functions_4.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['enableaes_430',['enableAES',['../class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69',1,'RF69']]],
- ['enablebitsync_431',['enableBitSync',['../class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa',1,'SX127x']]],
- ['enablecontinuousmodebitsync_432',['enableContinuousModeBitSync',['../class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0',1,'RF69']]],
- ['enablesyncwordfiltering_433',['enableSyncWordFiltering',['../class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4',1,'CC1101::enableSyncWordFiltering()'],['../class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417',1,'RF69::enableSyncWordFiltering()']]],
- ['end_434',['end',['../class_module.html#aa7fc017ee35f40c90e5badc5bc568c3d',1,'Module']]],
- ['endtransaction_435',['endTransaction',['../class_module.html#a015226566efc5131c8a39a184b6c4e6b',1,'Module']]],
- ['explicitheader_436',['explicitHeader',['../class_s_x126x.html#a3765f534418d4e0540c179621c019138',1,'SX126x::explicitHeader()'],['../class_s_x1272.html#ae3c9704cb58232f696b5f90f69c115f7',1,'SX1272::explicitHeader()'],['../class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1',1,'SX1278::explicitHeader()'],['../class_s_x128x.html#a94b7fb26cc99385d30b0c98b76d8188d',1,'SX128x::explicitHeader()']]]
+ ['enableaes_432',['enableAES',['../class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69',1,'RF69']]],
+ ['enablebitsync_433',['enableBitSync',['../class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa',1,'SX127x']]],
+ ['enablecontinuousmodebitsync_434',['enableContinuousModeBitSync',['../class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0',1,'RF69']]],
+ ['enablesyncwordfiltering_435',['enableSyncWordFiltering',['../class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4',1,'CC1101::enableSyncWordFiltering()'],['../class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417',1,'RF69::enableSyncWordFiltering()']]],
+ ['end_436',['end',['../class_module.html#aa7fc017ee35f40c90e5badc5bc568c3d',1,'Module']]],
+ ['endtransaction_437',['endTransaction',['../class_module.html#a015226566efc5131c8a39a184b6c4e6b',1,'Module']]],
+ ['explicitheader_438',['explicitHeader',['../class_s_x126x.html#a3765f534418d4e0540c179621c019138',1,'SX126x::explicitHeader()'],['../class_s_x1272.html#ae3c9704cb58232f696b5f90f69c115f7',1,'SX1272::explicitHeader()'],['../class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1',1,'SX1278::explicitHeader()'],['../class_s_x128x.html#a94b7fb26cc99385d30b0c98b76d8188d',1,'SX128x::explicitHeader()']]]
];
diff --git a/search/functions_5.js b/search/functions_5.js
index ad45dd82..61213100 100644
--- a/search/functions_5.js
+++ b/search/functions_5.js
@@ -1,11 +1,11 @@
var searchData=
[
- ['fifoadd_437',['fifoAdd',['../class_s_x127x.html#a36dbd1697a415c6db3b47cd620c8c02e',1,'SX127x::fifoAdd()'],['../class_r_f69.html#ab6d98f3f2d964d1833e20da246a5be89',1,'RF69::fifoAdd(uint8_t *data, int totalLen, int *remLen)']]],
- ['fifoget_438',['fifoGet',['../class_r_f69.html#aa6886410230c654400c76ec7710d623c',1,'RF69::fifoGet()'],['../class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a',1,'SX127x::fifoGet()']]],
- ['finishtransmit_439',['finishTransmit',['../class_c_c1101.html#af70ea860154cd6d2b2e2a6962e161c8f',1,'CC1101::finishTransmit()'],['../classn_r_f24.html#af0c21ff66c011dfdc1ad12bc7dd11c2f',1,'nRF24::finishTransmit()'],['../class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b',1,'RF69::finishTransmit()'],['../class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3',1,'Si443x::finishTransmit()'],['../class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e',1,'SX126x::finishTransmit()'],['../class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f',1,'SX127x::finishTransmit()'],['../class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4',1,'SX128x::finishTransmit()'],['../class_physical_layer.html#aeba51a21ad3c6d56b61a55061de7fc92',1,'PhysicalLayer::finishTransmit()']]],
- ['fixedpacketlengthmode_440',['fixedPacketLengthMode',['../class_c_c1101.html#ad25ad96cddf62273bffd601384d22275',1,'CC1101::fixedPacketLengthMode()'],['../class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359',1,'SX127x::fixedPacketLengthMode()'],['../class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5',1,'SX126x::fixedPacketLengthMode()'],['../class_si443x.html#ad2b3a961a99d9e8f3a7ead6e8b69e858',1,'Si443x::fixedPacketLengthMode()'],['../class_r_f69.html#a0de2a07f264839cda945faebf7319e0e',1,'RF69::fixedPacketLengthMode()']]],
- ['flipbits_441',['flipBits',['../class_module.html#a7f5fd7409f21d33a16ea1de589962ae6',1,'Module']]],
- ['flipbits16_442',['flipBits16',['../class_module.html#a160006371be8e121a8a54cc4462b3a72',1,'Module']]],
- ['forceldro_443',['forceLDRO',['../class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8',1,'SX126x::forceLDRO()'],['../class_s_x1272.html#a4aaf9d61310fa7b4fce413ae53d30ac0',1,'SX1272::forceLDRO()'],['../class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856',1,'SX1278::forceLDRO()']]],
- ['fsk4client_444',['FSK4Client',['../class_f_s_k4_client.html#a2cdcea538e5b58e99a23f98ef4a68617',1,'FSK4Client::FSK4Client(PhysicalLayer *phy)'],['../class_f_s_k4_client.html#a65105b2744c4721b75ca0894c654bf82',1,'FSK4Client::FSK4Client(AFSKClient *audio)']]]
+ ['fifoadd_439',['fifoAdd',['../class_s_x127x.html#a36dbd1697a415c6db3b47cd620c8c02e',1,'SX127x::fifoAdd()'],['../class_r_f69.html#ab6d98f3f2d964d1833e20da246a5be89',1,'RF69::fifoAdd(uint8_t *data, int totalLen, int *remLen)']]],
+ ['fifoget_440',['fifoGet',['../class_r_f69.html#aa6886410230c654400c76ec7710d623c',1,'RF69::fifoGet()'],['../class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a',1,'SX127x::fifoGet()']]],
+ ['finishtransmit_441',['finishTransmit',['../class_c_c1101.html#af70ea860154cd6d2b2e2a6962e161c8f',1,'CC1101::finishTransmit()'],['../classn_r_f24.html#af0c21ff66c011dfdc1ad12bc7dd11c2f',1,'nRF24::finishTransmit()'],['../class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b',1,'RF69::finishTransmit()'],['../class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3',1,'Si443x::finishTransmit()'],['../class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e',1,'SX126x::finishTransmit()'],['../class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f',1,'SX127x::finishTransmit()'],['../class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4',1,'SX128x::finishTransmit()'],['../class_physical_layer.html#a1de26f68b939f5af79ec29cc34c7be18',1,'PhysicalLayer::finishTransmit()']]],
+ ['fixedpacketlengthmode_442',['fixedPacketLengthMode',['../class_c_c1101.html#ad25ad96cddf62273bffd601384d22275',1,'CC1101::fixedPacketLengthMode()'],['../class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359',1,'SX127x::fixedPacketLengthMode()'],['../class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5',1,'SX126x::fixedPacketLengthMode()'],['../class_si443x.html#ad2b3a961a99d9e8f3a7ead6e8b69e858',1,'Si443x::fixedPacketLengthMode()'],['../class_r_f69.html#a0de2a07f264839cda945faebf7319e0e',1,'RF69::fixedPacketLengthMode()']]],
+ ['flipbits_443',['flipBits',['../class_module.html#a7f5fd7409f21d33a16ea1de589962ae6',1,'Module']]],
+ ['flipbits16_444',['flipBits16',['../class_module.html#a160006371be8e121a8a54cc4462b3a72',1,'Module']]],
+ ['forceldro_445',['forceLDRO',['../class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8',1,'SX126x::forceLDRO()'],['../class_s_x1272.html#a4aaf9d61310fa7b4fce413ae53d30ac0',1,'SX1272::forceLDRO()'],['../class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856',1,'SX1278::forceLDRO()']]],
+ ['fsk4client_446',['FSK4Client',['../class_f_s_k4_client.html#a2cdcea538e5b58e99a23f98ef4a68617',1,'FSK4Client::FSK4Client(PhysicalLayer *phy)'],['../class_f_s_k4_client.html#a65105b2744c4721b75ca0894c654bf82',1,'FSK4Client::FSK4Client(AFSKClient *audio)']]]
];
diff --git a/search/functions_6.js b/search/functions_6.js
index 86510da3..cb40b3bd 100644
--- a/search/functions_6.js
+++ b/search/functions_6.js
@@ -1,34 +1,34 @@
var searchData=
[
- ['getafcerror_445',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]],
- ['getchannelscanresult_446',['getChannelScanResult',['../class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f',1,'SX126x']]],
- ['getchipversion_447',['getChipVersion',['../class_c_c1101.html#a2a4c6e622dffd2788d8ac52d708b0705',1,'CC1101::getChipVersion()'],['../class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638',1,'RF69::getChipVersion()'],['../class_si443x.html#a55252bda74e8c67636a8c1fa0e9f58d3',1,'Si443x::getChipVersion()'],['../class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd',1,'SX127x::getChipVersion()']]],
- ['getcs_448',['getCs',['../class_module.html#ae53e355a77f2b7ce6473c62ac5f37334',1,'Module']]],
- ['getcurrentlimit_449',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]],
- ['getdatarate_450',['getDataRate',['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate() const']]],
- ['getfhsschannel_451',['getFHSSChannel',['../class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c',1,'SX127x']]],
- ['getfhsshoppingperiod_452',['getFHSSHoppingPeriod',['../class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617',1,'SX127x']]],
- ['getfreqstep_453',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]],
- ['getfrequency_454',['getFrequency',['../class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed',1,'RF69']]],
- ['getfrequencydeviation_455',['getFrequencyDeviation',['../class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9',1,'RF69::getFrequencyDeviation()'],['../class_c_c1101.html#abe26fa310e973bf2b14750b9eae02124',1,'CC1101::getFrequencyDeviation()']]],
- ['getfrequencyerror_456',['getFrequencyError',['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x::getFrequencyError()'],['../class_s_x128x.html#a2b424000856a9dc212f571d0e8890635',1,'SX128x::getFrequencyError()']]],
- ['getgpio_457',['getGpio',['../class_module.html#aeb4c7447372d56a7cae6db91994aacfc',1,'Module']]],
- ['getirq_458',['getIrq',['../class_module.html#a8c7f17a63b67117d953f1ba990b17f80',1,'Module']]],
- ['getirqflags_459',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]],
- ['getirqstatus_460',['getIrqStatus',['../class_s_x126x.html#a9a9b090eddcb811ee19b595debfab1df',1,'SX126x::getIrqStatus()'],['../class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22',1,'SX128x::getIrqStatus()']]],
- ['getlasterror_461',['getLastError',['../class_s_x126x.html#ac71eb1209354837ced2e21e66534bff3',1,'SX126x::getLastError()'],['../class_s_x128x.html#abefabeb0ecd6c441fbd388340bb7b2b2',1,'SX128x::getLastError()']]],
- ['getlqi_462',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]],
- ['getmodemstatus_463',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]],
- ['getpacketlength_464',['getPacketLength',['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()'],['../class_physical_layer.html#a0bd6046e068ef63e3f2b6bead48e02a7',1,'PhysicalLayer::getPacketLength()'],['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength()']]],
- ['getpictureheight_465',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]],
- ['getpromiscuousmode_466',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]],
- ['getrangingresult_467',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]],
- ['getrssi_468',['getRSSI',['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()'],['../class_s_x1278.html#ae52d84fa301309a4a4294312571fc3b8',1,'SX1278::getRSSI()'],['../class_s_x1272.html#a0d8e68cf913422535dc43cbdf73a3f10',1,'SX1272::getRSSI()'],['../class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925',1,'SX126x::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc',1,'CC1101::getRSSI()']]],
- ['getrssiinst_469',['getRSSIInst',['../class_s_x126x.html#ae36664f9c605a8fe74b2f357e0ec3323',1,'SX126x']]],
- ['getrst_470',['getRst',['../class_module.html#ae352c7a7b997fc1b17189c1312a8347f',1,'Module']]],
- ['getsnr_471',['getSNR',['../class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca',1,'SX126x::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()']]],
- ['getstatus_472',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]],
- ['gettemperature_473',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]],
- ['gettempraw_474',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]],
- ['gettimeonair_475',['getTimeOnAir',['../class_s_x126x.html#a7e342ddbef84cf845bef8f4448b8da10',1,'SX126x::getTimeOnAir()'],['../class_s_x127x.html#ad532e1a62c6ee2c58f9517e6e62728ac',1,'SX127x::getTimeOnAir()'],['../class_s_x128x.html#a2361a94f2e12ebc93e750a027d633232',1,'SX128x::getTimeOnAir()']]]
+ ['getafcerror_447',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]],
+ ['getchannelscanresult_448',['getChannelScanResult',['../class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f',1,'SX126x']]],
+ ['getchipversion_449',['getChipVersion',['../class_c_c1101.html#a2a4c6e622dffd2788d8ac52d708b0705',1,'CC1101::getChipVersion()'],['../class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638',1,'RF69::getChipVersion()'],['../class_si443x.html#a55252bda74e8c67636a8c1fa0e9f58d3',1,'Si443x::getChipVersion()'],['../class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd',1,'SX127x::getChipVersion()']]],
+ ['getcs_450',['getCs',['../class_module.html#ae53e355a77f2b7ce6473c62ac5f37334',1,'Module']]],
+ ['getcurrentlimit_451',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]],
+ ['getdatarate_452',['getDataRate',['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate() const']]],
+ ['getfhsschannel_453',['getFHSSChannel',['../class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c',1,'SX127x']]],
+ ['getfhsshoppingperiod_454',['getFHSSHoppingPeriod',['../class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617',1,'SX127x']]],
+ ['getfreqstep_455',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]],
+ ['getfrequency_456',['getFrequency',['../class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed',1,'RF69']]],
+ ['getfrequencydeviation_457',['getFrequencyDeviation',['../class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9',1,'RF69::getFrequencyDeviation()'],['../class_c_c1101.html#abe26fa310e973bf2b14750b9eae02124',1,'CC1101::getFrequencyDeviation()']]],
+ ['getfrequencyerror_458',['getFrequencyError',['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x::getFrequencyError()'],['../class_s_x128x.html#a2b424000856a9dc212f571d0e8890635',1,'SX128x::getFrequencyError()']]],
+ ['getgpio_459',['getGpio',['../class_module.html#aeb4c7447372d56a7cae6db91994aacfc',1,'Module']]],
+ ['getirq_460',['getIrq',['../class_module.html#a8c7f17a63b67117d953f1ba990b17f80',1,'Module']]],
+ ['getirqflags_461',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]],
+ ['getirqstatus_462',['getIrqStatus',['../class_s_x126x.html#a9a9b090eddcb811ee19b595debfab1df',1,'SX126x::getIrqStatus()'],['../class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22',1,'SX128x::getIrqStatus()']]],
+ ['getlasterror_463',['getLastError',['../class_s_x126x.html#ac71eb1209354837ced2e21e66534bff3',1,'SX126x::getLastError()'],['../class_s_x128x.html#abefabeb0ecd6c441fbd388340bb7b2b2',1,'SX128x::getLastError()']]],
+ ['getlqi_464',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]],
+ ['getmodemstatus_465',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]],
+ ['getpacketlength_466',['getPacketLength',['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()'],['../class_physical_layer.html#a2fe95169b5cdc8cabe1f2af66cad6ef6',1,'PhysicalLayer::getPacketLength()'],['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength()']]],
+ ['getpictureheight_467',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]],
+ ['getpromiscuousmode_468',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]],
+ ['getrangingresult_469',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]],
+ ['getrssi_470',['getRSSI',['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()'],['../class_s_x1278.html#ae52d84fa301309a4a4294312571fc3b8',1,'SX1278::getRSSI()'],['../class_s_x1272.html#a0d8e68cf913422535dc43cbdf73a3f10',1,'SX1272::getRSSI()'],['../class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925',1,'SX126x::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc',1,'CC1101::getRSSI()']]],
+ ['getrssiinst_471',['getRSSIInst',['../class_s_x126x.html#ae36664f9c605a8fe74b2f357e0ec3323',1,'SX126x']]],
+ ['getrst_472',['getRst',['../class_module.html#ae352c7a7b997fc1b17189c1312a8347f',1,'Module']]],
+ ['getsnr_473',['getSNR',['../class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca',1,'SX126x::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()']]],
+ ['getstatus_474',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]],
+ ['gettemperature_475',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]],
+ ['gettempraw_476',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]],
+ ['gettimeonair_477',['getTimeOnAir',['../class_s_x126x.html#a7e342ddbef84cf845bef8f4448b8da10',1,'SX126x::getTimeOnAir()'],['../class_s_x127x.html#ad532e1a62c6ee2c58f9517e6e62728ac',1,'SX127x::getTimeOnAir()'],['../class_s_x128x.html#a2361a94f2e12ebc93e750a027d633232',1,'SX128x::getTimeOnAir()']]]
];
diff --git a/search/functions_7.js b/search/functions_7.js
index 91eba265..1732eba1 100644
--- a/search/functions_7.js
+++ b/search/functions_7.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['hellclient_476',['HellClient',['../class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0',1,'HellClient::HellClient(PhysicalLayer *phy)'],['../class_hell_client.html#afeb347f04148700427ad40614fd057c3',1,'HellClient::HellClient(AFSKClient *audio)']]],
- ['hexdump_477',['hexdump',['../class_module.html#ac2dc188128f32f9360a178f31659291a',1,'Module']]]
+ ['hellclient_478',['HellClient',['../class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0',1,'HellClient::HellClient(PhysicalLayer *phy)'],['../class_hell_client.html#afeb347f04148700427ad40614fd057c3',1,'HellClient::HellClient(AFSKClient *audio)']]],
+ ['hexdump_479',['hexdump',['../class_module.html#ac2dc188128f32f9360a178f31659291a',1,'Module']]]
];
diff --git a/search/functions_8.js b/search/functions_8.js
index ecc3e092..7bd262e9 100644
--- a/search/functions_8.js
+++ b/search/functions_8.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['idle_478',['idle',['../class_f_s_k4_client.html#a79ca465012acc9223d61d5b063ff8257',1,'FSK4Client::idle()'],['../class_r_t_t_y_client.html#ac477e65ea756e56bb9043d778a51b4bc',1,'RTTYClient::idle()'],['../class_s_s_t_v_client.html#a0126ac04934f589b8cb04a038c342044',1,'SSTVClient::idle()']]],
- ['implicitheader_479',['implicitHeader',['../class_s_x126x.html#adec09cba71494bd927ad1da786606ca6',1,'SX126x::implicitHeader()'],['../class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3',1,'SX1272::implicitHeader()'],['../class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e',1,'SX1278::implicitHeader()'],['../class_s_x128x.html#ac69cc622020419cb3393eac5cc88915b',1,'SX128x::implicitHeader()']]],
- ['init_480',['init',['../class_module.html#ad1956ac81429ec1f61f83dbc081cf18c',1,'Module']]],
- ['invertiq_481',['invertIQ',['../class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04',1,'SX127x']]],
- ['iscarrierdetected_482',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]],
- ['ita2string_483',['ITA2String',['../class_i_t_a2_string.html#addb6c39167aa5da53fb72e9a94c9c8f5',1,'ITA2String::ITA2String(char c)'],['../class_i_t_a2_string.html#a92ca563bdc2ae4d05ee91ce9372e7a55',1,'ITA2String::ITA2String(const char *str)']]]
+ ['idle_480',['idle',['../class_f_s_k4_client.html#a79ca465012acc9223d61d5b063ff8257',1,'FSK4Client::idle()'],['../class_r_t_t_y_client.html#ac477e65ea756e56bb9043d778a51b4bc',1,'RTTYClient::idle()'],['../class_s_s_t_v_client.html#a0126ac04934f589b8cb04a038c342044',1,'SSTVClient::idle()']]],
+ ['implicitheader_481',['implicitHeader',['../class_s_x126x.html#adec09cba71494bd927ad1da786606ca6',1,'SX126x::implicitHeader()'],['../class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3',1,'SX1272::implicitHeader()'],['../class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e',1,'SX1278::implicitHeader()'],['../class_s_x128x.html#ac69cc622020419cb3393eac5cc88915b',1,'SX128x::implicitHeader()']]],
+ ['init_482',['init',['../class_module.html#ad1956ac81429ec1f61f83dbc081cf18c',1,'Module']]],
+ ['invertiq_483',['invertIQ',['../class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04',1,'SX127x']]],
+ ['iscarrierdetected_484',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]],
+ ['ita2string_485',['ITA2String',['../class_i_t_a2_string.html#addb6c39167aa5da53fb72e9a94c9c8f5',1,'ITA2String::ITA2String(char c)'],['../class_i_t_a2_string.html#a92ca563bdc2ae4d05ee91ce9372e7a55',1,'ITA2String::ITA2String(const char *str)']]]
];
diff --git a/search/functions_9.js b/search/functions_9.js
index 0f844717..5526adea 100644
--- a/search/functions_9.js
+++ b/search/functions_9.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['length_484',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]],
- ['llcc68_485',['LLCC68',['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68']]]
+ ['length_486',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]],
+ ['llcc68_487',['LLCC68',['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68']]]
];
diff --git a/search/functions_a.js b/search/functions_a.js
index a828afa4..600c01b0 100644
--- a/search/functions_a.js
+++ b/search/functions_a.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['micros_486',['micros',['../class_module.html#af3f51e517a825949891ad29e30fd3f59',1,'Module']]],
- ['millis_487',['millis',['../class_module.html#a216dd0c6ce140857f2b003ab8d89fbac',1,'Module']]],
- ['module_488',['Module',['../class_module.html#a1101d49f597f756141fc9de88a504f21',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE gpio=RADIOLIB_NC)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]],
- ['morseclient_489',['MorseClient',['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)']]]
+ ['micros_488',['micros',['../class_module.html#af3f51e517a825949891ad29e30fd3f59',1,'Module']]],
+ ['millis_489',['millis',['../class_module.html#a216dd0c6ce140857f2b003ab8d89fbac',1,'Module']]],
+ ['module_490',['Module',['../class_module.html#a1101d49f597f756141fc9de88a504f21',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE gpio=RADIOLIB_NC)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]],
+ ['morseclient_491',['MorseClient',['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)']]]
];
diff --git a/search/functions_b.js b/search/functions_b.js
index 7b799d00..a9fbae83 100644
--- a/search/functions_b.js
+++ b/search/functions_b.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['notone_490',['noTone',['../class_module.html#af998b86ce1243f616f6fcb6df5336207',1,'Module::noTone()'],['../class_a_f_s_k_client.html#a664c1de9b5cd792826a5a77ac5457bae',1,'AFSKClient::noTone()']]],
- ['nrf24_491',['nRF24',['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24']]]
+ ['notone_492',['noTone',['../class_module.html#af998b86ce1243f616f6fcb6df5336207',1,'Module::noTone()'],['../class_a_f_s_k_client.html#a664c1de9b5cd792826a5a77ac5457bae',1,'AFSKClient::noTone()']]],
+ ['nrf24_493',['nRF24',['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24']]]
];
diff --git a/search/functions_c.js b/search/functions_c.js
index d3ec1948..ec30c540 100644
--- a/search/functions_c.js
+++ b/search/functions_c.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['operator_3d_492',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()']]]
+ ['operator_3d_494',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()']]]
];
diff --git a/search/functions_d.js b/search/functions_d.js
index b6860363..3ee4a9a4 100644
--- a/search/functions_d.js
+++ b/search/functions_d.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['packetmode_493',['packetMode',['../class_c_c1101.html#a38f6978c757b0dd73e3ef98164a735a2',1,'CC1101::packetMode()'],['../class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f',1,'RF69::packetMode()'],['../class_si443x.html#a616eb24c4b11c5d39caaade160be8092',1,'Si443x::packetMode()'],['../class_s_x127x.html#a0995088d37689a3c240a1af791df6cf1',1,'SX127x::packetMode()']]],
- ['pagerclient_494',['PagerClient',['../class_pager_client.html#a9f978120467b13104fb356e9b7d855ec',1,'PagerClient']]],
- ['physicallayer_495',['PhysicalLayer',['../class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62',1,'PhysicalLayer']]],
- ['pinmode_496',['pinMode',['../class_module.html#af7e4872dad3d19b6f75f532c88683168',1,'Module']]],
- ['printglyph_497',['printGlyph',['../class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9',1,'HellClient']]],
- ['pulsein_498',['pulseIn',['../class_module.html#a1310b9594f86fb1dc6646479922a1fdc',1,'Module']]]
+ ['packetmode_495',['packetMode',['../class_c_c1101.html#a38f6978c757b0dd73e3ef98164a735a2',1,'CC1101::packetMode()'],['../class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f',1,'RF69::packetMode()'],['../class_si443x.html#a616eb24c4b11c5d39caaade160be8092',1,'Si443x::packetMode()'],['../class_s_x127x.html#a0995088d37689a3c240a1af791df6cf1',1,'SX127x::packetMode()']]],
+ ['pagerclient_496',['PagerClient',['../class_pager_client.html#a9f978120467b13104fb356e9b7d855ec',1,'PagerClient']]],
+ ['physicallayer_497',['PhysicalLayer',['../class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62',1,'PhysicalLayer']]],
+ ['pinmode_498',['pinMode',['../class_module.html#af7e4872dad3d19b6f75f532c88683168',1,'Module']]],
+ ['printglyph_499',['printGlyph',['../class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9',1,'HellClient']]],
+ ['pulsein_500',['pulseIn',['../class_module.html#a1310b9594f86fb1dc6646479922a1fdc',1,'Module']]]
];
diff --git a/search/functions_e.js b/search/functions_e.js
index d0290313..ebf89f87 100644
--- a/search/functions_e.js
+++ b/search/functions_e.js
@@ -1,19 +1,19 @@
var searchData=
[
- ['random_499',['random',['../class_physical_layer.html#a76113e10481743094a1cd0280692b0a9',1,'PhysicalLayer::random(int32_t min, int32_t max)'],['../class_physical_layer.html#acd9171bd71aa80fb86113b612c42de53',1,'PhysicalLayer::random(int32_t max)']]],
- ['randombyte_500',['randomByte',['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_physical_layer.html#a34543b885aa57ade08a4c659991e523e',1,'PhysicalLayer::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',1,'SX126x::randomByte()'],['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../classn_r_f24.html#a5cc7cd54db2a6af1c9183a2d0653fe2e',1,'nRF24::randomByte()'],['../class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833',1,'CC1101::randomByte()']]],
- ['range_501',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]],
- ['read_502',['read',['../class_morse_client.html#a709093c92d69f29f1520f0b290af374b',1,'MorseClient::read()'],['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()']]],
- ['readbit_503',['readBit',['../class_s_x126x.html#aff80db65e546934980feac7e6c81dd80',1,'SX126x::readBit()'],['../class_physical_layer.html#a9b720e7776ad7ea805932578907b0058',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#a2dd0ecae9f54cf6943cf702ae15f5039',1,'SX128x::readBit()'],['../class_s_x127x.html#a071442611a32154e8b3db7981f242a53',1,'SX127x::readBit()'],['../class_si443x.html#a45d3ffcb312c34a2f6391be6d609d7b7',1,'Si443x::readBit()'],['../class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa',1,'RF69::readBit()'],['../classn_r_f24.html#a2db0cd487b03f937afc0bc2e3eccb6f6',1,'nRF24::readBit()'],['../class_c_c1101.html#a5cebec89fc0fa0f5ccbce28c6ce7d2dc',1,'CC1101::readBit()']]],
- ['readdata_504',['readData',['../classn_r_f24.html#ae8eed0e888a7c8742e89d2b850977de2',1,'nRF24::readData()'],['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../classn_r_f24.html#ae8b6c756eb4b92855433ca389d73c632',1,'nRF24::readData()'],['../class_r_f69.html#ae8eed0e888a7c8742e89d2b850977de2',1,'RF69::readData(String &str, size_t len=0)'],['../class_r_f69.html#ae8b6c756eb4b92855433ca389d73c632',1,'RF69::readData(uint8_t *data, size_t len)=0'],['../class_si443x.html#ae8eed0e888a7c8742e89d2b850977de2',1,'Si443x::readData(String &str, size_t len=0)'],['../class_si443x.html#ae8b6c756eb4b92855433ca389d73c632',1,'Si443x::readData(uint8_t *data, size_t len)=0'],['../class_s_x126x.html#ae8eed0e888a7c8742e89d2b850977de2',1,'SX126x::readData(String &str, size_t len=0)'],['../class_s_x126x.html#ae8b6c756eb4b92855433ca389d73c632',1,'SX126x::readData(uint8_t *data, size_t len)=0'],['../class_s_x127x.html#ae8eed0e888a7c8742e89d2b850977de2',1,'SX127x::readData(String &str, size_t len=0)'],['../class_s_x127x.html#ae8b6c756eb4b92855433ca389d73c632',1,'SX127x::readData(uint8_t *data, size_t len)=0'],['../class_s_x128x.html#ae8eed0e888a7c8742e89d2b850977de2',1,'SX128x::readData(String &str, size_t len=0)'],['../class_s_x128x.html#ae8b6c756eb4b92855433ca389d73c632',1,'SX128x::readData(uint8_t *data, size_t len)=0'],['../class_c_c1101.html#ae8eed0e888a7c8742e89d2b850977de2',1,'CC1101::readData(String &str, size_t len=0)'],['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData(uint8_t *data, size_t len) override'],['../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_pager_client.html#ac000d0d6b1eb389ead95290f8895d02d',1,'PagerClient::readData()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_physical_layer.html#ae8eed0e888a7c8742e89d2b850977de2',1,'PhysicalLayer::readData(String &str, size_t len=0)'],['../class_physical_layer.html#ae8b6c756eb4b92855433ca389d73c632',1,'PhysicalLayer::readData(uint8_t *data, size_t len)=0'],['../class_c_c1101.html#ae8b6c756eb4b92855433ca389d73c632',1,'CC1101::readData()']]],
- ['receive_505',['receive',['../classn_r_f24.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'nRF24::receive()'],['../class_r_f69.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'RF69::receive(String &str, size_t len=0)'],['../class_r_f69.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'RF69::receive(uint8_t *data, size_t len)=0'],['../class_si443x.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'Si443x::receive(String &str, size_t len=0)'],['../class_si443x.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'Si443x::receive(uint8_t *data, size_t len)=0'],['../class_s_x126x.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'SX126x::receive(String &str, size_t len=0)'],['../class_s_x126x.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'SX126x::receive(uint8_t *data, size_t len)=0'],['../class_s_x127x.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'SX127x::receive(String &str, size_t len=0)'],['../class_s_x127x.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'SX127x::receive(uint8_t *data, size_t len)=0'],['../class_s_x128x.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'SX128x::receive(String &str, size_t len=0)'],['../class_s_x128x.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'SX128x::receive(uint8_t *data, size_t len)=0'],['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive(uint8_t *data, size_t len) override'],['../class_c_c1101.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'CC1101::receive(uint8_t *data, size_t len)=0'],['../class_c_c1101.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'CC1101::receive(String &str, size_t len=0)'],['../class_physical_layer.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'PhysicalLayer::receive(uint8_t *data, size_t len)=0'],['../class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'PhysicalLayer::receive(String &str, size_t len=0)'],['../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(uint8_t *data, size_t len) override'],['../classn_r_f24.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'nRF24::receive(String &str, size_t len=0)']]],
- ['receivedirect_506',['receiveDirect',['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_physical_layer.html#a46b22145b33e97cf6065ed826799b6b4',1,'PhysicalLayer::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_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()']]],
- ['receivedirectasync_507',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]],
- ['regdump_508',['regdump',['../class_module.html#a7216d32fc55130d111409c6f2050d9c0',1,'Module']]],
- ['reset_509',['reset',['../class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac',1,'SX1272::reset()'],['../class_s_x128x.html#a2643ce22176293631fea2169f5e68e66',1,'SX128x::reset()'],['../class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68',1,'SX127x::reset()'],['../class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad',1,'SX1278::reset()'],['../class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f',1,'SX126x::reset()'],['../class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97',1,'Si443x::reset()'],['../class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a',1,'RF69::reset()']]],
- ['rf69_510',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69']]],
- ['rfm95_511',['RFM95',['../class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326',1,'RFM95']]],
- ['rfm96_512',['RFM96',['../class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a',1,'RFM96']]],
- ['rfm97_513',['RFM97',['../class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be',1,'RFM97']]],
- ['rttyclient_514',['RTTYClient',['../class_r_t_t_y_client.html#ae6bc08fa88457ee00a992448be1d63ea',1,'RTTYClient::RTTYClient(PhysicalLayer *phy)'],['../class_r_t_t_y_client.html#ab0e11944c2f1e2c60fc45bcd2db18570',1,'RTTYClient::RTTYClient(AFSKClient *audio)']]]
+ ['random_501',['random',['../class_physical_layer.html#a76113e10481743094a1cd0280692b0a9',1,'PhysicalLayer::random(int32_t min, int32_t max)'],['../class_physical_layer.html#acd9171bd71aa80fb86113b612c42de53',1,'PhysicalLayer::random(int32_t max)']]],
+ ['randombyte_502',['randomByte',['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',1,'SX126x::randomByte()'],['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../classn_r_f24.html#a5cc7cd54db2a6af1c9183a2d0653fe2e',1,'nRF24::randomByte()'],['../class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833',1,'CC1101::randomByte()']]],
+ ['range_503',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]],
+ ['read_504',['read',['../class_morse_client.html#a709093c92d69f29f1520f0b290af374b',1,'MorseClient::read()'],['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()']]],
+ ['readbit_505',['readBit',['../class_s_x126x.html#aff80db65e546934980feac7e6c81dd80',1,'SX126x::readBit()'],['../class_physical_layer.html#ae868adcc63ee0869999e8ccac86b6ff2',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#a2dd0ecae9f54cf6943cf702ae15f5039',1,'SX128x::readBit()'],['../class_s_x127x.html#a071442611a32154e8b3db7981f242a53',1,'SX127x::readBit()'],['../class_si443x.html#a45d3ffcb312c34a2f6391be6d609d7b7',1,'Si443x::readBit()'],['../class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa',1,'RF69::readBit()'],['../classn_r_f24.html#a2db0cd487b03f937afc0bc2e3eccb6f6',1,'nRF24::readBit()'],['../class_c_c1101.html#a5cebec89fc0fa0f5ccbce28c6ce7d2dc',1,'CC1101::readBit()']]],
+ ['readdata_506',['readData',['../classn_r_f24.html#ae8eed0e888a7c8742e89d2b850977de2',1,'nRF24::readData()'],['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../classn_r_f24.html#a3563453988a83d22dd07d4691543a300',1,'nRF24::readData()'],['../class_r_f69.html#ae8eed0e888a7c8742e89d2b850977de2',1,'RF69::readData(String &str, size_t len=0)'],['../class_r_f69.html#a3563453988a83d22dd07d4691543a300',1,'RF69::readData(uint8_t *data, size_t len)'],['../class_si443x.html#ae8eed0e888a7c8742e89d2b850977de2',1,'Si443x::readData(String &str, size_t len=0)'],['../class_si443x.html#a3563453988a83d22dd07d4691543a300',1,'Si443x::readData(uint8_t *data, size_t len)'],['../class_s_x126x.html#ae8eed0e888a7c8742e89d2b850977de2',1,'SX126x::readData(String &str, size_t len=0)'],['../class_s_x126x.html#a3563453988a83d22dd07d4691543a300',1,'SX126x::readData(uint8_t *data, size_t len)'],['../class_s_x127x.html#ae8eed0e888a7c8742e89d2b850977de2',1,'SX127x::readData(String &str, size_t len=0)'],['../class_s_x127x.html#a3563453988a83d22dd07d4691543a300',1,'SX127x::readData(uint8_t *data, size_t len)'],['../class_s_x128x.html#ae8eed0e888a7c8742e89d2b850977de2',1,'SX128x::readData(String &str, size_t len=0)'],['../class_s_x128x.html#a3563453988a83d22dd07d4691543a300',1,'SX128x::readData(uint8_t *data, size_t len)'],['../class_c_c1101.html#ae8eed0e888a7c8742e89d2b850977de2',1,'CC1101::readData(String &str, size_t len=0)'],['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData(uint8_t *data, size_t len) override'],['../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_pager_client.html#ac000d0d6b1eb389ead95290f8895d02d',1,'PagerClient::readData()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_physical_layer.html#ae8eed0e888a7c8742e89d2b850977de2',1,'PhysicalLayer::readData(String &str, size_t len=0)'],['../class_physical_layer.html#a3563453988a83d22dd07d4691543a300',1,'PhysicalLayer::readData(uint8_t *data, size_t len)'],['../class_c_c1101.html#a3563453988a83d22dd07d4691543a300',1,'CC1101::readData()']]],
+ ['receive_507',['receive',['../classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'nRF24::receive()'],['../class_r_f69.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'RF69::receive(String &str, size_t len=0)'],['../class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'RF69::receive(uint8_t *data, size_t len)'],['../class_si443x.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'Si443x::receive(String &str, size_t len=0)'],['../class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'Si443x::receive(uint8_t *data, size_t len)'],['../class_s_x126x.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'SX126x::receive(String &str, size_t len=0)'],['../class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX126x::receive(uint8_t *data, size_t len)'],['../class_s_x127x.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'SX127x::receive(String &str, size_t len=0)'],['../class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX127x::receive(uint8_t *data, size_t len)'],['../class_s_x128x.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'SX128x::receive(String &str, size_t len=0)'],['../class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX128x::receive(uint8_t *data, size_t len)'],['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive(uint8_t *data, size_t len) override'],['../class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'CC1101::receive(uint8_t *data, size_t len)'],['../class_c_c1101.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'CC1101::receive(String &str, size_t len=0)'],['../class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'PhysicalLayer::receive(uint8_t *data, size_t len)'],['../class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'PhysicalLayer::receive(String &str, size_t len=0)'],['../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(uint8_t *data, size_t len) override'],['../classn_r_f24.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'nRF24::receive(String &str, size_t len=0)']]],
+ ['receivedirect_508',['receiveDirect',['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6',1,'PhysicalLayer::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_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()']]],
+ ['receivedirectasync_509',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]],
+ ['regdump_510',['regdump',['../class_module.html#a7216d32fc55130d111409c6f2050d9c0',1,'Module']]],
+ ['reset_511',['reset',['../class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac',1,'SX1272::reset()'],['../class_s_x128x.html#a2643ce22176293631fea2169f5e68e66',1,'SX128x::reset()'],['../class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68',1,'SX127x::reset()'],['../class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad',1,'SX1278::reset()'],['../class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f',1,'SX126x::reset()'],['../class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97',1,'Si443x::reset()'],['../class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a',1,'RF69::reset()']]],
+ ['rf69_512',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69']]],
+ ['rfm95_513',['RFM95',['../class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326',1,'RFM95']]],
+ ['rfm96_514',['RFM96',['../class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a',1,'RFM96']]],
+ ['rfm97_515',['RFM97',['../class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be',1,'RFM97']]],
+ ['rttyclient_516',['RTTYClient',['../class_r_t_t_y_client.html#ae6bc08fa88457ee00a992448be1d63ea',1,'RTTYClient::RTTYClient(PhysicalLayer *phy)'],['../class_r_t_t_y_client.html#ab0e11944c2f1e2c60fc45bcd2db18570',1,'RTTYClient::RTTYClient(AFSKClient *audio)']]]
];
diff --git a/search/functions_f.js b/search/functions_f.js
index 2e40c396..ae586676 100644
--- a/search/functions_f.js
+++ b/search/functions_f.js
@@ -1,113 +1,113 @@
var searchData=
[
- ['scanchannel_515',['scanChannel',['../class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5',1,'SX127x::scanChannel()'],['../class_s_x126x.html#a755e7df4b0958f7c793d0c058408831a',1,'SX126x::scanChannel()'],['../class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb',1,'SX128x::scanChannel()']]],
- ['sendframe_516',['sendFrame',['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()'],['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()']]],
- ['sendheader_517',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]],
- ['sendline_518',['sendLine',['../class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0',1,'SSTVClient']]],
- ['sendposition_519',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]],
- ['sendtone_520',['sendTone',['../class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111',1,'PagerClient']]],
- ['setaccessaddress_521',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]],
- ['setaddresswidth_522',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]],
- ['setaeskey_523',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]],
- ['setafc_524',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]],
- ['setafcagctrigger_525',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]],
- ['setafcbandwidth_526',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]],
- ['setambienttemperature_527',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]],
- ['setautoack_528',['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_529',['setBandwidth',['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::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_530',['setBitRate',['../class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::setBitRate()'],['../class_physical_layer.html#a56e9cf39bc8847492f7f3cd67ebf1c46',1,'PhysicalLayer::setBitRate()'],['../class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee',1,'SX128x::setBitRate()'],['../class_s_x127x.html#a606d839b3a992c681ac9ad7ca6020022',1,'SX127x::setBitRate()'],['../class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e',1,'SX126x::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13',1,'RF69::setBitRate()'],['../classn_r_f24.html#a0873f58ae62e41cff99813e21cc8b02a',1,'nRF24::setBitRate()']]],
- ['setbroadcastaddress_531',['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()']]],
- ['setcodingrate_532',['setCodingRate',['../class_s_x126x.html#afd3113858966e878e9c67a1e710bd586',1,'SX126x::setCodingRate()'],['../class_s_x1272.html#a960913438feccad4c1913a9222384a5f',1,'SX1272::setCodingRate()'],['../class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1',1,'SX1278::setCodingRate()'],['../class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a',1,'SX128x::setCodingRate()']]],
- ['setcorrection_533',['setCorrection',['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client::setCorrection()'],['../class_f_s_k4_client.html#aab85cb6519e5448dc332bf17bd60f90a',1,'FSK4Client::setCorrection()'],['../class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e',1,'SSTVClient::setCorrection()']]],
- ['setcrc_534',['setCRC',['../class_s_x126x.html#a95007639c2648a1dbb614493224606f1',1,'SX126x::setCRC()'],['../class_s_x128x.html#aa4b1e0b96347011522e053f30202c0fe',1,'SX128x::setCRC()'],['../class_s_x1272.html#abd912314a977f92c464d36d862329ffc',1,'SX1272::setCRC()'],['../class_s_x1278.html#ac0be7586b8e40355bbd29d78ae9941d1',1,'SX1278::setCRC()']]],
- ['setcrcfiltering_535',['setCrcFiltering',['../class_c_c1101.html#aafac40359c4a1bb01aae12da6b03be26',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#a9b3a76eb89cad60dcad92513e6848f5a',1,'SX127x::setCrcFiltering()']]],
- ['setcurrentlimit_536',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]],
- ['setdatashaping_537',['setDataShaping',['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::setDataShaping()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::setDataShaping()'],['../class_si443x.html#ade08c79074c7e4414d34eefa25cee168',1,'Si443x::setDataShaping()'],['../class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676',1,'SX126x::setDataShaping()'],['../class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea',1,'SX1272::setDataShaping()'],['../class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563',1,'SX1278::setDataShaping()'],['../class_s_x128x.html#a99491c705e88dddc820f884b778f1660',1,'SX128x::setDataShaping()'],['../class_physical_layer.html#ab643a814dce48f71a13bf6ea23f44cbd',1,'PhysicalLayer::setDataShaping()']]],
- ['setdatashapingook_538',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]],
- ['setdio0action_539',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#a71ecfed743942c4195d8668e8588a0fc',1,'SX127x::setDio0Action()']]],
- ['setdio1action_540',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#ae72f140bc934016411d7d54ebc14d69c',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()']]],
- ['setdio2asrfswitch_541',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]],
- ['setdiomapping_542',['setDIOMapping',['../class_c_c1101.html#a1acad996e9452c504cf0f89806c46c8a',1,'CC1101::setDIOMapping()'],['../class_physical_layer.html#a47c1d94d2ad2fd7eb5d11480b44cc368',1,'PhysicalLayer::setDIOMapping()'],['../class_s_x127x.html#adbea7515add3d81c3024ceb0d570266b',1,'SX127x::setDIOMapping()'],['../class_r_f69.html#a4b879c689b19036411d884f6657f95db',1,'RF69::setDIOMapping()']]],
- ['setdiopreambledetect_543',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]],
- ['setdirectaction_544',['setDirectAction',['../class_physical_layer.html#ab76fe7d3e0f453a807b205161c980086',1,'PhysicalLayer::setDirectAction()'],['../class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236',1,'SX128x::setDirectAction()'],['../class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238',1,'SX127x::setDirectAction()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()'],['../class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28',1,'RF69::setDirectAction()'],['../classn_r_f24.html#a3da63a447659f92153654d31a5d2854c',1,'nRF24::setDirectAction()'],['../class_c_c1101.html#a5161fa10b19d857840579601ef565363',1,'CC1101::setDirectAction()'],['../class_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a',1,'SX126x::setDirectAction()']]],
- ['setdirectsyncword_545',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]],
- ['setencoding_546',['setEncoding',['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()'],['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_physical_layer.html#a7d3419227d201d6912b77784636d437d',1,'PhysicalLayer::setEncoding()']]],
- ['setfhsshoppingperiod_547',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]],
- ['setfifoemptyaction_548',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()']]],
- ['setfifofullaction_549',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]],
- ['setfrequency_550',['setFrequency',['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../class_physical_layer.html#a4928642e647f2dd5b614b87b681cb0a6',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#abf338b7036d692a4a8ca6bf305c0cb12',1,'SX1268::setFrequency(float freq)'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency(float freq, bool calibrate)'],['../class_s_x1262.html#abb018b820eb71ca6b0cd92c62affa767',1,'SX1262::setFrequency(float freq)'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84',1,'RFM96::setFrequency()'],['../class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87',1,'RFM95::setFrequency()'],['../classn_r_f24.html#a408278336cdf25fd205ecffea86c26e8',1,'nRF24::setFrequency()'],['../class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e',1,'CC1101::setFrequency()']]],
- ['setfrequencydeviation_551',['setFrequencyDeviation',['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_physical_layer.html#ab9060e8ab7a2da192b3bf53b3501553b',1,'PhysicalLayer::setFrequencyDeviation()'],['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()']]],
- ['setgain_552',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]],
- ['setgaincontrol_553',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]],
- ['setgdo0action_554',['setGdo0Action',['../class_c_c1101.html#ae60ea5cacfb1543fcecde5bfac16361a',1,'CC1101']]],
- ['setgdo2action_555',['setGdo2Action',['../class_c_c1101.html#ac6338c2f5c937a12dac06069944ffb77',1,'CC1101']]],
- ['sethighsensitivitymode_556',['setHighSensitivityMode',['../class_s_x128x.html#a73e3655e92bca9a06e2d0abbf1a4bed4',1,'SX128x']]],
- ['setinversion_557',['setInversion',['../class_hell_client.html#a1779f13c8052c2392a1f2f0e1164343e',1,'HellClient']]],
- ['setirqaction_558',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]],
- ['setlnatestboost_559',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]],
- ['setnodeaddress_560',['setNodeAddress',['../class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95',1,'SX127x::setNodeAddress()'],['../class_s_x126x.html#a514cabe74bbe3434d7e4f244c4077752',1,'SX126x::setNodeAddress()'],['../class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8',1,'CC1101::setNodeAddress()'],['../class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c',1,'RF69::setNodeAddress()']]],
- ['setook_561',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK(bool enableOOK)']]],
- ['setookfixedorfloorthreshold_562',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]],
- ['setookfixedthreshold_563',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]],
- ['setookpeakthresholddecrement_564',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement(uint8_t value)']]],
- ['setookpeakthresholdstep_565',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]],
- ['setookthresholdtype_566',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]],
- ['setoutputpower_567',['setOutputPower',['../class_s_x128x.html#ad6e2b46c317a8d8512cf0380025147a9',1,'SX128x::setOutputPower()'],['../class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88',1,'SX1278::setOutputPower()'],['../class_s_x1272.html#a6677a04aa0c2f3bbde2509786b6a66de',1,'SX1272::setOutputPower()'],['../class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45',1,'SX1268::setOutputPower()'],['../class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc',1,'SX1262::setOutputPower()'],['../class_s_x1261.html#aa541f927995a1756c651b93fd24edc65',1,'SX1261::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_c_c1101.html#ac3ff8051af5ca50c349e02257f1a3bda',1,'CC1101::setOutputPower()'],['../classn_r_f24.html#a824453d547c0b42ac1988acb42032ca4',1,'nRF24::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc',1,'RF69::setOutputPower(int8_t power, bool highPower=false)']]],
- ['setpreamblelength_568',['setPreambleLength',['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_c_c1101.html#acbfa80f431f335d5597500319f0affa8',1,'CC1101::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()'],['../class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed',1,'SX127x::setPreambleLength()'],['../class_s_x126x.html#ab00f765bbfbfaa8c693532ea3a90c29b',1,'SX126x::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()']]],
- ['setpromiscuousmode_569',['setPromiscuousMode',['../class_c_c1101.html#a2911d49d1c293542f7a374c9af60df0e',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#a6d90ad1d455de045c53c5758babd876c',1,'RF69::setPromiscuousMode()']]],
- ['setreceivepipe_570',['setReceivePipe',['../classn_r_f24.html#a31bcc5a8c3747bf08a273dbdadc5481a',1,'nRF24::setReceivePipe(uint8_t pipeNum, uint8_t *addr)'],['../classn_r_f24.html#ab5bc08aef88d8cf41c38369044005da8',1,'nRF24::setReceivePipe(uint8_t pipeNum, uint8_t addrByte)']]],
- ['setrecvsequence_571',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]],
- ['setregulatordcdc_572',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x']]],
- ['setregulatorldo_573',['setRegulatorLDO',['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x']]],
- ['setrepeaters_574',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]],
- ['setrfswitchpins_575',['setRfSwitchPins',['../class_s_x128x.html#a5f11803b3430bc059321b443f407e78b',1,'SX128x::setRfSwitchPins()'],['../class_s_x127x.html#ae9781180418c1ec9c365b74acbc98d8a',1,'SX127x::setRfSwitchPins()'],['../class_s_x126x.html#a288257242e483cb3eb6944333179dd26',1,'SX126x::setRfSwitchPins()'],['../class_si443x.html#ae365087803b88b29932b5c793edff1d4',1,'Si443x::setRfSwitchPins()'],['../class_c_c1101.html#a45ab4e3f4f9db367185333d36ba21ed2',1,'CC1101::setRfSwitchPins()'],['../class_module.html#a0ecbb4e1e98094c1296b1e823dc14703',1,'Module::setRfSwitchPins()'],['../class_r_f69.html#aada7c48828b950cdfd260594d502b03d',1,'RF69::setRfSwitchPins()']]],
- ['setrfswitchstate_576',['setRfSwitchState',['../class_module.html#a4a87d59ad2bf6bb1bb9de1856a81b824',1,'Module']]],
- ['setrssiconfig_577',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]],
- ['setrssithreshold_578',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]],
- ['setrxbandwidth_579',['setRxBandwidth',['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()'],['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()']]],
- ['setsendsequence_580',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]],
- ['setspreadingfactor_581',['setSpreadingFactor',['../class_s_x128x.html#ae435f57132f76f4283abb870176acf54',1,'SX128x::setSpreadingFactor()'],['../class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08',1,'SX1278::setSpreadingFactor()'],['../class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf',1,'SX1277::setSpreadingFactor()'],['../class_s_x1272.html#a82084ac58502c83d2ada998410307490',1,'SX1272::setSpreadingFactor()'],['../class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d',1,'SX126x::setSpreadingFactor()'],['../class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f',1,'SX1273::setSpreadingFactor()'],['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67',1,'RFM97::setSpreadingFactor()']]],
- ['setsyncbits_582',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]],
- ['setsyncword_583',['setSyncWord',['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord(uint8_t *syncWord, uint8_t len, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a',1,'Si443x::setSyncWord()'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf',1,'SX126x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len)'],['../class_s_x128x.html#a0efa595867624a54153d693d16f9f731',1,'SX128x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)']]],
- ['settcxo_584',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]],
- ['settransmitpipe_585',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]],
- ['setwhitening_586',['setWhitening',['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()'],['../class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376',1,'SX126x::setWhitening()']]],
- ['si4430_587',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430']]],
- ['si4431_588',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431']]],
- ['si4432_589',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432']]],
- ['si443x_590',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x']]],
- ['sleep_591',['sleep',['../class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df',1,'SX127x::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()']]],
- ['spigetregvalue_592',['SPIgetRegValue',['../class_module.html#ad7ca9ae5a22cdacdf9437ca9cd37c9b4',1,'Module']]],
- ['spireadregister_593',['SPIreadRegister',['../class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3',1,'Module']]],
- ['spireadregisterburst_594',['SPIreadRegisterBurst',['../class_module.html#a6fa5239d73379e4140f5c4f513b1b8d2',1,'Module']]],
- ['spisetregvalue_595',['SPIsetRegValue',['../class_module.html#a1286d7fd9673cbfab945c26b2585a129',1,'Module']]],
- ['spitransfer_596',['SPItransfer',['../class_module.html#aefd955f1cd6d588b2cc229db87cb2121',1,'Module']]],
- ['spiwriteregister_597',['SPIwriteRegister',['../class_module.html#ab814614ddd34b57f5a612a20f5fe4c57',1,'Module']]],
- ['spiwriteregisterburst_598',['SPIwriteRegisterBurst',['../class_module.html#a9d77a08070cbd48fd4ece62a739333e9',1,'Module']]],
- ['sstvclient_599',['SSTVClient',['../class_s_s_t_v_client.html#a99e46bec8403dfc36b9e5b102b1f7cf1',1,'SSTVClient::SSTVClient(AFSKClient *audio)'],['../class_s_s_t_v_client.html#af15cf501c00172270d2d2c43d7a7100a',1,'SSTVClient::SSTVClient(PhysicalLayer *phy)']]],
- ['standby_600',['standby',['../class_f_s_k4_client.html#a8b5765371ebbf68a21bc0bbfdf9f82ac',1,'FSK4Client::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()'],['../class_physical_layer.html#a0e77da761a2cbb5c9535df0bdea993f9',1,'PhysicalLayer::standby()'],['../class_s_x128x.html#aa11ba80f0cebb3e6927c775ad5f96b4e',1,'SX128x::standby(uint8_t mode)'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby()'],['../class_s_x126x.html#ad7569396f09f3867dc1bd4d4a0613acd',1,'SX126x::standby(uint8_t mode)'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby() override'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby()'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby()'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby()'],['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby()']]],
- ['startchannelscan_601',['startChannelScan',['../class_s_x126x.html#a10a0e75571350fb05fa100e5d5151be2',1,'SX126x::startChannelScan()'],['../class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059',1,'SX127x::startChannelScan()']]],
- ['startdirect_602',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]],
- ['startranging_603',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]],
- ['startreceive_604',['startReceive',['../class_s_x126x.html#aeb92dc9d2e2a2b3a3a5ff2856528d497',1,'SX126x::startReceive()'],['../class_pager_client.html#ad6f4f034b71311144f76b629a8ef8f8d',1,'PagerClient::startReceive()'],['../class_s_x128x.html#ad59ee052d8ab1f250245a14039fc8b66',1,'SX128x::startReceive()'],['../class_s_x127x.html#adffb96b7f80dc43909bb4cebde68fe9d',1,'SX127x::startReceive()'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3',1,'CC1101::startReceive()']]],
- ['startreceivedutycycle_605',['startReceiveDutyCycle',['../class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136',1,'SX126x']]],
- ['startreceivedutycycleauto_606',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f',1,'SX126x']]],
- ['startsignal_607',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]],
- ['starttransmit_608',['startTransmit',['../class_r_f69.html#af068e6e862c99e39d0261a7971dd56db',1,'RF69::startTransmit()'],['../class_physical_layer.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'PhysicalLayer::startTransmit()'],['../class_r_f69.html#a923654706eff5118ef6e84214e837f27',1,'RF69::startTransmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'RF69::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_si443x.html#af068e6e862c99e39d0261a7971dd56db',1,'Si443x::startTransmit(String &str, uint8_t addr=0)'],['../class_si443x.html#a923654706eff5118ef6e84214e837f27',1,'Si443x::startTransmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'Si443x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_s_x126x.html#af068e6e862c99e39d0261a7971dd56db',1,'SX126x::startTransmit(String &str, uint8_t addr=0)'],['../class_s_x126x.html#a923654706eff5118ef6e84214e837f27',1,'SX126x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'SX126x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_s_x127x.html#af068e6e862c99e39d0261a7971dd56db',1,'SX127x::startTransmit(String &str, uint8_t addr=0)'],['../class_s_x127x.html#a923654706eff5118ef6e84214e837f27',1,'SX127x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'SX127x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_s_x128x.html#af068e6e862c99e39d0261a7971dd56db',1,'SX128x::startTransmit(String &str, uint8_t addr=0)'],['../class_s_x128x.html#a923654706eff5118ef6e84214e837f27',1,'SX128x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'SX128x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../classn_r_f24.html#a923654706eff5118ef6e84214e837f27',1,'nRF24::startTransmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#af068e6e862c99e39d0261a7971dd56db',1,'nRF24::startTransmit(String &str, uint8_t addr=0)'],['../class_c_c1101.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'CC1101::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0'],['../class_c_c1101.html#a923654706eff5118ef6e84214e837f27',1,'CC1101::startTransmit(const char *str, uint8_t addr=0)'],['../class_c_c1101.html#af068e6e862c99e39d0261a7971dd56db',1,'CC1101::startTransmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af068e6e862c99e39d0261a7971dd56db',1,'PhysicalLayer::startTransmit(String &str, uint8_t addr=0)'],['../class_s_x128x.html#aef221e7d463c5228ce00ed6934512848',1,'SX128x::startTransmit()'],['../class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083',1,'SX127x::startTransmit()'],['../class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1',1,'SX126x::startTransmit()'],['../class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314',1,'Si443x::startTransmit()'],['../class_r_f69.html#a855dc194947b095b821ec1524ba6814c',1,'RF69::startTransmit()'],['../classn_r_f24.html#a42fdc828b49f2b8e15457189bd57d917',1,'nRF24::startTransmit()'],['../class_c_c1101.html#a0df2938e2509a8f2746b20ae0558d4ea',1,'CC1101::startTransmit()'],['../classn_r_f24.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'nRF24::startTransmit()']]],
- ['sx1231_609',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231']]],
- ['sx1261_610',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261']]],
- ['sx1262_611',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262']]],
- ['sx1268_612',['SX1268',['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268']]],
- ['sx126x_613',['SX126x',['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x']]],
- ['sx1272_614',['SX1272',['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272']]],
- ['sx1273_615',['SX1273',['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273']]],
- ['sx1276_616',['SX1276',['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276']]],
- ['sx1277_617',['SX1277',['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277']]],
- ['sx1278_618',['SX1278',['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278']]],
- ['sx1279_619',['SX1279',['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279']]],
- ['sx127x_620',['SX127x',['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x']]],
- ['sx1280_621',['SX1280',['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280']]],
- ['sx1281_622',['SX1281',['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281']]],
- ['sx1282_623',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282']]],
- ['sx128x_624',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x']]]
+ ['scanchannel_517',['scanChannel',['../class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5',1,'SX127x::scanChannel()'],['../class_s_x126x.html#a755e7df4b0958f7c793d0c058408831a',1,'SX126x::scanChannel()'],['../class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb',1,'SX128x::scanChannel()']]],
+ ['sendframe_518',['sendFrame',['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()'],['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()']]],
+ ['sendheader_519',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]],
+ ['sendline_520',['sendLine',['../class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0',1,'SSTVClient']]],
+ ['sendposition_521',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]],
+ ['sendtone_522',['sendTone',['../class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111',1,'PagerClient']]],
+ ['setaccessaddress_523',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]],
+ ['setaddresswidth_524',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]],
+ ['setaeskey_525',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]],
+ ['setafc_526',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]],
+ ['setafcagctrigger_527',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]],
+ ['setafcbandwidth_528',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]],
+ ['setambienttemperature_529',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]],
+ ['setautoack_530',['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_531',['setBandwidth',['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::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_532',['setBitRate',['../class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::setBitRate()'],['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee',1,'SX128x::setBitRate()'],['../class_s_x127x.html#a606d839b3a992c681ac9ad7ca6020022',1,'SX127x::setBitRate()'],['../class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e',1,'SX126x::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13',1,'RF69::setBitRate()'],['../classn_r_f24.html#a0873f58ae62e41cff99813e21cc8b02a',1,'nRF24::setBitRate()']]],
+ ['setbroadcastaddress_533',['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()']]],
+ ['setcodingrate_534',['setCodingRate',['../class_s_x126x.html#afd3113858966e878e9c67a1e710bd586',1,'SX126x::setCodingRate()'],['../class_s_x1272.html#a960913438feccad4c1913a9222384a5f',1,'SX1272::setCodingRate()'],['../class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1',1,'SX1278::setCodingRate()'],['../class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a',1,'SX128x::setCodingRate()']]],
+ ['setcorrection_535',['setCorrection',['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client::setCorrection()'],['../class_f_s_k4_client.html#aab85cb6519e5448dc332bf17bd60f90a',1,'FSK4Client::setCorrection()'],['../class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e',1,'SSTVClient::setCorrection()']]],
+ ['setcrc_536',['setCRC',['../class_s_x126x.html#a95007639c2648a1dbb614493224606f1',1,'SX126x::setCRC()'],['../class_s_x128x.html#aa4b1e0b96347011522e053f30202c0fe',1,'SX128x::setCRC()'],['../class_s_x1272.html#abd912314a977f92c464d36d862329ffc',1,'SX1272::setCRC()'],['../class_s_x1278.html#ac0be7586b8e40355bbd29d78ae9941d1',1,'SX1278::setCRC()']]],
+ ['setcrcfiltering_537',['setCrcFiltering',['../class_c_c1101.html#aafac40359c4a1bb01aae12da6b03be26',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#a9b3a76eb89cad60dcad92513e6848f5a',1,'SX127x::setCrcFiltering()']]],
+ ['setcurrentlimit_538',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]],
+ ['setdatashaping_539',['setDataShaping',['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::setDataShaping()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::setDataShaping()'],['../class_si443x.html#ade08c79074c7e4414d34eefa25cee168',1,'Si443x::setDataShaping()'],['../class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676',1,'SX126x::setDataShaping()'],['../class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea',1,'SX1272::setDataShaping()'],['../class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563',1,'SX1278::setDataShaping()'],['../class_s_x128x.html#a99491c705e88dddc820f884b778f1660',1,'SX128x::setDataShaping()'],['../class_physical_layer.html#aeba04366a0cf05ff3d8227c4f7c8e1e9',1,'PhysicalLayer::setDataShaping()']]],
+ ['setdatashapingook_540',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]],
+ ['setdio0action_541',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#a71ecfed743942c4195d8668e8588a0fc',1,'SX127x::setDio0Action()']]],
+ ['setdio1action_542',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#ae72f140bc934016411d7d54ebc14d69c',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()']]],
+ ['setdio2asrfswitch_543',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]],
+ ['setdiomapping_544',['setDIOMapping',['../class_c_c1101.html#a1acad996e9452c504cf0f89806c46c8a',1,'CC1101::setDIOMapping()'],['../class_physical_layer.html#a47c1d94d2ad2fd7eb5d11480b44cc368',1,'PhysicalLayer::setDIOMapping()'],['../class_s_x127x.html#adbea7515add3d81c3024ceb0d570266b',1,'SX127x::setDIOMapping()'],['../class_r_f69.html#a4b879c689b19036411d884f6657f95db',1,'RF69::setDIOMapping()']]],
+ ['setdiopreambledetect_545',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]],
+ ['setdirectaction_546',['setDirectAction',['../class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966',1,'PhysicalLayer::setDirectAction()'],['../class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236',1,'SX128x::setDirectAction()'],['../class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238',1,'SX127x::setDirectAction()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()'],['../class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28',1,'RF69::setDirectAction()'],['../classn_r_f24.html#a3da63a447659f92153654d31a5d2854c',1,'nRF24::setDirectAction()'],['../class_c_c1101.html#a5161fa10b19d857840579601ef565363',1,'CC1101::setDirectAction()'],['../class_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a',1,'SX126x::setDirectAction()']]],
+ ['setdirectsyncword_547',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]],
+ ['setencoding_548',['setEncoding',['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()'],['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_physical_layer.html#acb45b2342400a03a914a91d2ac7fb488',1,'PhysicalLayer::setEncoding()']]],
+ ['setfhsshoppingperiod_549',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]],
+ ['setfifoemptyaction_550',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()']]],
+ ['setfifofullaction_551',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]],
+ ['setfrequency_552',['setFrequency',['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::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#abf338b7036d692a4a8ca6bf305c0cb12',1,'SX1268::setFrequency(float freq)'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency(float freq, bool calibrate)'],['../class_s_x1262.html#abb018b820eb71ca6b0cd92c62affa767',1,'SX1262::setFrequency(float freq)'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84',1,'RFM96::setFrequency()'],['../class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87',1,'RFM95::setFrequency()'],['../classn_r_f24.html#a408278336cdf25fd205ecffea86c26e8',1,'nRF24::setFrequency()'],['../class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e',1,'CC1101::setFrequency()']]],
+ ['setfrequencydeviation_553',['setFrequencyDeviation',['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::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_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()']]],
+ ['setgain_554',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]],
+ ['setgaincontrol_555',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]],
+ ['setgdo0action_556',['setGdo0Action',['../class_c_c1101.html#ae60ea5cacfb1543fcecde5bfac16361a',1,'CC1101']]],
+ ['setgdo2action_557',['setGdo2Action',['../class_c_c1101.html#ac6338c2f5c937a12dac06069944ffb77',1,'CC1101']]],
+ ['sethighsensitivitymode_558',['setHighSensitivityMode',['../class_s_x128x.html#a73e3655e92bca9a06e2d0abbf1a4bed4',1,'SX128x']]],
+ ['setinversion_559',['setInversion',['../class_hell_client.html#a1779f13c8052c2392a1f2f0e1164343e',1,'HellClient']]],
+ ['setirqaction_560',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]],
+ ['setlnatestboost_561',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]],
+ ['setnodeaddress_562',['setNodeAddress',['../class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95',1,'SX127x::setNodeAddress()'],['../class_s_x126x.html#a514cabe74bbe3434d7e4f244c4077752',1,'SX126x::setNodeAddress()'],['../class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8',1,'CC1101::setNodeAddress()'],['../class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c',1,'RF69::setNodeAddress()']]],
+ ['setook_563',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK(bool enableOOK)']]],
+ ['setookfixedorfloorthreshold_564',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]],
+ ['setookfixedthreshold_565',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]],
+ ['setookpeakthresholddecrement_566',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement(uint8_t value)']]],
+ ['setookpeakthresholdstep_567',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]],
+ ['setookthresholdtype_568',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]],
+ ['setoutputpower_569',['setOutputPower',['../class_s_x128x.html#ad6e2b46c317a8d8512cf0380025147a9',1,'SX128x::setOutputPower()'],['../class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88',1,'SX1278::setOutputPower()'],['../class_s_x1272.html#a6677a04aa0c2f3bbde2509786b6a66de',1,'SX1272::setOutputPower()'],['../class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45',1,'SX1268::setOutputPower()'],['../class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc',1,'SX1262::setOutputPower()'],['../class_s_x1261.html#aa541f927995a1756c651b93fd24edc65',1,'SX1261::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_c_c1101.html#ac3ff8051af5ca50c349e02257f1a3bda',1,'CC1101::setOutputPower()'],['../classn_r_f24.html#a824453d547c0b42ac1988acb42032ca4',1,'nRF24::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc',1,'RF69::setOutputPower(int8_t power, bool highPower=false)']]],
+ ['setpreamblelength_570',['setPreambleLength',['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_c_c1101.html#acbfa80f431f335d5597500319f0affa8',1,'CC1101::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()'],['../class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed',1,'SX127x::setPreambleLength()'],['../class_s_x126x.html#ab00f765bbfbfaa8c693532ea3a90c29b',1,'SX126x::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()']]],
+ ['setpromiscuousmode_571',['setPromiscuousMode',['../class_c_c1101.html#a2911d49d1c293542f7a374c9af60df0e',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#a6d90ad1d455de045c53c5758babd876c',1,'RF69::setPromiscuousMode()']]],
+ ['setreceivepipe_572',['setReceivePipe',['../classn_r_f24.html#a31bcc5a8c3747bf08a273dbdadc5481a',1,'nRF24::setReceivePipe(uint8_t pipeNum, uint8_t *addr)'],['../classn_r_f24.html#ab5bc08aef88d8cf41c38369044005da8',1,'nRF24::setReceivePipe(uint8_t pipeNum, uint8_t addrByte)']]],
+ ['setrecvsequence_573',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]],
+ ['setregulatordcdc_574',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x']]],
+ ['setregulatorldo_575',['setRegulatorLDO',['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x']]],
+ ['setrepeaters_576',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]],
+ ['setrfswitchpins_577',['setRfSwitchPins',['../class_s_x128x.html#a5f11803b3430bc059321b443f407e78b',1,'SX128x::setRfSwitchPins()'],['../class_s_x127x.html#ae9781180418c1ec9c365b74acbc98d8a',1,'SX127x::setRfSwitchPins()'],['../class_s_x126x.html#a288257242e483cb3eb6944333179dd26',1,'SX126x::setRfSwitchPins()'],['../class_si443x.html#ae365087803b88b29932b5c793edff1d4',1,'Si443x::setRfSwitchPins()'],['../class_c_c1101.html#a45ab4e3f4f9db367185333d36ba21ed2',1,'CC1101::setRfSwitchPins()'],['../class_module.html#a0ecbb4e1e98094c1296b1e823dc14703',1,'Module::setRfSwitchPins()'],['../class_r_f69.html#aada7c48828b950cdfd260594d502b03d',1,'RF69::setRfSwitchPins()']]],
+ ['setrfswitchstate_578',['setRfSwitchState',['../class_module.html#a4a87d59ad2bf6bb1bb9de1856a81b824',1,'Module']]],
+ ['setrssiconfig_579',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]],
+ ['setrssithreshold_580',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]],
+ ['setrxbandwidth_581',['setRxBandwidth',['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()'],['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()']]],
+ ['setsendsequence_582',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]],
+ ['setspreadingfactor_583',['setSpreadingFactor',['../class_s_x128x.html#ae435f57132f76f4283abb870176acf54',1,'SX128x::setSpreadingFactor()'],['../class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08',1,'SX1278::setSpreadingFactor()'],['../class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf',1,'SX1277::setSpreadingFactor()'],['../class_s_x1272.html#a82084ac58502c83d2ada998410307490',1,'SX1272::setSpreadingFactor()'],['../class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d',1,'SX126x::setSpreadingFactor()'],['../class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f',1,'SX1273::setSpreadingFactor()'],['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67',1,'RFM97::setSpreadingFactor()']]],
+ ['setsyncbits_584',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]],
+ ['setsyncword_585',['setSyncWord',['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord(uint8_t *syncWord, uint8_t len, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a',1,'Si443x::setSyncWord()'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf',1,'SX126x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len)'],['../class_s_x128x.html#a0efa595867624a54153d693d16f9f731',1,'SX128x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)']]],
+ ['settcxo_586',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]],
+ ['settransmitpipe_587',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]],
+ ['setwhitening_588',['setWhitening',['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()'],['../class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376',1,'SX126x::setWhitening()']]],
+ ['si4430_589',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430']]],
+ ['si4431_590',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431']]],
+ ['si4432_591',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432']]],
+ ['si443x_592',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x']]],
+ ['sleep_593',['sleep',['../class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df',1,'SX127x::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()']]],
+ ['spigetregvalue_594',['SPIgetRegValue',['../class_module.html#ad7ca9ae5a22cdacdf9437ca9cd37c9b4',1,'Module']]],
+ ['spireadregister_595',['SPIreadRegister',['../class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3',1,'Module']]],
+ ['spireadregisterburst_596',['SPIreadRegisterBurst',['../class_module.html#a6fa5239d73379e4140f5c4f513b1b8d2',1,'Module']]],
+ ['spisetregvalue_597',['SPIsetRegValue',['../class_module.html#a1286d7fd9673cbfab945c26b2585a129',1,'Module']]],
+ ['spitransfer_598',['SPItransfer',['../class_module.html#aefd955f1cd6d588b2cc229db87cb2121',1,'Module']]],
+ ['spiwriteregister_599',['SPIwriteRegister',['../class_module.html#ab814614ddd34b57f5a612a20f5fe4c57',1,'Module']]],
+ ['spiwriteregisterburst_600',['SPIwriteRegisterBurst',['../class_module.html#a9d77a08070cbd48fd4ece62a739333e9',1,'Module']]],
+ ['sstvclient_601',['SSTVClient',['../class_s_s_t_v_client.html#a99e46bec8403dfc36b9e5b102b1f7cf1',1,'SSTVClient::SSTVClient(AFSKClient *audio)'],['../class_s_s_t_v_client.html#af15cf501c00172270d2d2c43d7a7100a',1,'SSTVClient::SSTVClient(PhysicalLayer *phy)']]],
+ ['standby_602',['standby',['../class_f_s_k4_client.html#a8b5765371ebbf68a21bc0bbfdf9f82ac',1,'FSK4Client::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()'],['../class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018',1,'PhysicalLayer::standby()'],['../class_s_x128x.html#aa11ba80f0cebb3e6927c775ad5f96b4e',1,'SX128x::standby(uint8_t mode)'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby()'],['../class_s_x126x.html#ad7569396f09f3867dc1bd4d4a0613acd',1,'SX126x::standby(uint8_t mode)'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby() override'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby()'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby()'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby()'],['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby()']]],
+ ['startchannelscan_603',['startChannelScan',['../class_s_x126x.html#a10a0e75571350fb05fa100e5d5151be2',1,'SX126x::startChannelScan()'],['../class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059',1,'SX127x::startChannelScan()']]],
+ ['startdirect_604',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]],
+ ['startranging_605',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]],
+ ['startreceive_606',['startReceive',['../class_s_x126x.html#aeb92dc9d2e2a2b3a3a5ff2856528d497',1,'SX126x::startReceive()'],['../class_pager_client.html#ad6f4f034b71311144f76b629a8ef8f8d',1,'PagerClient::startReceive()'],['../class_s_x128x.html#ad59ee052d8ab1f250245a14039fc8b66',1,'SX128x::startReceive()'],['../class_s_x127x.html#adffb96b7f80dc43909bb4cebde68fe9d',1,'SX127x::startReceive()'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3',1,'CC1101::startReceive()']]],
+ ['startreceivedutycycle_607',['startReceiveDutyCycle',['../class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136',1,'SX126x']]],
+ ['startreceivedutycycleauto_608',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f',1,'SX126x']]],
+ ['startsignal_609',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]],
+ ['starttransmit_610',['startTransmit',['../class_r_f69.html#af068e6e862c99e39d0261a7971dd56db',1,'RF69::startTransmit()'],['../class_physical_layer.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'PhysicalLayer::startTransmit()'],['../class_r_f69.html#a923654706eff5118ef6e84214e837f27',1,'RF69::startTransmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'RF69::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#af068e6e862c99e39d0261a7971dd56db',1,'Si443x::startTransmit(String &str, uint8_t addr=0)'],['../class_si443x.html#a923654706eff5118ef6e84214e837f27',1,'Si443x::startTransmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'Si443x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x126x.html#af068e6e862c99e39d0261a7971dd56db',1,'SX126x::startTransmit(String &str, uint8_t addr=0)'],['../class_s_x126x.html#a923654706eff5118ef6e84214e837f27',1,'SX126x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'SX126x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x127x.html#af068e6e862c99e39d0261a7971dd56db',1,'SX127x::startTransmit(String &str, uint8_t addr=0)'],['../class_s_x127x.html#a923654706eff5118ef6e84214e837f27',1,'SX127x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'SX127x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#af068e6e862c99e39d0261a7971dd56db',1,'SX128x::startTransmit(String &str, uint8_t addr=0)'],['../class_s_x128x.html#a923654706eff5118ef6e84214e837f27',1,'SX128x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'SX128x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../classn_r_f24.html#a923654706eff5118ef6e84214e837f27',1,'nRF24::startTransmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#af068e6e862c99e39d0261a7971dd56db',1,'nRF24::startTransmit(String &str, uint8_t addr=0)'],['../class_c_c1101.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'CC1101::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_c_c1101.html#a923654706eff5118ef6e84214e837f27',1,'CC1101::startTransmit(const char *str, uint8_t addr=0)'],['../class_c_c1101.html#af068e6e862c99e39d0261a7971dd56db',1,'CC1101::startTransmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af068e6e862c99e39d0261a7971dd56db',1,'PhysicalLayer::startTransmit(String &str, uint8_t addr=0)'],['../class_s_x128x.html#aef221e7d463c5228ce00ed6934512848',1,'SX128x::startTransmit()'],['../class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083',1,'SX127x::startTransmit()'],['../class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1',1,'SX126x::startTransmit()'],['../class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314',1,'Si443x::startTransmit()'],['../class_r_f69.html#a855dc194947b095b821ec1524ba6814c',1,'RF69::startTransmit()'],['../classn_r_f24.html#a42fdc828b49f2b8e15457189bd57d917',1,'nRF24::startTransmit()'],['../class_c_c1101.html#a0df2938e2509a8f2746b20ae0558d4ea',1,'CC1101::startTransmit()'],['../classn_r_f24.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'nRF24::startTransmit()']]],
+ ['sx1231_611',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231']]],
+ ['sx1261_612',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261']]],
+ ['sx1262_613',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262']]],
+ ['sx1268_614',['SX1268',['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268']]],
+ ['sx126x_615',['SX126x',['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x']]],
+ ['sx1272_616',['SX1272',['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272']]],
+ ['sx1273_617',['SX1273',['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273']]],
+ ['sx1276_618',['SX1276',['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276']]],
+ ['sx1277_619',['SX1277',['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277']]],
+ ['sx1278_620',['SX1278',['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278']]],
+ ['sx1279_621',['SX1279',['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279']]],
+ ['sx127x_622',['SX127x',['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x']]],
+ ['sx1280_623',['SX1280',['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280']]],
+ ['sx1281_624',['SX1281',['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281']]],
+ ['sx1282_625',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282']]],
+ ['sx128x_626',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x']]]
];
diff --git a/search/groups_0.js b/search/groups_0.js
index 5a256275..5e6261f6 100644
--- a/search/groups_0.js
+++ b/search/groups_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['data_20shaping_20filter_20values_20aliases_2e_661',['Data shaping filter values aliases.',['../group__config__shaping.html',1,'']]]
+ ['data_20shaping_20filter_20values_20aliases_2e_663',['Data shaping filter values aliases.',['../group__config__shaping.html',1,'']]]
];
diff --git a/search/groups_1.js b/search/groups_1.js
index b61ed0b5..5ab7b8a9 100644
--- a/search/groups_1.js
+++ b/search/groups_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['encoding_20type_20aliases_2e_662',['Encoding type aliases.',['../group__config__encoding.html',1,'']]]
+ ['encoding_20type_20aliases_2e_664',['Encoding type aliases.',['../group__config__encoding.html',1,'']]]
];
diff --git a/search/groups_2.js b/search/groups_2.js
index 622a6202..b89df5f8 100644
--- a/search/groups_2.js
+++ b/search/groups_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['mic_2de_20message_20types_2e_663',['Mic-E message types.',['../group__mic__e__message__types.html',1,'']]]
+ ['mic_2de_20message_20types_2e_665',['Mic-E message types.',['../group__mic__e__message__types.html',1,'']]]
];
diff --git a/search/groups_3.js b/search/groups_3.js
index 628dd3f1..369738af 100644
--- a/search/groups_3.js
+++ b/search/groups_3.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['status_20codes_664',['Status Codes',['../group__status__codes.html',1,'']]]
+ ['status_20codes_666',['Status Codes',['../group__status__codes.html',1,'']]]
];
diff --git a/search/pages_0.js b/search/pages_0.js
index 4d9bdeaa..4abed174 100644
--- a/search/pages_0.js
+++ b/search/pages_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['radiolib_20documentation_665',['RadioLib Documentation',['../index.html',1,'']]]
+ ['radiolib_20documentation_667',['RadioLib Documentation',['../index.html',1,'']]]
];
diff --git a/search/pages_1.js b/search/pages_1.js
index d9887fa3..cbf14e0a 100644
--- a/search/pages_1.js
+++ b/search/pages_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['todo_20list_666',['Todo List',['../todo.html',1,'']]]
+ ['todo_20list_668',['Todo List',['../todo.html',1,'']]]
];
diff --git a/search/searchdata.js b/search/searchdata.js
index 4e6345bd..f07f3d26 100644
--- a/search/searchdata.js
+++ b/search/searchdata.js
@@ -1,7 +1,7 @@
var indexSectionsWithContent =
{
0: "abcdefghilmnoprstvwy~",
- 1: "acfhilmnprst",
+ 1: "acefhilmnprst",
2: "abcdefghilmnoprstvwy~",
3: "cdfhilnprstvw",
4: "dems",
diff --git a/search/variables_0.js b/search/variables_0.js
index cc75d7ca..21fbcf9a 100644
--- a/search/variables_0.js
+++ b/search/variables_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['control_637',['control',['../class_a_x25_frame.html#a5b196079b539dc417ca65dd4ad622f8f',1,'AX25Frame']]]
+ ['control_639',['control',['../class_a_x25_frame.html#a5b196079b539dc417ca65dd4ad622f8f',1,'AX25Frame']]]
];
diff --git a/search/variables_1.js b/search/variables_1.js
index 9f4e4607..1e69aa2b 100644
--- a/search/variables_1.js
+++ b/search/variables_1.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['destcallsign_638',['destCallsign',['../class_a_x25_frame.html#a7fe9805148e2dd46d163cd989473dbff',1,'AX25Frame']]],
- ['destssid_639',['destSSID',['../class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8',1,'AX25Frame']]]
+ ['destcallsign_640',['destCallsign',['../class_a_x25_frame.html#a7fe9805148e2dd46d163cd989473dbff',1,'AX25Frame']]],
+ ['destssid_641',['destSSID',['../class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8',1,'AX25Frame']]]
];
diff --git a/search/variables_2.js b/search/variables_2.js
index 44d015c2..ab6e009c 100644
--- a/search/variables_2.js
+++ b/search/variables_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['freq_640',['freq',['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t']]]
+ ['freq_642',['freq',['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t']]]
];
diff --git a/search/variables_3.js b/search/variables_3.js
index c0b7cea2..5afac798 100644
--- a/search/variables_3.js
+++ b/search/variables_3.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['height_641',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]]
+ ['height_643',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]]
];
diff --git a/search/variables_4.js b/search/variables_4.js
index 49610a13..b586d82f 100644
--- a/search/variables_4.js
+++ b/search/variables_4.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['info_642',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]],
- ['infolen_643',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]]
+ ['info_644',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]],
+ ['infolen_645',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]]
];
diff --git a/search/variables_5.js b/search/variables_5.js
index c133267f..3af6cf2e 100644
--- a/search/variables_5.js
+++ b/search/variables_5.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['len_644',['len',['../structtone__t.html#a3b0421dd255c7c59552741957a6224ed',1,'tone_t']]]
+ ['len_646',['len',['../structtone__t.html#a3b0421dd255c7c59552741957a6224ed',1,'tone_t']]]
];
diff --git a/search/variables_6.js b/search/variables_6.js
index 9e77559b..ff250d79 100644
--- a/search/variables_6.js
+++ b/search/variables_6.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['numrepeaters_645',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]],
- ['numtones_646',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]]
+ ['numrepeaters_647',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]],
+ ['numtones_648',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]]
];
diff --git a/search/variables_7.js b/search/variables_7.js
index bfa64e51..213c097f 100644
--- a/search/variables_7.js
+++ b/search/variables_7.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['protocolid_647',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]]
+ ['protocolid_649',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]]
];
diff --git a/search/variables_8.js b/search/variables_8.js
index f37f743b..2cbad56f 100644
--- a/search/variables_8.js
+++ b/search/variables_8.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['rcvseqnumber_648',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]],
- ['repeatercallsigns_649',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]],
- ['repeaterssids_650',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]]
+ ['rcvseqnumber_650',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]],
+ ['repeatercallsigns_651',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]],
+ ['repeaterssids_652',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]]
];
diff --git a/search/variables_9.js b/search/variables_9.js
index a73ccdf3..3e19ba7c 100644
--- a/search/variables_9.js
+++ b/search/variables_9.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['scanpixellen_651',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]],
- ['sendseqnumber_652',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]],
- ['spireadcommand_653',['SPIreadCommand',['../class_module.html#a849ad85fc1bc3a7130e660c13973ab26',1,'Module']]],
- ['spiwritecommand_654',['SPIwriteCommand',['../class_module.html#ae89764d15e8df5694a6aec0e18f72d3f',1,'Module']]],
- ['srccallsign_655',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]],
- ['srcssid_656',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]]
+ ['scanpixellen_653',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]],
+ ['sendseqnumber_654',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]],
+ ['spireadcommand_655',['SPIreadCommand',['../class_module.html#a849ad85fc1bc3a7130e660c13973ab26',1,'Module']]],
+ ['spiwritecommand_656',['SPIwriteCommand',['../class_module.html#ae89764d15e8df5694a6aec0e18f72d3f',1,'Module']]],
+ ['srccallsign_657',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]],
+ ['srcssid_658',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]]
];
diff --git a/search/variables_a.js b/search/variables_a.js
index 59adf004..55684373 100644
--- a/search/variables_a.js
+++ b/search/variables_a.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['tones_657',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]],
- ['type_658',['type',['../structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40',1,'tone_t']]]
+ ['tones_659',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]],
+ ['type_660',['type',['../structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40',1,'tone_t']]]
];
diff --git a/search/variables_b.js b/search/variables_b.js
index b4d5caf7..d283f5ea 100644
--- a/search/variables_b.js
+++ b/search/variables_b.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['viscode_659',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]]
+ ['viscode_661',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]]
];
diff --git a/search/variables_c.js b/search/variables_c.js
index 02fc9708..e9e093ef 100644
--- a/search/variables_c.js
+++ b/search/variables_c.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['width_660',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]]
+ ['width_662',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]]
];