diff --git a/_c_c1101_8h_source.html b/_c_c1101_8h_source.html
index e470890c..b2d96a1d 100644
--- a/_c_c1101_8h_source.html
+++ b/_c_c1101_8h_source.html
@@ -793,7 +793,7 @@ $(document).ready(function(){initNavTree('_c_c1101_8h_source.html',''); initResi
void readBit(uint32_t pin)
Function to read and process data bit in direct reception mode.
Definition: CC1101.cpp:1007
int16_t transmitDirect(uint32_t frf=0) override
Starts direct mode transmission.
Definition: CC1101.cpp:176
int16_t getChipVersion()
Read version SPI register. Should return CC1101_VERSION_LEGACY (0x04) or CC1101_VERSION_CURRENT (0x14...
Definition: CC1101.cpp:998
-virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:205
+virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
int16_t setRxBandwidth(float rxBw)
Sets receiver bandwidth. Allowed values range from 58.0 to 812.0 kHz.
Definition: CC1101.cpp:525
int16_t packetMode()
Stops direct mode. It is required to call this method to switch from direct transmissions to packet-b...
Definition: CC1101.cpp:227
int16_t setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)
Sets 16-bit sync word as a two byte value.
Definition: CC1101.cpp:697
@@ -812,7 +812,7 @@ $(document).ready(function(){initNavTree('_c_c1101_8h_source.html',''); initResi
int16_t standby() override
Sets the module to standby mode.
Definition: CC1101.cpp:162
void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: CC1101.cpp:974
uint8_t randomByte()
Get one truly random byte from RSSI noise.
Definition: CC1101.cpp:978
-int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:145
+int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
int16_t setFrequency(float freq)
Sets carrier frequency. Allowed values are in bands 300.0 to 348.0 MHz, 387.0 to 464....
Definition: CC1101.cpp:479
int16_t disableAddressFiltering()
Disables address filtering. Calling this method will also erase previously set addresses.
Definition: CC1101.cpp:755
void setGdo0Action(void(*func)(void), uint32_t dir)
Sets interrupt service routine to call when GDO0 activates.
Definition: CC1101.cpp:234
@@ -837,9 +837,9 @@ $(document).ready(function(){initNavTree('_c_c1101_8h_source.html',''); initResi
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:31
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code.
Definition: Module.h:42
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:15
-virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:205
+virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:145
+int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
diff --git a/_cryptography_8h_source.html b/_cryptography_8h_source.html
new file mode 100644
index 00000000..b8a9b4d3
--- /dev/null
+++ b/_cryptography_8h_source.html
@@ -0,0 +1,237 @@
+
+
+
+
+
+
+
+RadioLib: src/utils/Cryptography.h Source File
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RadioLib
+
+ Universal wireless communication library for Arduino
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
1 #if !defined(_RADIOLIB_CRYPTOGRAPHY_H)
+
2 #define _RADIOLIB_CRYPTOGRAPHY_H
+
+
4 #include "../TypeDef.h"
+
+
+
+
8 #define RADIOLIB_AES128_BLOCK_SIZE (16)
+
9 #define RADIOLIB_AES128_N_K ((RADIOLIB_AES128_BLOCK_SIZE) / sizeof(uint32_t))
+
10 #define RADIOLIB_AES128_N_B (4)
+
11 #define RADIOLIB_AES128_N_R (10)
+
12 #define RADIOLIB_AES128_KEY_EXP_SIZE (176)
+
+
+
15 typedef uint8_t state_t[4][4];
+
+
+
18 static const uint8_t aesSbox[] RADIOLIB_NONVOLATILE = {
+
19 0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5,
+
20 0x30, 0x01, 0x67, 0x2b, 0xfe, 0xd7, 0xab, 0x76,
+
21 0xca, 0x82, 0xc9, 0x7d, 0xfa, 0x59, 0x47, 0xf0,
+
22 0xad, 0xd4, 0xa2, 0xaf, 0x9c, 0xa4, 0x72, 0xc0,
+
23 0xb7, 0xfd, 0x93, 0x26, 0x36, 0x3f, 0xf7, 0xcc,
+
24 0x34, 0xa5, 0xe5, 0xf1, 0x71, 0xd8, 0x31, 0x15,
+
25 0x04, 0xc7, 0x23, 0xc3, 0x18, 0x96, 0x05, 0x9a,
+
26 0x07, 0x12, 0x80, 0xe2, 0xeb, 0x27, 0xb2, 0x75,
+
27 0x09, 0x83, 0x2c, 0x1a, 0x1b, 0x6e, 0x5a, 0xa0,
+
28 0x52, 0x3b, 0xd6, 0xb3, 0x29, 0xe3, 0x2f, 0x84,
+
29 0x53, 0xd1, 0x00, 0xed, 0x20, 0xfc, 0xb1, 0x5b,
+
30 0x6a, 0xcb, 0xbe, 0x39, 0x4a, 0x4c, 0x58, 0xcf,
+
31 0xd0, 0xef, 0xaa, 0xfb, 0x43, 0x4d, 0x33, 0x85,
+
32 0x45, 0xf9, 0x02, 0x7f, 0x50, 0x3c, 0x9f, 0xa8,
+
33 0x51, 0xa3, 0x40, 0x8f, 0x92, 0x9d, 0x38, 0xf5,
+
34 0xbc, 0xb6, 0xda, 0x21, 0x10, 0xff, 0xf3, 0xd2,
+
35 0xcd, 0x0c, 0x13, 0xec, 0x5f, 0x97, 0x44, 0x17,
+
36 0xc4, 0xa7, 0x7e, 0x3d, 0x64, 0x5d, 0x19, 0x73,
+
37 0x60, 0x81, 0x4f, 0xdc, 0x22, 0x2a, 0x90, 0x88,
+
38 0x46, 0xee, 0xb8, 0x14, 0xde, 0x5e, 0x0b, 0xdb,
+
39 0xe0, 0x32, 0x3a, 0x0a, 0x49, 0x06, 0x24, 0x5c,
+
40 0xc2, 0xd3, 0xac, 0x62, 0x91, 0x95, 0xe4, 0x79,
+
41 0xe7, 0xc8, 0x37, 0x6d, 0x8d, 0xd5, 0x4e, 0xa9,
+
42 0x6c, 0x56, 0xf4, 0xea, 0x65, 0x7a, 0xae, 0x08,
+
43 0xba, 0x78, 0x25, 0x2e, 0x1c, 0xa6, 0xb4, 0xc6,
+
44 0xe8, 0xdd, 0x74, 0x1f, 0x4b, 0xbd, 0x8b, 0x8a,
+
45 0x70, 0x3e, 0xb5, 0x66, 0x48, 0x03, 0xf6, 0x0e,
+
46 0x61, 0x35, 0x57, 0xb9, 0x86, 0xc1, 0x1d, 0x9e,
+
47 0xe1, 0xf8, 0x98, 0x11, 0x69, 0xd9, 0x8e, 0x94,
+
48 0x9b, 0x1e, 0x87, 0xe9, 0xce, 0x55, 0x28, 0xdf,
+
49 0x8c, 0xa1, 0x89, 0x0d, 0xbf, 0xe6, 0x42, 0x68,
+
50 0x41, 0x99, 0x2d, 0x0f, 0xb0, 0x54, 0xbb, 0x16
+
+
+
53 static const uint8_t aesSboxInv[] RADIOLIB_NONVOLATILE = {
+
54 0x52, 0x09, 0x6a, 0xd5, 0x30, 0x36, 0xa5, 0x38,
+
55 0xbf, 0x40, 0xa3, 0x9e, 0x81, 0xf3, 0xd7, 0xfb,
+
56 0x7c, 0xe3, 0x39, 0x82, 0x9b, 0x2f, 0xff, 0x87,
+
57 0x34, 0x8e, 0x43, 0x44, 0xc4, 0xde, 0xe9, 0xcb,
+
58 0x54, 0x7b, 0x94, 0x32, 0xa6, 0xc2, 0x23, 0x3d,
+
59 0xee, 0x4c, 0x95, 0x0b, 0x42, 0xfa, 0xc3, 0x4e,
+
60 0x08, 0x2e, 0xa1, 0x66, 0x28, 0xd9, 0x24, 0xb2,
+
61 0x76, 0x5b, 0xa2, 0x49, 0x6d, 0x8b, 0xd1, 0x25,
+
62 0x72, 0xf8, 0xf6, 0x64, 0x86, 0x68, 0x98, 0x16,
+
63 0xd4, 0xa4, 0x5c, 0xcc, 0x5d, 0x65, 0xb6, 0x92,
+
64 0x6c, 0x70, 0x48, 0x50, 0xfd, 0xed, 0xb9, 0xda,
+
65 0x5e, 0x15, 0x46, 0x57, 0xa7, 0x8d, 0x9d, 0x84,
+
66 0x90, 0xd8, 0xab, 0x00, 0x8c, 0xbc, 0xd3, 0x0a,
+
67 0xf7, 0xe4, 0x58, 0x05, 0xb8, 0xb3, 0x45, 0x06,
+
68 0xd0, 0x2c, 0x1e, 0x8f, 0xca, 0x3f, 0x0f, 0x02,
+
69 0xc1, 0xaf, 0xbd, 0x03, 0x01, 0x13, 0x8a, 0x6b,
+
70 0x3a, 0x91, 0x11, 0x41, 0x4f, 0x67, 0xdc, 0xea,
+
71 0x97, 0xf2, 0xcf, 0xce, 0xf0, 0xb4, 0xe6, 0x73,
+
72 0x96, 0xac, 0x74, 0x22, 0xe7, 0xad, 0x35, 0x85,
+
73 0xe2, 0xf9, 0x37, 0xe8, 0x1c, 0x75, 0xdf, 0x6e,
+
74 0x47, 0xf1, 0x1a, 0x71, 0x1d, 0x29, 0xc5, 0x89,
+
75 0x6f, 0xb7, 0x62, 0x0e, 0xaa, 0x18, 0xbe, 0x1b,
+
76 0xfc, 0x56, 0x3e, 0x4b, 0xc6, 0xd2, 0x79, 0x20,
+
77 0x9a, 0xdb, 0xc0, 0xfe, 0x78, 0xcd, 0x5a, 0xf4,
+
78 0x1f, 0xdd, 0xa8, 0x33, 0x88, 0x07, 0xc7, 0x31,
+
79 0xb1, 0x12, 0x10, 0x59, 0x27, 0x80, 0xec, 0x5f,
+
80 0x60, 0x51, 0x7f, 0xa9, 0x19, 0xb5, 0x4a, 0x0d,
+
81 0x2d, 0xe5, 0x7a, 0x9f, 0x93, 0xc9, 0x9c, 0xef,
+
82 0xa0, 0xe0, 0x3b, 0x4d, 0xae, 0x2a, 0xf5, 0xb0,
+
83 0xc8, 0xeb, 0xbb, 0x3c, 0x83, 0x53, 0x99, 0x61,
+
84 0x17, 0x2b, 0x04, 0x7e, 0xba, 0x77, 0xd6, 0x26,
+
85 0xe1, 0x69, 0x14, 0x63, 0x55, 0x21, 0x0c, 0x7d
+
+
+
88 static const uint8_t aesRcon[] = { 0x8d, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36 };
+
+
+
+
+
+
107 void init (uint8_t* key);
+
+
117 size_t encryptECB (uint8_t* in,
size_t len, uint8_t* out);
+
+
127 size_t decryptECB (uint8_t* in,
size_t len, uint8_t* out);
+
+
135 void generateCMAC (uint8_t* in,
size_t len, uint8_t* cmac);
+
+
144 bool verifyCMAC (uint8_t* in,
size_t len, uint8_t* cmac);
+
+
+
+
148 uint8_t roundKey[RADIOLIB_AES128_KEY_EXP_SIZE];
+
+
150 void keyExpansion(uint8_t* roundKey, uint8_t* key);
+
151 void cipher(state_t* state, uint8_t* roundKey);
+
152 void decipher(state_t* state, uint8_t* roundKey);
+
+
154 void subWord(uint8_t* word);
+
155 void rotWord(uint8_t* word);
+
+
157 void addRoundKey(uint8_t round, state_t* state, uint8_t* roundKey);
+
+
159 void blockXor(uint8_t* dst, uint8_t* a, uint8_t* b);
+
160 void blockLeftshift(uint8_t* dst, uint8_t* src);
+
161 void generateSubkeys(uint8_t* key1, uint8_t* key2);
+
+
163 void subBytes(state_t* state,
const uint8_t* box);
+
164 void shiftRows(state_t* state,
bool inv);
+
165 void mixColumns(state_t* state,
bool inv);
+
+
167 uint8_t mul(uint8_t a, uint8_t b);
+
+
+
+
+
+
+
Class to perform AES encryption, decryption and CMAC.
Definition: Cryptography.h:96
+
RadioLibAES128()
Default constructor.
Definition: Cryptography.cpp:5
+
void generateCMAC(uint8_t *in, size_t len, uint8_t *cmac)
Calculate message authentication code according to RFC4493.
Definition: Cryptography.cpp:46
+
void init(uint8_t *key)
Initialize the AES.
Definition: Cryptography.cpp:9
+
bool verifyCMAC(uint8_t *in, size_t len, uint8_t *cmac)
Verify the recevied CMAC. This just calculates the CMAC again and compares the results.
Definition: Cryptography.cpp:85
+
size_t encryptECB(uint8_t *in, size_t len, uint8_t *out)
Perform ECB-type AES encryption.
Definition: Cryptography.cpp:14
+
size_t decryptECB(uint8_t *in, size_t len, uint8_t *out)
Perform ECB-type AES decryption.
Definition: Cryptography.cpp:30
+
+
+
+
+
+
diff --git a/_physical_layer_8h_source.html b/_physical_layer_8h_source.html
index 8d9c88a5..45ebfd89 100644
--- a/_physical_layer_8h_source.html
+++ b/_physical_layer_8h_source.html
@@ -121,124 +121,128 @@ $(document).ready(function(){initNavTree('_physical_layer_8h_source.html',''); i
90 virtual int16_t
standby (uint8_t mode);
- 102 virtual int16_t
startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask,
size_t len);
-
- 110 virtual int16_t
receive (uint8_t* data,
size_t len);
-
- 112 #if defined(RADIOLIB_BUILD_ARDUINO)
-
-
-
-
-
- 139 virtual int16_t
startTransmit (uint8_t* data,
size_t len, uint8_t addr = 0);
-
-
+
+
+ 108 virtual int16_t
startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask,
size_t len);
+
+ 116 virtual int16_t
receive (uint8_t* data,
size_t len);
+
+ 118 #if defined(RADIOLIB_BUILD_ARDUINO)
+
+
+
+
+
+ 145 virtual int16_t
startTransmit (uint8_t* data,
size_t len, uint8_t addr = 0);
- 147 #if defined(RADIOLIB_BUILD_ARDUINO)
- 155 int16_t
readData (String& str,
size_t len = 0);
-
-
- 165 virtual int16_t
readData (uint8_t* data,
size_t len);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+ 153 #if defined(RADIOLIB_BUILD_ARDUINO)
+ 161 int16_t
readData (String& str,
size_t len = 0);
+
+
+ 171 virtual int16_t
readData (uint8_t* data,
size_t len);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
+
- 250 int32_t
random (int32_t max);
-
- 258 int32_t
random (int32_t min, int32_t max);
-
-
+
+
+ 256 int32_t
random (int32_t max);
+
+ 264 int32_t
random (int32_t min, int32_t max);
-
-
- 273 #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
-
-
-
-
- 293 virtual void readBit (uint32_t pin);
+
+
+
+
+ 279 #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
+
+
+
-
+ 299 virtual void readBit (uint32_t pin);
-
-
- 312 uint8_t
read (
bool drop =
true );
-
-
-
-
-
+
+
+
+
+ 318 uint8_t
read (
bool drop =
true );
+
+
+
-
-
- 334 #if defined(RADIOLIB_INTERRUPT_TIMING)
-
- 341 void setInterruptSetup(
void (*func)(uint32_t));
-
-
+
+
+
+
+ 340 #if defined(RADIOLIB_INTERRUPT_TIMING)
+
+ 347 void setInterruptSetup(
void (*func)(uint32_t));
-
-
- 351 #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
-
- 353 void updateDirectBuffer(uint8_t bit);
-
-
- 356 #if !defined(RADIOLIB_GODMODE)
-
-
-
- 360 size_t maxPacketLength;
+
+
+
+
+ 357 #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
+
+ 359 void updateDirectBuffer(uint8_t bit);
+
- 362 #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
- 363 uint8_t bufferBitPos;
- 364 uint8_t bufferWritePos;
- 365 uint8_t bufferReadPos;
- 366 uint8_t buffer[RADIOLIB_STATIC_ARRAY_SIZE];
-
- 368 uint32_t directSyncWord;
- 369 uint8_t directSyncWordLen;
- 370 uint32_t directSyncWordMask;
-
-
-
- 374 virtual Module * getMod() = 0;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 362 #if !defined(RADIOLIB_GODMODE)
+
+
+
+ 366 size_t maxPacketLength;
+
+ 368 #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
+ 369 uint8_t bufferBitPos;
+ 370 uint8_t bufferWritePos;
+ 371 uint8_t bufferReadPos;
+ 372 uint8_t buffer[RADIOLIB_STATIC_ARRAY_SIZE];
+
+ 374 uint32_t directSyncWord;
+ 375 uint8_t directSyncWordLen;
+ 376 uint32_t directSyncWordMask;
+
+
+
+ 380 virtual Module * getMod() = 0;
+
+
+
+
+
+
+
+
+
+
+
+ 392 friend class FT8Client;
+ 393 friend class LoRaWANNode;
+
+
+
Client for audio-based transmissions. Requires Arduino tone() function, and a module capable of direc...
Definition: AFSK.h:16
Client for AX25 communication.
Definition: AX25.h:238
Client for Bell modem communication. The public interface is the same as Arduino Serial.
Definition: BellModem.h:57
@@ -248,37 +252,37 @@ $(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:15
-virtual int16_t startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)
Interrupt-driven receive method. A DIO pin will be activated when full packet is received....
Definition: PhysicalLayer.cpp:131
-virtual uint8_t randomByte()
Get one truly random byte from RSSI noise. Must be implemented in module class.
Definition: PhysicalLayer.cpp:289
-virtual int16_t finishTransmit()
Clean up after transmission is done.
Definition: PhysicalLayer.cpp:156
-virtual int16_t setFrequencyDeviation(float freqDev)
Sets FSK frequency deviation from carrier frequency. Only available in FSK mode. Must be implemented ...
Definition: PhysicalLayer.cpp:230
-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:249
-virtual int16_t setDIOMapping(uint32_t pin, uint32_t value)
Configure DIO pin mapping to get a given signal on a DIO pin (if available).
Definition: PhysicalLayer.cpp:388
-virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:205
-void dropSync()
Forcefully drop synchronization.
Definition: PhysicalLayer.cpp:312
+virtual int16_t startReceive()
Sets module to received mode using its default configuration.
Definition: PhysicalLayer.cpp:131
+virtual uint8_t randomByte()
Get one truly random byte from RSSI noise. Must be implemented in module class.
Definition: PhysicalLayer.cpp:293
+virtual int16_t finishTransmit()
Clean up after transmission is done.
Definition: PhysicalLayer.cpp:160
+virtual int16_t setFrequencyDeviation(float freqDev)
Sets FSK frequency deviation from carrier frequency. Only available in FSK mode. Must be implemented ...
Definition: PhysicalLayer.cpp:234
+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:253
+virtual int16_t setDIOMapping(uint32_t pin, uint32_t value)
Configure DIO pin mapping to get a given signal on a DIO pin (if available).
Definition: PhysicalLayer.cpp:392
+virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
+void dropSync()
Forcefully drop synchronization.
Definition: PhysicalLayer.cpp:316
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-uint8_t read(bool drop=true)
Get data from direct mode buffer.
Definition: PhysicalLayer.cpp:319
-virtual void setDio1Action(void(*func)(void))
Sets interrupt service routine to call when DIO1 activates.
Definition: PhysicalLayer.cpp:394
-int16_t startDirect()
Configure module parameters for direct modes. Must be called prior to "ham" modes like RTTY or AX....
Definition: PhysicalLayer.cpp:293
-virtual int16_t setFrequency(float freq)
Sets carrier frequency. Must be implemented in module class.
Definition: PhysicalLayer.cpp:220
-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:327
-int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:145
-float getFreqStep() const
Gets the module frequency step size that was set in constructor.
Definition: PhysicalLayer.cpp:245
-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:211
-virtual float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: PhysicalLayer.cpp:254
-int16_t available()
Get the number of direct mode bytes currently available in buffer.
Definition: PhysicalLayer.cpp:308
+uint8_t read(bool drop=true)
Get data from direct mode buffer.
Definition: PhysicalLayer.cpp:323
+virtual void setDio1Action(void(*func)(void))
Sets interrupt service routine to call when DIO1 activates.
Definition: PhysicalLayer.cpp:398
+int16_t startDirect()
Configure module parameters for direct modes. Must be called prior to "ham" modes like RTTY or AX....
Definition: PhysicalLayer.cpp:297
+virtual int16_t setFrequency(float freq)
Sets carrier frequency. Must be implemented in module class.
Definition: PhysicalLayer.cpp:224
+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:331
+int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
+float getFreqStep() const
Gets the module frequency step size that was set in constructor.
Definition: PhysicalLayer.cpp:249
+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:215
+virtual float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: PhysicalLayer.cpp:258
+int16_t available()
Get the number of direct mode bytes currently available in buffer.
Definition: PhysicalLayer.cpp:312
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
-virtual void setDirectAction(void(*func)(void))
Set interrupt service routine function to call when data bit is receveid in direct mode....
Definition: PhysicalLayer.cpp:378
-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:240
+virtual void setDirectAction(void(*func)(void))
Set interrupt service routine function to call when data bit is receveid in direct mode....
Definition: PhysicalLayer.cpp:382
+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:244
virtual int16_t standby()
Sets module to standby.
Definition: PhysicalLayer.cpp:122
-int32_t random(int32_t max)
Get truly random number in range 0 - max.
Definition: PhysicalLayer.cpp:262
-virtual void readBit(uint32_t pin)
Function to read and process data bit in direct reception mode. Must be implemented in module class.
Definition: PhysicalLayer.cpp:382
-virtual void clearDio1Action()
Clears interrupt service routine to call when DIO1 activates.
Definition: PhysicalLayer.cpp:398
-virtual int16_t receiveDirect()
Enables direct reception mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module cla...
Definition: PhysicalLayer.cpp:216
+int32_t random(int32_t max)
Get truly random number in range 0 - max.
Definition: PhysicalLayer.cpp:266
+virtual void readBit(uint32_t pin)
Function to read and process data bit in direct reception mode. Must be implemented in module class.
Definition: PhysicalLayer.cpp:386
+virtual void clearDio1Action()
Clears interrupt service routine to call when DIO1 activates.
Definition: PhysicalLayer.cpp:402
+virtual int16_t receiveDirect()
Enables direct reception mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module cla...
Definition: PhysicalLayer.cpp:220
PhysicalLayer(float step, size_t maxLen)
Default constructor.
Definition: PhysicalLayer.cpp:4
-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:235
-virtual int16_t setBitRate(float br)
Sets FSK bit rate. Only available in FSK mode. Must be implemented in module class.
Definition: PhysicalLayer.cpp:225
-virtual float getSNR()
Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem.
Definition: PhysicalLayer.cpp:258
+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:239
+virtual int16_t setBitRate(float br)
Sets FSK bit rate. Only available in FSK mode. Must be implemented in module class.
Definition: PhysicalLayer.cpp:229
+virtual float getSNR()
Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem.
Definition: PhysicalLayer.cpp:262
virtual int16_t sleep()
Sets module to sleep.
Definition: PhysicalLayer.cpp:118
Client for RTTY communication. The public interface is the same as Arduino Serial.
Definition: RTTY.h:17
Client for SSTV transmissions.
Definition: SSTV.h:117
diff --git a/_r_f69_8h_source.html b/_r_f69_8h_source.html
index 3c68c812..d4e3e304 100644
--- a/_r_f69_8h_source.html
+++ b/_r_f69_8h_source.html
@@ -768,9 +768,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:31
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code.
Definition: Module.h:42
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:15
-virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:205
+virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:145
+int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
Control class for RF69 module. Also serves as base class for SX1231.
Definition: RF69.h:479
int16_t getTemperature()
Measures temperature.
Definition: RF69.cpp:752
@@ -790,7 +790,7 @@ $(document).ready(function(){initNavTree('_r_f69_8h_source.html',''); initResiza
int16_t setSyncWord(uint8_t *syncWord, size_t len, uint8_t maxErrBits=0)
Sets sync word. Up to 8 bytes can be set as sync word.
Definition: RF69.cpp:679
int16_t getFrequencyDeviation(float *freqDev)
Gets frequency deviation.
Definition: RF69.cpp:617
int16_t setOokFixedThreshold(uint8_t value)
Fixed threshold for the Data Slicer in OOK mode or floor threshold for the Data Slicer in OOK when Pe...
Definition: RF69.cpp:500
-virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:205
+virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
int16_t finishTransmit() override
Clean up after transmission is done.
Definition: RF69.cpp:429
int16_t disableSyncWordFiltering()
Disable preamble and sync word filtering and generation.
Definition: RF69.cpp:795
int16_t setDataShaping(uint8_t sh) override
Sets Gaussian filter bandwidth-time product that will be used for data shaping. Allowed values are RA...
Definition: RF69.cpp:864
@@ -809,7 +809,7 @@ $(document).ready(function(){initNavTree('_r_f69_8h_source.html',''); initResiza
int16_t enableContinuousModeBitSync()
Enable Bit synchronization in continuous mode.
Definition: RF69.cpp:800
void setDirectAction(void(*func)(void))
Set interrupt service routine function to call when data bit is receveid in direct mode.
Definition: RF69.cpp:948
size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: RF69.cpp:769
-int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:145
+int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
void clearDio0Action()
Clears interrupt service routine to call when DIO0 activates.
Definition: RF69.cpp:278
int16_t disableContinuousModeBitSync()
Disable Bit synchronization in continuous mode.
Definition: RF69.cpp:809
void setDio0Action(void(*func)(void))
Sets interrupt service routine to call when DIO0 activates.
Definition: RF69.cpp:274
diff --git a/_radio_lib_8h_source.html b/_radio_lib_8h_source.html
index 2c7e6554..572b1a3a 100644
--- a/_radio_lib_8h_source.html
+++ b/_radio_lib_8h_source.html
@@ -166,41 +166,42 @@ $(document).ready(function(){initNavTree('_radio_lib_8h_source.html',''); initRe
114 #include "utils/CRC.h"
-
-
- 117 #if defined(RADIOLIB_RADIOSHIELD)
-
-
- 120 #define RADIOSHIELD_CS_A 10
- 121 #define RADIOSHIELD_IRQ_A 2
- 122 #define RADIOSHIELD_RST_A 9
- 123 #define RADIOSHIELD_GPIO_A 8
- 124 #define RADIOSHIELD_CS_B 5
- 125 #define RADIOSHIELD_IRQ_B 3
- 126 #define RADIOSHIELD_RST_B 7
- 127 #define RADIOSHIELD_GPIO_B 6
-
-
-
-
-
-
-
-
- 145 ModuleA =
new Module (RADIOSHIELD_CS_A, RADIOSHIELD_IRQ_A, RADIOSHIELD_RST_A, RADIOSHIELD_GPIO_A);
- 146 ModuleB =
new Module (RADIOSHIELD_CS_B, RADIOSHIELD_IRQ_B, RADIOSHIELD_RST_B, RADIOSHIELD_GPIO_B);
-
-
- 149 #if defined(RADIOLIB_GODMODE)
-
-
-
-
-
-
-
-
-
+ 115 #include "utils/Cryptography.h"
+
+
+ 118 #if defined(RADIOLIB_RADIOSHIELD)
+
+
+ 121 #define RADIOSHIELD_CS_A 10
+ 122 #define RADIOSHIELD_IRQ_A 2
+ 123 #define RADIOSHIELD_RST_A 9
+ 124 #define RADIOSHIELD_GPIO_A 8
+ 125 #define RADIOSHIELD_CS_B 5
+ 126 #define RADIOSHIELD_IRQ_B 3
+ 127 #define RADIOSHIELD_RST_B 7
+ 128 #define RADIOSHIELD_GPIO_B 6
+
+
+
+
+
+
+
+
+ 146 ModuleA =
new Module (RADIOSHIELD_CS_A, RADIOSHIELD_IRQ_A, RADIOSHIELD_RST_A, RADIOSHIELD_GPIO_A);
+ 147 ModuleB =
new Module (RADIOSHIELD_CS_B, RADIOSHIELD_IRQ_B, RADIOSHIELD_RST_B, RADIOSHIELD_GPIO_B);
+
+
+ 150 #if defined(RADIOLIB_GODMODE)
+
+
+
+
+
+
+
+
+
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:31
diff --git a/_s_t_m32_w_lx_8h_source.html b/_s_t_m32_w_lx_8h_source.html
index ed7e5215..d1caaa00 100644
--- a/_s_t_m32_w_lx_8h_source.html
+++ b/_s_t_m32_w_lx_8h_source.html
@@ -168,7 +168,7 @@ $(document).ready(function(){initNavTree('_s_t_m32_w_lx_8h_source.html',''); ini
@ MODE_IDLE
Definition: STM32WLx.h:55
int16_t beginFSK(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=156.2, int8_t power=10, uint16_t preambleLength=16, float tcxoVoltage=1.6, bool useRegulatorLDO=false)
Initialization method for FSK modem.
Definition: STM32WLx.cpp:27
Derived class for SX1262 modules.
Definition: SX1262.h:22
-void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX126x.cpp:1374
+void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX126x.cpp:1378
diff --git a/_s_x126x_8h_source.html b/_s_x126x_8h_source.html
index 72541c1a..5f8ccf13 100644
--- a/_s_x126x_8h_source.html
+++ b/_s_x126x_8h_source.html
@@ -570,280 +570,282 @@ $(document).ready(function(){initNavTree('_s_x126x_8h_source.html',''); initResi
584 int16_t
startTransmit (uint8_t* data,
size_t len, uint8_t addr = 0)
override ;
-
- 607 int16_t
startReceive (uint32_t timeout = RADIOLIB_SX126X_RX_TIMEOUT_INF, uint16_t irqFlags = RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask = RADIOLIB_SX126X_IRQ_RX_DONE,
size_t len = 0);
-
- 619 int16_t
startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags = RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask = RADIOLIB_SX126X_IRQ_RX_DONE);
-
- 635 int16_t
startReceiveDutyCycleAuto (uint16_t senderPreambleLength = 0, uint16_t minSymbols = 8, uint16_t irqFlags = RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask = RADIOLIB_SX126X_IRQ_RX_DONE);
-
-
-
- 650 int16_t
readData (uint8_t* data,
size_t len)
override ;
-
- 660 int16_t
startChannelScan (uint8_t symbolNum = RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detPeak = RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detMin = RADIOLIB_SX126X_CAD_PARAM_DEFAULT);
-
-
-
-
+
+
+
+ 615 int16_t
startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask,
size_t len);
+
+ 627 int16_t
startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags = RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask = RADIOLIB_SX126X_IRQ_RX_DONE);
+
+ 643 int16_t
startReceiveDutyCycleAuto (uint16_t senderPreambleLength = 0, uint16_t minSymbols = 8, uint16_t irqFlags = RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask = RADIOLIB_SX126X_IRQ_RX_DONE);
+
+
+
+ 658 int16_t
readData (uint8_t* data,
size_t len)
override ;
+
+ 668 int16_t
startChannelScan (uint8_t symbolNum = RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detPeak = RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detMin = RADIOLIB_SX126X_CAD_PARAM_DEFAULT);
-
-
-
-
-
-
- 697 int16_t
setSyncWord (uint8_t syncWord, uint8_t controlBits = 0x44);
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+ 705 int16_t
setSyncWord (uint8_t syncWord, uint8_t controlBits = 0x44);
+
+
+
+
+
+
+
+
+
+
-
-
-
-
- 766 int16_t
setSyncWord (uint8_t* syncWord, uint8_t len);
+
+
+
+
+
- 775 int16_t
setSyncBits (uint8_t *syncWord, uint8_t bitsLen);
-
-
-
-
+ 774 int16_t
setSyncWord (uint8_t* syncWord, uint8_t len);
+
+ 783 int16_t
setSyncBits (uint8_t *syncWord, uint8_t bitsLen);
+
+
-
-
- 806 int16_t
setCRC (uint8_t len, uint16_t initial = 0x1D0F, uint16_t polynomial = 0x1021,
bool inverted =
true );
-
- 815 int16_t
setWhitening (
bool enabled, uint16_t initial = 0x0100);
-
- 826 int16_t
setTCXO (
float voltage, uint32_t delay = 5000);
-
-
-
-
-
- 845 float getRSSI (
bool packet =
true );
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+ 814 int16_t
setCRC (uint8_t len, uint16_t initial = 0x1D0F, uint16_t polynomial = 0x1021,
bool inverted =
true );
+
+ 823 int16_t
setWhitening (
bool enabled, uint16_t initial = 0x0100);
+
+ 834 int16_t
setTCXO (
float voltage, uint32_t delay = 5000);
+
+
+
+
+
+ 853 float getRSSI (
bool packet =
true );
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
- 959 #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
-
-
-
-
-
- 982 int16_t
uploadPatch (
const uint32_t* patch,
size_t len,
bool nonvolatile =
true );
-
- 991 int16_t
spectralScanStart (uint16_t numSamples, uint8_t window = RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval = RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US);
-
-
-
-
-
-
-
- 1011 #if !defined(RADIOLIB_GODMODE)
-
-
-
-
- 1016 int16_t setTx(uint32_t timeout = 0);
- 1017 int16_t setRx(uint32_t timeout);
- 1018 int16_t setCad(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin);
- 1019 int16_t setPaConfig(uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax = RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut = RADIOLIB_SX126X_PA_CONFIG_PA_LUT);
- 1020 int16_t writeRegister(uint16_t addr, uint8_t* data, uint8_t numBytes);
- 1021 int16_t readRegister(uint16_t addr, uint8_t* data, uint8_t numBytes);
- 1022 int16_t writeBuffer(uint8_t* data, uint8_t numBytes, uint8_t offset = 0x00);
- 1023 int16_t readBuffer(uint8_t* data, uint8_t numBytes, uint8_t offset = 0x00);
- 1024 int16_t setDioIrqParams(uint16_t irqMask, uint16_t dio1Mask, uint16_t dio2Mask = RADIOLIB_SX126X_IRQ_NONE, uint16_t dio3Mask = RADIOLIB_SX126X_IRQ_NONE);
- 1025 virtual int16_t clearIrqStatus(uint16_t clearIrqParams = RADIOLIB_SX126X_IRQ_ALL);
- 1026 int16_t setRfFrequency(uint32_t frf);
- 1027 int16_t calibrateImage(uint8_t* data);
- 1028 uint8_t getPacketType();
- 1029 int16_t setTxParams(uint8_t power, uint8_t rampTime = RADIOLIB_SX126X_PA_RAMP_200U);
- 1030 int16_t setModulationParams(uint8_t sf, uint8_t bw, uint8_t cr, uint8_t ldro);
- 1031 int16_t setModulationParamsFSK(uint32_t br, uint8_t sh, uint8_t rxBw, uint32_t freqDev);
- 1032 int16_t setPacketParams(uint16_t preambleLen, uint8_t crcType, uint8_t payloadLen, uint8_t hdrType, uint8_t
invertIQ );
- 1033 int16_t setPacketParamsFSK(uint16_t preambleLen, uint8_t crcType, uint8_t syncWordLen, uint8_t addrCmp, uint8_t whiten, uint8_t packType = RADIOLIB_SX126X_GFSK_PACKET_VARIABLE, uint8_t payloadLen = 0xFF, uint8_t preambleDetectorLen = RADIOLIB_SX126X_GFSK_PREAMBLE_DETECT_16);
- 1034 int16_t setBufferBaseAddress(uint8_t txBaseAddress = 0x00, uint8_t rxBaseAddress = 0x00);
- 1035 int16_t setRegulatorMode(uint8_t mode);
- 1036 uint8_t getStatus();
- 1037 uint32_t getPacketStatus();
- 1038 uint16_t getDeviceErrors();
- 1039 int16_t clearDeviceErrors();
-
- 1041 int16_t startReceiveCommon(uint32_t timeout = RADIOLIB_SX126X_RX_TIMEOUT_INF, uint16_t irqFlags = RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask = RADIOLIB_SX126X_IRQ_RX_DONE);
- 1042 int16_t setFrequencyRaw(
float freq);
- 1043 int16_t setPacketMode(uint8_t mode, uint8_t len);
- 1044 int16_t setHeaderType(uint8_t hdrType,
size_t len = 0xFF);
- 1045 int16_t directMode();
- 1046 int16_t packetMode();
-
-
- 1049 int16_t fixSensitivity();
- 1050 int16_t fixPaClamping(
bool enable =
true );
- 1051 int16_t fixImplicitTimeout();
- 1052 int16_t fixInvertedIQ(uint8_t iqConfig);
-
- 1054 #if !defined(RADIOLIB_GODMODE) && !defined(RADIOLIB_LOW_LEVEL)
-
-
-
-
-
- 1060 static int16_t SPIparseStatus(uint8_t in);
+
+
+
+
+
+
+ 967 #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
+
+
+
+
+
+ 990 int16_t
uploadPatch (
const uint32_t* patch,
size_t len,
bool nonvolatile =
true );
+
+ 999 int16_t
spectralScanStart (uint16_t numSamples, uint8_t window = RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval = RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US);
+
+
+
+
+
+
+
+ 1019 #if !defined(RADIOLIB_GODMODE)
+
+
+
+
+ 1024 int16_t setTx(uint32_t timeout = 0);
+ 1025 int16_t setRx(uint32_t timeout);
+ 1026 int16_t setCad(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin);
+ 1027 int16_t setPaConfig(uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax = RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut = RADIOLIB_SX126X_PA_CONFIG_PA_LUT);
+ 1028 int16_t writeRegister(uint16_t addr, uint8_t* data, uint8_t numBytes);
+ 1029 int16_t readRegister(uint16_t addr, uint8_t* data, uint8_t numBytes);
+ 1030 int16_t writeBuffer(uint8_t* data, uint8_t numBytes, uint8_t offset = 0x00);
+ 1031 int16_t readBuffer(uint8_t* data, uint8_t numBytes, uint8_t offset = 0x00);
+ 1032 int16_t setDioIrqParams(uint16_t irqMask, uint16_t dio1Mask, uint16_t dio2Mask = RADIOLIB_SX126X_IRQ_NONE, uint16_t dio3Mask = RADIOLIB_SX126X_IRQ_NONE);
+ 1033 virtual int16_t clearIrqStatus(uint16_t clearIrqParams = RADIOLIB_SX126X_IRQ_ALL);
+ 1034 int16_t setRfFrequency(uint32_t frf);
+ 1035 int16_t calibrateImage(uint8_t* data);
+ 1036 uint8_t getPacketType();
+ 1037 int16_t setTxParams(uint8_t power, uint8_t rampTime = RADIOLIB_SX126X_PA_RAMP_200U);
+ 1038 int16_t setModulationParams(uint8_t sf, uint8_t bw, uint8_t cr, uint8_t ldro);
+ 1039 int16_t setModulationParamsFSK(uint32_t br, uint8_t sh, uint8_t rxBw, uint32_t freqDev);
+ 1040 int16_t setPacketParams(uint16_t preambleLen, uint8_t crcType, uint8_t payloadLen, uint8_t hdrType, uint8_t
invertIQ );
+ 1041 int16_t setPacketParamsFSK(uint16_t preambleLen, uint8_t crcType, uint8_t syncWordLen, uint8_t addrCmp, uint8_t whiten, uint8_t packType = RADIOLIB_SX126X_GFSK_PACKET_VARIABLE, uint8_t payloadLen = 0xFF, uint8_t preambleDetectorLen = RADIOLIB_SX126X_GFSK_PREAMBLE_DETECT_16);
+ 1042 int16_t setBufferBaseAddress(uint8_t txBaseAddress = 0x00, uint8_t rxBaseAddress = 0x00);
+ 1043 int16_t setRegulatorMode(uint8_t mode);
+ 1044 uint8_t getStatus();
+ 1045 uint32_t getPacketStatus();
+ 1046 uint16_t getDeviceErrors();
+ 1047 int16_t clearDeviceErrors();
+
+ 1049 int16_t startReceiveCommon(uint32_t timeout = RADIOLIB_SX126X_RX_TIMEOUT_INF, uint16_t irqFlags = RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask = RADIOLIB_SX126X_IRQ_RX_DONE);
+ 1050 int16_t setFrequencyRaw(
float freq);
+ 1051 int16_t setPacketMode(uint8_t mode, uint8_t len);
+ 1052 int16_t setHeaderType(uint8_t hdrType,
size_t len = 0xFF);
+ 1053 int16_t directMode();
+ 1054 int16_t packetMode();
+
+
+ 1057 int16_t fixSensitivity();
+ 1058 int16_t fixPaClamping(
bool enable =
true );
+ 1059 int16_t fixImplicitTimeout();
+ 1060 int16_t fixInvertedIQ(uint8_t iqConfig);
- 1062 #if !defined(RADIOLIB_GODMODE)
+ 1062 #if !defined(RADIOLIB_GODMODE) && !defined(RADIOLIB_LOW_LEVEL)
-
- 1066 uint8_t bandwidth = 0, spreadingFactor = 0, codingRate = 0, ldrOptimize = 0, crcTypeLoRa = 0, headerType = 0;
- 1067 uint16_t preambleLengthLoRa = 0;
- 1068 float bandwidthKhz = 0;
- 1069 bool ldroAuto =
true ;
-
- 1071 uint32_t bitRate = 0, frequencyDev = 0;
- 1072 uint8_t rxBandwidth = 0, pulseShape = 0, crcTypeFSK = 0, syncWordLength = 0, addrComp = 0, whitening = 0, packetType = 0;
- 1073 uint16_t preambleLengthFSK = 0;
- 1074 float rxBandwidthKhz = 0;
-
- 1076 float dataRateMeasured = 0;
-
- 1078 uint32_t tcxoDelay = 0;
-
- 1080 size_t implicitLen = 0;
- 1081 uint8_t invertIQEnabled = RADIOLIB_SX126X_LORA_IQ_STANDARD;
- 1082 const char * chipType;
+
+
+
+ 1068 static int16_t SPIparseStatus(uint8_t in);
+
+ 1070 #if !defined(RADIOLIB_GODMODE)
+
+
+
+ 1074 uint8_t bandwidth = 0, spreadingFactor = 0, codingRate = 0, ldrOptimize = 0, crcTypeLoRa = 0, headerType = 0;
+ 1075 uint16_t preambleLengthLoRa = 0;
+ 1076 float bandwidthKhz = 0;
+ 1077 bool ldroAuto =
true ;
+
+ 1079 uint32_t bitRate = 0, frequencyDev = 0;
+ 1080 uint8_t rxBandwidth = 0, pulseShape = 0, crcTypeFSK = 0, syncWordLength = 0, addrComp = 0, whitening = 0, packetType = 0;
+ 1081 uint16_t preambleLengthFSK = 0;
+ 1082 float rxBandwidthKhz = 0;
-
-
-
- 1087 int16_t config(uint8_t modem);
- 1088 bool findChip(
const char * verStr);
-
-
-
-
-
+ 1084 float dataRateMeasured = 0;
+
+ 1086 uint32_t tcxoDelay = 0;
+
+ 1088 size_t implicitLen = 0;
+ 1089 uint8_t invertIQEnabled = RADIOLIB_SX126X_LORA_IQ_STANDARD;
+ 1090 const char * chipType;
+
+
+
+
+ 1095 int16_t config(uint8_t modem);
+ 1096 bool findChip(
const char * verStr);
+
+
+
+
+
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:31
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code.
Definition: Module.h:42
@ MODE_TX
Definition: Module.h:71
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:15
-virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:205
+virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:145
-virtual float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: PhysicalLayer.cpp:254
+int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
+virtual float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: PhysicalLayer.cpp:258
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
virtual int16_t sleep()
Sets module to sleep.
Definition: PhysicalLayer.cpp:118
Base class for SX126x series. All derived classes for SX126x (e.g. SX1262 or SX1268) inherit from thi...
Definition: SX126x.h:443
-float getFrequencyError()
Gets frequency error of the latest received packet. WARNING: This functionality is based on SX128x im...
Definition: SX126x.cpp:1261
-int16_t startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)
Calls startReceiveDutyCycle with rxPeriod and sleepPeriod set so the unit shouldn't miss any messages...
Definition: SX126x.cpp:583
-void setRfSwitchPins(uint32_t rxEn, uint32_t txEn)
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX126x.cpp:1370
+float getFrequencyError()
Gets frequency error of the latest received packet. WARNING: This functionality is based on SX128x im...
Definition: SX126x.cpp:1265
+int16_t startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)
Calls startReceiveDutyCycle with rxPeriod and sleepPeriod set so the unit shouldn't miss any messages...
Definition: SX126x.cpp:587
+void setRfSwitchPins(uint32_t rxEn, uint32_t txEn)
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX126x.cpp:1374
void setDio1Action(void(*func)(void))
Sets interrupt service routine to call when DIO1 activates.
Definition: SX126x.cpp:465
-int16_t startReceive(uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE, size_t len=0)
Interrupt-driven receive method. DIO1 will be activated when full packet is received.
Definition: SX126x.cpp:542
-int16_t startChannelScan(uint8_t symbolNum=RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detPeak=RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detMin=RADIOLIB_SX126X_CAD_PARAM_DEFAULT)
Interrupt-driven channel activity detection method. DIO0 will be activated when LoRa preamble is dete...
Definition: SX126x.cpp:691
-int16_t setDataShaping(uint8_t sh) override
Sets time-bandwidth product of Gaussian filter applied for shaping. Allowed values are RADIOLIB_SHAPI...
Definition: SX126x.cpp:1006
-int16_t setRegulatorLDO()
Set regulator mode to LDO.
Definition: SX126x.cpp:1358
-int16_t invertIQ(bool enable)
Enable/disable inversion of the I and Q signals.
Definition: SX126x.cpp:1428
-int16_t uploadPatch(const uint32_t *patch, size_t len, bool nonvolatile=true)
Upload binary patch into the SX126x device RAM. Patch is needed to e.g., enable spectral scan and mus...
Definition: SX126x.cpp:1452
-int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Available in FSK mode only. Serves only as alias for PhysicalLayer compat...
Definition: SX126x.cpp:1366
-void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX126x.cpp:1374
+int16_t startChannelScan(uint8_t symbolNum=RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detPeak=RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detMin=RADIOLIB_SX126X_CAD_PARAM_DEFAULT)
Interrupt-driven channel activity detection method. DIO0 will be activated when LoRa preamble is dete...
Definition: SX126x.cpp:695
+int16_t startReceive()
Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalL...
Definition: SX126x.cpp:542
+int16_t setDataShaping(uint8_t sh) override
Sets time-bandwidth product of Gaussian filter applied for shaping. Allowed values are RADIOLIB_SHAPI...
Definition: SX126x.cpp:1010
+int16_t setRegulatorLDO()
Set regulator mode to LDO.
Definition: SX126x.cpp:1362
+int16_t invertIQ(bool enable)
Enable/disable inversion of the I and Q signals.
Definition: SX126x.cpp:1432
+int16_t uploadPatch(const uint32_t *patch, size_t len, bool nonvolatile=true)
Upload binary patch into the SX126x device RAM. Patch is needed to e.g., enable spectral scan and mus...
Definition: SX126x.cpp:1456
+int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Available in FSK mode only. Serves only as alias for PhysicalLayer compat...
Definition: SX126x.cpp:1370
+void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX126x.cpp:1378
int16_t beginFSK(float br, float freqDev, float rxBw, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO=false)
Initialization method for FSK modem.
Definition: SX126x.cpp:97
-int16_t setBandwidth(float bw)
Sets LoRa bandwidth. Allowed values are 7.8, 10.4, 15.6, 20.8, 31.25, 41.7, 62.5, 125....
Definition: SX126x.cpp:738
-virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:205
-int16_t explicitHeader()
Set explicit header mode for future reception/transmission.
Definition: SX126x.cpp:1354
-int16_t forceLDRO(bool enable)
Forces LoRa low data rate optimization. Only available in LoRa mode. After calling this method,...
Definition: SX126x.cpp:1378
+int16_t setBandwidth(float bw)
Sets LoRa bandwidth. Allowed values are 7.8, 10.4, 15.6, 20.8, 31.25, 41.7, 62.5, 125....
Definition: SX126x.cpp:742
+virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
+int16_t explicitHeader()
Set explicit header mode for future reception/transmission.
Definition: SX126x.cpp:1358
+int16_t forceLDRO(bool enable)
Forces LoRa low data rate optimization. Only available in LoRa mode. After calling this method,...
Definition: SX126x.cpp:1382
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-int16_t setNodeAddress(uint8_t nodeAddr)
Sets node address. Calling this method will also enable address filtering for node address only.
Definition: SX126x.cpp:1086
-int16_t spectralScanGetStatus()
Read the status of spectral scan.
Definition: SX126x.cpp:1519
-int16_t setTCXO(float voltage, uint32_t delay=5000)
Sets TCXO (Temperature Compensated Crystal Oscillator) configuration.
Definition: SX126x.cpp:1539
-int16_t setRxBandwidth(float rxBw)
Sets FSK receiver bandwidth. Allowed values are 4.8, 5.8, 7.3, 9.7, 11.7, 14.6, 19....
Definition: SX126x.cpp:906
-int16_t setRegulatorDCDC()
Set regulator mode to DC-DC.
Definition: SX126x.cpp:1362
-int16_t startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)
Interrupt-driven receive method where the device mostly sleeps and periodically wakes to listen....
Definition: SX126x.cpp:556
-int16_t setWhitening(bool enabled, uint16_t initial=0x0100)
Sets FSK whitening parameters.
Definition: SX126x.cpp:1190
+int16_t setNodeAddress(uint8_t nodeAddr)
Sets node address. Calling this method will also enable address filtering for node address only.
Definition: SX126x.cpp:1090
+int16_t spectralScanGetStatus()
Read the status of spectral scan.
Definition: SX126x.cpp:1523
+int16_t setTCXO(float voltage, uint32_t delay=5000)
Sets TCXO (Temperature Compensated Crystal Oscillator) configuration.
Definition: SX126x.cpp:1543
+int16_t setRxBandwidth(float rxBw)
Sets FSK receiver bandwidth. Allowed values are 4.8, 5.8, 7.3, 9.7, 11.7, 14.6, 19....
Definition: SX126x.cpp:910
+int16_t setRegulatorDCDC()
Set regulator mode to DC-DC.
Definition: SX126x.cpp:1366
+int16_t startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)
Interrupt-driven receive method where the device mostly sleeps and periodically wakes to listen....
Definition: SX126x.cpp:560
+int16_t setWhitening(bool enabled, uint16_t initial=0x0100)
Sets FSK whitening parameters.
Definition: SX126x.cpp:1194
void clearDio1Action()
Clears interrupt service routine to call when DIO1 activates.
Definition: SX126x.cpp:469
int16_t scanChannel(uint8_t symbolNum=RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detPeak=RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detMin=RADIOLIB_SX126X_CAD_PARAM_DEFAULT)
Performs scan for LoRa transmission in the current channel. Detects both preamble and payload.
Definition: SX126x.cpp:418
int16_t standby() override
Sets the module to standby mode (overload for PhysicalLayer compatibility, uses 13 MHz RC oscillator)...
Definition: SX126x.cpp:448
-int16_t setFrequencyDeviation(float freqDev) override
Sets FSK frequency deviation. Allowed values range from 0.0 to 200.0 kHz.
Definition: SX126x.cpp:861
-int16_t setBitRate(float br)
Sets FSK bit rate. Allowed values range from 0.6 to 300.0 kbps.
Definition: SX126x.cpp:885
-uint32_t getTimeOnAir(size_t len)
Get expected time-on-air for a given size of payload.
Definition: SX126x.cpp:1315
-uint8_t randomByte()
Get one truly random byte from RSSI noise.
Definition: SX126x.cpp:1399
-void spectralScanAbort()
Abort an ongoing spectral scan.
Definition: SX126x.cpp:1515
+int16_t setFrequencyDeviation(float freqDev) override
Sets FSK frequency deviation. Allowed values range from 0.0 to 200.0 kHz.
Definition: SX126x.cpp:865
+int16_t setBitRate(float br)
Sets FSK bit rate. Allowed values range from 0.6 to 300.0 kbps.
Definition: SX126x.cpp:889
+uint32_t getTimeOnAir(size_t len)
Get expected time-on-air for a given size of payload.
Definition: SX126x.cpp:1319
+uint8_t randomByte()
Get one truly random byte from RSSI noise.
Definition: SX126x.cpp:1403
+void spectralScanAbort()
Abort an ongoing spectral scan.
Definition: SX126x.cpp:1519
int16_t receiveDirect() override
Starts direct mode reception. Only implemented for PhysicalLayer compatibility, as SX126x series does...
Definition: SX126x.cpp:344
-int16_t spectralScanStart(uint16_t numSamples, uint8_t window=RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval=RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US)
Start spectral scan. Requires binary path to be uploaded.
Definition: SX126x.cpp:1499
-void readBit(uint32_t pin)
Function to read and process data bit in direct reception mode.
Definition: SX126x.cpp:1447
+int16_t spectralScanStart(uint16_t numSamples, uint8_t window=RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval=RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US)
Start spectral scan. Requires binary path to be uploaded.
Definition: SX126x.cpp:1503
+void readBit(uint32_t pin)
Function to read and process data bit in direct reception mode.
Definition: SX126x.cpp:1451
int16_t finishTransmit() override
Clean up after transmission is done.
Definition: SX126x.cpp:534
-int16_t setCurrentLimit(float currentLimit)
Sets current protection limit. Can be set in 2.5 mA steps.
Definition: SX126x.cpp:826
-int16_t setRxBoostedGainMode(bool rxbgm, bool persist=true)
Enables or disables Rx Boosted Gain mode as described in SX126x datasheet section 9....
Definition: SX126x.cpp:969
+int16_t setCurrentLimit(float currentLimit)
Sets current protection limit. Can be set in 2.5 mA steps.
Definition: SX126x.cpp:830
+int16_t setRxBoostedGainMode(bool rxbgm, bool persist=true)
Enables or disables Rx Boosted Gain mode as described in SX126x datasheet section 9....
Definition: SX126x.cpp:973
int16_t transmitDirect(uint32_t frf=0) override
Starts direct mode transmission.
Definition: SX126x.cpp:328
-int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:145
-int16_t variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)
Set modem in variable packet length mode. Available in FSK mode only.
Definition: SX126x.cpp:1311
+int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
+int16_t variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)
Set modem in variable packet length mode. Available in FSK mode only.
Definition: SX126x.cpp:1315
int16_t begin(uint8_t cr, uint8_t syncWord, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO=false)
Initialization method for LoRa modem.
Definition: SX126x.cpp:15
-int16_t setCRC(uint8_t len, uint16_t initial=0x1D0F, uint16_t polynomial=0x1021, bool inverted=true)
Sets CRC configuration.
Definition: SX126x.cpp:1131
-uint16_t getIrqStatus()
Reads the current IRQ status.
Definition: SX126x.cpp:1695
+int16_t setCRC(uint8_t len, uint16_t initial=0x1D0F, uint16_t polynomial=0x1021, bool inverted=true)
Sets CRC configuration.
Definition: SX126x.cpp:1135
+uint16_t getIrqStatus()
Reads the current IRQ status.
Definition: SX126x.cpp:1699
int16_t reset(bool verify=true)
Reset method. Will reset the chip to the default state using RST pin.
Definition: SX126x.cpp:191
-int16_t setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)
Sets LoRa sync word.
Definition: SX126x.cpp:815
-float getCurrentLimit()
Reads current protection limit.
Definition: SX126x.cpp:839
+int16_t setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)
Sets LoRa sync word.
Definition: SX126x.cpp:819
+float getCurrentLimit()
Reads current protection limit.
Definition: SX126x.cpp:843
SX126x(Module *mod)
Default constructor.
Definition: SX126x.cpp:6
-int16_t setPreambleLength(uint16_t preambleLength)
Sets preamble length for LoRa or FSK modem. Allowed values range from 1 to 65535.
Definition: SX126x.cpp:848
+int16_t setPreambleLength(uint16_t preambleLength)
Sets preamble length for LoRa or FSK modem. Allowed values range from 1 to 65535.
Definition: SX126x.cpp:852
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
-int16_t autoLDRO()
Re-enables automatic LDRO configuration. Only available in LoRa mode. After calling this method,...
Definition: SX126x.cpp:1390
-void setDirectAction(void(*func)(void))
Set interrupt service routine function to call when data bit is receveid in direct mode.
Definition: SX126x.cpp:1443
-int16_t fixedPacketLengthMode(uint8_t len=RADIOLIB_SX126X_MAX_PACKET_LENGTH)
Set modem in fixed packet length mode. Available in FSK mode only.
Definition: SX126x.cpp:1307
-int16_t setBroadcastAddress(uint8_t broadAddr)
Sets broadcast address. Calling this method will also enable address filtering for node and broadcast...
Definition: SX126x.cpp:1103
-int16_t getChannelScanResult()
Read the channel scan result.
Definition: SX126x.cpp:717
-size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: SX126x.cpp:1294
-int16_t setSyncBits(uint8_t *syncWord, uint8_t bitsLen)
Sets FSK sync word in the form of array of up to 8 bytes.
Definition: SX126x.cpp:1059
-float getDataRate() const
Gets effective data rate for the last transmitted packet. The value is calculated only for payload by...
Definition: SX126x.cpp:1227
+int16_t autoLDRO()
Re-enables automatic LDRO configuration. Only available in LoRa mode. After calling this method,...
Definition: SX126x.cpp:1394
+void setDirectAction(void(*func)(void))
Set interrupt service routine function to call when data bit is receveid in direct mode.
Definition: SX126x.cpp:1447
+int16_t fixedPacketLengthMode(uint8_t len=RADIOLIB_SX126X_MAX_PACKET_LENGTH)
Set modem in fixed packet length mode. Available in FSK mode only.
Definition: SX126x.cpp:1311
+int16_t setBroadcastAddress(uint8_t broadAddr)
Sets broadcast address. Calling this method will also enable address filtering for node and broadcast...
Definition: SX126x.cpp:1107
+int16_t getChannelScanResult()
Read the channel scan result.
Definition: SX126x.cpp:721
+size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: SX126x.cpp:1298
+int16_t setSyncBits(uint8_t *syncWord, uint8_t bitsLen)
Sets FSK sync word in the form of array of up to 8 bytes.
Definition: SX126x.cpp:1063
+float getDataRate() const
Gets effective data rate for the last transmitted packet. The value is calculated only for payload by...
Definition: SX126x.cpp:1231
bool XTAL
Whether the module has an XTAL (true) or TCXO (false). Defaults to false.
Definition: SX126x.h:462
-int16_t implicitHeader(size_t len)
Set implicit header mode for future reception/transmission.
Definition: SX126x.cpp:1350
-float getSNR()
Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem.
Definition: SX126x.cpp:1245
-int16_t setDio2AsRfSwitch(bool enable=true)
Set DIO2 to function as RF switch (default in Semtech example designs).
Definition: SX126x.cpp:1592
-int16_t spectralScanGetResult(uint16_t *results)
Read the result of spectral scan.
Definition: SX126x.cpp:1527
-int16_t setSpreadingFactor(uint8_t sf)
Sets LoRa spreading factor. Allowed values range from 5 to 12.
Definition: SX126x.cpp:789
-int16_t disableAddressFiltering()
Disables address filtering. Calling this method will also erase previously set addresses.
Definition: SX126x.cpp:1120
-int16_t setCodingRate(uint8_t cr)
Sets LoRa coding rate denominator. Allowed values range from 5 to 8.
Definition: SX126x.cpp:802
+int16_t implicitHeader(size_t len)
Set implicit header mode for future reception/transmission.
Definition: SX126x.cpp:1354
+float getSNR()
Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem.
Definition: SX126x.cpp:1249
+int16_t setDio2AsRfSwitch(bool enable=true)
Set DIO2 to function as RF switch (default in Semtech example designs).
Definition: SX126x.cpp:1596
+int16_t spectralScanGetResult(uint16_t *results)
Read the result of spectral scan.
Definition: SX126x.cpp:1531
+int16_t setSpreadingFactor(uint8_t sf)
Sets LoRa spreading factor. Allowed values range from 5 to 12.
Definition: SX126x.cpp:793
+int16_t disableAddressFiltering()
Disables address filtering. Calling this method will also erase previously set addresses.
Definition: SX126x.cpp:1124
+int16_t setCodingRate(uint8_t cr)
Sets LoRa coding rate denominator. Allowed values range from 5 to 8.
Definition: SX126x.cpp:806
diff --git a/_s_x1272_8h_source.html b/_s_x1272_8h_source.html
index b2d3f2fa..40a58e3f 100644
--- a/_s_x1272_8h_source.html
+++ b/_s_x1272_8h_source.html
@@ -244,7 +244,7 @@ $(document).ready(function(){initNavTree('_s_x1272_8h_source.html',''); initResi
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:31
-virtual float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: PhysicalLayer.cpp:254
+virtual float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: PhysicalLayer.cpp:258
Derived class for SX1272 modules. Also used as base class for SX1273. Both modules use the same basic...
Definition: SX1272.h:94
void reset() override
Reset method. Will reset the chip to the default state using RST pin.
Definition: SX1272.cpp:74
int16_t setBandwidth(float bw)
Sets LoRa link bandwidth. Allowed values are 125, 250 and 500 kHz. Only available in LoRa mode.
Definition: SX1272.cpp:93
diff --git a/_s_x1278_8h_source.html b/_s_x1278_8h_source.html
index f2c86fd4..4af1f4d5 100644
--- a/_s_x1278_8h_source.html
+++ b/_s_x1278_8h_source.html
@@ -253,7 +253,7 @@ $(document).ready(function(){initNavTree('_s_x1278_8h_source.html',''); initResi
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:31
-virtual float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: PhysicalLayer.cpp:254
+virtual float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: PhysicalLayer.cpp:258
Derived class for SX1278 modules. Also used as base class for SX1276, SX1277, SX1279,...
Definition: SX1278.h:103
SX1278(Module *mod)
Default constructor. Called from Arduino sketch when creating new LoRa instance.
Definition: SX1278.cpp:5
int16_t setDataShapingOOK(uint8_t sh)
Sets filter cutoff frequency that will be used for data shaping. Allowed values are 1 for frequency e...
Definition: SX1278.cpp:356
diff --git a/_s_x127x_8h_source.html b/_s_x127x_8h_source.html
index 487db109..506999f0 100644
--- a/_s_x127x_8h_source.html
+++ b/_s_x127x_8h_source.html
@@ -727,245 +727,247 @@ $(document).ready(function(){initNavTree('_s_x127x_8h_source.html',''); initResi
766 int16_t
startTransmit (uint8_t* data,
size_t len, uint8_t addr = 0)
override ;
-
- 780 int16_t
startReceive (uint8_t len = 0, uint8_t mode = RADIOLIB_SX127X_RXCONTINUOUS);
-
- 790 int16_t
startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask,
size_t len);
-
- 799 int16_t
readData (uint8_t* data,
size_t len)
override ;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 882 int16_t
setAFC (
bool isEnabled);
-
-
-
- 897 int16_t
setSyncWord (uint8_t* syncWord,
size_t len);
+
+
+
+
+
+ 798 int16_t
startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask,
size_t len);
+
+ 807 int16_t
readData (uint8_t* data,
size_t len)
override ;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 890 int16_t
setAFC (
bool isEnabled);
+
+
-
-
-
-
-
-
- 924 int16_t
setOOK (
bool enableOOK);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1008 int16_t
setRSSIConfig (uint8_t smoothingSamples, int8_t offset = 0);
-
-
+ 905 int16_t
setSyncWord (uint8_t* syncWord,
size_t len);
+
+
+
+
+
+
+
+ 932 int16_t
setOOK (
bool enableOOK);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1016 int16_t
setRSSIConfig (uint8_t smoothingSamples, int8_t offset = 0);
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1064 #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1072 #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 1123 float getRSSI (
bool packet,
bool skipReceive, int16_t offset);
+
+
+
-
-
- 1132 #if !defined(RADIOLIB_GODMODE) && !defined(RADIOLIB_LOW_LEVEL)
-
-
-
-
- 1137 #if !defined(RADIOLIB_GODMODE)
-
-
-
- 1141 float frequency = 0;
- 1142 float bandwidth = 0;
- 1143 uint8_t spreadingFactor = 0;
- 1144 uint8_t codingRate = 0;
-
- 1146 bool ookEnabled =
false ;
- 1147 bool crcEnabled =
false ;
-
- 1149 size_t packetLength = 0;
-
- 1151 int16_t setFrequencyRaw(
float newFreq);
- 1152 int16_t setBitRateCommon(
float br, uint8_t fracRegAddr);
-
- 1154 int16_t configFSK();
- 1155 int16_t getActiveModem();
- 1156 int16_t directMode();
- 1157 int16_t setPacketMode(uint8_t mode, uint8_t len);
+ 1131 float getRSSI (
bool packet,
bool skipReceive, int16_t offset);
+
+
+
+ 1140 #if !defined(RADIOLIB_GODMODE) && !defined(RADIOLIB_LOW_LEVEL)
+
+
+
+
+ 1145 #if !defined(RADIOLIB_GODMODE)
+
+
+
+ 1149 float frequency = 0;
+ 1150 float bandwidth = 0;
+ 1151 uint8_t spreadingFactor = 0;
+ 1152 uint8_t codingRate = 0;
+
+ 1154 bool ookEnabled =
false ;
+ 1155 bool crcEnabled =
false ;
+
+ 1157 size_t packetLength = 0;
- 1159 #if !defined(RADIOLIB_GODMODE)
-
-
-
- 1163 bool packetLengthQueried =
false ;
- 1164 uint8_t packetLengthConfig = RADIOLIB_SX127X_PACKET_VARIABLE;
-
- 1166 bool findChip(uint8_t ver);
- 1167 int16_t setMode(uint8_t mode);
- 1168 int16_t setActiveModem(uint8_t modem);
- 1169 void clearIRQFlags();
- 1170 void clearFIFO(
size_t count);
-
- 1177 static uint8_t calculateBWManExp(
float bandwidth);
-
- 1179 virtual void errataFix(
bool rx) = 0;
-
-
-
-
-
+ 1159 int16_t setFrequencyRaw(
float newFreq);
+ 1160 int16_t setBitRateCommon(
float br, uint8_t fracRegAddr);
+
+ 1162 int16_t configFSK();
+ 1163 int16_t getActiveModem();
+ 1164 int16_t directMode();
+ 1165 int16_t setPacketMode(uint8_t mode, uint8_t len);
+
+ 1167 #if !defined(RADIOLIB_GODMODE)
+
+
+
+ 1171 bool packetLengthQueried =
false ;
+ 1172 uint8_t packetLengthConfig = RADIOLIB_SX127X_PACKET_VARIABLE;
+
+ 1174 bool findChip(uint8_t ver);
+ 1175 int16_t setMode(uint8_t mode);
+ 1176 int16_t setActiveModem(uint8_t modem);
+ 1177 void clearIRQFlags();
+ 1178 void clearFIFO(
size_t count);
+
+ 1185 static uint8_t calculateBWManExp(
float bandwidth);
+
+ 1187 virtual void errataFix(
bool rx) = 0;
+
+
+
+
+
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:31
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code.
Definition: Module.h:42
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:15
-virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:205
+virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:145
-virtual float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: PhysicalLayer.cpp:254
+int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
+virtual float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: PhysicalLayer.cpp:258
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
Base class for SX127x series. All derived classes for SX127x (e.g. SX1278 or SX1272) inherit from thi...
Definition: SX127x.h:582
int16_t packetMode()
Disables direct mode and enables packet mode, allowing the module to receive packets....
Definition: SX127x.cpp:360
-void clearFifoFullAction()
Clears interrupt service routine to call when FIFO is full.
Definition: SX127x.cpp:469
-int16_t setDIOMapping(uint32_t pin, uint32_t value)
Configure DIO pin mapping to get a given signal on a DIO pin (if available).
Definition: SX127x.cpp:1537
-int16_t setOokFixedOrFloorThreshold(uint8_t value)
Fixed threshold for the Data Slicer in OOK mode or floor threshold for the Data Slicer in OOK when Pe...
Definition: SX127x.cpp:1033
-int16_t enableBitSync()
Enable Bit synchronizer.
Definition: SX127x.cpp:1057
-void readBit(uint32_t pin)
Function to read and process data bit in direct reception mode.
Definition: SX127x.cpp:1511
-int16_t variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)
Set modem in variable packet length mode. Available in FSK mode only.
Definition: SX127x.cpp:1137
-int16_t startChannelScan()
Interrupt-driven channel activity detection method. DIO0 will be activated when LoRa preamble is dete...
Definition: SX127x.cpp:650
-int16_t invertIQ(bool invertIQ)
Enable/disable inversion of the I and Q signals.
Definition: SX127x.cpp:1486
-void setFifoFullAction(void(*func)(void))
Set interrupt service routine function to call when FIFO is full.
Definition: SX127x.cpp:460
-int16_t setOOK(bool enableOOK)
Enables/disables OOK modulation instead of FSK.
Definition: SX127x.cpp:1065
-bool fifoGet(volatile uint8_t *data, int totalLen, volatile int *rcvLen)
Set interrupt service routine function to call when FIFO is sufficently full to read.
Definition: SX127x.cpp:497
-int16_t setRxBandwidth(float rxBw)
Sets FSK receiver bandwidth. Allowed values range from 2.6 to 250 kHz. Only available in FSK mode.
Definition: SX127x.cpp:903
-uint8_t getModemStatus()
Reads modem status. Only available in LoRa mode.
Definition: SX127x.cpp:1260
+void clearFifoFullAction()
Clears interrupt service routine to call when FIFO is full.
Definition: SX127x.cpp:473
+int16_t setDIOMapping(uint32_t pin, uint32_t value)
Configure DIO pin mapping to get a given signal on a DIO pin (if available).
Definition: SX127x.cpp:1541
+int16_t setOokFixedOrFloorThreshold(uint8_t value)
Fixed threshold for the Data Slicer in OOK mode or floor threshold for the Data Slicer in OOK when Pe...
Definition: SX127x.cpp:1037
+int16_t enableBitSync()
Enable Bit synchronizer.
Definition: SX127x.cpp:1061
+void readBit(uint32_t pin)
Function to read and process data bit in direct reception mode.
Definition: SX127x.cpp:1515
+int16_t variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)
Set modem in variable packet length mode. Available in FSK mode only.
Definition: SX127x.cpp:1141
+int16_t startChannelScan()
Interrupt-driven channel activity detection method. DIO0 will be activated when LoRa preamble is dete...
Definition: SX127x.cpp:654
+int16_t invertIQ(bool invertIQ)
Enable/disable inversion of the I and Q signals.
Definition: SX127x.cpp:1490
+void setFifoFullAction(void(*func)(void))
Set interrupt service routine function to call when FIFO is full.
Definition: SX127x.cpp:464
+int16_t setOOK(bool enableOOK)
Enables/disables OOK modulation instead of FSK.
Definition: SX127x.cpp:1069
+bool fifoGet(volatile uint8_t *data, int totalLen, volatile int *rcvLen)
Set interrupt service routine function to call when FIFO is sufficently full to read.
Definition: SX127x.cpp:501
+int16_t setRxBandwidth(float rxBw)
Sets FSK receiver bandwidth. Allowed values range from 2.6 to 250 kHz. Only available in FSK mode.
Definition: SX127x.cpp:907
+uint8_t getModemStatus()
Reads modem status. Only available in LoRa mode.
Definition: SX127x.cpp:1264
virtual void reset()=0
Reset method. Will reset the chip to the default state using RST pin. Declared pure virtual since SX1...
-virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:205
-bool fifoAdd(uint8_t *data, int totalLen, int *remLen)
Set interrupt service routine function to call when FIFO is empty.
Definition: SX127x.cpp:474
-int16_t setCurrentLimit(uint8_t currentLimit)
Sets current limit for over current protection at transmitter amplifier. Allowed values range from 45...
Definition: SX127x.cpp:688
-void clearFHSSInt(void)
Clear the FHSS interrupt.
Definition: SX127x.cpp:1528
-int16_t setAFC(bool isEnabled)
Enables or disables FSK automatic frequency correction(AFC)
Definition: SX127x.cpp:935
+virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
+bool fifoAdd(uint8_t *data, int totalLen, int *remLen)
Set interrupt service routine function to call when FIFO is empty.
Definition: SX127x.cpp:478
+int16_t setCurrentLimit(uint8_t currentLimit)
Sets current limit for over current protection at transmitter amplifier. Allowed values range from 45...
Definition: SX127x.cpp:692
+void clearFHSSInt(void)
Clear the FHSS interrupt.
Definition: SX127x.cpp:1532
+int16_t setAFC(bool isEnabled)
Enables or disables FSK automatic frequency correction(AFC)
Definition: SX127x.cpp:939
int16_t sleep()
Sets the LoRa module to sleep to save power. Module will not be able to transmit or receive any data ...
Definition: SX127x.cpp:273
-int16_t setFrequencyDeviation(float freqDev) override
Sets FSK frequency deviation from carrier frequency. Allowed values depend on bit rate setting and mu...
Definition: SX127x.cpp:861
-size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: SX127x.cpp:1105
-int16_t setOokPeakThresholdStep(uint8_t value)
Size of each decrement of the RSSI threshold in the OOK demodulator.
Definition: SX127x.cpp:1049
+int16_t setFrequencyDeviation(float freqDev) override
Sets FSK frequency deviation from carrier frequency. Allowed values depend on bit rate setting and mu...
Definition: SX127x.cpp:865
+size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: SX127x.cpp:1109
+int16_t setOokPeakThresholdStep(uint8_t value)
Size of each decrement of the RSSI threshold in the OOK demodulator.
Definition: SX127x.cpp:1053
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-float getAFCError()
Gets current AFC error.
Definition: SX127x.cpp:794
-int16_t setRSSIThreshold(float dbm)
Sets the RSSI value above which the RSSI interrupt is signaled.
Definition: SX127x.cpp:1197
-uint8_t getFHSSChannel(void)
Gets the FHSS channel in use.
Definition: SX127x.cpp:1524
+float getAFCError()
Gets current AFC error.
Definition: SX127x.cpp:798
+int16_t setRSSIThreshold(float dbm)
Sets the RSSI value above which the RSSI interrupt is signaled.
Definition: SX127x.cpp:1201
+uint8_t getFHSSChannel(void)
Gets the FHSS channel in use.
Definition: SX127x.cpp:1528
int16_t begin(uint8_t chipVersion, uint8_t syncWord, uint16_t preambleLength)
Initialization method. Will be called with appropriate parameters when calling initialization method ...
Definition: SX127x.cpp:13
-int16_t setAFCBandwidth(float afcBw)
Sets FSK automatic frequency correction bandwidth. Allowed values range from 2.6 to 250 kHz....
Definition: SX127x.cpp:919
-uint8_t randomByte()
Get one truly random byte from RSSI noise.
Definition: SX127x.cpp:1278
-int16_t fixedPacketLengthMode(uint8_t len=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)
Set modem in fixed packet length mode. Available in FSK mode only.
Definition: SX127x.cpp:1133
-void setFifoEmptyAction(void(*func)(void))
Set interrupt service routine function to call when FIFO is empty.
Definition: SX127x.cpp:451
-void clearDio0Action()
Clears interrupt service routine to call when DIO0 activates.
Definition: SX127x.cpp:433
+int16_t setAFCBandwidth(float afcBw)
Sets FSK automatic frequency correction bandwidth. Allowed values range from 2.6 to 250 kHz....
Definition: SX127x.cpp:923
+uint8_t randomByte()
Get one truly random byte from RSSI noise.
Definition: SX127x.cpp:1282
+int16_t fixedPacketLengthMode(uint8_t len=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)
Set modem in fixed packet length mode. Available in FSK mode only.
Definition: SX127x.cpp:1137
+void setFifoEmptyAction(void(*func)(void))
Set interrupt service routine function to call when FIFO is empty.
Definition: SX127x.cpp:455
+void clearDio0Action()
Clears interrupt service routine to call when DIO0 activates.
Definition: SX127x.cpp:437
int16_t beginFSK(uint8_t chipVersion, 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:60
int16_t standby() override
Sets the LoRa module to standby.
Definition: SX127x.cpp:281
-void setDio1Action(void(*func)(void), uint32_t dir)
Set interrupt service routine function to call when DIO1 activates.
Definition: SX127x.cpp:437
-int16_t setDIOPreambleDetect(bool usePreambleDetect)
Configure DIO mapping to use RSSI or Preamble Detect for pins that support it.
Definition: SX127x.cpp:1547
-int16_t setFHSSHoppingPeriod(uint8_t freqHoppingPeriod)
Sets the hopping period and enables FHSS.
Definition: SX127x.cpp:1516
-int16_t finishTransmit() override
Clean up after transmission is done.
Definition: SX127x.cpp:591
-int16_t disableBitSync()
Disable Bit synchronizer (not allowed in Packet mode).
Definition: SX127x.cpp:1061
-int16_t setOokThresholdType(uint8_t type)
Selects the type of threshold in the OOK data slicer.
Definition: SX127x.cpp:1025
-void setRfSwitchPins(uint32_t rxEn, uint32_t txEn)
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX127x.cpp:1270
-int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:145
-int8_t getTempRaw()
Reads uncalibrated temperature value. This function will change operating mode and should not be call...
Definition: SX127x.cpp:1307
-void clearDio1Action()
Clears interrupt service routine to call when DIO1 activates.
Definition: SX127x.cpp:444
-void setDirectAction(void(*func)(void))
Set interrupt service routine function to call when data bit is receveid in direct mode.
Definition: SX127x.cpp:1507
+void setDio1Action(void(*func)(void), uint32_t dir)
Set interrupt service routine function to call when DIO1 activates.
Definition: SX127x.cpp:441
+int16_t setDIOPreambleDetect(bool usePreambleDetect)
Configure DIO mapping to use RSSI or Preamble Detect for pins that support it.
Definition: SX127x.cpp:1551
+int16_t setFHSSHoppingPeriod(uint8_t freqHoppingPeriod)
Sets the hopping period and enables FHSS.
Definition: SX127x.cpp:1520
+int16_t finishTransmit() override
Clean up after transmission is done.
Definition: SX127x.cpp:595
+int16_t disableBitSync()
Disable Bit synchronizer (not allowed in Packet mode).
Definition: SX127x.cpp:1065
+int16_t setOokThresholdType(uint8_t type)
Selects the type of threshold in the OOK data slicer.
Definition: SX127x.cpp:1029
+void setRfSwitchPins(uint32_t rxEn, uint32_t txEn)
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX127x.cpp:1274
+int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
+int8_t getTempRaw()
Reads uncalibrated temperature value. This function will change operating mode and should not be call...
Definition: SX127x.cpp:1311
+void clearDio1Action()
Clears interrupt service routine to call when DIO1 activates.
Definition: SX127x.cpp:448
+void setDirectAction(void(*func)(void))
Set interrupt service routine function to call when data bit is receveid in direct mode.
Definition: SX127x.cpp:1511
int16_t receiveDirect() override
Enables direct reception mode on pins DIO1 (clock) and DIO2 (data). While in direct mode,...
Definition: SX127x.cpp:323
-void clearFifoEmptyAction()
Clears interrupt service routine to call when FIFO is empty.
Definition: SX127x.cpp:456
-int16_t setOokPeakThresholdDecrement(uint8_t value)
Period of decrement of the RSSI threshold in the OOK demodulator.
Definition: SX127x.cpp:1041
-int16_t setAFCAGCTrigger(uint8_t trigger)
Controls trigger of AFC and AGC.
Definition: SX127x.cpp:945
-int16_t setCrcFiltering(bool enable=true)
Enable CRC filtering and generation.
Definition: SX127x.cpp:1187
-int16_t setPreambleLength(uint16_t preambleLength)
Sets LoRa or FSK preamble length. Allowed values range from 6 to 65535 in LoRa mode or 0 to 65535 in ...
Definition: SX127x.cpp:712
+void clearFifoEmptyAction()
Clears interrupt service routine to call when FIFO is empty.
Definition: SX127x.cpp:460
+int16_t setOokPeakThresholdDecrement(uint8_t value)
Period of decrement of the RSSI threshold in the OOK demodulator.
Definition: SX127x.cpp:1045
+int16_t setAFCAGCTrigger(uint8_t trigger)
Controls trigger of AFC and AGC.
Definition: SX127x.cpp:949
+int16_t setCrcFiltering(bool enable=true)
Enable CRC filtering and generation.
Definition: SX127x.cpp:1191
+int16_t setPreambleLength(uint16_t preambleLength)
Sets LoRa or FSK preamble length. Allowed values range from 6 to 65535 in LoRa mode or 0 to 65535 in ...
Definition: SX127x.cpp:716
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
-void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX127x.cpp:1274
-int16_t setNodeAddress(uint8_t nodeAddr)
Sets FSK node address. Calling this method will enable address filtering. Only available in FSK mode.
Definition: SX127x.cpp:979
-int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Only available in FSK mode. Allowed values are RADIOLIB_ENCODING_NRZ,...
Definition: SX127x.cpp:1226
-float getSNR()
Gets signal-to-noise ratio of the latest received packet. Only available in LoRa mode.
Definition: SX127x.cpp:810
-int16_t setBroadcastAddress(uint8_t broadAddr)
Sets FSK broadcast address. Calling this method will enable address filtering. Only available in FSK ...
Definition: SX127x.cpp:993
-int16_t setSyncWord(uint8_t syncWord)
Sets LoRa sync word. Only available in LoRa mode.
Definition: SX127x.cpp:675
-uint16_t getIRQFlags()
Reads currently active IRQ flags, can be used to check which event caused an interrupt....
Definition: SX127x.cpp:1245
+void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX127x.cpp:1278
+int16_t setNodeAddress(uint8_t nodeAddr)
Sets FSK node address. Calling this method will enable address filtering. Only available in FSK mode.
Definition: SX127x.cpp:983
+int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Only available in FSK mode. Allowed values are RADIOLIB_ENCODING_NRZ,...
Definition: SX127x.cpp:1230
+float getSNR()
Gets signal-to-noise ratio of the latest received packet. Only available in LoRa mode.
Definition: SX127x.cpp:814
+int16_t setBroadcastAddress(uint8_t broadAddr)
Sets FSK broadcast address. Calling this method will enable address filtering. Only available in FSK ...
Definition: SX127x.cpp:997
+int16_t setSyncWord(uint8_t syncWord)
Sets LoRa sync word. Only available in LoRa mode.
Definition: SX127x.cpp:679
+uint16_t getIRQFlags()
Reads currently active IRQ flags, can be used to check which event caused an interrupt....
Definition: SX127x.cpp:1249
SX127x(Module *mod)
Default constructor. Called internally when creating new LoRa instance.
Definition: SX127x.cpp:5
-int16_t setRSSIConfig(uint8_t smoothingSamples, int8_t offset=0)
Sets RSSI measurement configuration in FSK mode.
Definition: SX127x.cpp:1203
-uint32_t getTimeOnAir(size_t len)
Get expected time-on-air for a given size of payload.
Definition: SX127x.cpp:1141
-uint8_t getFHSSHoppingPeriod(void)
Gets FHSS hopping period.
Definition: SX127x.cpp:1520
+int16_t setRSSIConfig(uint8_t smoothingSamples, int8_t offset=0)
Sets RSSI measurement configuration in FSK mode.
Definition: SX127x.cpp:1207
+uint32_t getTimeOnAir(size_t len)
Get expected time-on-air for a given size of payload.
Definition: SX127x.cpp:1145
+uint8_t getFHSSHoppingPeriod(void)
Gets FHSS hopping period.
Definition: SX127x.cpp:1524
int16_t scanChannel()
Performs scan for valid LoRa preamble in the current channel.
Definition: SX127x.cpp:257
-float getDataRate() const
Get data rate of the latest transmitted packet.
Definition: SX127x.cpp:821
-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:369
-void setDio0Action(void(*func)(void), uint32_t dir)
Set interrupt service routine function to call when DIO0 activates.
Definition: SX127x.cpp:429
-int16_t getChipVersion()
Read version SPI register. Should return SX1278_CHIP_VERSION (0x12) or SX1272_CHIP_VERSION (0x22) if ...
Definition: SX127x.cpp:1303
+float getDataRate() const
Get data rate of the latest transmitted packet.
Definition: SX127x.cpp:825
+void setDio0Action(void(*func)(void), uint32_t dir)
Set interrupt service routine function to call when DIO0 activates.
Definition: SX127x.cpp:433
+int16_t startReceive()
Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalL...
Definition: SX127x.cpp:369
+int16_t getChipVersion()
Read version SPI register. Should return SX1278_CHIP_VERSION (0x12) or SX1272_CHIP_VERSION (0x22) if ...
Definition: SX127x.cpp:1307
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:294
-float getFrequencyError(bool autoCorrect=false)
Gets frequency error of the latest received packet.
Definition: SX127x.cpp:741
-int16_t disableAddressFiltering()
Disables FSK address filtering.
Definition: SX127x.cpp:1007
+float getFrequencyError(bool autoCorrect=false)
Gets frequency error of the latest received packet.
Definition: SX127x.cpp:745
+int16_t disableAddressFiltering()
Disables FSK address filtering.
Definition: SX127x.cpp:1011
diff --git a/_s_x128x_8h_source.html b/_s_x128x_8h_source.html
index b48a0a82..16a2ebe2 100644
--- a/_s_x128x_8h_source.html
+++ b/_s_x128x_8h_source.html
@@ -479,205 +479,207 @@ $(document).ready(function(){initNavTree('_s_x128x_8h_source.html',''); initResi
506 int16_t
startTransmit (uint8_t* data,
size_t len, uint8_t addr = 0)
override ;
-
- 526 int16_t
startReceive (uint16_t timeout = RADIOLIB_SX128X_RX_TIMEOUT_INF, uint16_t irqFlags = RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask = RADIOLIB_SX128X_IRQ_RX_DONE,
size_t len = 0);
-
-
-
- 541 int16_t
readData (uint8_t* data,
size_t len)
override ;
-
-
-
-
-
-
-
-
-
- 573 int16_t
setCodingRate (uint8_t cr,
bool longInterleaving =
false );
-
-
-
-
-
-
+
+
+
+ 534 int16_t
startReceive (uint16_t timeout = RADIOLIB_SX128X_RX_TIMEOUT_INF, uint16_t irqFlags = RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask = RADIOLIB_SX128X_IRQ_RX_DONE,
size_t len = 0);
+
+
+
+ 549 int16_t
readData (uint8_t* data,
size_t len)
override ;
+
+
+
+
+
+
+
+
+
+ 581 int16_t
setCodingRate (uint8_t cr,
bool longInterleaving =
false );
+
+
+
+
-
-
-
+
+
+
- 619 int16_t
setSyncWord (uint8_t* syncWord, uint8_t len);
-
- 627 int16_t
setSyncWord (uint8_t syncWord, uint8_t controlBits = 0x44);
+
+
+ 627 int16_t
setSyncWord (uint8_t* syncWord, uint8_t len);
- 636 int16_t
setCRC (uint8_t len, uint32_t initial = 0x1D0F, uint16_t polynomial = 0x1021);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 737 #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
-
-
-
-
-
- 751 #if !defined(RADIOLIB_GODMODE) && !defined(RADIOLIB_LOW_LEVEL)
-
-
-
-
- 756 #if !defined(RADIOLIB_GODMODE)
-
-
-
-
- 761 float bandwidthKhz = 0;
- 762 uint8_t bandwidth = 0, spreadingFactor = 0, codingRateLoRa = 0;
- 763 uint8_t preambleLengthLoRa = 0, headerType = 0, payloadLen = 0, crcLoRa = 0;
-
-
-
- 767 int16_t writeRegister(uint16_t addr, uint8_t* data, uint8_t numBytes);
- 768 int16_t readRegister(uint16_t addr, uint8_t* data, uint8_t numBytes);
- 769 int16_t writeBuffer(uint8_t* data, uint8_t numBytes, uint8_t offset = 0x00);
- 770 int16_t readBuffer(uint8_t* data, uint8_t numBytes);
- 771 int16_t setTx(uint16_t periodBaseCount = RADIOLIB_SX128X_TX_TIMEOUT_NONE, uint8_t periodBase = RADIOLIB_SX128X_PERIOD_BASE_15_625_US);
- 772 int16_t setRx(uint16_t periodBaseCount, uint8_t periodBase = RADIOLIB_SX128X_PERIOD_BASE_15_625_US);
-
- 774 uint8_t getPacketType();
- 775 int16_t setRfFrequency(uint32_t frf);
- 776 int16_t setTxParams(uint8_t pwr, uint8_t rampTime = RADIOLIB_SX128X_PA_RAMP_10_US);
- 777 int16_t setBufferBaseAddress(uint8_t txBaseAddress = 0x00, uint8_t rxBaseAddress = 0x00);
- 778 int16_t setModulationParams(uint8_t modParam1, uint8_t modParam2, uint8_t modParam3);
- 779 int16_t setPacketParamsGFSK(uint8_t preambleLen, uint8_t syncLen, uint8_t syncMatch, uint8_t crcLen, uint8_t whiten, uint8_t payLen = 0xFF, uint8_t hdrType = RADIOLIB_SX128X_GFSK_FLRC_PACKET_VARIABLE);
- 780 int16_t setPacketParamsBLE(uint8_t connState, uint8_t crcLen, uint8_t bleTest, uint8_t whiten);
- 781 int16_t setPacketParamsLoRa(uint8_t preambleLen, uint8_t hdrType, uint8_t payLen, uint8_t crc, uint8_t invIQ = RADIOLIB_SX128X_LORA_IQ_STANDARD);
- 782 int16_t setDioIrqParams(uint16_t irqMask, uint16_t dio1Mask, uint16_t dio2Mask = RADIOLIB_SX128X_IRQ_NONE, uint16_t dio3Mask = RADIOLIB_SX128X_IRQ_NONE);
- 783 int16_t clearIrqStatus(uint16_t clearIrqParams = RADIOLIB_SX128X_IRQ_ALL);
- 784 int16_t setRangingRole(uint8_t role);
- 785 int16_t setPacketType(uint8_t type);
-
- 787 int16_t setHeaderType(uint8_t hdrType,
size_t len = 0xFF);
-
- 789 #if !defined(RADIOLIB_GODMODE) && !defined(RADIOLIB_LOW_LEVEL)
-
-
-
-
- 794 static int16_t SPIparseStatus(uint8_t in);
-
- 796 #if !defined(RADIOLIB_GODMODE)
-
-
-
-
-
-
- 803 uint8_t invertIQEnabled = RADIOLIB_SX128X_LORA_IQ_STANDARD;
-
-
- 806 float modIndexReal = 0;
- 807 uint16_t bitRateKbps = 0;
- 808 uint8_t bitRate = 0, modIndex = 0, shaping = 0;
- 809 uint8_t preambleLengthGFSK = 0, syncWordLen = 0, syncWordMatch = 0, crcGFSK = 0, whitening = 0;
-
-
- 812 uint8_t codingRateFLRC = 0;
-
-
- 815 uint8_t connectionState = 0, crcBLE = 0, bleTestPayload = 0;
-
- 817 int16_t config(uint8_t modem);
-
-
-
+ 635 int16_t
setSyncWord (uint8_t syncWord, uint8_t controlBits = 0x44);
+
+ 644 int16_t
setCRC (uint8_t len, uint32_t initial = 0x1D0F, uint16_t polynomial = 0x1021);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 745 #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
+
+
+
+
+
+ 759 #if !defined(RADIOLIB_GODMODE) && !defined(RADIOLIB_LOW_LEVEL)
+
+
+
+
+ 764 #if !defined(RADIOLIB_GODMODE)
+
+
+
+
+ 769 float bandwidthKhz = 0;
+ 770 uint8_t bandwidth = 0, spreadingFactor = 0, codingRateLoRa = 0;
+ 771 uint8_t preambleLengthLoRa = 0, headerType = 0, payloadLen = 0, crcLoRa = 0;
+
+
+
+ 775 int16_t writeRegister(uint16_t addr, uint8_t* data, uint8_t numBytes);
+ 776 int16_t readRegister(uint16_t addr, uint8_t* data, uint8_t numBytes);
+ 777 int16_t writeBuffer(uint8_t* data, uint8_t numBytes, uint8_t offset = 0x00);
+ 778 int16_t readBuffer(uint8_t* data, uint8_t numBytes);
+ 779 int16_t setTx(uint16_t periodBaseCount = RADIOLIB_SX128X_TX_TIMEOUT_NONE, uint8_t periodBase = RADIOLIB_SX128X_PERIOD_BASE_15_625_US);
+ 780 int16_t setRx(uint16_t periodBaseCount, uint8_t periodBase = RADIOLIB_SX128X_PERIOD_BASE_15_625_US);
+
+ 782 uint8_t getPacketType();
+ 783 int16_t setRfFrequency(uint32_t frf);
+ 784 int16_t setTxParams(uint8_t pwr, uint8_t rampTime = RADIOLIB_SX128X_PA_RAMP_10_US);
+ 785 int16_t setBufferBaseAddress(uint8_t txBaseAddress = 0x00, uint8_t rxBaseAddress = 0x00);
+ 786 int16_t setModulationParams(uint8_t modParam1, uint8_t modParam2, uint8_t modParam3);
+ 787 int16_t setPacketParamsGFSK(uint8_t preambleLen, uint8_t syncLen, uint8_t syncMatch, uint8_t crcLen, uint8_t whiten, uint8_t payLen = 0xFF, uint8_t hdrType = RADIOLIB_SX128X_GFSK_FLRC_PACKET_VARIABLE);
+ 788 int16_t setPacketParamsBLE(uint8_t connState, uint8_t crcLen, uint8_t bleTest, uint8_t whiten);
+ 789 int16_t setPacketParamsLoRa(uint8_t preambleLen, uint8_t hdrType, uint8_t payLen, uint8_t crc, uint8_t invIQ = RADIOLIB_SX128X_LORA_IQ_STANDARD);
+ 790 int16_t setDioIrqParams(uint16_t irqMask, uint16_t dio1Mask, uint16_t dio2Mask = RADIOLIB_SX128X_IRQ_NONE, uint16_t dio3Mask = RADIOLIB_SX128X_IRQ_NONE);
+ 791 int16_t clearIrqStatus(uint16_t clearIrqParams = RADIOLIB_SX128X_IRQ_ALL);
+ 792 int16_t setRangingRole(uint8_t role);
+ 793 int16_t setPacketType(uint8_t type);
+
+ 795 int16_t setHeaderType(uint8_t hdrType,
size_t len = 0xFF);
+
+ 797 #if !defined(RADIOLIB_GODMODE) && !defined(RADIOLIB_LOW_LEVEL)
+
+
+
+
+ 802 static int16_t SPIparseStatus(uint8_t in);
+
+ 804 #if !defined(RADIOLIB_GODMODE)
+
+
+
+
+
+
+ 811 uint8_t invertIQEnabled = RADIOLIB_SX128X_LORA_IQ_STANDARD;
+
+
+ 814 float modIndexReal = 0;
+ 815 uint16_t bitRateKbps = 0;
+ 816 uint8_t bitRate = 0, modIndex = 0, shaping = 0;
+ 817 uint8_t preambleLengthGFSK = 0, syncWordLen = 0, syncWordMatch = 0, crcGFSK = 0, whitening = 0;
+
+
+ 820 uint8_t codingRateFLRC = 0;
-
+
+ 823 uint8_t connectionState = 0, crcBLE = 0, bleTestPayload = 0;
+
+ 825 int16_t config(uint8_t modem);
+
+
+
+
+
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:31
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code.
Definition: Module.h:42
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:15
-virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:205
+virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:145
+int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
virtual int16_t sleep()
Sets module to sleep.
Definition: PhysicalLayer.cpp:118
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:471
-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:901
-int16_t invertIQ(bool enable)
Enable/disable inversion of the I and Q signals.
Definition: SX128x.cpp:1288
-int16_t setPreambleLength(uint32_t preambleLength)
Sets preamble length for currently active modem. Allowed values range from 1 to 65535.
Definition: SX128x.cpp:733
-int16_t setFrequency(float freq)
Sets carrier frequency. Allowed values are in range from 2400.0 to 2500.0 MHz.
Definition: SX128x.cpp:627
-uint32_t getTimeOnAir(size_t len)
Get expected time-on-air for a given size of payload.
Definition: SX128x.cpp:1198
+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:905
+int16_t invertIQ(bool enable)
Enable/disable inversion of the I and Q signals.
Definition: SX128x.cpp:1292
+int16_t setPreambleLength(uint32_t preambleLength)
Sets preamble length for currently active modem. Allowed values range from 1 to 65535.
Definition: SX128x.cpp:737
+int16_t setFrequency(float freq)
Sets carrier frequency. Allowed values are in range from 2400.0 to 2500.0 MHz.
Definition: SX128x.cpp:631
+uint32_t getTimeOnAir(size_t len)
Get expected time-on-air for a given size of payload.
Definition: SX128x.cpp:1202
int16_t reset(bool verify=true)
Reset method. Will reset the chip to the default state using RST pin.
Definition: SX128x.cpp:263
-int16_t setFrequencyDeviation(float freqDev) override
Sets FSK frequency deviation. Allowed values range from 0.0 to 3200.0 kHz.
Definition: SX128x.cpp:838
+int16_t setFrequencyDeviation(float freqDev) override
Sets FSK frequency deviation. Allowed values range from 0.0 to 3200.0 kHz.
Definition: SX128x.cpp:842
int16_t begin(float freq=2400.0, float bw=812.5, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_SX128X_SYNC_WORD_PRIVATE, int8_t pwr=10, uint16_t preambleLength=12)
Initialization method for LoRa modem.
Definition: SX128x.cpp:13
-float getFrequencyError()
Gets frequency error of the latest received packet.
Definition: SX128x.cpp:1152
+float getFrequencyError()
Gets frequency error of the latest received packet.
Definition: SX128x.cpp:1156
int16_t standby() override
Sets the module to standby mode (overload for PhysicalLayer compatibility, uses 13 MHz RC oscillator)...
Definition: SX128x.cpp:454
int16_t beginFLRC(float freq=2400.0, uint16_t br=650, uint8_t cr=3, int8_t pwr=10, uint16_t preambleLength=16, uint8_t dataShaping=RADIOLIB_SHAPING_0_5)
Initialization method for FLRC modem.
Definition: SX128x.cpp:198
-virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:205
-int16_t setGainControl(uint8_t gain=0)
Enables or disables receiver manual gain control.
Definition: SX128x.cpp:1072
-size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: SX128x.cpp:1185
+virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
+int16_t setGainControl(uint8_t gain=0)
Enables or disables receiver manual gain control.
Definition: SX128x.cpp:1076
+size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: SX128x.cpp:1189
int16_t finishTransmit() override
Clean up after transmission is done.
Definition: SX128x.cpp:543
-int16_t setBitRate(float br)
Sets FSK or FLRC bit rate. Allowed values are 125, 250, 400, 500, 800, 1000, 1600 and 2000 kbps (for ...
Definition: SX128x.cpp:781
+int16_t setBitRate(float br)
Sets FSK or FLRC bit rate. Allowed values are 125, 250, 400, 500, 800, 1000, 1600 and 2000 kbps (for ...
Definition: SX128x.cpp:785
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
int16_t transmitDirect(uint32_t frf=0) override
Starts direct mode transmission.
Definition: SX128x.cpp:370
-void setRfSwitchPins(uint32_t rxEn, uint32_t txEn)
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX128x.cpp:1274
-int16_t setHighSensitivityMode(bool enable)
Enables or disables receiver high sensitivity mode.
Definition: SX128x.cpp:1055
+void setRfSwitchPins(uint32_t rxEn, uint32_t txEn)
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX128x.cpp:1278
+int16_t setHighSensitivityMode(bool enable)
Enables or disables receiver high sensitivity mode.
Definition: SX128x.cpp:1059
int16_t beginGFSK(float freq=2400.0, uint16_t br=800, float freqDev=400.0, int8_t pwr=10, uint16_t preambleLength=16)
Initialization method for GFSK modem.
Definition: SX128x.cpp:74
-int16_t startReceive(uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)
Interrupt-driven receive method. DIO1 will be activated when full packet is received.
Definition: SX128x.cpp:551
-int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Serves only as alias for PhysicalLayer compatibility.
Definition: SX128x.cpp:1270
+int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Serves only as alias for PhysicalLayer compatibility.
Definition: SX128x.cpp:1274
int16_t scanChannel()
Performs scan for LoRa transmission in the current channel. Detects both preamble and payload.
Definition: SX128x.cpp:393
-float getSNR()
Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa or ranging mode...
Definition: SX128x.cpp:1132
-int16_t setWhitening(bool enabled)
Sets whitening parameters, not available for LoRa or FLRC modem.
Definition: SX128x.cpp:1024
-int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:145
-int16_t setAccessAddress(uint32_t addr)
Sets BLE access address.
Definition: SX128x.cpp:1044
-int16_t explicitHeader()
Set explicit header mode for future reception/transmission.
Definition: SX128x.cpp:1266
-float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: SX128x.cpp:1108
-uint8_t randomByte()
Dummy random method, to ensure PhysicalLayer compatibility.
Definition: SX128x.cpp:1282
-int16_t setDataShaping(uint8_t sh) override
Sets time-bandwidth product of Gaussian filter applied for shaping. Allowed values are RADIOLIB_SHAPI...
Definition: SX128x.cpp:871
+float getSNR()
Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa or ranging mode...
Definition: SX128x.cpp:1136
+int16_t setWhitening(bool enabled)
Sets whitening parameters, not available for LoRa or FLRC modem.
Definition: SX128x.cpp:1028
+int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
+int16_t setAccessAddress(uint32_t addr)
Sets BLE access address.
Definition: SX128x.cpp:1048
+int16_t explicitHeader()
Set explicit header mode for future reception/transmission.
Definition: SX128x.cpp:1270
+float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: SX128x.cpp:1112
+uint8_t randomByte()
Dummy random method, to ensure PhysicalLayer compatibility.
Definition: SX128x.cpp:1286
+int16_t setDataShaping(uint8_t sh) override
Sets time-bandwidth product of Gaussian filter applied for shaping. Allowed values are RADIOLIB_SHAPI...
Definition: SX128x.cpp:875
SX128x(Module *mod)
Default constructor.
Definition: SX128x.cpp:5
-int16_t setCodingRate(uint8_t cr, bool longInterleaving=false)
Sets LoRa coding rate denominator. Allowed values range from 5 to 8.
Definition: SX128x.cpp:699
-int16_t setCRC(uint8_t len, uint32_t initial=0x1D0F, uint16_t polynomial=0x1021)
Sets CRC configuration.
Definition: SX128x.cpp:960
+int16_t setCodingRate(uint8_t cr, bool longInterleaving=false)
Sets LoRa coding rate denominator. Allowed values range from 5 to 8.
Definition: SX128x.cpp:703
+int16_t setCRC(uint8_t len, uint32_t initial=0x1D0F, uint16_t polynomial=0x1021)
Sets CRC configuration.
Definition: SX128x.cpp:964
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
void clearDio1Action()
Clears interrupt service routine to call when DIO1 activates.
Definition: SX128x.cpp:475
-int16_t implicitHeader(size_t len)
Set implicit header mode for future reception/transmission.
Definition: SX128x.cpp:1262
+int16_t implicitHeader(size_t len)
Set implicit header mode for future reception/transmission.
Definition: SX128x.cpp:1266
int16_t beginBLE(float freq=2400.0, uint16_t br=800, float freqDev=400.0, int8_t pwr=10, uint8_t dataShaping=RADIOLIB_SHAPING_0_5)
Initialization method for BLE modem.
Definition: SX128x.cpp:143
-void readBit(uint32_t pin)
Dummy method, to ensure PhysicalLayer compatibility.
Definition: SX128x.cpp:1309
-void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX128x.cpp:1278
-int16_t setOutputPower(int8_t pwr)
Sets output power. Allowed values are in range from -18 to 13 dBm.
Definition: SX128x.cpp:727
-uint16_t getIrqStatus()
Reads the current IRQ status.
Definition: SX128x.cpp:1409
-int16_t setSpreadingFactor(uint8_t sf)
Sets LoRa spreading factor. Allowed values range from 5 to 12.
Definition: SX128x.cpp:665
-int16_t setBandwidth(float bw)
Sets LoRa bandwidth. Allowed values are 203.125, 406.25, 812.5 and 1625.0 kHz.
Definition: SX128x.cpp:635
-void setDirectAction(void(*func)(void))
Dummy method, to ensure PhysicalLayer compatibility.
Definition: SX128x.cpp:1303
+void readBit(uint32_t pin)
Dummy method, to ensure PhysicalLayer compatibility.
Definition: SX128x.cpp:1313
+void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX128x.cpp:1282
+int16_t setOutputPower(int8_t pwr)
Sets output power. Allowed values are in range from -18 to 13 dBm.
Definition: SX128x.cpp:731
+uint16_t getIrqStatus()
Reads the current IRQ status.
Definition: SX128x.cpp:1413
+int16_t setSpreadingFactor(uint8_t sf)
Sets LoRa spreading factor. Allowed values range from 5 to 12.
Definition: SX128x.cpp:669
+int16_t setBandwidth(float bw)
Sets LoRa bandwidth. Allowed values are 203.125, 406.25, 812.5 and 1625.0 kHz.
Definition: SX128x.cpp:639
+int16_t startReceive()
Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalL...
Definition: SX128x.cpp:551
+void setDirectAction(void(*func)(void))
Dummy method, to ensure PhysicalLayer compatibility.
Definition: SX128x.cpp:1307
int16_t receiveDirect() override
Starts direct mode reception. Only implemented for PhysicalLayer compatibility, as SX128x series does...
Definition: SX128x.cpp:385
#define RADIOLIB_SHAPING_0_5
Gaussin shaping filter, BT = 0.5.
Definition: TypeDef.h:27
diff --git a/_si443x_8h_source.html b/_si443x_8h_source.html
index 4df43635..ac7f6092 100644
--- a/_si443x_8h_source.html
+++ b/_si443x_8h_source.html
@@ -758,16 +758,16 @@ $(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:31
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code.
Definition: Module.h:42
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:15
-virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:205
+virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:145
+int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
Base class for Si443x series. All derived classes for Si443x (e.g. Si4431 or Si4432) inherit from thi...
Definition: Si443x.h:553
int16_t startReceive()
Interrupt-driven receive method. IRQ will be activated when full valid packet is received.
Definition: Si443x.cpp:266
int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Only available in FSK mode. Allowed values are RADIOLIB_ENCODING_NRZ,...
Definition: Si443x.cpp:540
int16_t receiveDirect() override
Enables direct reception mode. While in direct mode, the module will not be able to transmit or recei...
Definition: Si443x.cpp:189
size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: Si443x.cpp:527
-virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:205
+virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
void setRfSwitchPins(uint32_t rxEn, uint32_t txEn)
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: Si443x.cpp:579
int16_t begin(float br, float freqDev, float rxBw, uint8_t preambleLen)
Initialization method.
Definition: Si443x.cpp:13
int16_t setPreambleLength(uint8_t preambleLen)
Sets preamble length.
Definition: Si443x.cpp:511
@@ -784,7 +784,7 @@ $(document).ready(function(){initNavTree('_si443x_8h_source.html',''); initResiz
void setIrqAction(void(*func)(void))
Sets interrupt service routine to call when IRQ activates.
Definition: Si443x.cpp:209
void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: Si443x.cpp:583
void clearIrqAction()
Clears interrupt service routine to call when IRQ activates.
Definition: Si443x.cpp:213
-int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:145
+int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
int16_t variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SI443X_MAX_PACKET_LENGTH)
Set modem in variable packet length mode.
Definition: Si443x.cpp:624
int16_t standby() override
Sets the module to standby (with XTAL on).
Definition: Si443x.cpp:137
diff --git a/annotated.html b/annotated.html
index 81a85a68..3e08d069 100644
--- a/annotated.html
+++ b/annotated.html
@@ -110,44 +110,45 @@ $(document).ready(function(){initNavTree('annotated.html',''); initResizable();
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 RadioLibBCH Class to calculate Bose–Chaudhuri–Hocquenghem (BCH) class of forward error correction codes. In theory, this should be able to calculate an arbitrary BCH(N, K) code, but so far it was only tested for BCH(31, 21)
- C RadioLibCRC Class to calculate CRCs of varying formats
- C RadioLibHal
- C RadioLibPrint
- 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 STM32WLx Derived class for STM32WL modules
- C STM32WLx_Module
- C Stm32wlxHal
- 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 RadioLibAES128 Class to perform AES encryption, decryption and CMAC
+ C RadioLibBCH Class to calculate Bose–Chaudhuri–Hocquenghem (BCH) class of forward error correction codes. In theory, this should be able to calculate an arbitrary BCH(N, K) code, but so far it was only tested for BCH(31, 21)
+ C RadioLibCRC Class to calculate CRCs of varying formats
+ C RadioLibHal
+ C RadioLibPrint
+ 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 STM32WLx Derived class for STM32WL modules
+ C STM32WLx_Module
+ C Stm32wlxHal
+ 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 91637ca5..b4f3be49 100644
--- a/annotated_dup.js
+++ b/annotated_dup.js
@@ -21,6 +21,7 @@ var annotated_dup =
[ "nRF24", "classn_r_f24.html", "classn_r_f24" ],
[ "PagerClient", "class_pager_client.html", "class_pager_client" ],
[ "PhysicalLayer", "class_physical_layer.html", "class_physical_layer" ],
+ [ "RadioLibAES128", "class_radio_lib_a_e_s128.html", "class_radio_lib_a_e_s128" ],
[ "RadioLibBCH", "class_radio_lib_b_c_h.html", "class_radio_lib_b_c_h" ],
[ "RadioLibCRC", "class_radio_lib_c_r_c.html", "class_radio_lib_c_r_c" ],
[ "RadioLibHal", "class_radio_lib_hal.html", "class_radio_lib_hal" ],
diff --git a/class_c_c1101-members.html b/class_c_c1101-members.html
index 546f7f11..671286c6 100644
--- a/class_c_c1101-members.html
+++ b/class_c_c1101-members.html
@@ -150,7 +150,7 @@ $(document).ready(function(){initNavTree('class_c_c1101.html',''); initResizable
standby () overrideCC1101 virtual
standby (uint8_t mode) overrideCC1101 virtual
startDirect ()PhysicalLayer
- startReceive ()CC1101
+ startReceive ()CC1101 virtual
startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)CC1101 virtual
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideCC1101 virtual
startTransmit (const char *str, uint8_t addr=0)CC1101
diff --git a/class_c_c1101.html b/class_c_c1101.html
index 1c0f8ecd..7ab2e097 100644
--- a/class_c_c1101.html
+++ b/class_c_c1101.html
@@ -1820,6 +1820,9 @@ virtual void
+
+
+
int16_t CC1101::startReceive
@@ -1828,11 +1831,18 @@ virtual void
+
+
+virtual
+
+
Interrupt-driven receive method. GDO0 will be activated when full packet is received.
Returns Status Codes
+
Reimplemented from PhysicalLayer .
+
diff --git a/class_external_radio-members.html b/class_external_radio-members.html
index bd340e30..c370a04d 100644
--- a/class_external_radio-members.html
+++ b/class_external_radio-members.html
@@ -121,12 +121,13 @@ $(document).ready(function(){initNavTree('class_external_radio.html',''); initRe
standby ()PhysicalLayer virtual
standby (uint8_t mode)PhysicalLayer virtual
startDirect ()PhysicalLayer
- startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)PhysicalLayer virtual
- startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)PhysicalLayer virtual
- 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
+ startReceive ()PhysicalLayer virtual
+ startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)PhysicalLayer virtual
+ startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)PhysicalLayer virtual
+ 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
index 9ddd1d84..ac9036c8 100644
--- a/class_external_radio.html
+++ b/class_external_radio.html
@@ -126,6 +126,9 @@ Public Member Functions
virtual int16_t standby (uint8_t mode)
Sets module to a specific standby mode. More...
+virtual int16_t startReceive ()
+ Sets module to received mode using its default configuration. More...
+
virtual int16_t startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)
Interrupt-driven receive method. A DIO pin will be activated when full packet is received. Must be implemented in module class. More...
diff --git a/class_l_l_c_c68-members.html b/class_l_l_c_c68-members.html
index 41be5531..7bab1df9 100644
--- a/class_l_l_c_c68-members.html
+++ b/class_l_l_c_c68-members.html
@@ -172,23 +172,24 @@ $(document).ready(function(){initNavTree('class_l_l_c_c68.html',''); initResizab
PhysicalLayer::standby (uint8_t mode)PhysicalLayer virtual
startChannelScan (uint8_t symbolNum=RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detPeak=RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detMin=RADIOLIB_SX126X_CAD_PARAM_DEFAULT)SX126x
startDirect ()PhysicalLayer
- startReceive (uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE, size_t len=0)SX126x virtual
- startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
- startReceiveDutyCycleAuto (uint16_t senderPreambleLength=0, uint16_t minSymbols=8, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
- startTransmit (const char *str, uint8_t addr=0)SX126x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX1262 (Module *mod)SX1262
- SX126x (Module *mod)SX126x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
- transmit (const char *str, uint8_t addr=0)SX126x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX126x virtual
- uploadPatch (const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x
- variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
- XTAL SX126x
+ startReceive ()SX126x virtual
+ startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)SX126x virtual
+ startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
+ startReceiveDutyCycleAuto (uint16_t senderPreambleLength=0, uint16_t minSymbols=8, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX126x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX1262 (Module *mod)SX1262
+ SX126x (Module *mod)SX126x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
+ transmit (const char *str, uint8_t addr=0)SX126x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX126x virtual
+ uploadPatch (const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x
+ variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
+ XTAL SX126x
diff --git a/class_l_l_c_c68.html b/class_l_l_c_c68.html
index 58f4bca1..38692a21 100644
--- a/class_l_l_c_c68.html
+++ b/class_l_l_c_c68.html
@@ -192,9 +192,12 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
-int16_t startReceive (uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE, size_t len=0)
- Interrupt-driven receive method. DIO1 will be activated when full packet is received. More...
-
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
+int16_t startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)
+ Interrupt-driven receive method. DIO1 will be activated when full packet is received. More...
+
int16_t startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)
Interrupt-driven receive method where the device mostly sleeps and periodically wakes to listen. Note that this function assumes the unit will take 500us + TCXO_delay to change state. See datasheet section 13.1.7, version 1.2. More...
diff --git a/class_physical_layer-members.html b/class_physical_layer-members.html
index 774eab8a..7b7078c0 100644
--- a/class_physical_layer-members.html
+++ b/class_physical_layer-members.html
@@ -97,11 +97,13 @@ $(document).ready(function(){initNavTree('class_physical_layer.html',''); initRe
dropSync ()PhysicalLayer
finishTransmit ()PhysicalLayer virtual
FSK4Client (defined in PhysicalLayer )PhysicalLayer friend
- getFreqStep () constPhysicalLayer
- getPacketLength (bool update=true)PhysicalLayer virtual
- getRSSI ()PhysicalLayer virtual
- getSNR ()PhysicalLayer virtual
- HellClient (defined in PhysicalLayer )PhysicalLayer friend
+ FT8Client (defined in PhysicalLayer )PhysicalLayer friend
+ getFreqStep () constPhysicalLayer
+ getPacketLength (bool update=true)PhysicalLayer virtual
+ getRSSI ()PhysicalLayer virtual
+ getSNR ()PhysicalLayer virtual
+ HellClient (defined in PhysicalLayer )PhysicalLayer friend
+ LoRaWANNode (defined in PhysicalLayer )PhysicalLayer friend
MorseClient (defined in PhysicalLayer )PhysicalLayer friend
PagerClient (defined in PhysicalLayer )PhysicalLayer friend
PhysicalLayer (float step, size_t maxLen)PhysicalLayer
@@ -128,12 +130,13 @@ $(document).ready(function(){initNavTree('class_physical_layer.html',''); initRe
standby ()PhysicalLayer virtual
standby (uint8_t mode)PhysicalLayer virtual
startDirect ()PhysicalLayer
- startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)PhysicalLayer virtual
- startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)PhysicalLayer virtual
- 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
+ startReceive ()PhysicalLayer virtual
+ startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)PhysicalLayer virtual
+ startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)PhysicalLayer virtual
+ 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_physical_layer.html b/class_physical_layer.html
index 178a349a..4ddb9702 100644
--- a/class_physical_layer.html
+++ b/class_physical_layer.html
@@ -132,6 +132,9 @@ Public Member Functions
virtual int16_t standby (uint8_t mode)
Sets module to a specific standby mode. More...
+virtual int16_t startReceive ()
+ Sets module to received mode using its default configuration. More...
+
virtual int16_t startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)
Interrupt-driven receive method. A DIO pin will be activated when full packet is received. Must be implemented in module class. More...
@@ -254,6 +257,12 @@ class PagerClient
class BellClient
+
+class FT8Client
+
+
+class LoRaWANNode
+
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.
@@ -1199,10 +1208,40 @@ class
BellClient <
Configure module parameters for direct modes. Must be called prior to "ham" modes like RTTY or AX.25. Only available in FSK mode.
Returns Status Codes
+
+
+
+◆ startReceive() [1/2]
+
+
+
+
+
+
+
+
+ int16_t PhysicalLayer::startReceive
+ (
+ )
+
+
+
+
+
+virtual
+
+
+
-◆ startReceive()
+◆ startReceive() [2/2]
@@ -1259,7 +1298,7 @@ class
BellClient <
Returns Status Codes
-
Reimplemented in SX126x , Si443x , RF69 , nRF24 , CC1101 , and SX127x .
+
Reimplemented in SX126x , Si443x , RF69 , nRF24 , CC1101 , and SX127x .
diff --git a/class_physical_layer.js b/class_physical_layer.js
index ae94edae..8390d6f4 100644
--- a/class_physical_layer.js
+++ b/class_physical_layer.js
@@ -30,6 +30,7 @@ var class_physical_layer =
[ "standby", "class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018", null ],
[ "standby", "class_physical_layer.html#a7d5da4311092e3df6b193ff303a0c5e8", null ],
[ "startDirect", "class_physical_layer.html#a88a10657bd2215a11a2331f937414b55", null ],
+ [ "startReceive", "class_physical_layer.html#a18664ad615c5507ff1690baaca90b094", null ],
[ "startReceive", "class_physical_layer.html#a13dbafeeb9dd9ede72cc4d907738ac48", null ],
[ "startTransmit", "class_physical_layer.html#a923654706eff5118ef6e84214e837f27", null ],
[ "startTransmit", "class_physical_layer.html#ad59e37ce0606dc8051e40be9d14cfec3", null ],
@@ -40,7 +41,9 @@ var class_physical_layer =
[ "AX25Client", "class_physical_layer.html#a0012621c1414f4c7573e961b57884a5b", null ],
[ "BellClient", "class_physical_layer.html#af9f435b28f04a142bdf136fc6fdc49b3", null ],
[ "FSK4Client", "class_physical_layer.html#ac0313fe86041eb37d290019203e095d3", null ],
+ [ "FT8Client", "class_physical_layer.html#a3870f0bd18d0a60e195bc7d39058190c", null ],
[ "HellClient", "class_physical_layer.html#afeb005bab389f137def61f1acc3714d3", null ],
+ [ "LoRaWANNode", "class_physical_layer.html#a9ec0776e58831979405850594429e2d2", null ],
[ "MorseClient", "class_physical_layer.html#ae5c5757c553100373984a416b6c3690a", null ],
[ "PagerClient", "class_physical_layer.html#a41ff2710d9e3a626becfa7a093900052", null ],
[ "RTTYClient", "class_physical_layer.html#a018393f703a257e39cd263cccf4ffad5", null ],
diff --git a/class_r_f69-members.html b/class_r_f69-members.html
index 48edfbd4..e3895295 100644
--- a/class_r_f69-members.html
+++ b/class_r_f69-members.html
@@ -164,7 +164,7 @@ $(document).ready(function(){initNavTree('class_r_f69.html',''); initResizable()
standby () overrideRF69 virtual
standby (uint8_t mode) overrideRF69 virtual
startDirect ()PhysicalLayer
- startReceive ()RF69
+ startReceive ()RF69 virtual
startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)RF69 virtual
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideRF69 virtual
startTransmit (const char *str, uint8_t addr=0)RF69
diff --git a/class_r_f69.html b/class_r_f69.html
index b7eae2ae..b2912390 100644
--- a/class_r_f69.html
+++ b/class_r_f69.html
@@ -2214,6 +2214,9 @@ void
+
+
+
int16_t RF69::startReceive
@@ -2222,11 +2225,18 @@ void
+virtual
+
+
Interrupt-driven receive method. GDO0 will be activated when full packet is received.
Returns Status Codes
+
Reimplemented from PhysicalLayer .
+
diff --git a/class_r_f_m95-members.html b/class_r_f_m95-members.html
index 6e1bf1c8..da22f0d6 100644
--- a/class_r_f_m95-members.html
+++ b/class_r_f_m95-members.html
@@ -191,20 +191,21 @@ $(document).ready(function(){initNavTree('class_r_f_m95.html',''); initResizable
standby (uint8_t mode) overrideSX127x virtual
startChannelScan ()SX127x
startDirect ()PhysicalLayer
- startReceive (uint8_t len=0, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)SX127x
- startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX1278 (Module *mod)SX1278
- SX127x (Module *mod)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX127x virtual
- variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
+ startReceive ()SX127x virtual
+ startReceive (uint8_t len, uint8_t mode)SX127x
+ startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX1278 (Module *mod)SX1278
+ SX127x (Module *mod)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ transmit (const char *str, uint8_t addr=0)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX127x virtual
+ variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
diff --git a/class_r_f_m95.html b/class_r_f_m95.html
index 33e07cdd..b781f1b7 100644
--- a/class_r_f_m95.html
+++ b/class_r_f_m95.html
@@ -260,9 +260,12 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
-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. More...
-
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
+int16_t startReceive (uint8_t len, uint8_t mode)
+ Interrupt-driven receive method. DIO0 will be activated when full valid packet is received. More...
+
int16_t startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)
Interrupt-driven receive method, implemented for compatibility with PhysicalLayer . More...
diff --git a/class_r_f_m96-members.html b/class_r_f_m96-members.html
index f778c013..c45ca1a0 100644
--- a/class_r_f_m96-members.html
+++ b/class_r_f_m96-members.html
@@ -191,20 +191,21 @@ $(document).ready(function(){initNavTree('class_r_f_m96.html',''); initResizable
standby (uint8_t mode) overrideSX127x virtual
startChannelScan ()SX127x
startDirect ()PhysicalLayer
- startReceive (uint8_t len=0, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)SX127x
- startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX1278 (Module *mod)SX1278
- SX127x (Module *mod)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX127x virtual
- variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
+ startReceive ()SX127x virtual
+ startReceive (uint8_t len, uint8_t mode)SX127x
+ startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX1278 (Module *mod)SX1278
+ SX127x (Module *mod)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ transmit (const char *str, uint8_t addr=0)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX127x virtual
+ variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
diff --git a/class_r_f_m96.html b/class_r_f_m96.html
index 051bb850..e1bb95c0 100644
--- a/class_r_f_m96.html
+++ b/class_r_f_m96.html
@@ -259,9 +259,12 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
-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. More...
-
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
+int16_t startReceive (uint8_t len, uint8_t mode)
+ Interrupt-driven receive method. DIO0 will be activated when full valid packet is received. More...
+
int16_t startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)
Interrupt-driven receive method, implemented for compatibility with PhysicalLayer . More...
diff --git a/class_r_f_m97-members.html b/class_r_f_m97-members.html
index b75e3c64..d2c87b11 100644
--- a/class_r_f_m97-members.html
+++ b/class_r_f_m97-members.html
@@ -192,20 +192,21 @@ $(document).ready(function(){initNavTree('class_r_f_m97.html',''); initResizable
standby (uint8_t mode) overrideSX127x virtual
startChannelScan ()SX127x
startDirect ()PhysicalLayer
- startReceive (uint8_t len=0, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)SX127x
- startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX1278 (Module *mod)SX1278
- SX127x (Module *mod)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX127x virtual
- variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
+ startReceive ()SX127x virtual
+ startReceive (uint8_t len, uint8_t mode)SX127x
+ startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX1278 (Module *mod)SX1278
+ SX127x (Module *mod)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ transmit (const char *str, uint8_t addr=0)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX127x virtual
+ variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
diff --git a/class_r_f_m97.html b/class_r_f_m97.html
index 9dd94c6b..72502c5a 100644
--- a/class_r_f_m97.html
+++ b/class_r_f_m97.html
@@ -267,9 +267,12 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
-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. More...
-
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
+int16_t startReceive (uint8_t len, uint8_t mode)
+ Interrupt-driven receive method. DIO0 will be activated when full valid packet is received. More...
+
int16_t startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)
Interrupt-driven receive method, implemented for compatibility with PhysicalLayer . More...
diff --git a/class_radio_lib_a_e_s128-members.html b/class_radio_lib_a_e_s128-members.html
new file mode 100644
index 00000000..1328eb01
--- /dev/null
+++ b/class_radio_lib_a_e_s128-members.html
@@ -0,0 +1,107 @@
+
+
+
+
+
+
+
+RadioLib: Member List
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RadioLib
+
+ Universal wireless communication library for Arduino
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
This is the complete list of members for RadioLibAES128 , including all inherited members.
+
+
+
+
+
+
diff --git a/class_radio_lib_a_e_s128.html b/class_radio_lib_a_e_s128.html
new file mode 100644
index 00000000..9a45af50
--- /dev/null
+++ b/class_radio_lib_a_e_s128.html
@@ -0,0 +1,343 @@
+
+
+
+
+
+
+
+RadioLib: RadioLibAES128 Class Reference
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RadioLib
+
+ Universal wireless communication library for Arduino
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Class to perform AES encryption, decryption and CMAC.
+ More...
+
+
#include <Cryptography.h >
+
+
+
+ RadioLibAES128 ()
+ Default constructor.
+
+void init (uint8_t *key)
+ Initialize the AES. More...
+
+size_t encryptECB (uint8_t *in, size_t len, uint8_t *out)
+ Perform ECB-type AES encryption. More...
+
+size_t decryptECB (uint8_t *in, size_t len, uint8_t *out)
+ Perform ECB-type AES decryption. More...
+
+void generateCMAC (uint8_t *in, size_t len, uint8_t *cmac)
+ Calculate message authentication code according to RFC4493. More...
+
+bool verifyCMAC (uint8_t *in, size_t len, uint8_t *cmac)
+ Verify the recevied CMAC. This just calculates the CMAC again and compares the results. More...
+
+
+
+
Class to perform AES encryption, decryption and CMAC.
+
Most of the implementation here is adapted from https://github.com/kokke/tiny-AES-c Additional code and CMAC calculation is from https://github.com/megrxu/AES-CMAC
+
+
+
◆ decryptECB()
+
+
+
+
+
+ size_t RadioLibAES128::decryptECB
+ (
+ uint8_t *
+ in ,
+
+
+
+
+ size_t
+ len ,
+
+
+
+
+ uint8_t *
+ out
+
+
+
+ )
+
+
+
+
+
+
Perform ECB-type AES decryption.
+
Parameters
+
+ in Input ciphertext data.
+ len Length of the input data.
+ out Buffer to save the output plaintext into. It is up to the caller to ensure the buffer is sufficiently large to save the data!
+
+
+
+
Returns The number of bytes saved into the output buffer.
+
+
+
+
+
◆ encryptECB()
+
+
+
+
+
+ size_t RadioLibAES128::encryptECB
+ (
+ uint8_t *
+ in ,
+
+
+
+
+ size_t
+ len ,
+
+
+
+
+ uint8_t *
+ out
+
+
+
+ )
+
+
+
+
+
+
Perform ECB-type AES encryption.
+
Parameters
+
+ in Input plaintext data (unpadded).
+ len Length of the input data.
+ out Buffer to save the output ciphertext into. It is up to the caller to ensure the buffer is sufficiently large to save the data!
+
+
+
+
Returns The number of bytes saved into the output buffer.
+
+
+
+
+
◆ generateCMAC()
+
+
+
+
+
+ void RadioLibAES128::generateCMAC
+ (
+ uint8_t *
+ in ,
+
+
+
+
+ size_t
+ len ,
+
+
+
+
+ uint8_t *
+ cmac
+
+
+
+ )
+
+
+
+
+
+
Calculate message authentication code according to RFC4493.
+
Parameters
+
+ in Input data (unpadded).
+ len Length of the input data.
+ cmac Buffer to save the output MAC into. The buffer must be at least 16 bytes long!
+
+
+
+
+
+
+
+
◆ init()
+
+
+
+
+
+ void RadioLibAES128::init
+ (
+ uint8_t *
+ key )
+
+
+
+
+
+
Initialize the AES.
+
Parameters
+
+
+
+
+
+
+
+
◆ verifyCMAC()
+
+
+
+
+
+ bool RadioLibAES128::verifyCMAC
+ (
+ uint8_t *
+ in ,
+
+
+
+
+ size_t
+ len ,
+
+
+
+
+ uint8_t *
+ cmac
+
+
+
+ )
+
+
+
+
+
+
Verify the recevied CMAC. This just calculates the CMAC again and compares the results.
+
Parameters
+
+ in Input data (unpadded).
+ len Length of the input data.
+ cmac CMAC to verify.
+
+
+
+
Returns True if valid, false otherwise.
+
+
+
+
The documentation for this class was generated from the following files:
+
+
+
+
+
+
diff --git a/class_radio_lib_a_e_s128.js b/class_radio_lib_a_e_s128.js
new file mode 100644
index 00000000..78fe3489
--- /dev/null
+++ b/class_radio_lib_a_e_s128.js
@@ -0,0 +1,9 @@
+var class_radio_lib_a_e_s128 =
+[
+ [ "RadioLibAES128", "class_radio_lib_a_e_s128.html#a11f816221d1c06432ff80f2678ef46fe", null ],
+ [ "decryptECB", "class_radio_lib_a_e_s128.html#abe0e368c6a94b2caf1559add1c262a98", null ],
+ [ "encryptECB", "class_radio_lib_a_e_s128.html#a4c7b49c3ed16f3849d8050a24a11c3c1", null ],
+ [ "generateCMAC", "class_radio_lib_a_e_s128.html#a260a1ac84386141781b3d7c213ff161c", null ],
+ [ "init", "class_radio_lib_a_e_s128.html#a2f688dbdf2b0506c077ca4501e40e22e", null ],
+ [ "verifyCMAC", "class_radio_lib_a_e_s128.html#a382e9dfdc10b7dd58e2bd0aa15f5e1dd", null ]
+];
\ No newline at end of file
diff --git a/class_s_t_m32_w_lx-members.html b/class_s_t_m32_w_lx-members.html
index 1ceae179..6748e7c7 100644
--- a/class_s_t_m32_w_lx-members.html
+++ b/class_s_t_m32_w_lx-members.html
@@ -178,24 +178,25 @@ $(document).ready(function(){initNavTree('class_s_t_m32_w_lx.html',''); initResi
PhysicalLayer::standby (uint8_t mode)PhysicalLayer virtual
startChannelScan (uint8_t symbolNum=RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detPeak=RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detMin=RADIOLIB_SX126X_CAD_PARAM_DEFAULT)SX126x
startDirect ()PhysicalLayer
- startReceive (uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE, size_t len=0)SX126x virtual
- startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
- startReceiveDutyCycleAuto (uint16_t senderPreambleLength=0, uint16_t minSymbols=8, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
- startTransmit (const char *str, uint8_t addr=0)SX126x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- STM32WLx (STM32WLx_Module *mod)STM32WLx
- SX1262 (Module *mod)SX1262
- SX126x (Module *mod)SX126x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
- transmit (const char *str, uint8_t addr=0)SX126x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX126x virtual
- uploadPatch (const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x
- variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
- XTAL SX126x
+ startReceive ()SX126x virtual
+ startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)SX126x virtual
+ startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
+ startReceiveDutyCycleAuto (uint16_t senderPreambleLength=0, uint16_t minSymbols=8, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX126x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ STM32WLx (STM32WLx_Module *mod)STM32WLx
+ SX1262 (Module *mod)SX1262
+ SX126x (Module *mod)SX126x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
+ transmit (const char *str, uint8_t addr=0)SX126x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX126x virtual
+ uploadPatch (const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x
+ variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
+ XTAL SX126x
diff --git a/class_s_t_m32_w_lx.html b/class_s_t_m32_w_lx.html
index ecd1adde..a8e55190 100644
--- a/class_s_t_m32_w_lx.html
+++ b/class_s_t_m32_w_lx.html
@@ -214,9 +214,12 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
-int16_t startReceive (uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE, size_t len=0)
- Interrupt-driven receive method. DIO1 will be activated when full packet is received. More...
-
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
+int16_t startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)
+ Interrupt-driven receive method. DIO1 will be activated when full packet is received. More...
+
int16_t startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)
Interrupt-driven receive method where the device mostly sleeps and periodically wakes to listen. Note that this function assumes the unit will take 500us + TCXO_delay to change state. See datasheet section 13.1.7, version 1.2. More...
diff --git a/class_s_x1231-members.html b/class_s_x1231-members.html
index 4c1efbef..a5356494 100644
--- a/class_s_x1231-members.html
+++ b/class_s_x1231-members.html
@@ -164,7 +164,7 @@ $(document).ready(function(){initNavTree('class_s_x1231.html',''); initResizable
standby () overrideRF69 virtual
standby (uint8_t mode) overrideRF69 virtual
startDirect ()PhysicalLayer
- startReceive ()RF69
+ startReceive ()RF69 virtual
startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)RF69 virtual
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideRF69 virtual
startTransmit (const char *str, uint8_t addr=0)RF69
diff --git a/class_s_x1261-members.html b/class_s_x1261-members.html
index e45c789b..18547958 100644
--- a/class_s_x1261-members.html
+++ b/class_s_x1261-members.html
@@ -171,24 +171,25 @@ $(document).ready(function(){initNavTree('class_s_x1261.html',''); initResizable
PhysicalLayer::standby (uint8_t mode)PhysicalLayer virtual
startChannelScan (uint8_t symbolNum=RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detPeak=RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detMin=RADIOLIB_SX126X_CAD_PARAM_DEFAULT)SX126x
startDirect ()PhysicalLayer
- startReceive (uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE, size_t len=0)SX126x virtual
- startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
- startReceiveDutyCycleAuto (uint16_t senderPreambleLength=0, uint16_t minSymbols=8, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
- startTransmit (const char *str, uint8_t addr=0)SX126x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX1261 (Module *mod)SX1261
- SX1262 (Module *mod)SX1262
- SX126x (Module *mod)SX126x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
- transmit (const char *str, uint8_t addr=0)SX126x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX126x virtual
- uploadPatch (const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x
- variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
- XTAL SX126x
+ startReceive ()SX126x virtual
+ startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)SX126x virtual
+ startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
+ startReceiveDutyCycleAuto (uint16_t senderPreambleLength=0, uint16_t minSymbols=8, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX126x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX1261 (Module *mod)SX1261
+ SX1262 (Module *mod)SX1262
+ SX126x (Module *mod)SX126x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
+ transmit (const char *str, uint8_t addr=0)SX126x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX126x virtual
+ uploadPatch (const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x
+ variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
+ XTAL SX126x
diff --git a/class_s_x1261.html b/class_s_x1261.html
index 327e5d73..94d52629 100644
--- a/class_s_x1261.html
+++ b/class_s_x1261.html
@@ -183,9 +183,12 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
-int16_t startReceive (uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE, size_t len=0)
- Interrupt-driven receive method. DIO1 will be activated when full packet is received. More...
-
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
+int16_t startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)
+ Interrupt-driven receive method. DIO1 will be activated when full packet is received. More...
+
int16_t startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)
Interrupt-driven receive method where the device mostly sleeps and periodically wakes to listen. Note that this function assumes the unit will take 500us + TCXO_delay to change state. See datasheet section 13.1.7, version 1.2. More...
diff --git a/class_s_x1262-members.html b/class_s_x1262-members.html
index 1198a789..daef681a 100644
--- a/class_s_x1262-members.html
+++ b/class_s_x1262-members.html
@@ -171,23 +171,24 @@ $(document).ready(function(){initNavTree('class_s_x1262.html',''); initResizable
PhysicalLayer::standby (uint8_t mode)PhysicalLayer virtual
startChannelScan (uint8_t symbolNum=RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detPeak=RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detMin=RADIOLIB_SX126X_CAD_PARAM_DEFAULT)SX126x
startDirect ()PhysicalLayer
- startReceive (uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE, size_t len=0)SX126x virtual
- startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
- startReceiveDutyCycleAuto (uint16_t senderPreambleLength=0, uint16_t minSymbols=8, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
- startTransmit (const char *str, uint8_t addr=0)SX126x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX1262 (Module *mod)SX1262
- SX126x (Module *mod)SX126x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
- transmit (const char *str, uint8_t addr=0)SX126x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX126x virtual
- uploadPatch (const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x
- variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
- XTAL SX126x
+ startReceive ()SX126x virtual
+ startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)SX126x virtual
+ startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
+ startReceiveDutyCycleAuto (uint16_t senderPreambleLength=0, uint16_t minSymbols=8, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX126x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX1262 (Module *mod)SX1262
+ SX126x (Module *mod)SX126x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
+ transmit (const char *str, uint8_t addr=0)SX126x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX126x virtual
+ uploadPatch (const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x
+ variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
+ XTAL SX126x
diff --git a/class_s_x1262.html b/class_s_x1262.html
index 064dc028..b14cdc3c 100644
--- a/class_s_x1262.html
+++ b/class_s_x1262.html
@@ -181,9 +181,12 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
-int16_t startReceive (uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE, size_t len=0)
- Interrupt-driven receive method. DIO1 will be activated when full packet is received. More...
-
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
+int16_t startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)
+ Interrupt-driven receive method. DIO1 will be activated when full packet is received. More...
+
int16_t startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)
Interrupt-driven receive method where the device mostly sleeps and periodically wakes to listen. Note that this function assumes the unit will take 500us + TCXO_delay to change state. See datasheet section 13.1.7, version 1.2. More...
diff --git a/class_s_x1268-members.html b/class_s_x1268-members.html
index 9a9b1e25..a2cf1e8e 100644
--- a/class_s_x1268-members.html
+++ b/class_s_x1268-members.html
@@ -171,23 +171,24 @@ $(document).ready(function(){initNavTree('class_s_x1268.html',''); initResizable
PhysicalLayer::standby (uint8_t mode)PhysicalLayer virtual
startChannelScan (uint8_t symbolNum=RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detPeak=RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detMin=RADIOLIB_SX126X_CAD_PARAM_DEFAULT)SX126x
startDirect ()PhysicalLayer
- startReceive (uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE, size_t len=0)SX126x virtual
- startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
- startReceiveDutyCycleAuto (uint16_t senderPreambleLength=0, uint16_t minSymbols=8, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
- startTransmit (const char *str, uint8_t addr=0)SX126x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX1268 (Module *mod)SX1268
- SX126x (Module *mod)SX126x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
- transmit (const char *str, uint8_t addr=0)SX126x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX126x virtual
- uploadPatch (const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x
- variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
- XTAL SX126x
+ startReceive ()SX126x virtual
+ startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)SX126x virtual
+ startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
+ startReceiveDutyCycleAuto (uint16_t senderPreambleLength=0, uint16_t minSymbols=8, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX126x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX1268 (Module *mod)SX1268
+ SX126x (Module *mod)SX126x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
+ transmit (const char *str, uint8_t addr=0)SX126x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX126x virtual
+ uploadPatch (const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x
+ variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
+ XTAL SX126x
diff --git a/class_s_x1268.html b/class_s_x1268.html
index ddc0cbcd..65377b5f 100644
--- a/class_s_x1268.html
+++ b/class_s_x1268.html
@@ -178,9 +178,12 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
-int16_t startReceive (uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE, size_t len=0)
- Interrupt-driven receive method. DIO1 will be activated when full packet is received. More...
-
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
+int16_t startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)
+ Interrupt-driven receive method. DIO1 will be activated when full packet is received. More...
+
int16_t startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)
Interrupt-driven receive method where the device mostly sleeps and periodically wakes to listen. Note that this function assumes the unit will take 500us + TCXO_delay to change state. See datasheet section 13.1.7, version 1.2. More...
diff --git a/class_s_x126x-members.html b/class_s_x126x-members.html
index 888d574d..31185ab7 100644
--- a/class_s_x126x-members.html
+++ b/class_s_x126x-members.html
@@ -167,22 +167,23 @@ $(document).ready(function(){initNavTree('class_s_x126x.html',''); initResizable
PhysicalLayer::standby (uint8_t mode)PhysicalLayer virtual
startChannelScan (uint8_t symbolNum=RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detPeak=RADIOLIB_SX126X_CAD_PARAM_DEFAULT, uint8_t detMin=RADIOLIB_SX126X_CAD_PARAM_DEFAULT)SX126x
startDirect ()PhysicalLayer
- startReceive (uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE, size_t len=0)SX126x virtual
- startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
- startReceiveDutyCycleAuto (uint16_t senderPreambleLength=0, uint16_t minSymbols=8, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
- startTransmit (const char *str, uint8_t addr=0)SX126x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX126x (Module *mod)SX126x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
- transmit (const char *str, uint8_t addr=0)SX126x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX126x virtual
- uploadPatch (const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x
- variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
- XTAL SX126x
+ startReceive ()SX126x virtual
+ startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)SX126x virtual
+ startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
+ startReceiveDutyCycleAuto (uint16_t senderPreambleLength=0, uint16_t minSymbols=8, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)SX126x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX126x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX126x (Module *mod)SX126x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX126x virtual
+ transmit (const char *str, uint8_t addr=0)SX126x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX126x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX126x virtual
+ uploadPatch (const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x
+ variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
+ XTAL SX126x
diff --git a/class_s_x126x.html b/class_s_x126x.html
index ef2dcd30..5e0f1035 100644
--- a/class_s_x126x.html
+++ b/class_s_x126x.html
@@ -164,9 +164,12 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
-int16_t startReceive (uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE, size_t len=0)
- Interrupt-driven receive method. DIO1 will be activated when full packet is received. More...
-
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
+int16_t startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)
+ Interrupt-driven receive method. DIO1 will be activated when full packet is received. More...
+
int16_t startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)
Interrupt-driven receive method where the device mostly sleeps and periodically wakes to listen. Note that this function assumes the unit will take 500us + TCXO_delay to change state. See datasheet section 13.1.7, version 1.2. More...
@@ -2401,8 +2404,38 @@ bool
-◆ startReceive()
+
+◆ startReceive() [1/2]
+
+
+
+
+
+
+
+
+ int16_t SX126x::startReceive
+ (
+ )
+
+
+
+
+
+virtual
+
+
+
+
+
+◆ startReceive() [2/2]
@@ -2414,25 +2447,25 @@ bool
int16_t SX126x::startReceive
(
uint32_t
- timeout = RADIOLIB_SX126X_RX_TIMEOUT_INF
,
+ timeout ,
uint16_t
- irqFlags = RADIOLIB_SX126X_IRQ_RX_DEFAULT
,
+ irqFlags ,
uint16_t
- irqMask = RADIOLIB_SX126X_IRQ_RX_DONE
,
+ irqMask ,
size_t
- len = 0
+ len
@@ -2451,8 +2484,8 @@ bool Parameters
timeout Receive mode type and/or raw timeout value, expressed as multiples of 15.625 us. When set to RADIOLIB_SX126X_RX_TIMEOUT_INF, the timeout will be infinite and the device will remain in Rx mode until explicitly commanded to stop (Rx continuous mode). When set to RADIOLIB_SX126X_RX_TIMEOUT_NONE, there will be no timeout and the device will return to standby when a packet is received (Rx single mode). For any other value, timeout will be applied and signal will be generated on DIO1 for conditions defined by irqFlags and irqMask.
- irqFlags Sets the IRQ flags, defaults to RADIOLIB_SX126X_IRQ_RX_DEFAULT.
- irqMask Sets the mask of IRQ flags that will trigger DIO1, defaults to RADIOLIB_SX126X_IRQ_RX_DONE.
+ irqFlags Sets the IRQ flags.
+ irqMask Sets the mask of IRQ flags that will trigger DIO1.
len Only for PhysicalLayer compatibility, not used.
diff --git a/class_s_x126x.js b/class_s_x126x.js
index 2e5696b6..a9968cf5 100644
--- a/class_s_x126x.js
+++ b/class_s_x126x.js
@@ -65,7 +65,8 @@ var class_s_x126x =
[ "standby", "class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71", null ],
[ "standby", "class_s_x126x.html#a2fa0384a529746811e2dcb2eeb4188ec", null ],
[ "startChannelScan", "class_s_x126x.html#a10a0e75571350fb05fa100e5d5151be2", null ],
- [ "startReceive", "class_s_x126x.html#a0ec1b926c93885739b546a7f39e8b09c", null ],
+ [ "startReceive", "class_s_x126x.html#a16e8b271dc5e9af3015dd2901153cbde", null ],
+ [ "startReceive", "class_s_x126x.html#a013065f21a7c029f310178f884a60898", null ],
[ "startReceiveDutyCycle", "class_s_x126x.html#a5b4f8a41b593436b8c7a2a2d46ac387e", null ],
[ "startReceiveDutyCycleAuto", "class_s_x126x.html#a077f180905ce4818cbdacad0cd9fe841", null ],
[ "startTransmit", "class_s_x126x.html#a923654706eff5118ef6e84214e837f27", null ],
diff --git a/class_s_x1272-members.html b/class_s_x1272-members.html
index 5605c4e3..7f5c5f14 100644
--- a/class_s_x1272-members.html
+++ b/class_s_x1272-members.html
@@ -190,20 +190,21 @@ $(document).ready(function(){initNavTree('class_s_x1272.html',''); initResizable
standby (uint8_t mode) overrideSX127x virtual
startChannelScan ()SX127x
startDirect ()PhysicalLayer
- startReceive (uint8_t len=0, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)SX127x
- startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX1272 (Module *mod)SX1272
- SX127x (Module *mod)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX127x virtual
- variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
+ startReceive ()SX127x virtual
+ startReceive (uint8_t len, uint8_t mode)SX127x
+ startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX1272 (Module *mod)SX1272
+ SX127x (Module *mod)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ transmit (const char *str, uint8_t addr=0)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX127x virtual
+ variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
diff --git a/class_s_x1272.html b/class_s_x1272.html
index 35a05585..58bb5f51 100644
--- a/class_s_x1272.html
+++ b/class_s_x1272.html
@@ -246,9 +246,12 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
-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. More...
-
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
+int16_t startReceive (uint8_t len, uint8_t mode)
+ Interrupt-driven receive method. DIO0 will be activated when full valid packet is received. More...
+
int16_t startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)
Interrupt-driven receive method, implemented for compatibility with PhysicalLayer . More...
diff --git a/class_s_x1273-members.html b/class_s_x1273-members.html
index cdf244e6..1ab79693 100644
--- a/class_s_x1273-members.html
+++ b/class_s_x1273-members.html
@@ -190,21 +190,22 @@ $(document).ready(function(){initNavTree('class_s_x1273.html',''); initResizable
standby (uint8_t mode) overrideSX127x virtual
startChannelScan ()SX127x
startDirect ()PhysicalLayer
- startReceive (uint8_t len=0, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)SX127x
- startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX1272 (Module *mod)SX1272
- SX1273 (Module *mod)SX1273
- SX127x (Module *mod)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX127x virtual
- variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
+ startReceive ()SX127x virtual
+ startReceive (uint8_t len, uint8_t mode)SX127x
+ startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX1272 (Module *mod)SX1272
+ SX1273 (Module *mod)SX1273
+ SX127x (Module *mod)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ transmit (const char *str, uint8_t addr=0)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX127x virtual
+ variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
diff --git a/class_s_x1273.html b/class_s_x1273.html
index 8091f5c7..3fd3a3a6 100644
--- a/class_s_x1273.html
+++ b/class_s_x1273.html
@@ -256,9 +256,12 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
-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. More...
-
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
+int16_t startReceive (uint8_t len, uint8_t mode)
+ Interrupt-driven receive method. DIO0 will be activated when full valid packet is received. More...
+
int16_t startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)
Interrupt-driven receive method, implemented for compatibility with PhysicalLayer . More...
diff --git a/class_s_x1276-members.html b/class_s_x1276-members.html
index f20502c4..7e13abe2 100644
--- a/class_s_x1276-members.html
+++ b/class_s_x1276-members.html
@@ -190,21 +190,22 @@ $(document).ready(function(){initNavTree('class_s_x1276.html',''); initResizable
standby (uint8_t mode) overrideSX127x virtual
startChannelScan ()SX127x
startDirect ()PhysicalLayer
- startReceive (uint8_t len=0, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)SX127x
- startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX1276 (Module *mod)SX1276
- SX1278 (Module *mod)SX1278
- SX127x (Module *mod)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX127x virtual
- variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
+ startReceive ()SX127x virtual
+ startReceive (uint8_t len, uint8_t mode)SX127x
+ startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX1276 (Module *mod)SX1276
+ SX1278 (Module *mod)SX1278
+ SX127x (Module *mod)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ transmit (const char *str, uint8_t addr=0)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX127x virtual
+ variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
diff --git a/class_s_x1276.html b/class_s_x1276.html
index e5271547..fe1c32d3 100644
--- a/class_s_x1276.html
+++ b/class_s_x1276.html
@@ -259,9 +259,12 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
-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. More...
-
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
+int16_t startReceive (uint8_t len, uint8_t mode)
+ Interrupt-driven receive method. DIO0 will be activated when full valid packet is received. More...
+
int16_t startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)
Interrupt-driven receive method, implemented for compatibility with PhysicalLayer . More...
diff --git a/class_s_x1277-members.html b/class_s_x1277-members.html
index 5162bc47..de39e82f 100644
--- a/class_s_x1277-members.html
+++ b/class_s_x1277-members.html
@@ -190,21 +190,22 @@ $(document).ready(function(){initNavTree('class_s_x1277.html',''); initResizable
standby (uint8_t mode) overrideSX127x virtual
startChannelScan ()SX127x
startDirect ()PhysicalLayer
- startReceive (uint8_t len=0, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)SX127x
- startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX1277 (Module *mod)SX1277
- SX1278 (Module *mod)SX1278
- SX127x (Module *mod)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX127x virtual
- variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
+ startReceive ()SX127x virtual
+ startReceive (uint8_t len, uint8_t mode)SX127x
+ startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX1277 (Module *mod)SX1277
+ SX1278 (Module *mod)SX1278
+ SX127x (Module *mod)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ transmit (const char *str, uint8_t addr=0)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX127x virtual
+ variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
diff --git a/class_s_x1277.html b/class_s_x1277.html
index 9bd6eb52..c82e4593 100644
--- a/class_s_x1277.html
+++ b/class_s_x1277.html
@@ -262,9 +262,12 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
-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. More...
-
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
+int16_t startReceive (uint8_t len, uint8_t mode)
+ Interrupt-driven receive method. DIO0 will be activated when full valid packet is received. More...
+
int16_t startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)
Interrupt-driven receive method, implemented for compatibility with PhysicalLayer . More...
diff --git a/class_s_x1278-members.html b/class_s_x1278-members.html
index 9163eca4..23d5cf40 100644
--- a/class_s_x1278-members.html
+++ b/class_s_x1278-members.html
@@ -190,20 +190,21 @@ $(document).ready(function(){initNavTree('class_s_x1278.html',''); initResizable
standby (uint8_t mode) overrideSX127x virtual
startChannelScan ()SX127x
startDirect ()PhysicalLayer
- startReceive (uint8_t len=0, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)SX127x
- startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX1278 (Module *mod)SX1278
- SX127x (Module *mod)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX127x virtual
- variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
+ startReceive ()SX127x virtual
+ startReceive (uint8_t len, uint8_t mode)SX127x
+ startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX1278 (Module *mod)SX1278
+ SX127x (Module *mod)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ transmit (const char *str, uint8_t addr=0)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX127x virtual
+ variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
diff --git a/class_s_x1278.html b/class_s_x1278.html
index 190c0d89..23deae8d 100644
--- a/class_s_x1278.html
+++ b/class_s_x1278.html
@@ -251,9 +251,12 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
-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. More...
-
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
+int16_t startReceive (uint8_t len, uint8_t mode)
+ Interrupt-driven receive method. DIO0 will be activated when full valid packet is received. More...
+
int16_t startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)
Interrupt-driven receive method, implemented for compatibility with PhysicalLayer . More...
diff --git a/class_s_x1279-members.html b/class_s_x1279-members.html
index 30100008..b207dc69 100644
--- a/class_s_x1279-members.html
+++ b/class_s_x1279-members.html
@@ -190,21 +190,22 @@ $(document).ready(function(){initNavTree('class_s_x1279.html',''); initResizable
standby (uint8_t mode) overrideSX127x virtual
startChannelScan ()SX127x
startDirect ()PhysicalLayer
- startReceive (uint8_t len=0, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)SX127x
- startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX1278 (Module *mod)SX1278
- SX1279 (Module *mod)SX1279
- SX127x (Module *mod)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX127x virtual
- variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
+ startReceive ()SX127x virtual
+ startReceive (uint8_t len, uint8_t mode)SX127x
+ startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX1278 (Module *mod)SX1278
+ SX1279 (Module *mod)SX1279
+ SX127x (Module *mod)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ transmit (const char *str, uint8_t addr=0)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX127x virtual
+ variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
diff --git a/class_s_x1279.html b/class_s_x1279.html
index 9eea7ea2..3030011f 100644
--- a/class_s_x1279.html
+++ b/class_s_x1279.html
@@ -256,9 +256,12 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
-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. More...
-
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
+int16_t startReceive (uint8_t len, uint8_t mode)
+ Interrupt-driven receive method. DIO0 will be activated when full valid packet is received. More...
+
int16_t startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)
Interrupt-driven receive method, implemented for compatibility with PhysicalLayer . More...
diff --git a/class_s_x127x-members.html b/class_s_x127x-members.html
index d1829635..c9c99b83 100644
--- a/class_s_x127x-members.html
+++ b/class_s_x127x-members.html
@@ -176,19 +176,20 @@ $(document).ready(function(){initNavTree('class_s_x127x.html',''); initResizable
standby (uint8_t mode) overrideSX127x virtual
startChannelScan ()SX127x
startDirect ()PhysicalLayer
- startReceive (uint8_t len=0, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)SX127x
- startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- startTransmit (const char *str, uint8_t addr=0)SX127x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX127x (Module *mod)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
- transmit (const char *str, uint8_t addr=0)SX127x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX127x virtual
- variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
+ startReceive ()SX127x virtual
+ startReceive (uint8_t len, uint8_t mode)SX127x
+ startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)SX127x virtual
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX127x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX127x (Module *mod)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX127x virtual
+ transmit (const char *str, uint8_t addr=0)SX127x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX127x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX127x virtual
+ variablePacketLengthMode (uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
diff --git a/class_s_x127x.html b/class_s_x127x.html
index b6bbd7bd..d44571e8 100644
--- a/class_s_x127x.html
+++ b/class_s_x127x.html
@@ -198,9 +198,12 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
-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. More...
-
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
+int16_t startReceive (uint8_t len, uint8_t mode)
+ Interrupt-driven receive method. DIO0 will be activated when full valid packet is received. More...
+
int16_t startReceive (uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)
Interrupt-driven receive method, implemented for compatibility with PhysicalLayer . More...
@@ -2463,10 +2466,40 @@ void Returns Status Codes
+
+
+
+◆ startReceive() [1/3]
+
+
+
+
+
+
+
+
+ int16_t SX127x::startReceive
+ (
+ )
+
+
+
+
+
+virtual
+
+
+
-◆ startReceive() [1/2]
+◆ startReceive() [2/3]
@@ -2527,8 +2560,8 @@ void
-◆ startReceive() [2/2]
+
+◆ startReceive() [3/3]
@@ -2537,13 +2570,13 @@ void
int16_t SX127x::startReceive
(
uint8_t
- len = 0
,
+ len ,
uint8_t
- mode = RADIOLIB_SX127X_RXCONTINUOUS
+ mode
@@ -2556,8 +2589,8 @@ void Parameters
- len Expected length of packet to be received. Required for LoRa spreading factor 6.
- mode Receive mode to be used. Defaults to RxContinuous.
+ len Expected length of packet to be received, or 0 when unused. Defaults to 0, non-zero required for LoRa spreading factor 6.
+ mode Receive mode to be used.
diff --git a/class_s_x127x.js b/class_s_x127x.js
index 138b512f..5f570562 100644
--- a/class_s_x127x.js
+++ b/class_s_x127x.js
@@ -74,8 +74,9 @@ var class_s_x127x =
[ "standby", "class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41", null ],
[ "standby", "class_s_x127x.html#aa565bbff460e487672953dc05d335cb0", null ],
[ "startChannelScan", "class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059", null ],
+ [ "startReceive", "class_s_x127x.html#ae90a5df2d414dfcafd1e3b8aa790f9fd", null ],
[ "startReceive", "class_s_x127x.html#a0ae533401c801f1d4034eb3db8b1f30c", null ],
- [ "startReceive", "class_s_x127x.html#adffb96b7f80dc43909bb4cebde68fe9d", null ],
+ [ "startReceive", "class_s_x127x.html#acaa90f7b8fcb4c41e2672923945d8ea7", null ],
[ "startTransmit", "class_s_x127x.html#a923654706eff5118ef6e84214e837f27", null ],
[ "startTransmit", "class_s_x127x.html#ad59e37ce0606dc8051e40be9d14cfec3", null ],
[ "startTransmit", "class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083", null ],
diff --git a/class_s_x1280-members.html b/class_s_x1280-members.html
index da45a022..58f8fae6 100644
--- a/class_s_x1280-members.html
+++ b/class_s_x1280-members.html
@@ -153,20 +153,21 @@ $(document).ready(function(){initNavTree('class_s_x1280.html',''); initResizable
PhysicalLayer::standby (uint8_t mode)PhysicalLayer virtual
startDirect ()PhysicalLayer
startRanging (bool master, uint32_t addr, uint16_t calTable[3][6]=NULL)SX1280
- startReceive (uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)SX128x
- PhysicalLayer::startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)PhysicalLayer virtual
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
- startTransmit (const char *str, uint8_t addr=0)SX128x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX1280 (Module *mod)SX1280
- SX1281 (Module *mod)SX1281
- SX128x (Module *mod)SX128x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
- transmit (const char *str, uint8_t addr=0)SX128x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX128x virtual
+ startReceive ()SX128x virtual
+ startReceive (uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)SX128x
+ PhysicalLayer::startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)PhysicalLayer virtual
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX128x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX1280 (Module *mod)SX1280
+ SX1281 (Module *mod)SX1281
+ SX128x (Module *mod)SX128x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
+ transmit (const char *str, uint8_t addr=0)SX128x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX128x virtual
diff --git a/class_s_x1280.html b/class_s_x1280.html
index 3955e62b..1780d134 100644
--- a/class_s_x1280.html
+++ b/class_s_x1280.html
@@ -184,6 +184,9 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
int16_t startReceive (uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)
Interrupt-driven receive method. DIO1 will be activated when full packet is received. More...
diff --git a/class_s_x1281-members.html b/class_s_x1281-members.html
index 4a0927dc..a5aaf00a 100644
--- a/class_s_x1281-members.html
+++ b/class_s_x1281-members.html
@@ -150,19 +150,20 @@ $(document).ready(function(){initNavTree('class_s_x1281.html',''); initResizable
standby (uint8_t mode, bool wakeup=false)SX128x
PhysicalLayer::standby (uint8_t mode)PhysicalLayer virtual
startDirect ()PhysicalLayer
- startReceive (uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)SX128x
- PhysicalLayer::startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)PhysicalLayer virtual
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
- startTransmit (const char *str, uint8_t addr=0)SX128x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX1281 (Module *mod)SX1281
- SX128x (Module *mod)SX128x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
- transmit (const char *str, uint8_t addr=0)SX128x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX128x virtual
+ startReceive ()SX128x virtual
+ startReceive (uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)SX128x
+ PhysicalLayer::startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)PhysicalLayer virtual
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX128x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX1281 (Module *mod)SX1281
+ SX128x (Module *mod)SX128x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
+ transmit (const char *str, uint8_t addr=0)SX128x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX128x virtual
diff --git a/class_s_x1281.html b/class_s_x1281.html
index 3f81d13f..47872528 100644
--- a/class_s_x1281.html
+++ b/class_s_x1281.html
@@ -171,6 +171,9 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
int16_t startReceive (uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)
Interrupt-driven receive method. DIO1 will be activated when full packet is received. More...
diff --git a/class_s_x1282-members.html b/class_s_x1282-members.html
index 91661377..72371ff4 100644
--- a/class_s_x1282-members.html
+++ b/class_s_x1282-members.html
@@ -153,21 +153,22 @@ $(document).ready(function(){initNavTree('class_s_x1282.html',''); initResizable
PhysicalLayer::standby (uint8_t mode)PhysicalLayer virtual
startDirect ()PhysicalLayer
startRanging (bool master, uint32_t addr, uint16_t calTable[3][6]=NULL)SX1280
- startReceive (uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)SX128x
- PhysicalLayer::startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)PhysicalLayer virtual
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
- startTransmit (const char *str, uint8_t addr=0)SX128x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX1280 (Module *mod)SX1280
- SX1281 (Module *mod)SX1281
- SX1282 (Module *mod)SX1282
- SX128x (Module *mod)SX128x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
- transmit (const char *str, uint8_t addr=0)SX128x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX128x virtual
+ startReceive ()SX128x virtual
+ startReceive (uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)SX128x
+ PhysicalLayer::startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)PhysicalLayer virtual
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX128x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX1280 (Module *mod)SX1280
+ SX1281 (Module *mod)SX1281
+ SX1282 (Module *mod)SX1282
+ SX128x (Module *mod)SX128x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
+ transmit (const char *str, uint8_t addr=0)SX128x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX128x virtual
diff --git a/class_s_x1282.html b/class_s_x1282.html
index e6ed9c41..821487b4 100644
--- a/class_s_x1282.html
+++ b/class_s_x1282.html
@@ -188,6 +188,9 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
int16_t startReceive (uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)
Interrupt-driven receive method. DIO1 will be activated when full packet is received. More...
diff --git a/class_s_x128x-members.html b/class_s_x128x-members.html
index 8d733168..648862df 100644
--- a/class_s_x128x-members.html
+++ b/class_s_x128x-members.html
@@ -150,18 +150,19 @@ $(document).ready(function(){initNavTree('class_s_x128x.html',''); initResizable
standby (uint8_t mode, bool wakeup=false)SX128x
PhysicalLayer::standby (uint8_t mode)PhysicalLayer virtual
startDirect ()PhysicalLayer
- startReceive (uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)SX128x
- PhysicalLayer::startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)PhysicalLayer virtual
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
- startTransmit (const char *str, uint8_t addr=0)SX128x
- startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
- PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
- SX128x (Module *mod)SX128x
- transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
- transmit (const char *str, uint8_t addr=0)SX128x
- transmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
- PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
- transmitDirect (uint32_t frf=0) overrideSX128x virtual
+ startReceive ()SX128x virtual
+ startReceive (uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)SX128x
+ PhysicalLayer::startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)PhysicalLayer virtual
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
+ startTransmit (const char *str, uint8_t addr=0)SX128x
+ startTransmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
+ PhysicalLayer::startTransmit (const char *str, uint8_t addr=0)PhysicalLayer
+ SX128x (Module *mod)SX128x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSX128x virtual
+ transmit (const char *str, uint8_t addr=0)SX128x
+ transmit (uint8_t *data, size_t len, uint8_t addr=0)SX128x
+ PhysicalLayer::transmit (const char *str, uint8_t addr=0)PhysicalLayer
+ transmitDirect (uint32_t frf=0) overrideSX128x virtual
diff --git a/class_s_x128x.html b/class_s_x128x.html
index 11ec93ad..eb2ddc7e 100644
--- a/class_s_x128x.html
+++ b/class_s_x128x.html
@@ -167,6 +167,9 @@ void int16_t finishTransmit () override
Clean up after transmission is done. More...
+int16_t startReceive ()
+ Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer . More...
+
int16_t startReceive (uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)
Interrupt-driven receive method. DIO1 will be activated when full packet is received. More...
@@ -2004,10 +2007,40 @@ void Returns Status Codes
+
+
+
+◆ startReceive() [1/2]
+
+
+
+
+
+
+
+
+ int16_t SX128x::startReceive
+ (
+ )
+
+
+
+
+
+virtual
+
+
+
-◆ startReceive()
+◆ startReceive() [2/2]
diff --git a/class_s_x128x.js b/class_s_x128x.js
index 8873def1..a44f1b00 100644
--- a/class_s_x128x.js
+++ b/class_s_x128x.js
@@ -50,6 +50,7 @@ var class_s_x128x =
[ "sleep", "class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f", null ],
[ "standby", "class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45", null ],
[ "standby", "class_s_x128x.html#a389aab93e24ec8c7cc9c14de90e5dfae", null ],
+ [ "startReceive", "class_s_x128x.html#afe700968c1e02e335c389b59d950ca39", null ],
[ "startReceive", "class_s_x128x.html#a8530aaeacc4c12736ce5aa5b5460ee19", null ],
[ "startTransmit", "class_s_x128x.html#a923654706eff5118ef6e84214e837f27", null ],
[ "startTransmit", "class_s_x128x.html#ad59e37ce0606dc8051e40be9d14cfec3", null ],
diff --git a/class_si4430-members.html b/class_si4430-members.html
index 6d555eae..200b8009 100644
--- a/class_si4430-members.html
+++ b/class_si4430-members.html
@@ -139,7 +139,7 @@ $(document).ready(function(){initNavTree('class_si4430.html',''); initResizable(
standby () overrideSi443x virtual
standby (uint8_t mode) overrideSi443x virtual
startDirect ()PhysicalLayer
-
startReceive ()Si443x
+
startReceive ()Si443x virtual
startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)Si443x virtual
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSi443x virtual
startTransmit (const char *str, uint8_t addr=0)Si443x
diff --git a/class_si4431-members.html b/class_si4431-members.html
index 7c4d195a..42106e6c 100644
--- a/class_si4431-members.html
+++ b/class_si4431-members.html
@@ -139,7 +139,7 @@ $(document).ready(function(){initNavTree('class_si4431.html',''); initResizable(
standby () overrideSi443x virtual
standby (uint8_t mode) overrideSi443x virtual
startDirect ()PhysicalLayer
-
startReceive ()Si443x
+
startReceive ()Si443x virtual
startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)Si443x virtual
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSi443x virtual
startTransmit (const char *str, uint8_t addr=0)Si443x
diff --git a/class_si4432-members.html b/class_si4432-members.html
index 3343c827..5fa2c631 100644
--- a/class_si4432-members.html
+++ b/class_si4432-members.html
@@ -138,7 +138,7 @@ $(document).ready(function(){initNavTree('class_si4432.html',''); initResizable(
standby () overrideSi443x virtual
standby (uint8_t mode) overrideSi443x virtual
startDirect ()PhysicalLayer
-
startReceive ()Si443x
+
startReceive ()Si443x virtual
startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)Si443x virtual
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSi443x virtual
startTransmit (const char *str, uint8_t addr=0)Si443x
diff --git a/class_si443x-members.html b/class_si443x-members.html
index 6b4490f9..94c1a92c 100644
--- a/class_si443x-members.html
+++ b/class_si443x-members.html
@@ -135,7 +135,7 @@ $(document).ready(function(){initNavTree('class_si443x.html',''); initResizable(
standby () overrideSi443x virtual
standby (uint8_t mode) overrideSi443x virtual
startDirect ()PhysicalLayer
-
startReceive ()Si443x
+
startReceive ()Si443x virtual
startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)Si443x virtual
startTransmit (uint8_t *data, size_t len, uint8_t addr=0) overrideSi443x virtual
startTransmit (const char *str, uint8_t addr=0)Si443x
diff --git a/class_si443x.html b/class_si443x.html
index 35c03067..2aaa522a 100644
--- a/class_si443x.html
+++ b/class_si443x.html
@@ -1256,6 +1256,9 @@ virtual void
+
+
+
int16_t Si443x::startReceive
@@ -1264,11 +1267,18 @@ virtual void
+
+
+virtual
+
+
Interrupt-driven receive method. IRQ will be activated when full valid packet is received.
Returns Status Codes
+
Reimplemented from PhysicalLayer .
+
diff --git a/classes.html b/classes.html
index 8413985b..c47ba342 100644
--- a/classes.html
+++ b/classes.html
@@ -123,7 +123,7 @@ $(document).ready(function(){initNavTree('classes.html',''); initResizable(); })
PagerClient PhysicalLayer
R
-RadioLibBCH RadioLibCRC RadioLibHal RadioLibPrint RF69 RFM22 RFM23 RFM95 RFM96 RFM97 RFM98 Module::RfSwitchMode_t RTTYClient
+RadioLibAES128 RadioLibBCH RadioLibCRC RadioLibHal RadioLibPrint RF69 RFM22 RFM23 RFM95 RFM96 RFM97 RFM98 Module::RfSwitchMode_t RTTYClient
S
Si4430 Si4431 Si4432 Si443x SSTVClient SSTVMode_t STM32WLx STM32WLx_Module Stm32wlxHal SX1231 SX1261 SX1262 SX1268 SX126x SX1272 SX1273 SX1276 SX1277 SX1278 SX1279 SX127x SX1280 SX1281 SX1282 SX128x
diff --git a/classn_r_f24-members.html b/classn_r_f24-members.html
index 7e74b5ce..7d089172 100644
--- a/classn_r_f24-members.html
+++ b/classn_r_f24-members.html
@@ -136,7 +136,7 @@ $(document).ready(function(){initNavTree('classn_r_f24.html',''); initResizable(
standby () overridenRF24 virtual
standby (uint8_t mode) overridenRF24 virtual
startDirect ()PhysicalLayer
- startReceive ()nRF24
+ startReceive ()nRF24 virtual
startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)nRF24 virtual
startTransmit (uint8_t *data, size_t len, uint8_t addr) overridenRF24 virtual
startTransmit (const char *str, uint8_t addr=0)nRF24
diff --git a/classn_r_f24.html b/classn_r_f24.html
index 1af9fa70..6e665bed 100644
--- a/classn_r_f24.html
+++ b/classn_r_f24.html
@@ -1243,6 +1243,9 @@ virtual void
+
+
+
int16_t nRF24::startReceive
@@ -1251,11 +1254,18 @@ virtual void
+
+
+virtual
+
+
Interrupt-driven receive method. IRQ will be activated when full packet is received.
Returns Status Codes
+
Reimplemented from PhysicalLayer .
+
diff --git a/dir_313caf1132e152dd9b58bea13a4052ca.js b/dir_313caf1132e152dd9b58bea13a4052ca.js
index 88a3da41..c7ac7ecb 100644
--- a/dir_313caf1132e152dd9b58bea13a4052ca.js
+++ b/dir_313caf1132e152dd9b58bea13a4052ca.js
@@ -1,5 +1,6 @@
var dir_313caf1132e152dd9b58bea13a4052ca =
[
[ "CRC.h", "_c_r_c_8h_source.html", null ],
+ [ "Cryptography.h", "_cryptography_8h_source.html", null ],
[ "FEC.h", "_f_e_c_8h_source.html", null ]
];
\ No newline at end of file
diff --git a/files.html b/files.html
index b878fa00..209cd524 100644
--- a/files.html
+++ b/files.html
@@ -164,14 +164,15 @@ $(document).ready(function(){initNavTree('files.html',''); initResizable(); });
SSTV.h
▼ utils
CRC.h
- FEC.h
- ArduinoHal.h
- BuildOpt.h
- BuildOptUser.h
- Hal.h
- Module.h
- RadioLib.h
- TypeDef.h
+ Cryptography.h
+ FEC.h
+ ArduinoHal.h
+ BuildOpt.h
+ BuildOptUser.h
+ Hal.h
+ Module.h
+ RadioLib.h
+ TypeDef.h
diff --git a/functions_d.html b/functions_d.html
index e5bd1fcc..33d23785 100644
--- a/functions_d.html
+++ b/functions_d.html
@@ -88,6 +88,9 @@ $(document).ready(function(){initNavTree('functions_d.html',''); initResizable()
decode()
: MorseClient
+decryptECB()
+: RadioLibAES128
+
delay()
: RadioLibHal
diff --git a/functions_e.html b/functions_e.html
index cbde3ce2..f07f8cc8 100644
--- a/functions_e.html
+++ b/functions_e.html
@@ -101,6 +101,9 @@ $(document).ready(function(){initNavTree('functions_e.html',''); initResizable()
encode()
: RadioLibBCH
+encryptECB()
+: RadioLibAES128
+
explicitHeader()
: SX126x
, SX1272
diff --git a/functions_func_d.html b/functions_func_d.html
index 7ddecd59..693a99f8 100644
--- a/functions_func_d.html
+++ b/functions_func_d.html
@@ -88,6 +88,9 @@ $(document).ready(function(){initNavTree('functions_func_d.html',''); initResiza
decode()
: MorseClient
+decryptECB()
+: RadioLibAES128
+
delay()
: RadioLibHal
diff --git a/functions_func_e.html b/functions_func_e.html
index 7c580bdb..c5da1b62 100644
--- a/functions_func_e.html
+++ b/functions_func_e.html
@@ -101,6 +101,9 @@ $(document).ready(function(){initNavTree('functions_func_e.html',''); initResiza
encode()
: RadioLibBCH
+encryptECB()
+: RadioLibAES128
+
explicitHeader()
: SX126x
, SX1272
diff --git a/functions_func_g.html b/functions_func_g.html
index 09572c00..bc026f15 100644
--- a/functions_func_g.html
+++ b/functions_func_g.html
@@ -85,6 +85,9 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza
- g -
+generateCMAC()
+: RadioLibAES128
+
getAFCError()
: SX127x
diff --git a/functions_func_i.html b/functions_func_i.html
index 3d337d6f..3d612a7d 100644
--- a/functions_func_i.html
+++ b/functions_func_i.html
@@ -99,6 +99,7 @@ $(document).ready(function(){initNavTree('functions_func_i.html',''); initResiza
init()
: Module
+, RadioLibAES128
, RadioLibHal
invertIQ()
diff --git a/functions_func_r.html b/functions_func_r.html
index 10b45a4f..eb0c320b 100644
--- a/functions_func_r.html
+++ b/functions_func_r.html
@@ -85,6 +85,9 @@ $(document).ready(function(){initNavTree('functions_func_r.html',''); initResiza
- r -
+RadioLibAES128()
+: RadioLibAES128
+
RadioLibBCH()
: RadioLibBCH
diff --git a/functions_func_s.html b/functions_func_s.html
index 63353db7..9c614838 100644
--- a/functions_func_s.html
+++ b/functions_func_s.html
@@ -442,7 +442,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
: CC1101
, RF69
, Si443x
-, SX126x
+, SX126x
, SX127x
, SX128x
@@ -538,7 +538,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
: Module
SSTVClient()
-: SSTVClient
+: SSTVClient
standby()
: BellClient
@@ -546,12 +546,12 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
, FSK4Client
, nRF24
, PhysicalLayer
-, RF69
+, RF69
, RTTYClient
, Si443x
-, SX126x
+, SX126x
, SX127x
-, SX128x
+, SX128x
startChannelScan()
: SX126x
@@ -568,11 +568,11 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
, nRF24
, PagerClient
, PhysicalLayer
-, RF69
+, RF69
, Si443x
-, SX126x
-, SX127x
-, SX128x
+, SX126x
+, SX127x
+, SX128x
startReceiveDutyCycle()
: SX126x
@@ -587,10 +587,10 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
: CC1101
, nRF24
, PhysicalLayer
-, RF69
+, RF69
, Si443x
, SX126x
-, SX127x
+, SX127x
, SX128x
STM32WLx()
diff --git a/functions_func_v.html b/functions_func_v.html
index 6181ac79..787df399 100644
--- a/functions_func_v.html
+++ b/functions_func_v.html
@@ -92,6 +92,9 @@ $(document).ready(function(){initNavTree('functions_func_v.html',''); initResiza
, SX126x
, SX127x
+verifyCMAC()
+: RadioLibAES128
+
diff --git a/functions_g.html b/functions_g.html
index 066ed3e1..bfd321e4 100644
--- a/functions_g.html
+++ b/functions_g.html
@@ -85,6 +85,9 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable()
Here is a list of all documented class members with links to the class documentation for each member:
- g -
+generateCMAC()
+: RadioLibAES128
+
getAFCError()
: SX127x
diff --git a/functions_i.html b/functions_i.html
index 498f47f0..e70032f2 100644
--- a/functions_i.html
+++ b/functions_i.html
@@ -105,6 +105,7 @@ $(document).ready(function(){initNavTree('functions_i.html',''); initResizable()
init()
: Module
+, RadioLibAES128
, RadioLibCRC
, RadioLibHal
diff --git a/functions_r.html b/functions_r.html
index 5eadeb53..268a639e 100644
--- a/functions_r.html
+++ b/functions_r.html
@@ -85,6 +85,9 @@ $(document).ready(function(){initNavTree('functions_r.html',''); initResizable()
Here is a list of all documented class members with links to the class documentation for each member:
- r -
+RadioLibAES128()
+: RadioLibAES128
+
RadioLibBCH()
: RadioLibBCH
@@ -132,7 +135,7 @@ $(document).ready(function(){initNavTree('functions_r.html',''); initResizable()
, PhysicalLayer
, RF69
, Si443x
-, SX126x
+, SX126x
, SX127x
, SX128x
diff --git a/functions_s.html b/functions_s.html
index 30caf963..75224930 100644
--- a/functions_s.html
+++ b/functions_s.html
@@ -445,7 +445,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
: SX126x
setSyncWord()
-: CC1101
+: CC1101
, RF69
, Si443x
, SX126x
@@ -571,7 +571,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
: Module
SPIwriteStream()
-: Module
+: Module
srcCallsign
: AX25Frame
@@ -586,14 +586,14 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
: BellClient
, CC1101
, FSK4Client
-, nRF24
+, nRF24
, PhysicalLayer
-, RF69
+, RF69
, RTTYClient
-, Si443x
+, Si443x
, SX126x
, SX127x
-, SX128x
+, SX128x
startChannelScan()
: SX126x
@@ -611,10 +611,10 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
, PagerClient
, PhysicalLayer
, RF69
-, Si443x
-, SX126x
-, SX127x
-, SX128x
+, Si443x
+, SX126x
+, SX127x
+, SX128x
startReceiveDutyCycle()
: SX126x
diff --git a/functions_v.html b/functions_v.html
index 817315db..081d4ed2 100644
--- a/functions_v.html
+++ b/functions_v.html
@@ -92,6 +92,9 @@ $(document).ready(function(){initNavTree('functions_v.html',''); initResizable()
, SX126x
, SX127x
+verifyCMAC()
+: RadioLibAES128
+
visCode
: SSTVMode_t
diff --git a/hierarchy.html b/hierarchy.html
index b11cb413..8912519c 100644
--- a/hierarchy.html
+++ b/hierarchy.html
@@ -135,21 +135,22 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();
C Si4430 Derived class for Si4430 modules
C Si4431 Derived class for Si4431 modules
C nRF24 Control class for nRF24 module
- C RadioLibBCH Class to calculate Bose–Chaudhuri–Hocquenghem (BCH) class of forward error correction codes. In theory, this should be able to calculate an arbitrary BCH(N, K) code, but so far it was only tested for BCH(31, 21)
- C RadioLibCRC Class to calculate CRCs of varying formats
- C RadioLibHal
- ▼ C RadioLibPrint
- C BellClient Client for Bell modem communication. The public interface is the same as Arduino Serial
- C HellClient Client for Hellschreiber transmissions
- C MorseClient Client for Morse Code communication. The public interface is the same as Arduino Serial
- C RTTYClient Client for RTTY communication. The public interface is the same as Arduino Serial
- 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 Module::RfSwitchMode_t
- 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 RadioLibAES128 Class to perform AES encryption, decryption and CMAC
+ C RadioLibBCH Class to calculate Bose–Chaudhuri–Hocquenghem (BCH) class of forward error correction codes. In theory, this should be able to calculate an arbitrary BCH(N, K) code, but so far it was only tested for BCH(31, 21)
+ C RadioLibCRC Class to calculate CRCs of varying formats
+ C RadioLibHal
+ ▼ C RadioLibPrint
+ C BellClient Client for Bell modem communication. The public interface is the same as Arduino Serial
+ C HellClient Client for Hellschreiber transmissions
+ C MorseClient Client for Morse Code communication. The public interface is the same as Arduino Serial
+ C RTTYClient Client for RTTY communication. The public interface is the same as Arduino Serial
+ 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 Module::RfSwitchMode_t
+ 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 445c138d..8b753377 100644
--- a/hierarchy.js
+++ b/hierarchy.js
@@ -63,6 +63,7 @@ var hierarchy =
] ],
[ "nRF24", "classn_r_f24.html", null ]
] ],
+ [ "RadioLibAES128", "class_radio_lib_a_e_s128.html", null ],
[ "RadioLibBCH", "class_radio_lib_b_c_h.html", null ],
[ "RadioLibCRC", "class_radio_lib_c_r_c.html", null ],
[ "RadioLibHal", "class_radio_lib_hal.html", null ],
diff --git a/n_r_f24_8h_source.html b/n_r_f24_8h_source.html
index 92e69cf3..5a417a72 100644
--- a/n_r_f24_8h_source.html
+++ b/n_r_f24_8h_source.html
@@ -374,9 +374,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:31
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:15
-virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:205
+virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:145
+int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
Control class for nRF24 module.
Definition: nRF24.h:184
int16_t sleep()
Sets the module to sleep mode.
Definition: nRF24.cpp:71
@@ -387,7 +387,7 @@ $(document).ready(function(){initNavTree('n_r_f24_8h_source.html',''); initResiz
int16_t begin(int16_t freq=RADIOLIB_NRF24_DEFAULT_FREQ, int16_t dr=RADIOLIB_NRF24_DEFAULT_DR, int8_t pwr=RADIOLIB_NRF24_DEFAULT_POWER, uint8_t addrWidth=RADIOLIB_NRF24_DEFAULT_ADDRWIDTH)
Initialization method.
Definition: nRF24.cpp:13
size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: nRF24.cpp:487
int16_t setReceivePipe(uint8_t pipeNum, uint8_t *addr)
Sets address of receive pipes 0 or 1. The address width must be the same as the same as the configure...
Definition: nRF24.cpp:389
-virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:205
+virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
int16_t setCrcFiltering(bool crcOn=true)
Enable CRC filtering and generation.
Definition: nRF24.cpp:494
int16_t getStatus(uint8_t mask=0xFF)
Gets nRF24 status register.
Definition: nRF24.cpp:472
int16_t setFrequency(float freq)
Sets carrier frequency. Allowed values range from 2400 MHz to 2525 MHz.
Definition: nRF24.cpp:265
@@ -397,7 +397,7 @@ $(document).ready(function(){initNavTree('n_r_f24_8h_source.html',''); initResiz
int16_t setFrequencyDeviation(float freqDev) override
Dummy configuration method, to ensure PhysicalLayer compatibility.
Definition: nRF24.cpp:480
int16_t standby() override
Sets the module to standby mode.
Definition: nRF24.cpp:75
int16_t setAddressWidth(uint8_t addrWidth)
Sets address width of transmit and receive pipes in bytes. Allowed values are 3, 4 or 5 bytes.
Definition: nRF24.cpp:341
-int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:145
+int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
int16_t setTransmitPipe(uint8_t *addr)
Sets address of transmit pipe. The address width must be the same as the same as the configured in se...
Definition: nRF24.cpp:374
nRF24(Module *mod)
Default constructor.
Definition: nRF24.cpp:5
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
diff --git a/navtreedata.js b/navtreedata.js
index 0cd8dd7d..82298105 100644
--- a/navtreedata.js
+++ b/navtreedata.js
@@ -50,10 +50,10 @@ var NAVTREE =
var NAVTREEINDEX =
[
"_a_f_s_k_8h_source.html",
-"class_morse_client.html",
-"class_s_t_m32_w_lx.html#af12e8eba13c5dd8bcf8656ed5c1f6cef",
-"class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10",
-"group__config__encoding.html#ga0bfc51be5abf0b434a49540bddb65328"
+"class_module.html#afbed643f082286012bf44bba22381ae6",
+"class_s_t_m32_w_lx.html#a4f2a9b5a72b5238d2014199d91094f84",
+"class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5",
+"functions_p.html"
];
var SYNCONMSG = 'click to disable panel synchronisation';
diff --git a/navtreeindex0.js b/navtreeindex0.js
index d88eb6a3..26804c3e 100644
--- a/navtreeindex0.js
+++ b/navtreeindex0.js
@@ -9,8 +9,9 @@ var NAVTREEINDEX0 =
"_build_opt_user_8h_source.html":[4,0,0,5],
"_c_c1101_8h_source.html":[4,0,0,0,0,0],
"_c_r_c_8h_source.html":[4,0,0,2,0],
+"_cryptography_8h_source.html":[4,0,0,2,1],
"_external_radio_8h_source.html":[4,0,0,1,4,0],
-"_f_e_c_8h_source.html":[4,0,0,2,1],
+"_f_e_c_8h_source.html":[4,0,0,2,2],
"_f_s_k4_8h_source.html":[4,0,0,1,5,0],
"_hal_8h_source.html":[4,0,0,6],
"_hellschreiber_8h_source.html":[4,0,0,1,6,0],
@@ -248,6 +249,5 @@ var NAVTREEINDEX0 =
"class_module.html#ad6cddbf3aebec9717a1a381dd81ad398":[3,0,16,9],
"class_module.html#ae89764d15e8df5694a6aec0e18f72d3f":[3,0,16,39],
"class_module.html#af474f82d00fffc1ee0fc8def2c7f220c":[3,0,16,26],
-"class_module.html#af6e89e2bc4976e8c5dc42dedda9fa6a2":[3,0,16,34],
-"class_module.html#afbed643f082286012bf44bba22381ae6":[3,0,16,14]
+"class_module.html#af6e89e2bc4976e8c5dc42dedda9fa6a2":[3,0,16,34]
};
diff --git a/navtreeindex1.js b/navtreeindex1.js
index 200c371e..9e02ae42 100644
--- a/navtreeindex1.js
+++ b/navtreeindex1.js
@@ -1,5 +1,6 @@
var NAVTREEINDEX1 =
{
+"class_module.html#afbed643f082286012bf44bba22381ae6":[3,0,16,14],
"class_morse_client.html":[3,0,17],
"class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3":[3,0,17,4],
"class_morse_client.html#a516f19bb51b87ead7f7ed149f2ca92cf":[3,0,17,2],
@@ -17,19 +18,21 @@ var NAVTREEINDEX1 =
"class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b":[3,0,19,3],
"class_pager_client.html#aec073fa9e5adcff9730482d9583715e9":[3,0,19,1],
"class_physical_layer.html":[3,0,20],
-"class_physical_layer.html#a0012621c1414f4c7573e961b57884a5b":[3,0,20,37],
-"class_physical_layer.html#a018393f703a257e39cd263cccf4ffad5":[3,0,20,43],
-"class_physical_layer.html#a13dbafeeb9dd9ede72cc4d907738ac48":[3,0,20,30],
+"class_physical_layer.html#a0012621c1414f4c7573e961b57884a5b":[3,0,20,38],
+"class_physical_layer.html#a018393f703a257e39cd263cccf4ffad5":[3,0,20,46],
+"class_physical_layer.html#a13dbafeeb9dd9ede72cc4d907738ac48":[3,0,20,31],
+"class_physical_layer.html#a18664ad615c5507ff1690baaca90b094":[3,0,20,30],
"class_physical_layer.html#a1a5985308904261dd431f373d47ddee4":[3,0,20,11],
"class_physical_layer.html#a1de26f68b939f5af79ec29cc34c7be18":[3,0,20,4],
"class_physical_layer.html#a2f4f9b428d9ea9af886ca85e5088ed7b":[3,0,20,25],
"class_physical_layer.html#a2fe95169b5cdc8cabe1f2af66cad6ef6":[3,0,20,6],
"class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c":[3,0,20,20],
"class_physical_layer.html#a3563453988a83d22dd07d4691543a300":[3,0,20,14],
-"class_physical_layer.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,20,34],
-"class_physical_layer.html#a41ff2710d9e3a626becfa7a093900052":[3,0,20,42],
+"class_physical_layer.html#a3870f0bd18d0a60e195bc7d39058190c":[3,0,20,41],
+"class_physical_layer.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,20,35],
+"class_physical_layer.html#a41ff2710d9e3a626becfa7a093900052":[3,0,20,45],
"class_physical_layer.html#a429796eb2e7ea86781a2e8ca42af43f3":[3,0,20,3],
-"class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,20,33],
+"class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,20,34],
"class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c":[3,0,20,12],
"class_physical_layer.html#a63c0beb4990876947f746751d45ac41d":[3,0,20,19],
"class_physical_layer.html#a76113e10481743094a1cd0280692b0a9":[3,0,20,10],
@@ -37,217 +40,214 @@ var NAVTREEINDEX1 =
"class_physical_layer.html#a88a10657bd2215a11a2331f937414b55":[3,0,20,29],
"class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e":[3,0,20,24],
"class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab":[3,0,20,22],
-"class_physical_layer.html#a923654706eff5118ef6e84214e837f27":[3,0,20,31],
+"class_physical_layer.html#a923654706eff5118ef6e84214e837f27":[3,0,20,32],
"class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c":[3,0,20,5],
-"class_physical_layer.html#aa4c99ac794ee653c2061be4201724b65":[3,0,20,35],
+"class_physical_layer.html#a9ec0776e58831979405850594429e2d2":[3,0,20,43],
+"class_physical_layer.html#aa4c99ac794ee653c2061be4201724b65":[3,0,20,36],
"class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b":[3,0,20,7],
"class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26":[3,0,20,1],
"class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,20,15],
"class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966":[3,0,20,21],
-"class_physical_layer.html#ac0313fe86041eb37d290019203e095d3":[3,0,20,39],
+"class_physical_layer.html#ac0313fe86041eb37d290019203e095d3":[3,0,20,40],
"class_physical_layer.html#acb45b2342400a03a914a91d2ac7fb488":[3,0,20,23],
-"class_physical_layer.html#acb94e5999123b5a1c63dd279b2a5a251":[3,0,20,36],
+"class_physical_layer.html#acb94e5999123b5a1c63dd279b2a5a251":[3,0,20,37],
"class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018":[3,0,20,27],
"class_physical_layer.html#acd9171bd71aa80fb86113b612c42de53":[3,0,20,9],
"class_physical_layer.html#acda61fc99cfa373153c50c78380ed885":[3,0,20,13],
"class_physical_layer.html#ad30127e094d8148870b9631007ec6b29":[3,0,20,2],
-"class_physical_layer.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,20,32],
+"class_physical_layer.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,20,33],
"class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6":[3,0,20,16],
"class_physical_layer.html#add63d7d4fa8b14df5e185813794a49d5":[3,0,20,0],
-"class_physical_layer.html#ae5c5757c553100373984a416b6c3690a":[3,0,20,41],
-"class_physical_layer.html#ae8dd4f2f60ef4fd1fa1868a7a630ab20":[3,0,20,44],
+"class_physical_layer.html#ae5c5757c553100373984a416b6c3690a":[3,0,20,44],
+"class_physical_layer.html#ae8dd4f2f60ef4fd1fa1868a7a630ab20":[3,0,20,47],
"class_physical_layer.html#aeba04366a0cf05ff3d8227c4f7c8e1e9":[3,0,20,18],
"class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c":[3,0,20,17],
"class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f":[3,0,20,8],
"class_physical_layer.html#af1bb9a5da26da8829795ebb72e9c666e":[3,0,20,26],
-"class_physical_layer.html#af9f435b28f04a142bdf136fc6fdc49b3":[3,0,20,38],
-"class_physical_layer.html#afeb005bab389f137def61f1acc3714d3":[3,0,20,40],
-"class_r_f69.html":[3,0,25],
-"class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853":[3,0,25,23],
-"class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847":[3,0,25,72],
-"class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638":[3,0,25,17],
-"class_r_f69.html#a0d7720672c0aa0cf4464d544540cbada":[3,0,25,41],
-"class_r_f69.html#a0d7b67499462777f7909860405ca6b62":[3,0,25,4],
-"class_r_f69.html#a0de2a07f264839cda945faebf7319e0e":[3,0,25,16],
-"class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa":[3,0,25,7],
-"class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b":[3,0,25,45],
-"class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8":[3,0,25,36],
-"class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69":[3,0,25,10],
-"class_r_f69.html#a2023f0f22aad00a702bdf598c2154043":[3,0,25,25],
-"class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1":[3,0,25,63],
-"class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a":[3,0,25,53],
-"class_r_f69.html#a222682569338abb49d6952430b6eebdd":[3,0,25,73],
-"class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed":[3,0,25,18],
-"class_r_f69.html#a26667d50ec845c28e17236c69c886561":[3,0,25,61],
-"class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9":[3,0,25,19],
-"class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459":[3,0,25,51],
-"class_r_f69.html#a3563453988a83d22dd07d4691543a300":[3,0,25,27],
-"class_r_f69.html#a3983b66c83818b4082805bcafc712f00":[3,0,25,28],
-"class_r_f69.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,25,71],
-"class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b":[3,0,25,15],
-"class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80":[3,0,25,9],
-"class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a":[3,0,25,38],
-"class_r_f69.html#a434420f2def6c383608223105469fda1":[3,0,25,52],
-"class_r_f69.html#a465df5a2e1f924f6d3ba4eae765847b7":[3,0,25,50],
-"class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb":[3,0,25,62],
-"class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,25,70],
-"class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee":[3,0,25,6],
-"class_r_f69.html#a637ea5386066f5608bcbb4266e5c1bd6":[3,0,25,1],
-"class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417":[3,0,25,12],
-"class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f":[3,0,25,24],
-"class_r_f69.html#a6e3002ab0c58e2087a7d101eda7afa82":[3,0,25,64],
-"class_r_f69.html#a721094611fa375e73bd0332ab2d7d113":[3,0,25,54],
-"class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a":[3,0,25,60],
-"class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d":[3,0,25,44],
-"class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9":[3,0,25,55],
-"class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0":[3,0,25,11],
-"class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28":[3,0,25,42],
-"class_r_f69.html#a855dc194947b095b821ec1524ba6814c":[3,0,25,69],
-"class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1":[3,0,25,21],
-"class_r_f69.html#a923654706eff5118ef6e84214e837f27":[3,0,25,67],
-"class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942":[3,0,25,2],
-"class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad":[3,0,25,8],
-"class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77":[3,0,25,39],
-"class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194":[3,0,25,48],
-"class_r_f69.html#aa6886410230c654400c76ec7710d623c":[3,0,25,14],
-"class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf":[3,0,25,40],
-"class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2":[3,0,25,43],
-"class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b":[3,0,25,46],
-"class_r_f69.html#ab6d98f3f2d964d1833e20da246a5be89":[3,0,25,13],
-"class_r_f69.html#ab797840275fbccc40162225c32f5ffc3":[3,0,25,26],
-"class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,25,29],
-"class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c":[3,0,25,49],
-"class_r_f69.html#abd556b0f455f9510213b17588a4baf1b":[3,0,25,31],
-"class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3":[3,0,25,33],
-"class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e":[3,0,25,37],
-"class_r_f69.html#ac341945538a84430c61f80f610a94411":[3,0,25,57],
-"class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703":[3,0,25,34],
-"class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7":[3,0,25,22],
-"class_r_f69.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,25,68],
-"class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13":[3,0,25,35],
-"class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be":[3,0,25,47],
-"class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51":[3,0,25,3],
-"class_r_f69.html#ae004326d663a9d6a9c30e792aa368b49":[3,0,25,56],
-"class_r_f69.html#ae36e8e6042245621a182b29526fe2245":[3,0,25,30],
-"class_r_f69.html#ae8b6f87d4b798dc8fcda07bfa5af5a66":[3,0,25,66],
-"class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3":[3,0,25,5],
-"class_r_f69.html#af434c67aabe02258ee6696a59973617b":[3,0,25,74],
-"class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a":[3,0,25,32],
-"class_r_f69.html#afae38fa64242043de34096bf497725f1":[3,0,25,65],
-"class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448":[3,0,25,0],
-"class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a":[3,0,25,59],
-"class_r_f69.html#afd3a98c6ff75e1036c9ba6d5423851df":[3,0,25,20],
-"class_r_f69.html#afff64ceef5f496ce035ff6d12d6bcc3c":[3,0,25,58],
-"class_r_f_m22.html":[3,0,26],
-"class_r_f_m23.html":[3,0,27],
-"class_r_f_m95.html":[3,0,28],
-"class_r_f_m95.html#a5c37eaf6ae8c558a9a623157dd9f894a":[3,0,28,1],
-"class_r_f_m95.html#a7e0f8fa59ddd48f7b026b0f996202b30":[3,0,28,2],
-"class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326":[3,0,28,0],
-"class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87":[3,0,28,3],
-"class_r_f_m96.html":[3,0,29],
-"class_r_f_m96.html#a82ef1b7354238637eee6f4d65b9be6e5":[3,0,29,2],
-"class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a":[3,0,29,0],
-"class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84":[3,0,29,3],
-"class_r_f_m96.html#aef1588799e5855cb464259e8ce2d865b":[3,0,29,1],
-"class_r_f_m97.html":[3,0,30],
-"class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be":[3,0,30,0],
-"class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67":[3,0,30,1],
-"class_r_f_m98.html":[3,0,31],
-"class_r_t_t_y_client.html":[3,0,32],
-"class_r_t_t_y_client.html#a077a21423deee0393cead0b3a239691f":[3,0,32,5],
-"class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22":[3,0,32,4],
-"class_r_t_t_y_client.html#ab0e11944c2f1e2c60fc45bcd2db18570":[3,0,32,1],
-"class_r_t_t_y_client.html#ac477e65ea756e56bb9043d778a51b4bc":[3,0,32,3],
-"class_r_t_t_y_client.html#ae0b25083baf01469786b6242389298fa":[3,0,32,2],
-"class_r_t_t_y_client.html#ae6bc08fa88457ee00a992448be1d63ea":[3,0,32,0],
-"class_radio_lib_b_c_h.html":[3,0,21],
-"class_radio_lib_b_c_h.html#a39d55c0292e4c9337ee0672cd5241118":[3,0,21,0],
-"class_radio_lib_b_c_h.html#aba6f10d4ac2d40eb2222d1081a34c88b":[3,0,21,1],
-"class_radio_lib_b_c_h.html#afa0a2eb58245715536acb781cd351d8a":[3,0,21,2],
-"class_radio_lib_c_r_c.html":[3,0,22],
-"class_radio_lib_c_r_c.html#a3700c124b0edb1882c9ea131c5b43d1d":[3,0,22,1],
-"class_radio_lib_c_r_c.html#a46616ef58e9eeeca646de0c9fe681050":[3,0,22,3],
-"class_radio_lib_c_r_c.html#a4f4042a369d55e234f4fc28f189139d5":[3,0,22,0],
-"class_radio_lib_c_r_c.html#a579acc51fe7a01b0b9b3f2e0e57b7d5f":[3,0,22,2],
-"class_radio_lib_c_r_c.html#ab1b5aa578ed5818a7618df8c6cf98087":[3,0,22,6],
-"class_radio_lib_c_r_c.html#ac65a358753efd05067c19fcf1098ec04":[3,0,22,5],
-"class_radio_lib_c_r_c.html#ad09b067c00cda1cc676c13602dee2f5a":[3,0,22,7],
-"class_radio_lib_c_r_c.html#af3942e08bde9d9d127f735bd10392f6d":[3,0,22,4],
-"class_radio_lib_hal.html":[3,0,23],
-"class_radio_lib_hal.html#a01f73b66a632fc9dba41a23f592e0936":[3,0,23,22],
-"class_radio_lib_hal.html#a0c7c2dffd662cefca7bf11e14c56dab2":[3,0,23,5],
-"class_radio_lib_hal.html#a12facb08577402e50c91c75ca7dd560f":[3,0,23,18],
-"class_radio_lib_hal.html#a18a711dd900a796ccfd7dddbdd2e6afe":[3,0,23,27],
-"class_radio_lib_hal.html#a1bd9d614f66b374ec820ce31b167fdb2":[3,0,23,21],
-"class_radio_lib_hal.html#a2bc5dbf7c13e6031fb9892075755a023":[3,0,23,9],
-"class_radio_lib_hal.html#a2d197fc1f62be4cd2d2c22be30744769":[3,0,23,26],
-"class_radio_lib_hal.html#a2ddf72a41b3cfbb63ea7ab5362003b56":[3,0,23,4],
-"class_radio_lib_hal.html#a300a47d4d43dbe0c624f6e5dc1cf7a00":[3,0,23,12],
-"class_radio_lib_hal.html#a35a6ef1b38553a3516c961872eb411d7":[3,0,23,13],
-"class_radio_lib_hal.html#a3cfca7ff9303fe84119ba2f4a4e1bbf4":[3,0,23,25],
-"class_radio_lib_hal.html#a409c719ef8a11e8765c90e98ba42316d":[3,0,23,24],
-"class_radio_lib_hal.html#a41c85e560155d644f5b4ce8444dd8b64":[3,0,23,16],
-"class_radio_lib_hal.html#a450037acdfeb4e87413674ac90feb4d2":[3,0,23,7],
-"class_radio_lib_hal.html#a4db0c60f2f6f64003f04cf0e03fea7ab":[3,0,23,6],
-"class_radio_lib_hal.html#a68d9271c76f8c96afb734a4634bf92e9":[3,0,23,17],
-"class_radio_lib_hal.html#a6b5341c59728a1932e33216feee04ea5":[3,0,23,10],
-"class_radio_lib_hal.html#a7ff9f3c608d68575dfc8962ba3669851":[3,0,23,23],
-"class_radio_lib_hal.html#a8427720749d8c87d17654071dfa5b94e":[3,0,23,2],
-"class_radio_lib_hal.html#aa1f8e5cd323e53ef9fa977734a05d030":[3,0,23,14],
-"class_radio_lib_hal.html#aa4f2bd49aea5a19aa9f85c720b4a883e":[3,0,23,19],
-"class_radio_lib_hal.html#ab4cc3bef7109f00b77b95e84511b0bb9":[3,0,23,20],
-"class_radio_lib_hal.html#abe787d5e556190eef2c63e1581235460":[3,0,23,15],
-"class_radio_lib_hal.html#ad49128a75a3d7abdc68baa302955f3ac":[3,0,23,3],
-"class_radio_lib_hal.html#ae75a54271cb8bea37d32dd146b9c6513":[3,0,23,0],
-"class_radio_lib_hal.html#aedf55424bc4aa28379b6f4f6b04151d3":[3,0,23,8],
-"class_radio_lib_hal.html#af01b4e5e01352b99ce4329c9f9f8433b":[3,0,23,11],
-"class_radio_lib_hal.html#af142f747becacd1e3e13503f79fd5ebe":[3,0,23,1],
-"class_radio_lib_print.html":[3,0,24],
-"class_radio_lib_print.html#a00bbdff41954312512167cb2b799cb01":[3,0,24,11],
-"class_radio_lib_print.html#a02b4c3892a70d7bc0868e74622e4a97e":[3,0,24,6],
-"class_radio_lib_print.html#a0c5d589d814403fb1be6351e1f93f8e8":[3,0,24,17],
-"class_radio_lib_print.html#a1543d3565013e22448385a4d1799ada9":[3,0,24,21],
-"class_radio_lib_print.html#a1ef88f5f094f71844be6dee67ecb8997":[3,0,24,22],
-"class_radio_lib_print.html#a21d43e8baa2efae0651f714b0f61a0ad":[3,0,24,12],
-"class_radio_lib_print.html#a2c055b364954957a48a798abe14cdff7":[3,0,24,18],
-"class_radio_lib_print.html#a2e6857e72af3ebca1607ccd5d8201c6c":[3,0,24,2],
-"class_radio_lib_print.html#a361a76b2f27cb9398d201a4e5efe0358":[3,0,24,16],
-"class_radio_lib_print.html#a6e1803a39074e658e54931f13bd2d641":[3,0,24,20],
-"class_radio_lib_print.html#a7a4c5fc3fbe7c78a2739dfd5b2648a11":[3,0,24,5],
-"class_radio_lib_print.html#a9a800f38287c6f292ab0110c6d396a88":[3,0,24,14],
-"class_radio_lib_print.html#a9aa1fb490af4bd22aabc6687c4d082af":[3,0,24,1],
-"class_radio_lib_print.html#aa2ac029ea08cf28ebcc3abd52e19164f":[3,0,24,4],
-"class_radio_lib_print.html#aaecbc6db0a6312a186f5eef774be5ad2":[3,0,24,0],
-"class_radio_lib_print.html#ab1f386ce4a8fa5b10eb72f7d8854e292":[3,0,24,13],
-"class_radio_lib_print.html#ab794539d4769bcf1f0f4d2984b767390":[3,0,24,15],
-"class_radio_lib_print.html#abcab0d059987ce8f72e8a99959f1605c":[3,0,24,10],
-"class_radio_lib_print.html#ac62c6e144cc5f2ab3d2dfa69e304600d":[3,0,24,9],
-"class_radio_lib_print.html#ad2c5435bea28e97f4893002f01549c80":[3,0,24,19],
-"class_radio_lib_print.html#ad2cbd376adf2d4fc949e02c955cf213c":[3,0,24,8],
-"class_radio_lib_print.html#aecfc38ba379bc123ea7e07e47de801e9":[3,0,24,7],
-"class_radio_lib_print.html#af2211384921ec34cce7257f729fff60d":[3,0,24,3],
-"class_s_s_t_v_client.html":[3,0,37],
-"class_s_s_t_v_client.html#a0126ac04934f589b8cb04a038c342044":[3,0,37,5],
-"class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e":[3,0,37,8],
-"class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e":[3,0,37,6],
-"class_s_s_t_v_client.html#a3769dcdebf8b1fa01eb2d8bd2bb3815a":[3,0,37,3],
-"class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0":[3,0,37,7],
-"class_s_s_t_v_client.html#a99e46bec8403dfc36b9e5b102b1f7cf1":[3,0,37,1],
-"class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d":[3,0,37,4],
-"class_s_s_t_v_client.html#af15cf501c00172270d2d2c43d7a7100a":[3,0,37,0],
-"class_s_s_t_v_client.html#afd4257e858a88e5847854a46f166a9b0":[3,0,37,2],
-"class_s_t_m32_w_lx.html":[3,0,39],
-"class_s_t_m32_w_lx.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7":[3,0,39,7],
-"class_s_t_m32_w_lx.html#a4f2a9b5a72b5238d2014199d91094f84":[3,0,39,2],
-"class_s_t_m32_w_lx.html#a54130403f6afbb0924da17c28afb17fc":[3,0,39,4],
-"class_s_t_m32_w_lx.html#a63d61bc5057e9da3d0ea12feae67122e":[3,0,39,5],
-"class_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b":[3,0,39,6],
-"class_s_t_m32_w_lx.html#ac0e8787dbb8e8aaa172b089ace6eaa09":[3,0,39,1],
-"class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787":[3,0,39,0],
-"class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a0cffe238c4822ab7f8beddf4ec72052b":[3,0,39,0,0],
-"class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a20a2eda9aaf3c7cdb4a55955d6ff3544":[3,0,39,0,3],
-"class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a50df4b8580f1bded3cb61e79f954789e":[3,0,39,0,4],
-"class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a85ffabc9f35e2683aefdd785bf912172":[3,0,39,0,2],
-"class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a8cf0ccad0eec5fde12798e0b0347d6bf":[3,0,39,0,1]
+"class_physical_layer.html#af9f435b28f04a142bdf136fc6fdc49b3":[3,0,20,39],
+"class_physical_layer.html#afeb005bab389f137def61f1acc3714d3":[3,0,20,42],
+"class_r_f69.html":[3,0,26],
+"class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853":[3,0,26,23],
+"class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847":[3,0,26,72],
+"class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638":[3,0,26,17],
+"class_r_f69.html#a0d7720672c0aa0cf4464d544540cbada":[3,0,26,41],
+"class_r_f69.html#a0d7b67499462777f7909860405ca6b62":[3,0,26,4],
+"class_r_f69.html#a0de2a07f264839cda945faebf7319e0e":[3,0,26,16],
+"class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa":[3,0,26,7],
+"class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b":[3,0,26,45],
+"class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8":[3,0,26,36],
+"class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69":[3,0,26,10],
+"class_r_f69.html#a2023f0f22aad00a702bdf598c2154043":[3,0,26,25],
+"class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1":[3,0,26,63],
+"class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a":[3,0,26,53],
+"class_r_f69.html#a222682569338abb49d6952430b6eebdd":[3,0,26,73],
+"class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed":[3,0,26,18],
+"class_r_f69.html#a26667d50ec845c28e17236c69c886561":[3,0,26,61],
+"class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9":[3,0,26,19],
+"class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459":[3,0,26,51],
+"class_r_f69.html#a3563453988a83d22dd07d4691543a300":[3,0,26,27],
+"class_r_f69.html#a3983b66c83818b4082805bcafc712f00":[3,0,26,28],
+"class_r_f69.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,26,71],
+"class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b":[3,0,26,15],
+"class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80":[3,0,26,9],
+"class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a":[3,0,26,38],
+"class_r_f69.html#a434420f2def6c383608223105469fda1":[3,0,26,52],
+"class_r_f69.html#a465df5a2e1f924f6d3ba4eae765847b7":[3,0,26,50],
+"class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb":[3,0,26,62],
+"class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,26,70],
+"class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee":[3,0,26,6],
+"class_r_f69.html#a637ea5386066f5608bcbb4266e5c1bd6":[3,0,26,1],
+"class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417":[3,0,26,12],
+"class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f":[3,0,26,24],
+"class_r_f69.html#a6e3002ab0c58e2087a7d101eda7afa82":[3,0,26,64],
+"class_r_f69.html#a721094611fa375e73bd0332ab2d7d113":[3,0,26,54],
+"class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a":[3,0,26,60],
+"class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d":[3,0,26,44],
+"class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9":[3,0,26,55],
+"class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0":[3,0,26,11],
+"class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28":[3,0,26,42],
+"class_r_f69.html#a855dc194947b095b821ec1524ba6814c":[3,0,26,69],
+"class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1":[3,0,26,21],
+"class_r_f69.html#a923654706eff5118ef6e84214e837f27":[3,0,26,67],
+"class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942":[3,0,26,2],
+"class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad":[3,0,26,8],
+"class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77":[3,0,26,39],
+"class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194":[3,0,26,48],
+"class_r_f69.html#aa6886410230c654400c76ec7710d623c":[3,0,26,14],
+"class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf":[3,0,26,40],
+"class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2":[3,0,26,43],
+"class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b":[3,0,26,46],
+"class_r_f69.html#ab6d98f3f2d964d1833e20da246a5be89":[3,0,26,13],
+"class_r_f69.html#ab797840275fbccc40162225c32f5ffc3":[3,0,26,26],
+"class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,26,29],
+"class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c":[3,0,26,49],
+"class_r_f69.html#abd556b0f455f9510213b17588a4baf1b":[3,0,26,31],
+"class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3":[3,0,26,33],
+"class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e":[3,0,26,37],
+"class_r_f69.html#ac341945538a84430c61f80f610a94411":[3,0,26,57],
+"class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703":[3,0,26,34],
+"class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7":[3,0,26,22],
+"class_r_f69.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,26,68],
+"class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13":[3,0,26,35],
+"class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be":[3,0,26,47],
+"class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51":[3,0,26,3],
+"class_r_f69.html#ae004326d663a9d6a9c30e792aa368b49":[3,0,26,56],
+"class_r_f69.html#ae36e8e6042245621a182b29526fe2245":[3,0,26,30],
+"class_r_f69.html#ae8b6f87d4b798dc8fcda07bfa5af5a66":[3,0,26,66],
+"class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3":[3,0,26,5],
+"class_r_f69.html#af434c67aabe02258ee6696a59973617b":[3,0,26,74],
+"class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a":[3,0,26,32],
+"class_r_f69.html#afae38fa64242043de34096bf497725f1":[3,0,26,65],
+"class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448":[3,0,26,0],
+"class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a":[3,0,26,59],
+"class_r_f69.html#afd3a98c6ff75e1036c9ba6d5423851df":[3,0,26,20],
+"class_r_f69.html#afff64ceef5f496ce035ff6d12d6bcc3c":[3,0,26,58],
+"class_r_f_m22.html":[3,0,27],
+"class_r_f_m23.html":[3,0,28],
+"class_r_f_m95.html":[3,0,29],
+"class_r_f_m95.html#a5c37eaf6ae8c558a9a623157dd9f894a":[3,0,29,1],
+"class_r_f_m95.html#a7e0f8fa59ddd48f7b026b0f996202b30":[3,0,29,2],
+"class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326":[3,0,29,0],
+"class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87":[3,0,29,3],
+"class_r_f_m96.html":[3,0,30],
+"class_r_f_m96.html#a82ef1b7354238637eee6f4d65b9be6e5":[3,0,30,2],
+"class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a":[3,0,30,0],
+"class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84":[3,0,30,3],
+"class_r_f_m96.html#aef1588799e5855cb464259e8ce2d865b":[3,0,30,1],
+"class_r_f_m97.html":[3,0,31],
+"class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be":[3,0,31,0],
+"class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67":[3,0,31,1],
+"class_r_f_m98.html":[3,0,32],
+"class_r_t_t_y_client.html":[3,0,33],
+"class_r_t_t_y_client.html#a077a21423deee0393cead0b3a239691f":[3,0,33,5],
+"class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22":[3,0,33,4],
+"class_r_t_t_y_client.html#ab0e11944c2f1e2c60fc45bcd2db18570":[3,0,33,1],
+"class_r_t_t_y_client.html#ac477e65ea756e56bb9043d778a51b4bc":[3,0,33,3],
+"class_r_t_t_y_client.html#ae0b25083baf01469786b6242389298fa":[3,0,33,2],
+"class_r_t_t_y_client.html#ae6bc08fa88457ee00a992448be1d63ea":[3,0,33,0],
+"class_radio_lib_a_e_s128.html":[3,0,21],
+"class_radio_lib_a_e_s128.html#a11f816221d1c06432ff80f2678ef46fe":[3,0,21,0],
+"class_radio_lib_a_e_s128.html#a260a1ac84386141781b3d7c213ff161c":[3,0,21,3],
+"class_radio_lib_a_e_s128.html#a2f688dbdf2b0506c077ca4501e40e22e":[3,0,21,4],
+"class_radio_lib_a_e_s128.html#a382e9dfdc10b7dd58e2bd0aa15f5e1dd":[3,0,21,5],
+"class_radio_lib_a_e_s128.html#a4c7b49c3ed16f3849d8050a24a11c3c1":[3,0,21,2],
+"class_radio_lib_a_e_s128.html#abe0e368c6a94b2caf1559add1c262a98":[3,0,21,1],
+"class_radio_lib_b_c_h.html":[3,0,22],
+"class_radio_lib_b_c_h.html#a39d55c0292e4c9337ee0672cd5241118":[3,0,22,0],
+"class_radio_lib_b_c_h.html#aba6f10d4ac2d40eb2222d1081a34c88b":[3,0,22,1],
+"class_radio_lib_b_c_h.html#afa0a2eb58245715536acb781cd351d8a":[3,0,22,2],
+"class_radio_lib_c_r_c.html":[3,0,23],
+"class_radio_lib_c_r_c.html#a3700c124b0edb1882c9ea131c5b43d1d":[3,0,23,1],
+"class_radio_lib_c_r_c.html#a46616ef58e9eeeca646de0c9fe681050":[3,0,23,3],
+"class_radio_lib_c_r_c.html#a4f4042a369d55e234f4fc28f189139d5":[3,0,23,0],
+"class_radio_lib_c_r_c.html#a579acc51fe7a01b0b9b3f2e0e57b7d5f":[3,0,23,2],
+"class_radio_lib_c_r_c.html#ab1b5aa578ed5818a7618df8c6cf98087":[3,0,23,6],
+"class_radio_lib_c_r_c.html#ac65a358753efd05067c19fcf1098ec04":[3,0,23,5],
+"class_radio_lib_c_r_c.html#ad09b067c00cda1cc676c13602dee2f5a":[3,0,23,7],
+"class_radio_lib_c_r_c.html#af3942e08bde9d9d127f735bd10392f6d":[3,0,23,4],
+"class_radio_lib_hal.html":[3,0,24],
+"class_radio_lib_hal.html#a01f73b66a632fc9dba41a23f592e0936":[3,0,24,22],
+"class_radio_lib_hal.html#a0c7c2dffd662cefca7bf11e14c56dab2":[3,0,24,5],
+"class_radio_lib_hal.html#a12facb08577402e50c91c75ca7dd560f":[3,0,24,18],
+"class_radio_lib_hal.html#a18a711dd900a796ccfd7dddbdd2e6afe":[3,0,24,27],
+"class_radio_lib_hal.html#a1bd9d614f66b374ec820ce31b167fdb2":[3,0,24,21],
+"class_radio_lib_hal.html#a2bc5dbf7c13e6031fb9892075755a023":[3,0,24,9],
+"class_radio_lib_hal.html#a2d197fc1f62be4cd2d2c22be30744769":[3,0,24,26],
+"class_radio_lib_hal.html#a2ddf72a41b3cfbb63ea7ab5362003b56":[3,0,24,4],
+"class_radio_lib_hal.html#a300a47d4d43dbe0c624f6e5dc1cf7a00":[3,0,24,12],
+"class_radio_lib_hal.html#a35a6ef1b38553a3516c961872eb411d7":[3,0,24,13],
+"class_radio_lib_hal.html#a3cfca7ff9303fe84119ba2f4a4e1bbf4":[3,0,24,25],
+"class_radio_lib_hal.html#a409c719ef8a11e8765c90e98ba42316d":[3,0,24,24],
+"class_radio_lib_hal.html#a41c85e560155d644f5b4ce8444dd8b64":[3,0,24,16],
+"class_radio_lib_hal.html#a450037acdfeb4e87413674ac90feb4d2":[3,0,24,7],
+"class_radio_lib_hal.html#a4db0c60f2f6f64003f04cf0e03fea7ab":[3,0,24,6],
+"class_radio_lib_hal.html#a68d9271c76f8c96afb734a4634bf92e9":[3,0,24,17],
+"class_radio_lib_hal.html#a6b5341c59728a1932e33216feee04ea5":[3,0,24,10],
+"class_radio_lib_hal.html#a7ff9f3c608d68575dfc8962ba3669851":[3,0,24,23],
+"class_radio_lib_hal.html#a8427720749d8c87d17654071dfa5b94e":[3,0,24,2],
+"class_radio_lib_hal.html#aa1f8e5cd323e53ef9fa977734a05d030":[3,0,24,14],
+"class_radio_lib_hal.html#aa4f2bd49aea5a19aa9f85c720b4a883e":[3,0,24,19],
+"class_radio_lib_hal.html#ab4cc3bef7109f00b77b95e84511b0bb9":[3,0,24,20],
+"class_radio_lib_hal.html#abe787d5e556190eef2c63e1581235460":[3,0,24,15],
+"class_radio_lib_hal.html#ad49128a75a3d7abdc68baa302955f3ac":[3,0,24,3],
+"class_radio_lib_hal.html#ae75a54271cb8bea37d32dd146b9c6513":[3,0,24,0],
+"class_radio_lib_hal.html#aedf55424bc4aa28379b6f4f6b04151d3":[3,0,24,8],
+"class_radio_lib_hal.html#af01b4e5e01352b99ce4329c9f9f8433b":[3,0,24,11],
+"class_radio_lib_hal.html#af142f747becacd1e3e13503f79fd5ebe":[3,0,24,1],
+"class_radio_lib_print.html":[3,0,25],
+"class_radio_lib_print.html#a00bbdff41954312512167cb2b799cb01":[3,0,25,11],
+"class_radio_lib_print.html#a02b4c3892a70d7bc0868e74622e4a97e":[3,0,25,6],
+"class_radio_lib_print.html#a0c5d589d814403fb1be6351e1f93f8e8":[3,0,25,17],
+"class_radio_lib_print.html#a1543d3565013e22448385a4d1799ada9":[3,0,25,21],
+"class_radio_lib_print.html#a1ef88f5f094f71844be6dee67ecb8997":[3,0,25,22],
+"class_radio_lib_print.html#a21d43e8baa2efae0651f714b0f61a0ad":[3,0,25,12],
+"class_radio_lib_print.html#a2c055b364954957a48a798abe14cdff7":[3,0,25,18],
+"class_radio_lib_print.html#a2e6857e72af3ebca1607ccd5d8201c6c":[3,0,25,2],
+"class_radio_lib_print.html#a361a76b2f27cb9398d201a4e5efe0358":[3,0,25,16],
+"class_radio_lib_print.html#a6e1803a39074e658e54931f13bd2d641":[3,0,25,20],
+"class_radio_lib_print.html#a7a4c5fc3fbe7c78a2739dfd5b2648a11":[3,0,25,5],
+"class_radio_lib_print.html#a9a800f38287c6f292ab0110c6d396a88":[3,0,25,14],
+"class_radio_lib_print.html#a9aa1fb490af4bd22aabc6687c4d082af":[3,0,25,1],
+"class_radio_lib_print.html#aa2ac029ea08cf28ebcc3abd52e19164f":[3,0,25,4],
+"class_radio_lib_print.html#aaecbc6db0a6312a186f5eef774be5ad2":[3,0,25,0],
+"class_radio_lib_print.html#ab1f386ce4a8fa5b10eb72f7d8854e292":[3,0,25,13],
+"class_radio_lib_print.html#ab794539d4769bcf1f0f4d2984b767390":[3,0,25,15],
+"class_radio_lib_print.html#abcab0d059987ce8f72e8a99959f1605c":[3,0,25,10],
+"class_radio_lib_print.html#ac62c6e144cc5f2ab3d2dfa69e304600d":[3,0,25,9],
+"class_radio_lib_print.html#ad2c5435bea28e97f4893002f01549c80":[3,0,25,19],
+"class_radio_lib_print.html#ad2cbd376adf2d4fc949e02c955cf213c":[3,0,25,8],
+"class_radio_lib_print.html#aecfc38ba379bc123ea7e07e47de801e9":[3,0,25,7],
+"class_radio_lib_print.html#af2211384921ec34cce7257f729fff60d":[3,0,25,3],
+"class_s_s_t_v_client.html":[3,0,38],
+"class_s_s_t_v_client.html#a0126ac04934f589b8cb04a038c342044":[3,0,38,5],
+"class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e":[3,0,38,8],
+"class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e":[3,0,38,6],
+"class_s_s_t_v_client.html#a3769dcdebf8b1fa01eb2d8bd2bb3815a":[3,0,38,3],
+"class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0":[3,0,38,7],
+"class_s_s_t_v_client.html#a99e46bec8403dfc36b9e5b102b1f7cf1":[3,0,38,1],
+"class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d":[3,0,38,4],
+"class_s_s_t_v_client.html#af15cf501c00172270d2d2c43d7a7100a":[3,0,38,0],
+"class_s_s_t_v_client.html#afd4257e858a88e5847854a46f166a9b0":[3,0,38,2],
+"class_s_t_m32_w_lx.html":[3,0,40],
+"class_s_t_m32_w_lx.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7":[3,0,40,7]
};
diff --git a/navtreeindex2.js b/navtreeindex2.js
index c8a56fc4..54d9fe5d 100644
--- a/navtreeindex2.js
+++ b/navtreeindex2.js
@@ -1,253 +1,253 @@
var NAVTREEINDEX2 =
{
-"class_s_t_m32_w_lx.html#af12e8eba13c5dd8bcf8656ed5c1f6cef":[3,0,39,3],
-"class_s_t_m32_w_lx___module.html":[3,0,40],
-"class_s_t_m32_w_lx___module.html#ad61ab4742f6392865afcfd8463560c5d":[3,0,40,0],
-"class_s_x1231.html":[3,0,42],
-"class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244":[3,0,42,1],
-"class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269":[3,0,42,0],
-"class_s_x1261.html":[3,0,43],
-"class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35":[3,0,43,0],
-"class_s_x1261.html#aa541f927995a1756c651b93fd24edc65":[3,0,43,1],
-"class_s_x1262.html":[3,0,44],
-"class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d":[3,0,44,0],
-"class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6":[3,0,44,4],
-"class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1":[3,0,44,2],
-"class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc":[3,0,44,1],
-"class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc":[3,0,44,5],
-"class_s_x1262.html#abb018b820eb71ca6b0cd92c62affa767":[3,0,44,3],
-"class_s_x1268.html":[3,0,45],
-"class_s_x1268.html#a59b538f4971525849b7aaa3456de9929":[3,0,45,4],
-"class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45":[3,0,45,5],
-"class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f":[3,0,45,0],
-"class_s_x1268.html#abf338b7036d692a4a8ca6bf305c0cb12":[3,0,45,3],
-"class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71":[3,0,45,1],
-"class_s_x1268.html#af6b041392136b599eec57085e2067a6f":[3,0,45,2],
-"class_s_x126x.html":[3,0,46],
-"class_s_x126x.html#a068d709ffb79ae66d718ffb76ffae997":[3,0,46,13],
-"class_s_x126x.html#a077f180905ce4818cbdacad0cd9fe841":[3,0,46,67],
-"class_s_x126x.html#a0a0df468eacc71c1b2a093ac06bfff51":[3,0,46,47],
-"class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d":[3,0,46,38],
-"class_s_x126x.html#a0ec1b926c93885739b546a7f39e8b09c":[3,0,46,65],
-"class_s_x126x.html#a10a0e75571350fb05fa100e5d5151be2":[3,0,46,64],
-"class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676":[3,0,46,37],
-"class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2":[3,0,46,46],
-"class_s_x126x.html#a249c905c1752feb7d228f78a15d5b2e1":[3,0,46,21],
-"class_s_x126x.html#a2af78b744b3e61d3857bed93c3b1bde1":[3,0,46,75],
-"class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60":[3,0,46,41],
-"class_s_x126x.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7":[3,0,46,48],
-"class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c":[3,0,46,3],
-"class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08":[3,0,46,31],
-"class_s_x126x.html#a2fa0384a529746811e2dcb2eeb4188ec":[3,0,46,63],
-"class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2":[3,0,46,25],
-"class_s_x126x.html#a3563453988a83d22dd07d4691543a300":[3,0,46,24],
-"class_s_x126x.html#a3765f534418d4e0540c179621c019138":[3,0,46,6],
-"class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf":[3,0,46,53],
-"class_s_x126x.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,46,72],
-"class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8":[3,0,46,9],
-"class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,46,71],
-"class_s_x126x.html#a514cabe74bbe3434d7e4f244c4077752":[3,0,46,43],
-"class_s_x126x.html#a5595fff99d76d50d711b8cdad98527c4":[3,0,46,60],
-"class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6":[3,0,46,55],
-"class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22":[3,0,46,49],
-"class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8":[3,0,46,45],
-"class_s_x126x.html#a5b4f8a41b593436b8c7a2a2d46ac387e":[3,0,46,66],
-"class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376":[3,0,46,56],
-"class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd":[3,0,46,4],
-"class_s_x126x.html#a755e7df4b0958f7c793d0c058408831a":[3,0,46,30],
-"class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71":[3,0,46,62],
-"class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3":[3,0,46,42],
-"class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e":[3,0,46,32],
-"class_s_x126x.html#a7e342ddbef84cf845bef8f4448b8da10":[3,0,46,19],
-"class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561":[3,0,46,22],
-"class_s_x126x.html#a865397e1cca38bec2d055c047825ea07":[3,0,46,58],
-"class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435":[3,0,46,28],
-"class_s_x126x.html#a8a3ad4e12df862ab18b326d9dba26d66":[3,0,46,61],
-"class_s_x126x.html#a8cdc4f25d4193dc75f9442874131eab3":[3,0,46,23],
-"class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e":[3,0,46,7],
-"class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e":[3,0,46,36],
-"class_s_x126x.html#a920aa76ff5f0f579424ef6de92e588c8":[3,0,46,50],
-"class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b":[3,0,46,74],
-"class_s_x126x.html#a923654706eff5118ef6e84214e837f27":[3,0,46,68],
-"class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d":[3,0,46,76],
-"class_s_x126x.html#a936a40038e05740a528f2b53f8e17010":[3,0,46,2],
-"class_s_x126x.html#a95007639c2648a1dbb614493224606f1":[3,0,46,35],
-"class_s_x126x.html#a9a9b090eddcb811ee19b595debfab1df":[3,0,46,14],
-"class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f":[3,0,46,29],
-"class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f":[3,0,46,54],
-"class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab":[3,0,46,11],
-"class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009":[3,0,46,73],
-"class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8":[3,0,46,0],
-"class_s_x126x.html#aae1af90432c457e5bf8f8f362295399b":[3,0,46,15],
-"class_s_x126x.html#ab00f765bbfbfaa8c693532ea3a90c29b":[3,0,46,44],
-"class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,46,26],
-"class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1":[3,0,46,70],
-"class_s_x126x.html#ab9ce38cfeaa36ddcc2d82b2974d7088c":[3,0,46,1],
-"class_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a":[3,0,46,40],
-"class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5":[3,0,46,8],
-"class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034":[3,0,46,33],
-"class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f":[3,0,46,10],
-"class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987":[3,0,46,16],
-"class_s_x126x.html#ac594fbb30c5010658c970a64654c7162":[3,0,46,52],
-"class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9":[3,0,46,12],
-"class_s_x126x.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,46,69],
-"class_s_x126x.html#ada0fe6c3d31885952b439135cf0c18f1":[3,0,46,77],
-"class_s_x126x.html#adec09cba71494bd927ad1da786606ca6":[3,0,46,20],
-"class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca":[3,0,46,18],
-"class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0":[3,0,46,27],
-"class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf":[3,0,46,39],
-"class_s_x126x.html#ae473773e5bed4b08452e80311bdb26f2":[3,0,46,59],
-"class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d":[3,0,46,51],
-"class_s_x126x.html#afabefb1b214411198f3537e8afce898f":[3,0,46,17],
-"class_s_x126x.html#afb5509f0705cdd971065251ed6b2fb4e":[3,0,46,57],
-"class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2":[3,0,46,5],
-"class_s_x126x.html#afd3113858966e878e9c67a1e710bd586":[3,0,46,34],
-"class_s_x1272.html":[3,0,47],
-"class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac":[3,0,47,8],
-"class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b":[3,0,47,9],
-"class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47":[3,0,47,14],
-"class_s_x1272.html#a4aaf9d61310fa7b4fce413ae53d30ac0":[3,0,47,5],
-"class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3":[3,0,47,7],
-"class_s_x1272.html#a6677a04aa0c2f3bbde2509786b6a66de":[3,0,47,17],
-"class_s_x1272.html#a82084ac58502c83d2ada998410307490":[3,0,47,18],
-"class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260":[3,0,47,3],
-"class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea":[3,0,47,13],
-"class_s_x1272.html#a960913438feccad4c1913a9222384a5f":[3,0,47,11],
-"class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626":[3,0,47,0],
-"class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5":[3,0,47,10],
-"class_s_x1272.html#abb4bbfe8acc6026c833d267d78417b63":[3,0,47,1],
-"class_s_x1272.html#abd912314a977f92c464d36d862329ffc":[3,0,47,12],
-"class_s_x1272.html#acdf35ee105a327e0e6089615e6f9bb1a":[3,0,47,6],
-"class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852":[3,0,47,16],
-"class_s_x1272.html#ae3c9704cb58232f696b5f90f69c115f7":[3,0,47,4],
-"class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9":[3,0,47,2],
-"class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8":[3,0,47,15],
-"class_s_x1273.html":[3,0,48],
-"class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2":[3,0,48,1],
-"class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f":[3,0,48,2],
-"class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b":[3,0,48,0],
-"class_s_x1276.html":[3,0,49],
-"class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008":[3,0,49,3],
-"class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b":[3,0,49,0],
-"class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7":[3,0,49,1],
-"class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840":[3,0,49,2],
-"class_s_x1277.html":[3,0,50],
-"class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf":[3,0,50,4],
-"class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda":[3,0,50,0],
-"class_s_x1277.html#a42adde5eecccdca95214980848795e82":[3,0,50,3],
-"class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3":[3,0,50,1],
-"class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44":[3,0,50,2],
-"class_s_x1278.html":[3,0,51],
-"class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e":[3,0,51,0],
-"class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4":[3,0,51,14],
-"class_s_x1278.html#a260399b893988196771bc5a62d604822":[3,0,51,6],
-"class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6":[3,0,51,9],
-"class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e":[3,0,51,7],
-"class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4":[3,0,51,15],
-"class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad":[3,0,51,8],
-"class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856":[3,0,51,5],
-"class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1":[3,0,51,4],
-"class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88":[3,0,51,17],
-"class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1":[3,0,51,11],
-"class_s_x1278.html#a86464af008b71d12948690b780280e7d":[3,0,51,3],
-"class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf":[3,0,51,2],
-"class_s_x1278.html#aa57b713988cfa224a6db2ff325052931":[3,0,51,16],
-"class_s_x1278.html#ac0be7586b8e40355bbd29d78ae9941d1":[3,0,51,12],
-"class_s_x1278.html#ae02adcde8c2978c0d1b157729dd5df1e":[3,0,51,1],
-"class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08":[3,0,51,18],
-"class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563":[3,0,51,13],
-"class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67":[3,0,51,10],
-"class_s_x1279.html":[3,0,52],
-"class_s_x1279.html#a324a37dee0522f43692cd414141becc2":[3,0,52,1],
-"class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b":[3,0,52,2],
-"class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a":[3,0,52,0],
-"class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817":[3,0,52,3],
-"class_s_x127x.html":[3,0,53],
-"class_s_x127x.html#a0995088d37689a3c240a1af791df6cf1":[3,0,53,30],
-"class_s_x127x.html#a0ae533401c801f1d4034eb3db8b1f30c":[3,0,53,74],
-"class_s_x127x.html#a0f041e91ab2fbb6f05eef56b5addac71":[3,0,53,7],
-"class_s_x127x.html#a103b606166eba8c69bff061270744768":[3,0,53,48],
-"class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538":[3,0,53,58],
-"class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa":[3,0,53,10],
-"class_s_x127x.html#a1a2dc7554414f0ce2ee0db23087f698a":[3,0,53,32],
-"class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c":[3,0,53,83],
-"class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059":[3,0,53,73],
-"class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04":[3,0,53,29],
-"class_s_x127x.html#a201c31366f32c41b801724fb662265c1":[3,0,53,54],
-"class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee":[3,0,53,57],
-"class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a":[3,0,53,12],
-"class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53":[3,0,53,67],
-"class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc":[3,0,53,23],
-"class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68":[3,0,53,38],
-"class_s_x127x.html#a3563453988a83d22dd07d4691543a300":[3,0,53,33],
-"class_s_x127x.html#a36dbd1697a415c6db3b47cd620c8c02e":[3,0,53,11],
-"class_s_x127x.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,53,80],
-"class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002":[3,0,53,45],
-"class_s_x127x.html#a41089d9e5b45217d3e31ac22b5326b66":[3,0,53,5],
-"class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e":[3,0,53,40],
-"class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df":[3,0,53,70],
-"class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679":[3,0,53,55],
-"class_s_x127x.html#a462fa74275e67c296328a01f361892d5":[3,0,53,24],
-"class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54":[3,0,53,60],
-"class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,53,79],
-"class_s_x127x.html#a4c27736905cf848a67d6cbc92df823b8":[3,0,53,22],
-"class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544":[3,0,53,15],
-"class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76":[3,0,53,66],
-"class_s_x127x.html#a53d9bd78635a97dc0e3309b675763510":[3,0,53,25],
-"class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c":[3,0,53,18],
-"class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430":[3,0,53,1],
-"class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef":[3,0,53,42],
-"class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450":[3,0,53,31],
-"class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359":[3,0,53,14],
-"class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb":[3,0,53,53],
-"class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823":[3,0,53,3],
-"class_s_x127x.html#a73f2d2fe803e3496026011f0da694cfb":[3,0,53,2],
-"class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41":[3,0,53,71],
-"class_s_x127x.html#a7b4bce81839b105c464ebf922602e58b":[3,0,53,47],
-"class_s_x127x.html#a7b85344084b800966a46ace59dcb5277":[3,0,53,49],
-"class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1":[3,0,53,52],
-"class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f":[3,0,53,13],
-"class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd":[3,0,53,9],
-"class_s_x127x.html#a8b93142202167270db109d18b743c744":[3,0,53,61],
-"class_s_x127x.html#a8ca9edcae05060cce3ff7ee58faeb4e2":[3,0,53,63],
-"class_s_x127x.html#a923654706eff5118ef6e84214e837f27":[3,0,53,76],
-"class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1":[3,0,53,27],
-"class_s_x127x.html#a9b6532a25e1730973ac08146008adca5":[3,0,53,4],
-"class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc":[3,0,53,68],
-"class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29":[3,0,53,81],
-"class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238":[3,0,53,50],
-"class_s_x127x.html#aa565bbff460e487672953dc05d335cb0":[3,0,53,72],
-"class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f":[3,0,53,37],
-"class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1":[3,0,53,6],
-"class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d":[3,0,53,59],
-"class_s_x127x.html#ab0f67330124cefc07a462e77922453d0":[3,0,53,41],
-"class_s_x127x.html#ab531ad461b250a060e92d9c744e79070":[3,0,53,44],
-"class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed":[3,0,53,62],
-"class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,53,35],
-"class_s_x127x.html#ab9625a5246a45112267ce441ac2de254":[3,0,53,64],
-"class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95":[3,0,53,56],
-"class_s_x127x.html#abad2d455012bd28d304589c8164390eb":[3,0,53,51],
-"class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb":[3,0,53,26],
-"class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40":[3,0,53,43],
-"class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745":[3,0,53,34],
-"class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde":[3,0,53,69],
-"class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d":[3,0,53,21],
-"class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c":[3,0,53,0],
-"class_s_x127x.html#ad3955f85f456edae772a51025a19029b":[3,0,53,65],
-"class_s_x127x.html#ad532e1a62c6ee2c58f9517e6e62728ac":[3,0,53,28],
-"class_s_x127x.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,53,77],
-"class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617":[3,0,53,19],
-"class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5":[3,0,53,39],
-"class_s_x127x.html#adc25b685de0859b799488bf7729350b6":[3,0,53,17],
-"class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083":[3,0,53,78],
-"class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c":[3,0,53,36],
-"class_s_x127x.html#adffb96b7f80dc43909bb4cebde68fe9d":[3,0,53,75],
-"class_s_x127x.html#ae75bc48cc74a407370cd9f4bf95e9e30":[3,0,53,46],
-"class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd":[3,0,53,16],
-"class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84":[3,0,53,82],
-"class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362":[3,0,53,20],
-"class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5":[3,0,53,8],
-"class_s_x1280.html":[3,0,54],
-"class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb":[3,0,54,0],
-"class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2":[3,0,54,2]
+"class_s_t_m32_w_lx.html#a4f2a9b5a72b5238d2014199d91094f84":[3,0,40,2],
+"class_s_t_m32_w_lx.html#a54130403f6afbb0924da17c28afb17fc":[3,0,40,4],
+"class_s_t_m32_w_lx.html#a63d61bc5057e9da3d0ea12feae67122e":[3,0,40,5],
+"class_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b":[3,0,40,6],
+"class_s_t_m32_w_lx.html#ac0e8787dbb8e8aaa172b089ace6eaa09":[3,0,40,1],
+"class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787":[3,0,40,0],
+"class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a0cffe238c4822ab7f8beddf4ec72052b":[3,0,40,0,0],
+"class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a20a2eda9aaf3c7cdb4a55955d6ff3544":[3,0,40,0,3],
+"class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a50df4b8580f1bded3cb61e79f954789e":[3,0,40,0,4],
+"class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a85ffabc9f35e2683aefdd785bf912172":[3,0,40,0,2],
+"class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a8cf0ccad0eec5fde12798e0b0347d6bf":[3,0,40,0,1],
+"class_s_t_m32_w_lx.html#af12e8eba13c5dd8bcf8656ed5c1f6cef":[3,0,40,3],
+"class_s_t_m32_w_lx___module.html":[3,0,41],
+"class_s_t_m32_w_lx___module.html#ad61ab4742f6392865afcfd8463560c5d":[3,0,41,0],
+"class_s_x1231.html":[3,0,43],
+"class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244":[3,0,43,1],
+"class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269":[3,0,43,0],
+"class_s_x1261.html":[3,0,44],
+"class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35":[3,0,44,0],
+"class_s_x1261.html#aa541f927995a1756c651b93fd24edc65":[3,0,44,1],
+"class_s_x1262.html":[3,0,45],
+"class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d":[3,0,45,0],
+"class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6":[3,0,45,4],
+"class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1":[3,0,45,2],
+"class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc":[3,0,45,1],
+"class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc":[3,0,45,5],
+"class_s_x1262.html#abb018b820eb71ca6b0cd92c62affa767":[3,0,45,3],
+"class_s_x1268.html":[3,0,46],
+"class_s_x1268.html#a59b538f4971525849b7aaa3456de9929":[3,0,46,4],
+"class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45":[3,0,46,5],
+"class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f":[3,0,46,0],
+"class_s_x1268.html#abf338b7036d692a4a8ca6bf305c0cb12":[3,0,46,3],
+"class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71":[3,0,46,1],
+"class_s_x1268.html#af6b041392136b599eec57085e2067a6f":[3,0,46,2],
+"class_s_x126x.html":[3,0,47],
+"class_s_x126x.html#a013065f21a7c029f310178f884a60898":[3,0,47,66],
+"class_s_x126x.html#a068d709ffb79ae66d718ffb76ffae997":[3,0,47,13],
+"class_s_x126x.html#a077f180905ce4818cbdacad0cd9fe841":[3,0,47,68],
+"class_s_x126x.html#a0a0df468eacc71c1b2a093ac06bfff51":[3,0,47,47],
+"class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d":[3,0,47,38],
+"class_s_x126x.html#a10a0e75571350fb05fa100e5d5151be2":[3,0,47,64],
+"class_s_x126x.html#a16e8b271dc5e9af3015dd2901153cbde":[3,0,47,65],
+"class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676":[3,0,47,37],
+"class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2":[3,0,47,46],
+"class_s_x126x.html#a249c905c1752feb7d228f78a15d5b2e1":[3,0,47,21],
+"class_s_x126x.html#a2af78b744b3e61d3857bed93c3b1bde1":[3,0,47,76],
+"class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60":[3,0,47,41],
+"class_s_x126x.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7":[3,0,47,48],
+"class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c":[3,0,47,3],
+"class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08":[3,0,47,31],
+"class_s_x126x.html#a2fa0384a529746811e2dcb2eeb4188ec":[3,0,47,63],
+"class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2":[3,0,47,25],
+"class_s_x126x.html#a3563453988a83d22dd07d4691543a300":[3,0,47,24],
+"class_s_x126x.html#a3765f534418d4e0540c179621c019138":[3,0,47,6],
+"class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf":[3,0,47,53],
+"class_s_x126x.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,47,73],
+"class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8":[3,0,47,9],
+"class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,47,72],
+"class_s_x126x.html#a514cabe74bbe3434d7e4f244c4077752":[3,0,47,43],
+"class_s_x126x.html#a5595fff99d76d50d711b8cdad98527c4":[3,0,47,60],
+"class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6":[3,0,47,55],
+"class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22":[3,0,47,49],
+"class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8":[3,0,47,45],
+"class_s_x126x.html#a5b4f8a41b593436b8c7a2a2d46ac387e":[3,0,47,67],
+"class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376":[3,0,47,56],
+"class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd":[3,0,47,4],
+"class_s_x126x.html#a755e7df4b0958f7c793d0c058408831a":[3,0,47,30],
+"class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71":[3,0,47,62],
+"class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3":[3,0,47,42],
+"class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e":[3,0,47,32],
+"class_s_x126x.html#a7e342ddbef84cf845bef8f4448b8da10":[3,0,47,19],
+"class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561":[3,0,47,22],
+"class_s_x126x.html#a865397e1cca38bec2d055c047825ea07":[3,0,47,58],
+"class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435":[3,0,47,28],
+"class_s_x126x.html#a8a3ad4e12df862ab18b326d9dba26d66":[3,0,47,61],
+"class_s_x126x.html#a8cdc4f25d4193dc75f9442874131eab3":[3,0,47,23],
+"class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e":[3,0,47,7],
+"class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e":[3,0,47,36],
+"class_s_x126x.html#a920aa76ff5f0f579424ef6de92e588c8":[3,0,47,50],
+"class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b":[3,0,47,75],
+"class_s_x126x.html#a923654706eff5118ef6e84214e837f27":[3,0,47,69],
+"class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d":[3,0,47,77],
+"class_s_x126x.html#a936a40038e05740a528f2b53f8e17010":[3,0,47,2],
+"class_s_x126x.html#a95007639c2648a1dbb614493224606f1":[3,0,47,35],
+"class_s_x126x.html#a9a9b090eddcb811ee19b595debfab1df":[3,0,47,14],
+"class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f":[3,0,47,29],
+"class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f":[3,0,47,54],
+"class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab":[3,0,47,11],
+"class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009":[3,0,47,74],
+"class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8":[3,0,47,0],
+"class_s_x126x.html#aae1af90432c457e5bf8f8f362295399b":[3,0,47,15],
+"class_s_x126x.html#ab00f765bbfbfaa8c693532ea3a90c29b":[3,0,47,44],
+"class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,47,26],
+"class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1":[3,0,47,71],
+"class_s_x126x.html#ab9ce38cfeaa36ddcc2d82b2974d7088c":[3,0,47,1],
+"class_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a":[3,0,47,40],
+"class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5":[3,0,47,8],
+"class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034":[3,0,47,33],
+"class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f":[3,0,47,10],
+"class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987":[3,0,47,16],
+"class_s_x126x.html#ac594fbb30c5010658c970a64654c7162":[3,0,47,52],
+"class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9":[3,0,47,12],
+"class_s_x126x.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,47,70],
+"class_s_x126x.html#ada0fe6c3d31885952b439135cf0c18f1":[3,0,47,78],
+"class_s_x126x.html#adec09cba71494bd927ad1da786606ca6":[3,0,47,20],
+"class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca":[3,0,47,18],
+"class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0":[3,0,47,27],
+"class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf":[3,0,47,39],
+"class_s_x126x.html#ae473773e5bed4b08452e80311bdb26f2":[3,0,47,59],
+"class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d":[3,0,47,51],
+"class_s_x126x.html#afabefb1b214411198f3537e8afce898f":[3,0,47,17],
+"class_s_x126x.html#afb5509f0705cdd971065251ed6b2fb4e":[3,0,47,57],
+"class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2":[3,0,47,5],
+"class_s_x126x.html#afd3113858966e878e9c67a1e710bd586":[3,0,47,34],
+"class_s_x1272.html":[3,0,48],
+"class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac":[3,0,48,8],
+"class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b":[3,0,48,9],
+"class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47":[3,0,48,14],
+"class_s_x1272.html#a4aaf9d61310fa7b4fce413ae53d30ac0":[3,0,48,5],
+"class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3":[3,0,48,7],
+"class_s_x1272.html#a6677a04aa0c2f3bbde2509786b6a66de":[3,0,48,17],
+"class_s_x1272.html#a82084ac58502c83d2ada998410307490":[3,0,48,18],
+"class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260":[3,0,48,3],
+"class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea":[3,0,48,13],
+"class_s_x1272.html#a960913438feccad4c1913a9222384a5f":[3,0,48,11],
+"class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626":[3,0,48,0],
+"class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5":[3,0,48,10],
+"class_s_x1272.html#abb4bbfe8acc6026c833d267d78417b63":[3,0,48,1],
+"class_s_x1272.html#abd912314a977f92c464d36d862329ffc":[3,0,48,12],
+"class_s_x1272.html#acdf35ee105a327e0e6089615e6f9bb1a":[3,0,48,6],
+"class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852":[3,0,48,16],
+"class_s_x1272.html#ae3c9704cb58232f696b5f90f69c115f7":[3,0,48,4],
+"class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9":[3,0,48,2],
+"class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8":[3,0,48,15],
+"class_s_x1273.html":[3,0,49],
+"class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2":[3,0,49,1],
+"class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f":[3,0,49,2],
+"class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b":[3,0,49,0],
+"class_s_x1276.html":[3,0,50],
+"class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008":[3,0,50,3],
+"class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b":[3,0,50,0],
+"class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7":[3,0,50,1],
+"class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840":[3,0,50,2],
+"class_s_x1277.html":[3,0,51],
+"class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf":[3,0,51,4],
+"class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda":[3,0,51,0],
+"class_s_x1277.html#a42adde5eecccdca95214980848795e82":[3,0,51,3],
+"class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3":[3,0,51,1],
+"class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44":[3,0,51,2],
+"class_s_x1278.html":[3,0,52],
+"class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e":[3,0,52,0],
+"class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4":[3,0,52,14],
+"class_s_x1278.html#a260399b893988196771bc5a62d604822":[3,0,52,6],
+"class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6":[3,0,52,9],
+"class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e":[3,0,52,7],
+"class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4":[3,0,52,15],
+"class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad":[3,0,52,8],
+"class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856":[3,0,52,5],
+"class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1":[3,0,52,4],
+"class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88":[3,0,52,17],
+"class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1":[3,0,52,11],
+"class_s_x1278.html#a86464af008b71d12948690b780280e7d":[3,0,52,3],
+"class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf":[3,0,52,2],
+"class_s_x1278.html#aa57b713988cfa224a6db2ff325052931":[3,0,52,16],
+"class_s_x1278.html#ac0be7586b8e40355bbd29d78ae9941d1":[3,0,52,12],
+"class_s_x1278.html#ae02adcde8c2978c0d1b157729dd5df1e":[3,0,52,1],
+"class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08":[3,0,52,18],
+"class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563":[3,0,52,13],
+"class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67":[3,0,52,10],
+"class_s_x1279.html":[3,0,53],
+"class_s_x1279.html#a324a37dee0522f43692cd414141becc2":[3,0,53,1],
+"class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b":[3,0,53,2],
+"class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a":[3,0,53,0],
+"class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817":[3,0,53,3],
+"class_s_x127x.html":[3,0,54],
+"class_s_x127x.html#a0995088d37689a3c240a1af791df6cf1":[3,0,54,30],
+"class_s_x127x.html#a0ae533401c801f1d4034eb3db8b1f30c":[3,0,54,75],
+"class_s_x127x.html#a0f041e91ab2fbb6f05eef56b5addac71":[3,0,54,7],
+"class_s_x127x.html#a103b606166eba8c69bff061270744768":[3,0,54,48],
+"class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538":[3,0,54,58],
+"class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa":[3,0,54,10],
+"class_s_x127x.html#a1a2dc7554414f0ce2ee0db23087f698a":[3,0,54,32],
+"class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c":[3,0,54,84],
+"class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059":[3,0,54,73],
+"class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04":[3,0,54,29],
+"class_s_x127x.html#a201c31366f32c41b801724fb662265c1":[3,0,54,54],
+"class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee":[3,0,54,57],
+"class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a":[3,0,54,12],
+"class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53":[3,0,54,67],
+"class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc":[3,0,54,23],
+"class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68":[3,0,54,38],
+"class_s_x127x.html#a3563453988a83d22dd07d4691543a300":[3,0,54,33],
+"class_s_x127x.html#a36dbd1697a415c6db3b47cd620c8c02e":[3,0,54,11],
+"class_s_x127x.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,54,81],
+"class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002":[3,0,54,45],
+"class_s_x127x.html#a41089d9e5b45217d3e31ac22b5326b66":[3,0,54,5],
+"class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e":[3,0,54,40],
+"class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df":[3,0,54,70],
+"class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679":[3,0,54,55],
+"class_s_x127x.html#a462fa74275e67c296328a01f361892d5":[3,0,54,24],
+"class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54":[3,0,54,60],
+"class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,54,80],
+"class_s_x127x.html#a4c27736905cf848a67d6cbc92df823b8":[3,0,54,22],
+"class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544":[3,0,54,15],
+"class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76":[3,0,54,66],
+"class_s_x127x.html#a53d9bd78635a97dc0e3309b675763510":[3,0,54,25],
+"class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c":[3,0,54,18],
+"class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430":[3,0,54,1],
+"class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef":[3,0,54,42],
+"class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450":[3,0,54,31],
+"class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359":[3,0,54,14],
+"class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb":[3,0,54,53],
+"class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823":[3,0,54,3],
+"class_s_x127x.html#a73f2d2fe803e3496026011f0da694cfb":[3,0,54,2],
+"class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41":[3,0,54,71],
+"class_s_x127x.html#a7b4bce81839b105c464ebf922602e58b":[3,0,54,47],
+"class_s_x127x.html#a7b85344084b800966a46ace59dcb5277":[3,0,54,49],
+"class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1":[3,0,54,52],
+"class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f":[3,0,54,13],
+"class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd":[3,0,54,9],
+"class_s_x127x.html#a8b93142202167270db109d18b743c744":[3,0,54,61],
+"class_s_x127x.html#a8ca9edcae05060cce3ff7ee58faeb4e2":[3,0,54,63],
+"class_s_x127x.html#a923654706eff5118ef6e84214e837f27":[3,0,54,77],
+"class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1":[3,0,54,27],
+"class_s_x127x.html#a9b6532a25e1730973ac08146008adca5":[3,0,54,4],
+"class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc":[3,0,54,68],
+"class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29":[3,0,54,82],
+"class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238":[3,0,54,50],
+"class_s_x127x.html#aa565bbff460e487672953dc05d335cb0":[3,0,54,72],
+"class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f":[3,0,54,37],
+"class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1":[3,0,54,6],
+"class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d":[3,0,54,59],
+"class_s_x127x.html#ab0f67330124cefc07a462e77922453d0":[3,0,54,41],
+"class_s_x127x.html#ab531ad461b250a060e92d9c744e79070":[3,0,54,44],
+"class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed":[3,0,54,62],
+"class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,54,35],
+"class_s_x127x.html#ab9625a5246a45112267ce441ac2de254":[3,0,54,64],
+"class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95":[3,0,54,56],
+"class_s_x127x.html#abad2d455012bd28d304589c8164390eb":[3,0,54,51],
+"class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb":[3,0,54,26],
+"class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40":[3,0,54,43],
+"class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745":[3,0,54,34],
+"class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde":[3,0,54,69],
+"class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d":[3,0,54,21],
+"class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c":[3,0,54,0],
+"class_s_x127x.html#acaa90f7b8fcb4c41e2672923945d8ea7":[3,0,54,76],
+"class_s_x127x.html#ad3955f85f456edae772a51025a19029b":[3,0,54,65],
+"class_s_x127x.html#ad532e1a62c6ee2c58f9517e6e62728ac":[3,0,54,28],
+"class_s_x127x.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,54,78],
+"class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617":[3,0,54,19]
};
diff --git a/navtreeindex3.js b/navtreeindex3.js
index b02eea18..1cb7dbf7 100644
--- a/navtreeindex3.js
+++ b/navtreeindex3.js
@@ -1,131 +1,145 @@
var NAVTREEINDEX3 =
{
-"class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10":[3,0,54,3],
-"class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f":[3,0,54,1],
-"class_s_x1281.html":[3,0,55],
-"class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998":[3,0,55,0],
-"class_s_x1282.html":[3,0,56],
-"class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232":[3,0,56,0],
-"class_s_x128x.html":[3,0,57],
-"class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed":[3,0,57,32],
-"class_s_x128x.html#a0efa595867624a54153d693d16f9f731":[3,0,57,44],
-"class_s_x128x.html#a1463f0769b815e95d789fd708dc2ffe6":[3,0,57,16],
-"class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133":[3,0,57,40],
-"class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1":[3,0,57,45],
-"class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f":[3,0,57,47],
-"class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371":[3,0,57,35],
-"class_s_x128x.html#a2361a94f2e12ebc93e750a027d633232":[3,0,57,14],
-"class_s_x128x.html#a2643ce22176293631fea2169f5e68e66":[3,0,57,24],
-"class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1":[3,0,57,36],
-"class_s_x128x.html#a275a9a86934124eab4982ad52bf91aea":[3,0,57,1],
-"class_s_x128x.html#a2b424000856a9dc212f571d0e8890635":[3,0,57,8],
-"class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45":[3,0,57,48],
-"class_s_x128x.html#a2c4a24623c5fd27b3cc937e55783d709":[3,0,57,3],
-"class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99":[3,0,57,22],
-"class_s_x128x.html#a3563453988a83d22dd07d4691543a300":[3,0,57,19],
-"class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91":[3,0,57,37],
-"class_s_x128x.html#a389aab93e24ec8c7cc9c14de90e5dfae":[3,0,57,49],
-"class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735":[3,0,57,11],
-"class_s_x128x.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,57,55],
-"class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4":[3,0,57,7],
-"class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee":[3,0,57,28],
-"class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,57,54],
-"class_s_x128x.html#a53892566b0259d348158efe3c3c3601a":[3,0,57,57],
-"class_s_x128x.html#a5ba683fbc4a46418ce3736f224fb55f2":[3,0,57,41],
-"class_s_x128x.html#a69ee7379f4b79abf626df186b2db6441":[3,0,57,10],
-"class_s_x128x.html#a6e45fbfaec7063e52e188f47a3a585a5":[3,0,57,38],
-"class_s_x128x.html#a6ed60dfbd142315bb4e1abd2555a470a":[3,0,57,4],
-"class_s_x128x.html#a8530aaeacc4c12736ce5aa5b5460ee19":[3,0,57,50],
-"class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947":[3,0,57,34],
-"class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb":[3,0,57,25],
-"class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2":[3,0,57,13],
-"class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f":[3,0,57,46],
-"class_s_x128x.html#a923654706eff5118ef6e84214e837f27":[3,0,57,51],
-"class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5":[3,0,57,26],
-"class_s_x128x.html#a94b7fb26cc99385d30b0c98b76d8188d":[3,0,57,6],
-"class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb":[3,0,57,20],
-"class_s_x128x.html#a94d3003277925e2dc3372548b3311008":[3,0,57,12],
-"class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a":[3,0,57,17],
-"class_s_x128x.html#a99491c705e88dddc820f884b778f1660":[3,0,57,31],
-"class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7":[3,0,57,0],
-"class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a":[3,0,57,29],
-"class_s_x128x.html#aa4b1e0b96347011522e053f30202c0fe":[3,0,57,30],
-"class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,57,21],
-"class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f":[3,0,57,5],
-"class_s_x128x.html#ac69cc622020419cb3393eac5cc88915b":[3,0,57,15],
-"class_s_x128x.html#ace5ede905bf85aada0c61b9cfaaea127":[3,0,57,2],
-"class_s_x128x.html#aceeb18acbfedb20c6cf60e26d5275793":[3,0,57,18],
-"class_s_x128x.html#ad5789bd27d46b24f54aac9ca55ec9958":[3,0,57,42],
-"class_s_x128x.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,57,52],
-"class_s_x128x.html#ad988727ea6c9b4e11562651d312514c0":[3,0,57,39],
-"class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22":[3,0,57,9],
-"class_s_x128x.html#ae435f57132f76f4283abb870176acf54":[3,0,57,43],
-"class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a":[3,0,57,27],
-"class_s_x128x.html#aef221e7d463c5228ce00ed6934512848":[3,0,57,53],
-"class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5":[3,0,57,56],
-"class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236":[3,0,57,33],
-"class_s_x128x.html#aff7d86352c98771595375e17d19a2a97":[3,0,57,23],
-"class_si4430.html":[3,0,33],
-"class_si4430.html#a025a31861d1511090168e416140d0343":[3,0,33,2],
-"class_si4430.html#aaed612b8936609442042d8156e085d2c":[3,0,33,1],
-"class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9":[3,0,33,0],
-"class_si4430.html#af8d615431bf66e06b45487f3fff73d16":[3,0,33,3],
-"class_si4431.html":[3,0,34],
-"class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0":[3,0,34,0],
-"class_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3":[3,0,34,1],
-"class_si4431.html#a4da296b35056e076ff69a288bd801d19":[3,0,34,2],
-"class_si4432.html":[3,0,35],
-"class_si4432.html#a5efc3a08f91a411da011201dc128fb34":[3,0,35,1],
-"class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca":[3,0,35,3],
-"class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84":[3,0,35,2],
-"class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac":[3,0,35,0],
-"class_si443x.html":[3,0,36],
-"class_si443x.html#a1070a6cde04a01d4a35da670f65ce539":[3,0,36,32],
-"class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2":[3,0,36,31],
-"class_si443x.html#a1382fc3b68f447e381613e6670747128":[3,0,36,20],
-"class_si443x.html#a178b471527813a608c04db7d3c9648d6":[3,0,36,15],
-"class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10":[3,0,36,7],
-"class_si443x.html#a3563453988a83d22dd07d4691543a300":[3,0,36,11],
-"class_si443x.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,36,37],
-"class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314":[3,0,36,35],
-"class_si443x.html#a427f24f614f04e87094354047bf1bf00":[3,0,36,6],
-"class_si443x.html#a43e7ceeff9114b35ab89f1d69916b375":[3,0,36,24],
-"class_si443x.html#a453eda5436dc4dfe0dad676dc3977752":[3,0,36,1],
-"class_si443x.html#a4821a6141caf16141074615c976ecd91":[3,0,36,23],
-"class_si443x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,36,36],
-"class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a":[3,0,36,27],
-"class_si443x.html#a51e6b7c677e82042224798114f311175":[3,0,36,26],
-"class_si443x.html#a55252bda74e8c67636a8c1fa0e9f58d3":[3,0,36,5],
-"class_si443x.html#a55fae20e81755c8b014d080741d61913":[3,0,36,19],
-"class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99":[3,0,36,39],
-"class_si443x.html#a616eb24c4b11c5d39caaade160be8092":[3,0,36,8],
-"class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3":[3,0,36,3],
-"class_si443x.html#a74848176d435227e601c86ff37b0edbe":[3,0,36,9],
-"class_si443x.html#a782748025e19ec6e597293afb6570bff":[3,0,36,38],
-"class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66":[3,0,36,21],
-"class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726":[3,0,36,22],
-"class_si443x.html#a8898f11cf9dabd9a5ad717376fdbffa6":[3,0,36,25],
-"class_si443x.html#a8d019f58551346c3f3bd8b72d2486109":[3,0,36,2],
-"class_si443x.html#a923654706eff5118ef6e84214e837f27":[3,0,36,33],
-"class_si443x.html#aabca3ba8eda212938febab1df2e764b4":[3,0,36,14],
-"class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,36,13],
-"class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a":[3,0,36,40],
-"class_si443x.html#ac45d2776df3ff338db154ead143fb7b8":[3,0,36,29],
-"class_si443x.html#acbc0f95f32ca961294666405596ff529":[3,0,36,30],
-"class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e":[3,0,36,12],
-"class_si443x.html#ad2b3a961a99d9e8f3a7ead6e8b69e858":[3,0,36,4],
-"class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170":[3,0,36,17],
-"class_si443x.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,36,34],
-"class_si443x.html#ada90718aeb67d7f0e9899da534de9695":[3,0,36,28],
-"class_si443x.html#ade08c79074c7e4414d34eefa25cee168":[3,0,36,18],
-"class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97":[3,0,36,16],
-"class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9":[3,0,36,0],
-"class_si443x.html#af23d8eb0f1c436e6cc60361df13c08f7":[3,0,36,10],
-"class_stm32wlx_hal.html":[3,0,41],
-"class_stm32wlx_hal.html#a32b0621ec0232776393b6800181bba46":[3,0,41,0],
-"class_stm32wlx_hal.html#a70dd9f6fb6c0307e2d9d363ce6d7f2a2":[3,0,41,3],
-"class_stm32wlx_hal.html#a7fc8af77a85f8f002c7dc6476efa0ad4":[3,0,41,1],
-"class_stm32wlx_hal.html#acb925afdee4979936ef83a422d13e642":[3,0,41,2],
+"class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5":[3,0,54,39],
+"class_s_x127x.html#adc25b685de0859b799488bf7729350b6":[3,0,54,17],
+"class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083":[3,0,54,79],
+"class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c":[3,0,54,36],
+"class_s_x127x.html#ae75bc48cc74a407370cd9f4bf95e9e30":[3,0,54,46],
+"class_s_x127x.html#ae90a5df2d414dfcafd1e3b8aa790f9fd":[3,0,54,74],
+"class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd":[3,0,54,16],
+"class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84":[3,0,54,83],
+"class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362":[3,0,54,20],
+"class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5":[3,0,54,8],
+"class_s_x1280.html":[3,0,55],
+"class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb":[3,0,55,0],
+"class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2":[3,0,55,2],
+"class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10":[3,0,55,3],
+"class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f":[3,0,55,1],
+"class_s_x1281.html":[3,0,56],
+"class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998":[3,0,56,0],
+"class_s_x1282.html":[3,0,57],
+"class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232":[3,0,57,0],
+"class_s_x128x.html":[3,0,58],
+"class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed":[3,0,58,32],
+"class_s_x128x.html#a0efa595867624a54153d693d16f9f731":[3,0,58,44],
+"class_s_x128x.html#a1463f0769b815e95d789fd708dc2ffe6":[3,0,58,16],
+"class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133":[3,0,58,40],
+"class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1":[3,0,58,45],
+"class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f":[3,0,58,47],
+"class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371":[3,0,58,35],
+"class_s_x128x.html#a2361a94f2e12ebc93e750a027d633232":[3,0,58,14],
+"class_s_x128x.html#a2643ce22176293631fea2169f5e68e66":[3,0,58,24],
+"class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1":[3,0,58,36],
+"class_s_x128x.html#a275a9a86934124eab4982ad52bf91aea":[3,0,58,1],
+"class_s_x128x.html#a2b424000856a9dc212f571d0e8890635":[3,0,58,8],
+"class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45":[3,0,58,48],
+"class_s_x128x.html#a2c4a24623c5fd27b3cc937e55783d709":[3,0,58,3],
+"class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99":[3,0,58,22],
+"class_s_x128x.html#a3563453988a83d22dd07d4691543a300":[3,0,58,19],
+"class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91":[3,0,58,37],
+"class_s_x128x.html#a389aab93e24ec8c7cc9c14de90e5dfae":[3,0,58,49],
+"class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735":[3,0,58,11],
+"class_s_x128x.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,58,56],
+"class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4":[3,0,58,7],
+"class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee":[3,0,58,28],
+"class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,58,55],
+"class_s_x128x.html#a53892566b0259d348158efe3c3c3601a":[3,0,58,58],
+"class_s_x128x.html#a5ba683fbc4a46418ce3736f224fb55f2":[3,0,58,41],
+"class_s_x128x.html#a69ee7379f4b79abf626df186b2db6441":[3,0,58,10],
+"class_s_x128x.html#a6e45fbfaec7063e52e188f47a3a585a5":[3,0,58,38],
+"class_s_x128x.html#a6ed60dfbd142315bb4e1abd2555a470a":[3,0,58,4],
+"class_s_x128x.html#a8530aaeacc4c12736ce5aa5b5460ee19":[3,0,58,51],
+"class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947":[3,0,58,34],
+"class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb":[3,0,58,25],
+"class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2":[3,0,58,13],
+"class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f":[3,0,58,46],
+"class_s_x128x.html#a923654706eff5118ef6e84214e837f27":[3,0,58,52],
+"class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5":[3,0,58,26],
+"class_s_x128x.html#a94b7fb26cc99385d30b0c98b76d8188d":[3,0,58,6],
+"class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb":[3,0,58,20],
+"class_s_x128x.html#a94d3003277925e2dc3372548b3311008":[3,0,58,12],
+"class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a":[3,0,58,17],
+"class_s_x128x.html#a99491c705e88dddc820f884b778f1660":[3,0,58,31],
+"class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7":[3,0,58,0],
+"class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a":[3,0,58,29],
+"class_s_x128x.html#aa4b1e0b96347011522e053f30202c0fe":[3,0,58,30],
+"class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,58,21],
+"class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f":[3,0,58,5],
+"class_s_x128x.html#ac69cc622020419cb3393eac5cc88915b":[3,0,58,15],
+"class_s_x128x.html#ace5ede905bf85aada0c61b9cfaaea127":[3,0,58,2],
+"class_s_x128x.html#aceeb18acbfedb20c6cf60e26d5275793":[3,0,58,18],
+"class_s_x128x.html#ad5789bd27d46b24f54aac9ca55ec9958":[3,0,58,42],
+"class_s_x128x.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,58,53],
+"class_s_x128x.html#ad988727ea6c9b4e11562651d312514c0":[3,0,58,39],
+"class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22":[3,0,58,9],
+"class_s_x128x.html#ae435f57132f76f4283abb870176acf54":[3,0,58,43],
+"class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a":[3,0,58,27],
+"class_s_x128x.html#aef221e7d463c5228ce00ed6934512848":[3,0,58,54],
+"class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5":[3,0,58,57],
+"class_s_x128x.html#afe700968c1e02e335c389b59d950ca39":[3,0,58,50],
+"class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236":[3,0,58,33],
+"class_s_x128x.html#aff7d86352c98771595375e17d19a2a97":[3,0,58,23],
+"class_si4430.html":[3,0,34],
+"class_si4430.html#a025a31861d1511090168e416140d0343":[3,0,34,2],
+"class_si4430.html#aaed612b8936609442042d8156e085d2c":[3,0,34,1],
+"class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9":[3,0,34,0],
+"class_si4430.html#af8d615431bf66e06b45487f3fff73d16":[3,0,34,3],
+"class_si4431.html":[3,0,35],
+"class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0":[3,0,35,0],
+"class_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3":[3,0,35,1],
+"class_si4431.html#a4da296b35056e076ff69a288bd801d19":[3,0,35,2],
+"class_si4432.html":[3,0,36],
+"class_si4432.html#a5efc3a08f91a411da011201dc128fb34":[3,0,36,1],
+"class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca":[3,0,36,3],
+"class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84":[3,0,36,2],
+"class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac":[3,0,36,0],
+"class_si443x.html":[3,0,37],
+"class_si443x.html#a1070a6cde04a01d4a35da670f65ce539":[3,0,37,32],
+"class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2":[3,0,37,31],
+"class_si443x.html#a1382fc3b68f447e381613e6670747128":[3,0,37,20],
+"class_si443x.html#a178b471527813a608c04db7d3c9648d6":[3,0,37,15],
+"class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10":[3,0,37,7],
+"class_si443x.html#a3563453988a83d22dd07d4691543a300":[3,0,37,11],
+"class_si443x.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,37,37],
+"class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314":[3,0,37,35],
+"class_si443x.html#a427f24f614f04e87094354047bf1bf00":[3,0,37,6],
+"class_si443x.html#a43e7ceeff9114b35ab89f1d69916b375":[3,0,37,24],
+"class_si443x.html#a453eda5436dc4dfe0dad676dc3977752":[3,0,37,1],
+"class_si443x.html#a4821a6141caf16141074615c976ecd91":[3,0,37,23],
+"class_si443x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,37,36],
+"class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a":[3,0,37,27],
+"class_si443x.html#a51e6b7c677e82042224798114f311175":[3,0,37,26],
+"class_si443x.html#a55252bda74e8c67636a8c1fa0e9f58d3":[3,0,37,5],
+"class_si443x.html#a55fae20e81755c8b014d080741d61913":[3,0,37,19],
+"class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99":[3,0,37,39],
+"class_si443x.html#a616eb24c4b11c5d39caaade160be8092":[3,0,37,8],
+"class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3":[3,0,37,3],
+"class_si443x.html#a74848176d435227e601c86ff37b0edbe":[3,0,37,9],
+"class_si443x.html#a782748025e19ec6e597293afb6570bff":[3,0,37,38],
+"class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66":[3,0,37,21],
+"class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726":[3,0,37,22],
+"class_si443x.html#a8898f11cf9dabd9a5ad717376fdbffa6":[3,0,37,25],
+"class_si443x.html#a8d019f58551346c3f3bd8b72d2486109":[3,0,37,2],
+"class_si443x.html#a923654706eff5118ef6e84214e837f27":[3,0,37,33],
+"class_si443x.html#aabca3ba8eda212938febab1df2e764b4":[3,0,37,14],
+"class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,37,13],
+"class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a":[3,0,37,40],
+"class_si443x.html#ac45d2776df3ff338db154ead143fb7b8":[3,0,37,29],
+"class_si443x.html#acbc0f95f32ca961294666405596ff529":[3,0,37,30],
+"class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e":[3,0,37,12],
+"class_si443x.html#ad2b3a961a99d9e8f3a7ead6e8b69e858":[3,0,37,4],
+"class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170":[3,0,37,17],
+"class_si443x.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,37,34],
+"class_si443x.html#ada90718aeb67d7f0e9899da534de9695":[3,0,37,28],
+"class_si443x.html#ade08c79074c7e4414d34eefa25cee168":[3,0,37,18],
+"class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97":[3,0,37,16],
+"class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9":[3,0,37,0],
+"class_si443x.html#af23d8eb0f1c436e6cc60361df13c08f7":[3,0,37,10],
+"class_stm32wlx_hal.html":[3,0,42],
+"class_stm32wlx_hal.html#a32b0621ec0232776393b6800181bba46":[3,0,42,0],
+"class_stm32wlx_hal.html#a70dd9f6fb6c0307e2d9d363ce6d7f2a2":[3,0,42,3],
+"class_stm32wlx_hal.html#a7fc8af77a85f8f002c7dc6476efa0ad4":[3,0,42,1],
+"class_stm32wlx_hal.html#acb925afdee4979936ef83a422d13e642":[3,0,42,2],
"classes.html":[3,1],
"classn_r_f24.html":[3,0,18],
"classn_r_f24.html#a033287e33c532638c11e2775a073f297":[3,0,18,27],
@@ -206,8 +220,8 @@ var NAVTREEINDEX3 =
"functions_enum.html":[3,3,4],
"functions_eval.html":[3,3,5],
"functions_f.html":[3,3,0,5],
-"functions_func.html":[3,3,1,0],
"functions_func.html":[3,3,1],
+"functions_func.html":[3,3,1,0],
"functions_func_b.html":[3,3,1,1],
"functions_func_c.html":[3,3,1,2],
"functions_func_d.html":[3,3,1,3],
@@ -235,19 +249,5 @@ var NAVTREEINDEX3 =
"functions_l.html":[3,3,0,9],
"functions_m.html":[3,3,0,10],
"functions_n.html":[3,3,0,11],
-"functions_o.html":[3,3,0,12],
-"functions_p.html":[3,3,0,13],
-"functions_r.html":[3,3,0,14],
-"functions_s.html":[3,3,0,15],
-"functions_t.html":[3,3,0,16],
-"functions_type.html":[3,3,3],
-"functions_u.html":[3,3,0,17],
-"functions_v.html":[3,3,0,18],
-"functions_vars.html":[3,3,2],
-"functions_w.html":[3,3,0,19],
-"functions_x.html":[3,3,0,20],
-"functions_y.html":[3,3,0,21],
-"functions_~.html":[3,3,0,22],
-"group__config__encoding.html":[2,2],
-"group__config__encoding.html#ga0253ae0c289d950e36106102a983f9cb":[2,2,1]
+"functions_o.html":[3,3,0,12]
};
diff --git a/navtreeindex4.js b/navtreeindex4.js
index 3e1cdc78..42572a28 100644
--- a/navtreeindex4.js
+++ b/navtreeindex4.js
@@ -1,5 +1,19 @@
var NAVTREEINDEX4 =
{
+"functions_p.html":[3,3,0,13],
+"functions_r.html":[3,3,0,14],
+"functions_s.html":[3,3,0,15],
+"functions_t.html":[3,3,0,16],
+"functions_type.html":[3,3,3],
+"functions_u.html":[3,3,0,17],
+"functions_v.html":[3,3,0,18],
+"functions_vars.html":[3,3,2],
+"functions_w.html":[3,3,0,19],
+"functions_x.html":[3,3,0,20],
+"functions_y.html":[3,3,0,21],
+"functions_~.html":[3,3,0,22],
+"group__config__encoding.html":[2,2],
+"group__config__encoding.html#ga0253ae0c289d950e36106102a983f9cb":[2,2,1],
"group__config__encoding.html#ga0bfc51be5abf0b434a49540bddb65328":[2,2,2],
"group__config__encoding.html#gaffff394bbc47c05ed1bfde2e16a596e8":[2,2,0],
"group__config__shaping.html":[2,1],
@@ -82,8 +96,8 @@ var NAVTREEINDEX4 =
"group__status__codes.html#gafbc04b924d23cba05307e94972d7d607":[2,4,5],
"group__status__codes.html#gafeff72bd7b618959d86b804a11f09063":[2,4,1],
"hierarchy.html":[3,2],
-"index.html":[0],
"index.html":[],
+"index.html":[0],
"modules.html":[2],
"n_r_f24_8h_source.html":[4,0,0,0,2,0],
"pages.html":[],
@@ -114,16 +128,16 @@ var NAVTREEINDEX4 =
"struct_module_1_1_rf_switch_mode__t.html":[3,0,16,0],
"struct_module_1_1_rf_switch_mode__t.html#a2442217bfabfb124a3f46bb128aa7462":[3,0,16,0,0],
"struct_module_1_1_rf_switch_mode__t.html#a694fecae172f868d8ca400319920ed66":[3,0,16,0,1],
-"struct_s_s_t_v_mode__t.html":[3,0,38],
-"struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad":[3,0,38,3],
-"struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820":[3,0,38,4],
-"struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694":[3,0,38,2],
-"struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031":[3,0,38,0],
-"struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40":[3,0,38,5],
-"struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096":[3,0,38,1],
-"structtone__t.html":[3,0,58],
-"structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf":[3,0,58,0],
-"structtone__t.html#a3b0421dd255c7c59552741957a6224ed":[3,0,58,1],
-"structtone__t.html#af92472bf087b9a7ec0c350bd503bdd74":[3,0,58,2],
+"struct_s_s_t_v_mode__t.html":[3,0,39],
+"struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad":[3,0,39,3],
+"struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820":[3,0,39,4],
+"struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694":[3,0,39,2],
+"struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031":[3,0,39,0],
+"struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40":[3,0,39,5],
+"struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096":[3,0,39,1],
+"structtone__t.html":[3,0,59],
+"structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf":[3,0,59,0],
+"structtone__t.html#a3b0421dd255c7c59552741957a6224ed":[3,0,59,1],
+"structtone__t.html#af92472bf087b9a7ec0c350bd503bdd74":[3,0,59,2],
"todo.html":[1]
};
diff --git a/search/all_10.js b/search/all_10.js
index b92f3fb7..cdd7962d 100644
--- a/search/all_10.js
+++ b/search/all_10.js
@@ -1,12 +1,12 @@
var searchData=
[
- ['term_402',['term',['../class_radio_lib_hal.html#aa4f2bd49aea5a19aa9f85c720b4a883e',1,'RadioLibHal::term()'],['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module::term()']]],
- ['todo_20list_403',['Todo List',['../todo.html',1,'']]],
- ['tone_404',['tone',['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()'],['../class_radio_lib_hal.html#ab4cc3bef7109f00b77b95e84511b0bb9',1,'RadioLibHal::tone()']]],
- ['tone_5ft_405',['tone_t',['../structtone__t.html',1,'']]],
- ['tones_406',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]],
- ['transmit_407',['transmit',['../class_si443x.html#a492b2d057dd803c3884fa1adc8e22534',1,'Si443x::transmit()'],['../class_s_x128x.html#a3dd42f8d5569487ea74f004ca652a709',1,'SX128x::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX128x::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_x127x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX127x::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_x126x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX126x::transmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#a3dd42f8d5569487ea74f004ca652a709',1,'Si443x::transmit()'],['../class_c_c1101.html#a7cb99a9200b21829b50e3fc3878573f4',1,'CC1101::transmit()'],['../class_r_f69.html#a3dd42f8d5569487ea74f004ca652a709',1,'RF69::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534',1,'RF69::transmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#a3dd42f8d5569487ea74f004ca652a709',1,'nRF24::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534',1,'nRF24::transmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847',1,'RF69::transmit()'],['../classn_r_f24.html#a583d505bd3a638ecc5576dd2dd95f044',1,'nRF24::transmit()'],['../class_c_c1101.html#a3dd42f8d5569487ea74f004ca652a709',1,'CC1101::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#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit()'],['../class_pager_client.html#aab6a8977f89d43620b98bcedf5a47dbd',1,'PagerClient::transmit(const char *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)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#a3dd42f8d5569487ea74f004ca652a709',1,'PhysicalLayer::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)']]],
- ['transmitdirect_408',['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_409',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]],
- ['type_410',['type',['../structtone__t.html#af92472bf087b9a7ec0c350bd503bdd74',1,'tone_t']]]
+ ['term_406',['term',['../class_radio_lib_hal.html#aa4f2bd49aea5a19aa9f85c720b4a883e',1,'RadioLibHal::term()'],['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module::term()']]],
+ ['todo_20list_407',['Todo List',['../todo.html',1,'']]],
+ ['tone_408',['tone',['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()'],['../class_radio_lib_hal.html#ab4cc3bef7109f00b77b95e84511b0bb9',1,'RadioLibHal::tone()']]],
+ ['tone_5ft_409',['tone_t',['../structtone__t.html',1,'']]],
+ ['tones_410',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]],
+ ['transmit_411',['transmit',['../class_si443x.html#a492b2d057dd803c3884fa1adc8e22534',1,'Si443x::transmit()'],['../class_s_x128x.html#a3dd42f8d5569487ea74f004ca652a709',1,'SX128x::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX128x::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_x127x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX127x::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_x126x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX126x::transmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#a3dd42f8d5569487ea74f004ca652a709',1,'Si443x::transmit()'],['../class_c_c1101.html#a7cb99a9200b21829b50e3fc3878573f4',1,'CC1101::transmit()'],['../class_r_f69.html#a3dd42f8d5569487ea74f004ca652a709',1,'RF69::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534',1,'RF69::transmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#a3dd42f8d5569487ea74f004ca652a709',1,'nRF24::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534',1,'nRF24::transmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847',1,'RF69::transmit()'],['../classn_r_f24.html#a583d505bd3a638ecc5576dd2dd95f044',1,'nRF24::transmit()'],['../class_c_c1101.html#a3dd42f8d5569487ea74f004ca652a709',1,'CC1101::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#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit()'],['../class_pager_client.html#aab6a8977f89d43620b98bcedf5a47dbd',1,'PagerClient::transmit(const char *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)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#a3dd42f8d5569487ea74f004ca652a709',1,'PhysicalLayer::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)']]],
+ ['transmitdirect_412',['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_413',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]],
+ ['type_414',['type',['../structtone__t.html#af92472bf087b9a7ec0c350bd503bdd74',1,'tone_t']]]
];
diff --git a/search/all_11.js b/search/all_11.js
index bde5efc8..61ed3db0 100644
--- a/search/all_11.js
+++ b/search/all_11.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['uploadpatch_411',['uploadPatch',['../class_s_x126x.html#a2af78b744b3e61d3857bed93c3b1bde1',1,'SX126x']]]
+ ['uploadpatch_415',['uploadPatch',['../class_s_x126x.html#a2af78b744b3e61d3857bed93c3b1bde1',1,'SX126x']]]
];
diff --git a/search/all_12.js b/search/all_12.js
index b22633e3..43b1d3a4 100644
--- a/search/all_12.js
+++ b/search/all_12.js
@@ -1,5 +1,6 @@
var searchData=
[
- ['variablepacketlengthmode_412',['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_413',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]]
+ ['variablepacketlengthmode_416',['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()']]],
+ ['verifycmac_417',['verifyCMAC',['../class_radio_lib_a_e_s128.html#a382e9dfdc10b7dd58e2bd0aa15f5e1dd',1,'RadioLibAES128']]],
+ ['viscode_418',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]]
];
diff --git a/search/all_13.js b/search/all_13.js
index e7243dc0..fad51649 100644
--- a/search/all_13.js
+++ b/search/all_13.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['waitformicroseconds_414',['waitForMicroseconds',['../class_module.html#a47978200f7e2e408fb64f506c81cee9f',1,'Module']]],
- ['width_415',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]],
- ['write_416',['write',['../class_bell_client.html#aa2874910006a927d07d865e69cfe5c65',1,'BellClient::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)'],['../class_hell_client.html#a5c5117dadbe33da1cda5fd4981b405eb',1,'HellClient::write()'],['../class_morse_client.html#abd37869212f3338eb7c95c6f16dadbba',1,'MorseClient::write()'],['../class_r_t_t_y_client.html#a077a21423deee0393cead0b3a239691f',1,'RTTYClient::write()']]]
+ ['waitformicroseconds_419',['waitForMicroseconds',['../class_module.html#a47978200f7e2e408fb64f506c81cee9f',1,'Module']]],
+ ['width_420',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]],
+ ['write_421',['write',['../class_bell_client.html#aa2874910006a927d07d865e69cfe5c65',1,'BellClient::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)'],['../class_hell_client.html#a5c5117dadbe33da1cda5fd4981b405eb',1,'HellClient::write()'],['../class_morse_client.html#abd37869212f3338eb7c95c6f16dadbba',1,'MorseClient::write()'],['../class_r_t_t_y_client.html#a077a21423deee0393cead0b3a239691f',1,'RTTYClient::write()']]]
];
diff --git a/search/all_14.js b/search/all_14.js
index 9a040a90..20af6bde 100644
--- a/search/all_14.js
+++ b/search/all_14.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['xtal_417',['XTAL',['../class_s_x126x.html#ada0fe6c3d31885952b439135cf0c18f1',1,'SX126x']]]
+ ['xtal_422',['XTAL',['../class_s_x126x.html#ada0fe6c3d31885952b439135cf0c18f1',1,'SX126x']]]
];
diff --git a/search/all_15.js b/search/all_15.js
index d99746ad..3173bf92 100644
--- a/search/all_15.js
+++ b/search/all_15.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['yield_418',['yield',['../class_radio_lib_hal.html#a1bd9d614f66b374ec820ce31b167fdb2',1,'RadioLibHal']]]
+ ['yield_423',['yield',['../class_radio_lib_hal.html#a1bd9d614f66b374ec820ce31b167fdb2',1,'RadioLibHal']]]
];
diff --git a/search/all_16.js b/search/all_16.js
index 95baf37b..cb386542 100644
--- a/search/all_16.js
+++ b/search/all_16.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['_7eax25frame_419',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]],
- ['_7eita2string_420',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]]
+ ['_7eax25frame_424',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]],
+ ['_7eita2string_425',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]]
];
diff --git a/search/all_3.js b/search/all_3.js
index f1145e86..ed309551 100644
--- a/search/all_3.js
+++ b/search/all_3.js
@@ -2,18 +2,19 @@ var searchData=
[
['data_20shaping_20filter_20values_20aliases_2e_30',['Data shaping filter values aliases.',['../group__config__shaping.html',1,'']]],
['decode_31',['decode',['../class_morse_client.html#abd1515c8e6c3ddade280be53f612ece7',1,'MorseClient']]],
- ['delay_32',['delay',['../class_radio_lib_hal.html#a8427720749d8c87d17654071dfa5b94e',1,'RadioLibHal']]],
- ['delaymicroseconds_33',['delayMicroseconds',['../class_radio_lib_hal.html#ad49128a75a3d7abdc68baa302955f3ac',1,'RadioLibHal']]],
- ['destcallsign_34',['destCallsign',['../class_a_x25_frame.html#a7fe9805148e2dd46d163cd989473dbff',1,'AX25Frame']]],
- ['destssid_35',['destSSID',['../class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8',1,'AX25Frame']]],
- ['detachinterrupt_36',['detachInterrupt',['../class_radio_lib_hal.html#a2ddf72a41b3cfbb63ea7ab5362003b56',1,'RadioLibHal']]],
- ['digitalread_37',['digitalRead',['../class_radio_lib_hal.html#a0c7c2dffd662cefca7bf11e14c56dab2',1,'RadioLibHal']]],
- ['digitalwrite_38',['digitalWrite',['../class_radio_lib_hal.html#a4db0c60f2f6f64003f04cf0e03fea7ab',1,'RadioLibHal']]],
- ['disableaddressfiltering_39',['disableAddressFiltering',['../class_c_c1101.html#a9aee5df428d30b9c80b8a8700609a883',1,'CC1101::disableAddressFiltering()'],['../class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee',1,'RF69::disableAddressFiltering()'],['../class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2',1,'SX126x::disableAddressFiltering()'],['../class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5',1,'SX127x::disableAddressFiltering()']]],
- ['disableaes_40',['disableAES',['../class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa',1,'RF69']]],
- ['disablebitsync_41',['disableBitSync',['../class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd',1,'SX127x']]],
- ['disablecontinuousmodebitsync_42',['disableContinuousModeBitSync',['../class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad',1,'RF69']]],
- ['disablepipe_43',['disablePipe',['../classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a',1,'nRF24']]],
- ['disablesyncwordfiltering_44',['disableSyncWordFiltering',['../class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b',1,'CC1101::disableSyncWordFiltering()'],['../class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80',1,'RF69::disableSyncWordFiltering()']]],
- ['dropsync_45',['dropSync',['../class_physical_layer.html#a429796eb2e7ea86781a2e8ca42af43f3',1,'PhysicalLayer']]]
+ ['decryptecb_32',['decryptECB',['../class_radio_lib_a_e_s128.html#abe0e368c6a94b2caf1559add1c262a98',1,'RadioLibAES128']]],
+ ['delay_33',['delay',['../class_radio_lib_hal.html#a8427720749d8c87d17654071dfa5b94e',1,'RadioLibHal']]],
+ ['delaymicroseconds_34',['delayMicroseconds',['../class_radio_lib_hal.html#ad49128a75a3d7abdc68baa302955f3ac',1,'RadioLibHal']]],
+ ['destcallsign_35',['destCallsign',['../class_a_x25_frame.html#a7fe9805148e2dd46d163cd989473dbff',1,'AX25Frame']]],
+ ['destssid_36',['destSSID',['../class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8',1,'AX25Frame']]],
+ ['detachinterrupt_37',['detachInterrupt',['../class_radio_lib_hal.html#a2ddf72a41b3cfbb63ea7ab5362003b56',1,'RadioLibHal']]],
+ ['digitalread_38',['digitalRead',['../class_radio_lib_hal.html#a0c7c2dffd662cefca7bf11e14c56dab2',1,'RadioLibHal']]],
+ ['digitalwrite_39',['digitalWrite',['../class_radio_lib_hal.html#a4db0c60f2f6f64003f04cf0e03fea7ab',1,'RadioLibHal']]],
+ ['disableaddressfiltering_40',['disableAddressFiltering',['../class_c_c1101.html#a9aee5df428d30b9c80b8a8700609a883',1,'CC1101::disableAddressFiltering()'],['../class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee',1,'RF69::disableAddressFiltering()'],['../class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2',1,'SX126x::disableAddressFiltering()'],['../class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5',1,'SX127x::disableAddressFiltering()']]],
+ ['disableaes_41',['disableAES',['../class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa',1,'RF69']]],
+ ['disablebitsync_42',['disableBitSync',['../class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd',1,'SX127x']]],
+ ['disablecontinuousmodebitsync_43',['disableContinuousModeBitSync',['../class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad',1,'RF69']]],
+ ['disablepipe_44',['disablePipe',['../classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a',1,'nRF24']]],
+ ['disablesyncwordfiltering_45',['disableSyncWordFiltering',['../class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b',1,'CC1101::disableSyncWordFiltering()'],['../class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80',1,'RF69::disableSyncWordFiltering()']]],
+ ['dropsync_46',['dropSync',['../class_physical_layer.html#a429796eb2e7ea86781a2e8ca42af43f3',1,'PhysicalLayer']]]
];
diff --git a/search/all_4.js b/search/all_4.js
index f7002ddd..e0c32420 100644
--- a/search/all_4.js
+++ b/search/all_4.js
@@ -1,11 +1,12 @@
var searchData=
[
- ['enableaes_46',['enableAES',['../class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69',1,'RF69']]],
- ['enablebitsync_47',['enableBitSync',['../class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa',1,'SX127x']]],
- ['enablecontinuousmodebitsync_48',['enableContinuousModeBitSync',['../class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0',1,'RF69']]],
- ['enablesyncwordfiltering_49',['enableSyncWordFiltering',['../class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4',1,'CC1101::enableSyncWordFiltering()'],['../class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417',1,'RF69::enableSyncWordFiltering()']]],
- ['encode_50',['encode',['../class_radio_lib_b_c_h.html#afa0a2eb58245715536acb781cd351d8a',1,'RadioLibBCH']]],
- ['encoding_20type_20aliases_2e_51',['Encoding type aliases.',['../group__config__encoding.html',1,'']]],
- ['explicitheader_52',['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_53',['ExternalRadio',['../class_external_radio.html',1,'']]]
+ ['enableaes_47',['enableAES',['../class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69',1,'RF69']]],
+ ['enablebitsync_48',['enableBitSync',['../class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa',1,'SX127x']]],
+ ['enablecontinuousmodebitsync_49',['enableContinuousModeBitSync',['../class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0',1,'RF69']]],
+ ['enablesyncwordfiltering_50',['enableSyncWordFiltering',['../class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4',1,'CC1101::enableSyncWordFiltering()'],['../class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417',1,'RF69::enableSyncWordFiltering()']]],
+ ['encode_51',['encode',['../class_radio_lib_b_c_h.html#afa0a2eb58245715536acb781cd351d8a',1,'RadioLibBCH']]],
+ ['encoding_20type_20aliases_2e_52',['Encoding type aliases.',['../group__config__encoding.html',1,'']]],
+ ['encryptecb_53',['encryptECB',['../class_radio_lib_a_e_s128.html#a4c7b49c3ed16f3849d8050a24a11c3c1',1,'RadioLibAES128']]],
+ ['explicitheader_54',['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_55',['ExternalRadio',['../class_external_radio.html',1,'']]]
];
diff --git a/search/all_5.js b/search/all_5.js
index d3cb5d1f..7967ad7c 100644
--- a/search/all_5.js
+++ b/search/all_5.js
@@ -1,15 +1,15 @@
var searchData=
[
- ['fifoadd_54',['fifoAdd',['../class_r_f69.html#ab6d98f3f2d964d1833e20da246a5be89',1,'RF69::fifoAdd()'],['../class_s_x127x.html#a36dbd1697a415c6db3b47cd620c8c02e',1,'SX127x::fifoAdd()']]],
- ['fifoget_55',['fifoGet',['../class_r_f69.html#aa6886410230c654400c76ec7710d623c',1,'RF69::fifoGet()'],['../class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a',1,'SX127x::fifoGet()']]],
- ['findrfswitchmode_56',['findRfSwitchMode',['../class_module.html#a5699a937b62ba41387567b4d679b9377',1,'Module']]],
- ['finishtransmit_57',['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_58',['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()']]],
- ['forceldro_59',['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_60',['freq',['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t']]],
- ['freqmark_61',['freqMark',['../struct_bell_modem__t.html#ac57de3660aafb52bcf1b3197380c6ce5',1,'BellModem_t']]],
- ['freqmarkreply_62',['freqMarkReply',['../struct_bell_modem__t.html#aa26b8a2f2ae9722de9a69aab991ce229',1,'BellModem_t']]],
- ['freqspace_63',['freqSpace',['../struct_bell_modem__t.html#a27c1a411df3d887ca0ce246c3b5521f7',1,'BellModem_t']]],
- ['freqspacereply_64',['freqSpaceReply',['../struct_bell_modem__t.html#a40fe8a17a9b4fae3f313fea34077eacc',1,'BellModem_t']]],
- ['fsk4client_65',['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_56',['fifoAdd',['../class_r_f69.html#ab6d98f3f2d964d1833e20da246a5be89',1,'RF69::fifoAdd()'],['../class_s_x127x.html#a36dbd1697a415c6db3b47cd620c8c02e',1,'SX127x::fifoAdd()']]],
+ ['fifoget_57',['fifoGet',['../class_r_f69.html#aa6886410230c654400c76ec7710d623c',1,'RF69::fifoGet()'],['../class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a',1,'SX127x::fifoGet()']]],
+ ['findrfswitchmode_58',['findRfSwitchMode',['../class_module.html#a5699a937b62ba41387567b4d679b9377',1,'Module']]],
+ ['finishtransmit_59',['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_60',['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()']]],
+ ['forceldro_61',['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_62',['freq',['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t']]],
+ ['freqmark_63',['freqMark',['../struct_bell_modem__t.html#ac57de3660aafb52bcf1b3197380c6ce5',1,'BellModem_t']]],
+ ['freqmarkreply_64',['freqMarkReply',['../struct_bell_modem__t.html#aa26b8a2f2ae9722de9a69aab991ce229',1,'BellModem_t']]],
+ ['freqspace_65',['freqSpace',['../struct_bell_modem__t.html#a27c1a411df3d887ca0ce246c3b5521f7',1,'BellModem_t']]],
+ ['freqspacereply_66',['freqSpaceReply',['../struct_bell_modem__t.html#a40fe8a17a9b4fae3f313fea34077eacc',1,'BellModem_t']]],
+ ['fsk4client_67',['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 6e7fca31..dd814f88 100644
--- a/search/all_6.js
+++ b/search/all_6.js
@@ -1,38 +1,39 @@
var searchData=
[
- ['getafcerror_66',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]],
- ['getchannelscanresult_67',['getChannelScanResult',['../class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f',1,'SX126x']]],
- ['getchipversion_68',['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_69',['getCs',['../class_module.html#aa6cac04c7cb6d5278a318db0966ad1a7',1,'Module']]],
- ['getcurrentlimit_70',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]],
- ['getdatarate_71',['getDataRate',['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate() const']]],
- ['getfhsschannel_72',['getFHSSChannel',['../class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c',1,'SX127x']]],
- ['getfhsshoppingperiod_73',['getFHSSHoppingPeriod',['../class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617',1,'SX127x']]],
- ['getfreqstep_74',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]],
- ['getfrequency_75',['getFrequency',['../class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed',1,'RF69']]],
- ['getfrequencydeviation_76',['getFrequencyDeviation',['../class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9',1,'RF69::getFrequencyDeviation()'],['../class_c_c1101.html#abe26fa310e973bf2b14750b9eae02124',1,'CC1101::getFrequencyDeviation()']]],
- ['getfrequencyerror_77',['getFrequencyError',['../class_s_x126x.html#a068d709ffb79ae66d718ffb76ffae997',1,'SX126x::getFrequencyError()'],['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x::getFrequencyError()'],['../class_s_x128x.html#a2b424000856a9dc212f571d0e8890635',1,'SX128x::getFrequencyError()']]],
- ['getgpio_78',['getGpio',['../class_module.html#a4ec27f0ba5e0009ea9661a5110526b52',1,'Module']]],
- ['getirq_79',['getIrq',['../class_module.html#ab61bc5066c356e2d0d79f08a2bd0fbc9',1,'Module']]],
- ['getirqflags_80',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]],
- ['getirqstatus_81',['getIrqStatus',['../class_s_x126x.html#a9a9b090eddcb811ee19b595debfab1df',1,'SX126x::getIrqStatus()'],['../class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22',1,'SX128x::getIrqStatus()']]],
- ['getlqi_82',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]],
- ['getmodemstatus_83',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]],
- ['getpacketlength_84',['getPacketLength',['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_physical_layer.html#a2fe95169b5cdc8cabe1f2af66cad6ef6',1,'PhysicalLayer::getPacketLength()'],['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()']]],
- ['getpictureheight_85',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]],
- ['getpromiscuousmode_86',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]],
- ['getrangingresult_87',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]],
- ['getrssi_88',['getRSSI',['../class_s_x126x.html#afabefb1b214411198f3537e8afce898f',1,'SX126x::getRSSI()'],['../class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b',1,'PhysicalLayer::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()'],['../class_s_x127x.html#a53d9bd78635a97dc0e3309b675763510',1,'SX127x::getRSSI()'],['../class_s_x1278.html#a260399b893988196771bc5a62d604822',1,'SX1278::getRSSI()'],['../class_s_x1272.html#acdf35ee105a327e0e6089615e6f9bb1a',1,'SX1272::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc',1,'CC1101::getRSSI()']]],
- ['getrst_89',['getRst',['../class_module.html#ad6cddbf3aebec9717a1a381dd81ad398',1,'Module']]],
- ['getsnr_90',['getSNR',['../class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca',1,'SX126x::getSNR()'],['../class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f',1,'PhysicalLayer::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()']]],
- ['getstatus_91',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]],
- ['gettemperature_92',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]],
- ['gettempraw_93',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]],
- ['gettimeonair_94',['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()']]],
- ['gpiointerruptfalling_95',['GpioInterruptFalling',['../class_radio_lib_hal.html#a01f73b66a632fc9dba41a23f592e0936',1,'RadioLibHal']]],
- ['gpiointerruptrising_96',['GpioInterruptRising',['../class_radio_lib_hal.html#a7ff9f3c608d68575dfc8962ba3669851',1,'RadioLibHal']]],
- ['gpiolevelhigh_97',['GpioLevelHigh',['../class_radio_lib_hal.html#a409c719ef8a11e8765c90e98ba42316d',1,'RadioLibHal']]],
- ['gpiolevellow_98',['GpioLevelLow',['../class_radio_lib_hal.html#a3cfca7ff9303fe84119ba2f4a4e1bbf4',1,'RadioLibHal']]],
- ['gpiomodeinput_99',['GpioModeInput',['../class_radio_lib_hal.html#a2d197fc1f62be4cd2d2c22be30744769',1,'RadioLibHal']]],
- ['gpiomodeoutput_100',['GpioModeOutput',['../class_radio_lib_hal.html#a18a711dd900a796ccfd7dddbdd2e6afe',1,'RadioLibHal']]]
+ ['generatecmac_68',['generateCMAC',['../class_radio_lib_a_e_s128.html#a260a1ac84386141781b3d7c213ff161c',1,'RadioLibAES128']]],
+ ['getafcerror_69',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]],
+ ['getchannelscanresult_70',['getChannelScanResult',['../class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f',1,'SX126x']]],
+ ['getchipversion_71',['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_72',['getCs',['../class_module.html#aa6cac04c7cb6d5278a318db0966ad1a7',1,'Module']]],
+ ['getcurrentlimit_73',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]],
+ ['getdatarate_74',['getDataRate',['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate() const']]],
+ ['getfhsschannel_75',['getFHSSChannel',['../class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c',1,'SX127x']]],
+ ['getfhsshoppingperiod_76',['getFHSSHoppingPeriod',['../class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617',1,'SX127x']]],
+ ['getfreqstep_77',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]],
+ ['getfrequency_78',['getFrequency',['../class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed',1,'RF69']]],
+ ['getfrequencydeviation_79',['getFrequencyDeviation',['../class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9',1,'RF69::getFrequencyDeviation()'],['../class_c_c1101.html#abe26fa310e973bf2b14750b9eae02124',1,'CC1101::getFrequencyDeviation()']]],
+ ['getfrequencyerror_80',['getFrequencyError',['../class_s_x126x.html#a068d709ffb79ae66d718ffb76ffae997',1,'SX126x::getFrequencyError()'],['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x::getFrequencyError()'],['../class_s_x128x.html#a2b424000856a9dc212f571d0e8890635',1,'SX128x::getFrequencyError()']]],
+ ['getgpio_81',['getGpio',['../class_module.html#a4ec27f0ba5e0009ea9661a5110526b52',1,'Module']]],
+ ['getirq_82',['getIrq',['../class_module.html#ab61bc5066c356e2d0d79f08a2bd0fbc9',1,'Module']]],
+ ['getirqflags_83',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]],
+ ['getirqstatus_84',['getIrqStatus',['../class_s_x126x.html#a9a9b090eddcb811ee19b595debfab1df',1,'SX126x::getIrqStatus()'],['../class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22',1,'SX128x::getIrqStatus()']]],
+ ['getlqi_85',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]],
+ ['getmodemstatus_86',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]],
+ ['getpacketlength_87',['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_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()']]],
+ ['getpictureheight_88',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]],
+ ['getpromiscuousmode_89',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]],
+ ['getrangingresult_90',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]],
+ ['getrssi_91',['getRSSI',['../class_s_x126x.html#afabefb1b214411198f3537e8afce898f',1,'SX126x::getRSSI()'],['../class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b',1,'PhysicalLayer::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()'],['../class_s_x127x.html#a53d9bd78635a97dc0e3309b675763510',1,'SX127x::getRSSI()'],['../class_s_x1278.html#a260399b893988196771bc5a62d604822',1,'SX1278::getRSSI()'],['../class_s_x1272.html#acdf35ee105a327e0e6089615e6f9bb1a',1,'SX1272::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc',1,'CC1101::getRSSI()']]],
+ ['getrst_92',['getRst',['../class_module.html#ad6cddbf3aebec9717a1a381dd81ad398',1,'Module']]],
+ ['getsnr_93',['getSNR',['../class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca',1,'SX126x::getSNR()'],['../class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f',1,'PhysicalLayer::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()']]],
+ ['getstatus_94',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]],
+ ['gettemperature_95',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]],
+ ['gettempraw_96',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]],
+ ['gettimeonair_97',['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()']]],
+ ['gpiointerruptfalling_98',['GpioInterruptFalling',['../class_radio_lib_hal.html#a01f73b66a632fc9dba41a23f592e0936',1,'RadioLibHal']]],
+ ['gpiointerruptrising_99',['GpioInterruptRising',['../class_radio_lib_hal.html#a7ff9f3c608d68575dfc8962ba3669851',1,'RadioLibHal']]],
+ ['gpiolevelhigh_100',['GpioLevelHigh',['../class_radio_lib_hal.html#a409c719ef8a11e8765c90e98ba42316d',1,'RadioLibHal']]],
+ ['gpiolevellow_101',['GpioLevelLow',['../class_radio_lib_hal.html#a3cfca7ff9303fe84119ba2f4a4e1bbf4',1,'RadioLibHal']]],
+ ['gpiomodeinput_102',['GpioModeInput',['../class_radio_lib_hal.html#a2d197fc1f62be4cd2d2c22be30744769',1,'RadioLibHal']]],
+ ['gpiomodeoutput_103',['GpioModeOutput',['../class_radio_lib_hal.html#a18a711dd900a796ccfd7dddbdd2e6afe',1,'RadioLibHal']]]
];
diff --git a/search/all_7.js b/search/all_7.js
index 9e4060f1..525eb9e7 100644
--- a/search/all_7.js
+++ b/search/all_7.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['hal_101',['Hal',['../class_hal.html',1,'']]],
- ['hal_102',['hal',['../class_module.html#a4483f0a39a523dd1b37b467d81418f7d',1,'Module']]],
- ['height_103',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]],
- ['hellclient_104',['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_105',['hexdump',['../class_module.html#ad0532274dafe433ba68529945bfe6a1b',1,'Module']]]
+ ['hal_104',['Hal',['../class_hal.html',1,'']]],
+ ['hal_105',['hal',['../class_module.html#a4483f0a39a523dd1b37b467d81418f7d',1,'Module']]],
+ ['height_106',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]],
+ ['hellclient_107',['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_108',['hexdump',['../class_module.html#ad0532274dafe433ba68529945bfe6a1b',1,'Module']]]
];
diff --git a/search/all_8.js b/search/all_8.js
index 5f4c5111..d8b00404 100644
--- a/search/all_8.js
+++ b/search/all_8.js
@@ -1,11 +1,11 @@
var searchData=
[
- ['idle_106',['idle',['../class_bell_client.html#aabd170def79cdbfd56a1d243e6227a75',1,'BellClient::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_107',['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_108',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]],
- ['infolen_109',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]],
- ['init_110',['init',['../class_radio_lib_c_r_c.html#a579acc51fe7a01b0b9b3f2e0e57b7d5f',1,'RadioLibCRC::init()'],['../class_radio_lib_hal.html#a450037acdfeb4e87413674ac90feb4d2',1,'RadioLibHal::init()'],['../class_module.html#ad1956ac81429ec1f61f83dbc081cf18c',1,'Module::init()']]],
- ['invertiq_111',['invertIQ',['../class_s_x126x.html#a249c905c1752feb7d228f78a15d5b2e1',1,'SX126x::invertIQ()'],['../class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04',1,'SX127x::invertIQ()'],['../class_s_x128x.html#a1463f0769b815e95d789fd708dc2ffe6',1,'SX128x::invertIQ()']]],
- ['iscarrierdetected_112',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]],
- ['ita2string_113',['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_109',['idle',['../class_bell_client.html#aabd170def79cdbfd56a1d243e6227a75',1,'BellClient::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_110',['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_111',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]],
+ ['infolen_112',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]],
+ ['init_113',['init',['../class_radio_lib_c_r_c.html#a579acc51fe7a01b0b9b3f2e0e57b7d5f',1,'RadioLibCRC::init()'],['../class_radio_lib_hal.html#a450037acdfeb4e87413674ac90feb4d2',1,'RadioLibHal::init()'],['../class_module.html#ad1956ac81429ec1f61f83dbc081cf18c',1,'Module::init()'],['../class_radio_lib_a_e_s128.html#a2f688dbdf2b0506c077ca4501e40e22e',1,'RadioLibAES128::init()']]],
+ ['invertiq_114',['invertIQ',['../class_s_x126x.html#a249c905c1752feb7d228f78a15d5b2e1',1,'SX126x::invertIQ()'],['../class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04',1,'SX127x::invertIQ()'],['../class_s_x128x.html#a1463f0769b815e95d789fd708dc2ffe6',1,'SX128x::invertIQ()']]],
+ ['iscarrierdetected_115',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]],
+ ['ita2string_116',['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 147fb7c4..b0e0475f 100644
--- a/search/all_9.js
+++ b/search/all_9.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['len_114',['len',['../structtone__t.html#a3b0421dd255c7c59552741957a6224ed',1,'tone_t']]],
- ['length_115',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]],
- ['llcc68_116',['LLCC68',['../class_l_l_c_c68.html',1,'LLCC68'],['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68::LLCC68()']]]
+ ['len_117',['len',['../structtone__t.html#a3b0421dd255c7c59552741957a6224ed',1,'tone_t']]],
+ ['length_118',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]],
+ ['llcc68_119',['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 da30ce57..bda622c9 100644
--- a/search/all_a.js
+++ b/search/all_a.js
@@ -1,14 +1,14 @@
var searchData=
[
- ['mic_2de_20message_20types_2e_117',['Mic-E message types.',['../group__mic__e__message__types.html',1,'']]],
- ['micros_118',['micros',['../class_radio_lib_hal.html#aedf55424bc4aa28379b6f4f6b04151d3',1,'RadioLibHal']]],
- ['millis_119',['millis',['../class_radio_lib_hal.html#a2bc5dbf7c13e6031fb9892075755a023',1,'RadioLibHal']]],
- ['mode_5fend_5fof_5ftable_120',['MODE_END_OF_TABLE',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa81cdd8986054c2ae5657eb5dfd536770',1,'Module::MODE_END_OF_TABLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a0cffe238c4822ab7f8beddf4ec72052b',1,'STM32WLx::MODE_END_OF_TABLE()']]],
- ['mode_5fidle_121',['MODE_IDLE',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa505acc66c5e0faa83d2216aca5f3e671',1,'Module::MODE_IDLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a8cf0ccad0eec5fde12798e0b0347d6bf',1,'STM32WLx::MODE_IDLE()']]],
- ['mode_5frx_122',['MODE_RX',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a85ffabc9f35e2683aefdd785bf912172',1,'STM32WLx::MODE_RX()'],['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa7664838bb0818663f55b3354fec8a18f',1,'Module::MODE_RX()']]],
- ['mode_5ftx_123',['MODE_TX',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa269f4bc8ba3eb3d8568feb7b2decf571',1,'Module']]],
- ['mode_5ftx_5fhp_124',['MODE_TX_HP',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a50df4b8580f1bded3cb61e79f954789e',1,'STM32WLx']]],
- ['mode_5ftx_5flp_125',['MODE_TX_LP',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a20a2eda9aaf3c7cdb4a55955d6ff3544',1,'STM32WLx']]],
- ['module_126',['Module',['../class_module.html',1,'Module'],['../class_module.html#a817178405f125e068e88bad62aeb6f3b',1,'Module::Module(RadioLibHal *hal, uint32_t cs, uint32_t irq, uint32_t rst, uint32_t gpio=RADIOLIB_NC)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]],
- ['morseclient_127',['MorseClient',['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)'],['../class_morse_client.html',1,'MorseClient']]]
+ ['mic_2de_20message_20types_2e_120',['Mic-E message types.',['../group__mic__e__message__types.html',1,'']]],
+ ['micros_121',['micros',['../class_radio_lib_hal.html#aedf55424bc4aa28379b6f4f6b04151d3',1,'RadioLibHal']]],
+ ['millis_122',['millis',['../class_radio_lib_hal.html#a2bc5dbf7c13e6031fb9892075755a023',1,'RadioLibHal']]],
+ ['mode_5fend_5fof_5ftable_123',['MODE_END_OF_TABLE',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa81cdd8986054c2ae5657eb5dfd536770',1,'Module::MODE_END_OF_TABLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a0cffe238c4822ab7f8beddf4ec72052b',1,'STM32WLx::MODE_END_OF_TABLE()']]],
+ ['mode_5fidle_124',['MODE_IDLE',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa505acc66c5e0faa83d2216aca5f3e671',1,'Module::MODE_IDLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a8cf0ccad0eec5fde12798e0b0347d6bf',1,'STM32WLx::MODE_IDLE()']]],
+ ['mode_5frx_125',['MODE_RX',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a85ffabc9f35e2683aefdd785bf912172',1,'STM32WLx::MODE_RX()'],['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa7664838bb0818663f55b3354fec8a18f',1,'Module::MODE_RX()']]],
+ ['mode_5ftx_126',['MODE_TX',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa269f4bc8ba3eb3d8568feb7b2decf571',1,'Module']]],
+ ['mode_5ftx_5fhp_127',['MODE_TX_HP',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a50df4b8580f1bded3cb61e79f954789e',1,'STM32WLx']]],
+ ['mode_5ftx_5flp_128',['MODE_TX_LP',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a20a2eda9aaf3c7cdb4a55955d6ff3544',1,'STM32WLx']]],
+ ['module_129',['Module',['../class_module.html',1,'Module'],['../class_module.html#a817178405f125e068e88bad62aeb6f3b',1,'Module::Module(RadioLibHal *hal, uint32_t cs, uint32_t irq, uint32_t rst, uint32_t gpio=RADIOLIB_NC)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]],
+ ['morseclient_130',['MorseClient',['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)'],['../class_morse_client.html',1,'MorseClient']]]
];
diff --git a/search/all_b.js b/search/all_b.js
index 40afea64..2903c344 100644
--- a/search/all_b.js
+++ b/search/all_b.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['notone_128',['noTone',['../class_radio_lib_hal.html#a6b5341c59728a1932e33216feee04ea5',1,'RadioLibHal::noTone()'],['../class_a_f_s_k_client.html#a664c1de9b5cd792826a5a77ac5457bae',1,'AFSKClient::noTone()']]],
- ['nrf24_129',['nRF24',['../classn_r_f24.html',1,'nRF24'],['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24::nRF24()']]],
- ['numrepeaters_130',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]],
- ['numtones_131',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]]
+ ['notone_131',['noTone',['../class_radio_lib_hal.html#a6b5341c59728a1932e33216feee04ea5',1,'RadioLibHal::noTone()'],['../class_a_f_s_k_client.html#a664c1de9b5cd792826a5a77ac5457bae',1,'AFSKClient::noTone()']]],
+ ['nrf24_132',['nRF24',['../classn_r_f24.html',1,'nRF24'],['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24::nRF24()']]],
+ ['numrepeaters_133',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]],
+ ['numtones_134',['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 acfe5350..25c722c7 100644
--- a/search/all_c.js
+++ b/search/all_c.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['operator_3d_132',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()']]],
- ['opmode_5ft_133',['OpMode_t',['../class_module.html#a5a67b3a63420d762ecba9448671c99bf',1,'Module::OpMode_t()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787',1,'STM32WLx::OpMode_t()']]],
- ['out_134',['out',['../class_radio_lib_c_r_c.html#a46616ef58e9eeeca646de0c9fe681050',1,'RadioLibCRC']]]
+ ['operator_3d_135',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()']]],
+ ['opmode_5ft_136',['OpMode_t',['../class_module.html#a5a67b3a63420d762ecba9448671c99bf',1,'Module::OpMode_t()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787',1,'STM32WLx::OpMode_t()']]],
+ ['out_137',['out',['../class_radio_lib_c_r_c.html#a46616ef58e9eeeca646de0c9fe681050',1,'RadioLibCRC']]]
];
diff --git a/search/all_d.js b/search/all_d.js
index dbe0ccab..c91c7495 100644
--- a/search/all_d.js
+++ b/search/all_d.js
@@ -1,12 +1,12 @@
var searchData=
[
- ['packetmode_135',['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_136',['PagerClient',['../class_pager_client.html',1,'PagerClient'],['../class_pager_client.html#a9f978120467b13104fb356e9b7d855ec',1,'PagerClient::PagerClient()']]],
- ['physicallayer_137',['PhysicalLayer',['../class_physical_layer.html',1,'PhysicalLayer'],['../class_physical_layer.html#add63d7d4fa8b14df5e185813794a49d5',1,'PhysicalLayer::PhysicalLayer()']]],
- ['pinmode_138',['pinMode',['../class_radio_lib_hal.html#af01b4e5e01352b99ce4329c9f9f8433b',1,'RadioLibHal']]],
- ['pintointerrupt_139',['pinToInterrupt',['../class_radio_lib_hal.html#a300a47d4d43dbe0c624f6e5dc1cf7a00',1,'RadioLibHal']]],
- ['poly_140',['poly',['../class_radio_lib_c_r_c.html#af3942e08bde9d9d127f735bd10392f6d',1,'RadioLibCRC']]],
- ['printglyph_141',['printGlyph',['../class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9',1,'HellClient']]],
- ['protocolid_142',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]],
- ['pulsein_143',['pulseIn',['../class_radio_lib_hal.html#a35a6ef1b38553a3516c961872eb411d7',1,'RadioLibHal']]]
+ ['packetmode_138',['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_139',['PagerClient',['../class_pager_client.html',1,'PagerClient'],['../class_pager_client.html#a9f978120467b13104fb356e9b7d855ec',1,'PagerClient::PagerClient()']]],
+ ['physicallayer_140',['PhysicalLayer',['../class_physical_layer.html',1,'PhysicalLayer'],['../class_physical_layer.html#add63d7d4fa8b14df5e185813794a49d5',1,'PhysicalLayer::PhysicalLayer()']]],
+ ['pinmode_141',['pinMode',['../class_radio_lib_hal.html#af01b4e5e01352b99ce4329c9f9f8433b',1,'RadioLibHal']]],
+ ['pintointerrupt_142',['pinToInterrupt',['../class_radio_lib_hal.html#a300a47d4d43dbe0c624f6e5dc1cf7a00',1,'RadioLibHal']]],
+ ['poly_143',['poly',['../class_radio_lib_c_r_c.html#af3942e08bde9d9d127f735bd10392f6d',1,'RadioLibCRC']]],
+ ['printglyph_144',['printGlyph',['../class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9',1,'HellClient']]],
+ ['protocolid_145',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]],
+ ['pulsein_146',['pulseIn',['../class_radio_lib_hal.html#a35a6ef1b38553a3516c961872eb411d7',1,'RadioLibHal']]]
];
diff --git a/search/all_e.js b/search/all_e.js
index ab613d5b..b0afb449 100644
--- a/search/all_e.js
+++ b/search/all_e.js
@@ -1,114 +1,115 @@
var searchData=
[
- ['radiolib_20documentation_144',['RadioLib Documentation',['../index.html',1,'']]],
- ['radiolib_5fchannel_5ffree_145',['RADIOLIB_CHANNEL_FREE',['../group__status__codes.html#ga4673596b2cc7290be5ee0a2e9ee42718',1,'TypeDef.h']]],
- ['radiolib_5fencoding_5fmanchester_146',['RADIOLIB_ENCODING_MANCHESTER',['../group__config__encoding.html#gaffff394bbc47c05ed1bfde2e16a596e8',1,'TypeDef.h']]],
- ['radiolib_5fencoding_5fnrz_147',['RADIOLIB_ENCODING_NRZ',['../group__config__encoding.html#ga0253ae0c289d950e36106102a983f9cb',1,'TypeDef.h']]],
- ['radiolib_5fencoding_5fwhitening_148',['RADIOLIB_ENCODING_WHITENING',['../group__config__encoding.html#ga0bfc51be5abf0b434a49540bddb65328',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fack_5fnot_5freceived_149',['RADIOLIB_ERR_ACK_NOT_RECEIVED',['../group__status__codes.html#gafeff72bd7b618959d86b804a11f09063',1,'TypeDef.h']]],
- ['radiolib_5ferr_5faddress_5fnot_5ffound_150',['RADIOLIB_ERR_ADDRESS_NOT_FOUND',['../group__status__codes.html#ga806183ed238159d317132b0d44d7a0a2',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fchip_5fnot_5ffound_151',['RADIOLIB_ERR_CHIP_NOT_FOUND',['../group__status__codes.html#ga5d11e8ce64fb412c2169d0f30b9e9c62',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fcrc_5fmismatch_152',['RADIOLIB_ERR_CRC_MISMATCH',['../group__status__codes.html#ga9da949184e940a4fa6f4afb63c315963',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5faddress_5fwidth_153',['RADIOLIB_ERR_INVALID_ADDRESS_WIDTH',['../group__status__codes.html#gafbc04b924d23cba05307e94972d7d607',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fbandwidth_154',['RADIOLIB_ERR_INVALID_BANDWIDTH',['../group__status__codes.html#ga0710b406a7e12ab6e0f77fdb3374cd9a',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fbit_5frange_155',['RADIOLIB_ERR_INVALID_BIT_RANGE',['../group__status__codes.html#ga508806c18663156b0d00d1a21c957468',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fbit_5frate_156',['RADIOLIB_ERR_INVALID_BIT_RATE',['../group__status__codes.html#gac192dbf5134a10ed561100b01129224c',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fbit_5frate_5fbw_5fratio_157',['RADIOLIB_ERR_INVALID_BIT_RATE_BW_RATIO',['../group__status__codes.html#ga733a7f3f12109103384522dac4d1146e',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fcallsign_158',['RADIOLIB_ERR_INVALID_CALLSIGN',['../group__status__codes.html#gac1c27fd5a9ec38601a53c1c5ad428063',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fcoding_5frate_159',['RADIOLIB_ERR_INVALID_CODING_RATE',['../group__status__codes.html#ga4e64d3ed035b21bfb81cf2bca35b2ecb',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fcrc_5fconfiguration_160',['RADIOLIB_ERR_INVALID_CRC_CONFIGURATION',['../group__status__codes.html#gaedc74820131d6cb654302d776360f969',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fcurrent_5flimit_161',['RADIOLIB_ERR_INVALID_CURRENT_LIMIT',['../group__status__codes.html#gac314f4bd89f306c8a16237be9a9c80cb',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fdata_5frate_162',['RADIOLIB_ERR_INVALID_DATA_RATE',['../group__status__codes.html#ga9a098ceda0c3f153515c8cc36f1d683e',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fdata_5fshaping_163',['RADIOLIB_ERR_INVALID_DATA_SHAPING',['../group__status__codes.html#gaf16af86f43ac2946e82a1e87aea2882b',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fdio_5fpin_164',['RADIOLIB_ERR_INVALID_DIO_PIN',['../group__status__codes.html#ga193402d53d354b58c70e5324d1e5b531',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fencoding_165',['RADIOLIB_ERR_INVALID_ENCODING',['../group__status__codes.html#ga41b17f0207ad1aa10d666c8a9e4830c5',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5ffrequency_166',['RADIOLIB_ERR_INVALID_FREQUENCY',['../group__status__codes.html#ga9f80eb00fad12bb0bec384ad83b6941b',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5ffrequency_5fdeviation_167',['RADIOLIB_ERR_INVALID_FREQUENCY_DEVIATION',['../group__status__codes.html#gaabe141287f2d6ba723658309f4464662',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fgain_168',['RADIOLIB_ERR_INVALID_GAIN',['../group__status__codes.html#ga908f3a5ab6937d28536791c96cf9de23',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fimage_5fquality_169',['RADIOLIB_ERR_INVALID_IMAGE_QUALITY',['../group__status__codes.html#gad195c8d9ba523944ecf41dbb7cb9baa3',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fimage_5fsize_170',['RADIOLIB_ERR_INVALID_IMAGE_SIZE',['../group__status__codes.html#ga44f09021bdc7fdd4b57db3ab8725b5a1',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fmic_5fe_5ftelemetry_171',['RADIOLIB_ERR_INVALID_MIC_E_TELEMETRY',['../group__status__codes.html#gaeafdfcb2b10b08385feea93163fc3918',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fmic_5fe_5ftelemetry_5flength_172',['RADIOLIB_ERR_INVALID_MIC_E_TELEMETRY_LENGTH',['../group__status__codes.html#ga85e34d08b298a4125f77ddede011db3b',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fmodulation_173',['RADIOLIB_ERR_INVALID_MODULATION',['../group__status__codes.html#gab0f9cb8ee829a8504fc110de18c4ff67',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fmodulation_5fparameters_174',['RADIOLIB_ERR_INVALID_MODULATION_PARAMETERS',['../group__status__codes.html#ga7f57f6eddc68b9a59cceab4fdf6556ba',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fnum_5fbroad_5faddrs_175',['RADIOLIB_ERR_INVALID_NUM_BROAD_ADDRS',['../group__status__codes.html#gae0e8ebbd71661b8a107b01befc997e5e',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fnum_5frepeaters_176',['RADIOLIB_ERR_INVALID_NUM_REPEATERS',['../group__status__codes.html#ga47f1cc22b76c6b8685bd7e265ab78a1a',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fnum_5fsamples_177',['RADIOLIB_ERR_INVALID_NUM_SAMPLES',['../group__status__codes.html#gaa5d0e76a10099c6e1cfd8f24e48995a2',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fook_5frssi_5fpeak_5ftype_178',['RADIOLIB_ERR_INVALID_OOK_RSSI_PEAK_TYPE',['../group__status__codes.html#gabc97efb9f410af5c0a9c1e5f882e41d8',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5foutput_5fpower_179',['RADIOLIB_ERR_INVALID_OUTPUT_POWER',['../group__status__codes.html#ga55da4b2ee0661872a37f1c57fc61c666',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fpayload_180',['RADIOLIB_ERR_INVALID_PAYLOAD',['../group__status__codes.html#ga5529b54dc67d5ccdc2a29989ebf43711',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fpipe_5fnumber_181',['RADIOLIB_ERR_INVALID_PIPE_NUMBER',['../group__status__codes.html#ga3ed4264643f97b76f9f3cf242338573d',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fpreamble_5flength_182',['RADIOLIB_ERR_INVALID_PREAMBLE_LENGTH',['../group__status__codes.html#ga9dc55947447ed9c91217f86a9bca75bb',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5frepeater_5fcallsign_183',['RADIOLIB_ERR_INVALID_REPEATER_CALLSIGN',['../group__status__codes.html#ga684497ce1c94442b5fe0396ea4ec930d',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5frssi_5foffset_184',['RADIOLIB_ERR_INVALID_RSSI_OFFSET',['../group__status__codes.html#ga0f1e3d5da7867511500fcd4a43f4df2f',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5frssi_5fthreshold_185',['RADIOLIB_ERR_INVALID_RSSI_THRESHOLD',['../group__status__codes.html#ga0f0aad5acd6d24fc7da9269664912d48',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5frtty_5fshift_186',['RADIOLIB_ERR_INVALID_RTTY_SHIFT',['../group__status__codes.html#ga6b75df06d8c18366f85848331c49a1af',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5frx_5fbandwidth_187',['RADIOLIB_ERR_INVALID_RX_BANDWIDTH',['../group__status__codes.html#gaa1f484c73f9abe05408c84fe5891539b',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5frx_5fperiod_188',['RADIOLIB_ERR_INVALID_RX_PERIOD',['../group__status__codes.html#ga4b30b822814dc8d49d3f3229011c8aff',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fsleep_5fperiod_189',['RADIOLIB_ERR_INVALID_SLEEP_PERIOD',['../group__status__codes.html#ga0066a30650888853a622413a579d891c',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fspreading_5ffactor_190',['RADIOLIB_ERR_INVALID_SPREADING_FACTOR',['../group__status__codes.html#ga0e196b0ec8efd606cd60592f88b626e8',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fssdv_5fmode_191',['RADIOLIB_ERR_INVALID_SSDV_MODE',['../group__status__codes.html#ga5d57c9ea944fdad3760fa54ed033ace5',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fsubsampling_192',['RADIOLIB_ERR_INVALID_SUBSAMPLING',['../group__status__codes.html#ga8c0c19441712a0f8749743ed9fbe4f39',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fsymbol_193',['RADIOLIB_ERR_INVALID_SYMBOL',['../group__status__codes.html#ga7f9712de2117b89215410fc18776dc84',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5fsync_5fword_194',['RADIOLIB_ERR_INVALID_SYNC_WORD',['../group__status__codes.html#ga5584a219fcb1a8e1789142b18a3a511e',1,'TypeDef.h']]],
- ['radiolib_5ferr_5finvalid_5ftcxo_5fvoltage_195',['RADIOLIB_ERR_INVALID_TCXO_VOLTAGE',['../group__status__codes.html#ga691e968e9f057a6cecb37a5dd5d8bd68',1,'TypeDef.h']]],
- ['radiolib_5ferr_5flora_5fheader_5fdamaged_196',['RADIOLIB_ERR_LORA_HEADER_DAMAGED',['../group__status__codes.html#gab152891bb13f6f70e6631820904e9d90',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fmemory_5fallocation_5ffailed_197',['RADIOLIB_ERR_MEMORY_ALLOCATION_FAILED',['../group__status__codes.html#ga7afc28738967d4d91c13d1d412d6f5e4',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fmic_5fe_5ftelemetry_5fstatus_198',['RADIOLIB_ERR_MIC_E_TELEMETRY_STATUS',['../group__status__codes.html#ga54a2fc9441c25b56979c6edab097ff12',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fnone_199',['RADIOLIB_ERR_NONE',['../group__status__codes.html#ga4c1dd3c7f2b37c973a047c58506729f5',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fnull_5fpointer_200',['RADIOLIB_ERR_NULL_POINTER',['../group__status__codes.html#gaad31ccea119011fd05441ed83e0f3b3d',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fpacket_5ftoo_5flong_201',['RADIOLIB_ERR_PACKET_TOO_LONG',['../group__status__codes.html#ga4602702eac86c5c3a13b93a06d846fac',1,'TypeDef.h']]],
- ['radiolib_5ferr_5franging_5ftimeout_202',['RADIOLIB_ERR_RANGING_TIMEOUT',['../group__status__codes.html#gabf529b0d150265c071c2255cb45f9e4f',1,'TypeDef.h']]],
- ['radiolib_5ferr_5frx_5ftimeout_203',['RADIOLIB_ERR_RX_TIMEOUT',['../group__status__codes.html#gafadba2c16b7296cbaf96978e8eadfa45',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fspi_5fcmd_5ffailed_204',['RADIOLIB_ERR_SPI_CMD_FAILED',['../group__status__codes.html#gabc695a4fae689e856ae6f618e334066f',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fspi_5fcmd_5finvalid_205',['RADIOLIB_ERR_SPI_CMD_INVALID',['../group__status__codes.html#gac1902fa5b8d5c9469dd9261880ba2957',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fspi_5fcmd_5ftimeout_206',['RADIOLIB_ERR_SPI_CMD_TIMEOUT',['../group__status__codes.html#ga72b849c71b8fdf112d318518a3b1ac7d',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fspi_5fwrite_5ffailed_207',['RADIOLIB_ERR_SPI_WRITE_FAILED',['../group__status__codes.html#ga31e0864281b5ea21c53206c49877b670',1,'TypeDef.h']]],
- ['radiolib_5ferr_5ftx_5ftimeout_208',['RADIOLIB_ERR_TX_TIMEOUT',['../group__status__codes.html#gac4185b9eaead4de110763759f01e1f4f',1,'TypeDef.h']]],
- ['radiolib_5ferr_5funknown_209',['RADIOLIB_ERR_UNKNOWN',['../group__status__codes.html#gacc0baeb3e5fc99760a07d18ba55531b6',1,'TypeDef.h']]],
- ['radiolib_5ferr_5funsupported_210',['RADIOLIB_ERR_UNSUPPORTED',['../group__status__codes.html#ga00c1c2b500feea59d0d47dddd7179be1',1,'TypeDef.h']]],
- ['radiolib_5ferr_5funsupported_5fencoding_211',['RADIOLIB_ERR_UNSUPPORTED_ENCODING',['../group__status__codes.html#gae4d77c5138cc5f21fb2af4b0791e9f81',1,'TypeDef.h']]],
- ['radiolib_5ferr_5fwrong_5fmodem_212',['RADIOLIB_ERR_WRONG_MODEM',['../group__status__codes.html#gad95d2455d580745d41ef2f319c6585f8',1,'TypeDef.h']]],
- ['radiolib_5flora_5fdetected_213',['RADIOLIB_LORA_DETECTED',['../group__status__codes.html#ga58ff08f4dba334cf8e26474ec2d3facd',1,'TypeDef.h']]],
- ['radiolib_5fpreamble_5fdetected_214',['RADIOLIB_PREAMBLE_DETECTED',['../group__status__codes.html#ga382dc113e93f196401914853ec176b18',1,'TypeDef.h']]],
- ['radiolib_5fshaping_5f0_5f3_215',['RADIOLIB_SHAPING_0_3',['../group__config__shaping.html#ga6a562fca42573d39e4a214c293756f64',1,'TypeDef.h']]],
- ['radiolib_5fshaping_5f0_5f5_216',['RADIOLIB_SHAPING_0_5',['../group__config__shaping.html#gaa778d14c29d21fe329137a28a3f54a5d',1,'TypeDef.h']]],
- ['radiolib_5fshaping_5f0_5f7_217',['RADIOLIB_SHAPING_0_7',['../group__config__shaping.html#ga677dde0ea956d5e99af30cf501a727ad',1,'TypeDef.h']]],
- ['radiolib_5fshaping_5f1_5f0_218',['RADIOLIB_SHAPING_1_0',['../group__config__shaping.html#ga80e2185af1123c7632aa40cad1691e6d',1,'TypeDef.h']]],
- ['radiolib_5fshaping_5fnone_219',['RADIOLIB_SHAPING_NONE',['../group__config__shaping.html#gaa9495bc5eb54df04f2ed7b1ccbb4f277',1,'TypeDef.h']]],
- ['radiolib_5fstandby_5fcold_220',['RADIOLIB_STANDBY_COLD',['../group__config__standby.html#ga37f835c3cd3323e2cde1fe1ab7c635e7',1,'TypeDef.h']]],
- ['radiolib_5fstandby_5fdefault_221',['RADIOLIB_STANDBY_DEFAULT',['../group__config__standby.html#ga3f3398b244d584ad94c691f60f2d9517',1,'TypeDef.h']]],
- ['radiolib_5fstandby_5fwarm_222',['RADIOLIB_STANDBY_WARM',['../group__config__standby.html#ga9c4af50dde47d157538b1877190ea7b5',1,'TypeDef.h']]],
- ['radiolibbch_223',['RadioLibBCH',['../class_radio_lib_b_c_h.html#a39d55c0292e4c9337ee0672cd5241118',1,'RadioLibBCH::RadioLibBCH()'],['../class_radio_lib_b_c_h.html',1,'RadioLibBCH']]],
- ['radiolibcrc_224',['RadioLibCRC',['../class_radio_lib_c_r_c.html',1,'RadioLibCRC'],['../class_radio_lib_c_r_c.html#a4f4042a369d55e234f4fc28f189139d5',1,'RadioLibCRC::RadioLibCRC()']]],
- ['radiolibhal_225',['RadioLibHal',['../class_radio_lib_hal.html',1,'RadioLibHal'],['../class_radio_lib_hal.html#ae75a54271cb8bea37d32dd146b9c6513',1,'RadioLibHal::RadioLibHal()']]],
- ['radiolibprint_226',['RadioLibPrint',['../class_radio_lib_print.html',1,'']]],
- ['random_227',['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_228',['randomByte',['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',1,'SX126x::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833',1,'CC1101::randomByte()']]],
- ['range_229',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]],
- ['rcvseqnumber_230',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]],
- ['read_231',['read',['../class_morse_client.html#a77eab03be04ef2d693348d9580ee5d3c',1,'MorseClient::read()'],['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()']]],
- ['readbit_232',['readBit',['../class_si443x.html#af23d8eb0f1c436e6cc60361df13c08f7',1,'Si443x::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#aceeb18acbfedb20c6cf60e26d5275793',1,'SX128x::readBit()'],['../class_s_x127x.html#a1a2dc7554414f0ce2ee0db23087f698a',1,'SX127x::readBit()'],['../class_r_f69.html#ab797840275fbccc40162225c32f5ffc3',1,'RF69::readBit()'],['../class_c_c1101.html#a206e6c6f094aa7e68388fd9412cd969e',1,'CC1101::readBit()'],['../class_s_x126x.html#a8cdc4f25d4193dc75f9442874131eab3',1,'SX126x::readBit()']]],
- ['readdata_233',['readData',['../class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745',1,'SX127x::readData()'],['../class_s_x128x.html#a3563453988a83d22dd07d4691543a300',1,'SX128x::readData()'],['../class_s_x126x.html#a3563453988a83d22dd07d4691543a300',1,'SX126x::readData()'],['../class_si443x.html#a3563453988a83d22dd07d4691543a300',1,'Si443x::readData()'],['../class_r_f69.html#a3563453988a83d22dd07d4691543a300',1,'RF69::readData()'],['../classn_r_f24.html#a3563453988a83d22dd07d4691543a300',1,'nRF24::readData()'],['../class_c_c1101.html#a3563453988a83d22dd07d4691543a300',1,'CC1101::readData()'],['../class_physical_layer.html#a3563453988a83d22dd07d4691543a300',1,'PhysicalLayer::readData()'],['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_s_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_s_x127x.html#a3563453988a83d22dd07d4691543a300',1,'SX127x::readData()']]],
- ['receive_234',['receive',['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX128x::receive()'],['../class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX127x::receive()'],['../class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX126x::receive()'],['../class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'Si443x::receive()'],['../class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'RF69::receive()'],['../classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'nRF24::receive()'],['../class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'CC1101::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'PhysicalLayer::receive()']]],
- ['receivedirect_235',['receiveDirect',['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6',1,'PhysicalLayer::receiveDirect()'],['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()'],['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect() override']]],
- ['receivedirectasync_236',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]],
- ['refin_237',['refIn',['../class_radio_lib_c_r_c.html#ac65a358753efd05067c19fcf1098ec04',1,'RadioLibCRC']]],
- ['reflect_238',['reflect',['../class_module.html#a4add1a875bb88e91da232118201a78a8',1,'Module']]],
- ['refout_239',['refOut',['../class_radio_lib_c_r_c.html#ab1b5aa578ed5818a7618df8c6cf98087',1,'RadioLibCRC']]],
- ['regdump_240',['regdump',['../class_module.html#abb13a50ed53b009c04dc2ed6caf78423',1,'Module']]],
- ['repeatercallsigns_241',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]],
- ['repeaterssids_242',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]],
- ['reply_243',['reply',['../class_bell_client.html#a9233e10bc794af85e3e86b4ec2a8746d',1,'BellClient']]],
- ['reset_244',['reset',['../class_c_c1101.html#a1fc87275c6f5d7f6927ca51a175eba21',1,'CC1101::reset()'],['../class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a',1,'RF69::reset()'],['../class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97',1,'Si443x::reset()'],['../class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f',1,'SX126x::reset()'],['../class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac',1,'SX1272::reset()'],['../class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad',1,'SX1278::reset()'],['../class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68',1,'SX127x::reset()'],['../class_s_x128x.html#a2643ce22176293631fea2169f5e68e66',1,'SX128x::reset()']]],
- ['rf69_245',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69::RF69()'],['../class_r_f69.html',1,'RF69']]],
- ['rfm22_246',['RFM22',['../class_r_f_m22.html',1,'']]],
- ['rfm23_247',['RFM23',['../class_r_f_m23.html',1,'']]],
- ['rfm95_248',['RFM95',['../class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326',1,'RFM95::RFM95()'],['../class_r_f_m95.html',1,'RFM95']]],
- ['rfm96_249',['RFM96',['../class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a',1,'RFM96::RFM96()'],['../class_r_f_m96.html',1,'RFM96']]],
- ['rfm97_250',['RFM97',['../class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be',1,'RFM97::RFM97()'],['../class_r_f_m97.html',1,'RFM97']]],
- ['rfm98_251',['RFM98',['../class_r_f_m98.html',1,'']]],
- ['rfswitch_5fmax_5fpins_252',['RFSWITCH_MAX_PINS',['../class_module.html#a0c11551e12579bbabf57b19e12555b3c',1,'Module']]],
- ['rfswitchmode_5ft_253',['RfSwitchMode_t',['../struct_module_1_1_rf_switch_mode__t.html',1,'Module']]],
- ['rttyclient_254',['RTTYClient',['../class_r_t_t_y_client.html',1,'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)']]]
+ ['radiolib_20documentation_147',['RadioLib Documentation',['../index.html',1,'']]],
+ ['radiolib_5fchannel_5ffree_148',['RADIOLIB_CHANNEL_FREE',['../group__status__codes.html#ga4673596b2cc7290be5ee0a2e9ee42718',1,'TypeDef.h']]],
+ ['radiolib_5fencoding_5fmanchester_149',['RADIOLIB_ENCODING_MANCHESTER',['../group__config__encoding.html#gaffff394bbc47c05ed1bfde2e16a596e8',1,'TypeDef.h']]],
+ ['radiolib_5fencoding_5fnrz_150',['RADIOLIB_ENCODING_NRZ',['../group__config__encoding.html#ga0253ae0c289d950e36106102a983f9cb',1,'TypeDef.h']]],
+ ['radiolib_5fencoding_5fwhitening_151',['RADIOLIB_ENCODING_WHITENING',['../group__config__encoding.html#ga0bfc51be5abf0b434a49540bddb65328',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fack_5fnot_5freceived_152',['RADIOLIB_ERR_ACK_NOT_RECEIVED',['../group__status__codes.html#gafeff72bd7b618959d86b804a11f09063',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5faddress_5fnot_5ffound_153',['RADIOLIB_ERR_ADDRESS_NOT_FOUND',['../group__status__codes.html#ga806183ed238159d317132b0d44d7a0a2',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fchip_5fnot_5ffound_154',['RADIOLIB_ERR_CHIP_NOT_FOUND',['../group__status__codes.html#ga5d11e8ce64fb412c2169d0f30b9e9c62',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fcrc_5fmismatch_155',['RADIOLIB_ERR_CRC_MISMATCH',['../group__status__codes.html#ga9da949184e940a4fa6f4afb63c315963',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5faddress_5fwidth_156',['RADIOLIB_ERR_INVALID_ADDRESS_WIDTH',['../group__status__codes.html#gafbc04b924d23cba05307e94972d7d607',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fbandwidth_157',['RADIOLIB_ERR_INVALID_BANDWIDTH',['../group__status__codes.html#ga0710b406a7e12ab6e0f77fdb3374cd9a',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fbit_5frange_158',['RADIOLIB_ERR_INVALID_BIT_RANGE',['../group__status__codes.html#ga508806c18663156b0d00d1a21c957468',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fbit_5frate_159',['RADIOLIB_ERR_INVALID_BIT_RATE',['../group__status__codes.html#gac192dbf5134a10ed561100b01129224c',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fbit_5frate_5fbw_5fratio_160',['RADIOLIB_ERR_INVALID_BIT_RATE_BW_RATIO',['../group__status__codes.html#ga733a7f3f12109103384522dac4d1146e',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fcallsign_161',['RADIOLIB_ERR_INVALID_CALLSIGN',['../group__status__codes.html#gac1c27fd5a9ec38601a53c1c5ad428063',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fcoding_5frate_162',['RADIOLIB_ERR_INVALID_CODING_RATE',['../group__status__codes.html#ga4e64d3ed035b21bfb81cf2bca35b2ecb',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fcrc_5fconfiguration_163',['RADIOLIB_ERR_INVALID_CRC_CONFIGURATION',['../group__status__codes.html#gaedc74820131d6cb654302d776360f969',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fcurrent_5flimit_164',['RADIOLIB_ERR_INVALID_CURRENT_LIMIT',['../group__status__codes.html#gac314f4bd89f306c8a16237be9a9c80cb',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fdata_5frate_165',['RADIOLIB_ERR_INVALID_DATA_RATE',['../group__status__codes.html#ga9a098ceda0c3f153515c8cc36f1d683e',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fdata_5fshaping_166',['RADIOLIB_ERR_INVALID_DATA_SHAPING',['../group__status__codes.html#gaf16af86f43ac2946e82a1e87aea2882b',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fdio_5fpin_167',['RADIOLIB_ERR_INVALID_DIO_PIN',['../group__status__codes.html#ga193402d53d354b58c70e5324d1e5b531',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fencoding_168',['RADIOLIB_ERR_INVALID_ENCODING',['../group__status__codes.html#ga41b17f0207ad1aa10d666c8a9e4830c5',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5ffrequency_169',['RADIOLIB_ERR_INVALID_FREQUENCY',['../group__status__codes.html#ga9f80eb00fad12bb0bec384ad83b6941b',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5ffrequency_5fdeviation_170',['RADIOLIB_ERR_INVALID_FREQUENCY_DEVIATION',['../group__status__codes.html#gaabe141287f2d6ba723658309f4464662',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fgain_171',['RADIOLIB_ERR_INVALID_GAIN',['../group__status__codes.html#ga908f3a5ab6937d28536791c96cf9de23',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fimage_5fquality_172',['RADIOLIB_ERR_INVALID_IMAGE_QUALITY',['../group__status__codes.html#gad195c8d9ba523944ecf41dbb7cb9baa3',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fimage_5fsize_173',['RADIOLIB_ERR_INVALID_IMAGE_SIZE',['../group__status__codes.html#ga44f09021bdc7fdd4b57db3ab8725b5a1',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fmic_5fe_5ftelemetry_174',['RADIOLIB_ERR_INVALID_MIC_E_TELEMETRY',['../group__status__codes.html#gaeafdfcb2b10b08385feea93163fc3918',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fmic_5fe_5ftelemetry_5flength_175',['RADIOLIB_ERR_INVALID_MIC_E_TELEMETRY_LENGTH',['../group__status__codes.html#ga85e34d08b298a4125f77ddede011db3b',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fmodulation_176',['RADIOLIB_ERR_INVALID_MODULATION',['../group__status__codes.html#gab0f9cb8ee829a8504fc110de18c4ff67',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fmodulation_5fparameters_177',['RADIOLIB_ERR_INVALID_MODULATION_PARAMETERS',['../group__status__codes.html#ga7f57f6eddc68b9a59cceab4fdf6556ba',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fnum_5fbroad_5faddrs_178',['RADIOLIB_ERR_INVALID_NUM_BROAD_ADDRS',['../group__status__codes.html#gae0e8ebbd71661b8a107b01befc997e5e',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fnum_5frepeaters_179',['RADIOLIB_ERR_INVALID_NUM_REPEATERS',['../group__status__codes.html#ga47f1cc22b76c6b8685bd7e265ab78a1a',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fnum_5fsamples_180',['RADIOLIB_ERR_INVALID_NUM_SAMPLES',['../group__status__codes.html#gaa5d0e76a10099c6e1cfd8f24e48995a2',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fook_5frssi_5fpeak_5ftype_181',['RADIOLIB_ERR_INVALID_OOK_RSSI_PEAK_TYPE',['../group__status__codes.html#gabc97efb9f410af5c0a9c1e5f882e41d8',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5foutput_5fpower_182',['RADIOLIB_ERR_INVALID_OUTPUT_POWER',['../group__status__codes.html#ga55da4b2ee0661872a37f1c57fc61c666',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fpayload_183',['RADIOLIB_ERR_INVALID_PAYLOAD',['../group__status__codes.html#ga5529b54dc67d5ccdc2a29989ebf43711',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fpipe_5fnumber_184',['RADIOLIB_ERR_INVALID_PIPE_NUMBER',['../group__status__codes.html#ga3ed4264643f97b76f9f3cf242338573d',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fpreamble_5flength_185',['RADIOLIB_ERR_INVALID_PREAMBLE_LENGTH',['../group__status__codes.html#ga9dc55947447ed9c91217f86a9bca75bb',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5frepeater_5fcallsign_186',['RADIOLIB_ERR_INVALID_REPEATER_CALLSIGN',['../group__status__codes.html#ga684497ce1c94442b5fe0396ea4ec930d',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5frssi_5foffset_187',['RADIOLIB_ERR_INVALID_RSSI_OFFSET',['../group__status__codes.html#ga0f1e3d5da7867511500fcd4a43f4df2f',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5frssi_5fthreshold_188',['RADIOLIB_ERR_INVALID_RSSI_THRESHOLD',['../group__status__codes.html#ga0f0aad5acd6d24fc7da9269664912d48',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5frtty_5fshift_189',['RADIOLIB_ERR_INVALID_RTTY_SHIFT',['../group__status__codes.html#ga6b75df06d8c18366f85848331c49a1af',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5frx_5fbandwidth_190',['RADIOLIB_ERR_INVALID_RX_BANDWIDTH',['../group__status__codes.html#gaa1f484c73f9abe05408c84fe5891539b',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5frx_5fperiod_191',['RADIOLIB_ERR_INVALID_RX_PERIOD',['../group__status__codes.html#ga4b30b822814dc8d49d3f3229011c8aff',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fsleep_5fperiod_192',['RADIOLIB_ERR_INVALID_SLEEP_PERIOD',['../group__status__codes.html#ga0066a30650888853a622413a579d891c',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fspreading_5ffactor_193',['RADIOLIB_ERR_INVALID_SPREADING_FACTOR',['../group__status__codes.html#ga0e196b0ec8efd606cd60592f88b626e8',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fssdv_5fmode_194',['RADIOLIB_ERR_INVALID_SSDV_MODE',['../group__status__codes.html#ga5d57c9ea944fdad3760fa54ed033ace5',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fsubsampling_195',['RADIOLIB_ERR_INVALID_SUBSAMPLING',['../group__status__codes.html#ga8c0c19441712a0f8749743ed9fbe4f39',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fsymbol_196',['RADIOLIB_ERR_INVALID_SYMBOL',['../group__status__codes.html#ga7f9712de2117b89215410fc18776dc84',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5fsync_5fword_197',['RADIOLIB_ERR_INVALID_SYNC_WORD',['../group__status__codes.html#ga5584a219fcb1a8e1789142b18a3a511e',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5finvalid_5ftcxo_5fvoltage_198',['RADIOLIB_ERR_INVALID_TCXO_VOLTAGE',['../group__status__codes.html#ga691e968e9f057a6cecb37a5dd5d8bd68',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5flora_5fheader_5fdamaged_199',['RADIOLIB_ERR_LORA_HEADER_DAMAGED',['../group__status__codes.html#gab152891bb13f6f70e6631820904e9d90',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fmemory_5fallocation_5ffailed_200',['RADIOLIB_ERR_MEMORY_ALLOCATION_FAILED',['../group__status__codes.html#ga7afc28738967d4d91c13d1d412d6f5e4',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fmic_5fe_5ftelemetry_5fstatus_201',['RADIOLIB_ERR_MIC_E_TELEMETRY_STATUS',['../group__status__codes.html#ga54a2fc9441c25b56979c6edab097ff12',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fnone_202',['RADIOLIB_ERR_NONE',['../group__status__codes.html#ga4c1dd3c7f2b37c973a047c58506729f5',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fnull_5fpointer_203',['RADIOLIB_ERR_NULL_POINTER',['../group__status__codes.html#gaad31ccea119011fd05441ed83e0f3b3d',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fpacket_5ftoo_5flong_204',['RADIOLIB_ERR_PACKET_TOO_LONG',['../group__status__codes.html#ga4602702eac86c5c3a13b93a06d846fac',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5franging_5ftimeout_205',['RADIOLIB_ERR_RANGING_TIMEOUT',['../group__status__codes.html#gabf529b0d150265c071c2255cb45f9e4f',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5frx_5ftimeout_206',['RADIOLIB_ERR_RX_TIMEOUT',['../group__status__codes.html#gafadba2c16b7296cbaf96978e8eadfa45',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fspi_5fcmd_5ffailed_207',['RADIOLIB_ERR_SPI_CMD_FAILED',['../group__status__codes.html#gabc695a4fae689e856ae6f618e334066f',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fspi_5fcmd_5finvalid_208',['RADIOLIB_ERR_SPI_CMD_INVALID',['../group__status__codes.html#gac1902fa5b8d5c9469dd9261880ba2957',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fspi_5fcmd_5ftimeout_209',['RADIOLIB_ERR_SPI_CMD_TIMEOUT',['../group__status__codes.html#ga72b849c71b8fdf112d318518a3b1ac7d',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fspi_5fwrite_5ffailed_210',['RADIOLIB_ERR_SPI_WRITE_FAILED',['../group__status__codes.html#ga31e0864281b5ea21c53206c49877b670',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5ftx_5ftimeout_211',['RADIOLIB_ERR_TX_TIMEOUT',['../group__status__codes.html#gac4185b9eaead4de110763759f01e1f4f',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5funknown_212',['RADIOLIB_ERR_UNKNOWN',['../group__status__codes.html#gacc0baeb3e5fc99760a07d18ba55531b6',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5funsupported_213',['RADIOLIB_ERR_UNSUPPORTED',['../group__status__codes.html#ga00c1c2b500feea59d0d47dddd7179be1',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5funsupported_5fencoding_214',['RADIOLIB_ERR_UNSUPPORTED_ENCODING',['../group__status__codes.html#gae4d77c5138cc5f21fb2af4b0791e9f81',1,'TypeDef.h']]],
+ ['radiolib_5ferr_5fwrong_5fmodem_215',['RADIOLIB_ERR_WRONG_MODEM',['../group__status__codes.html#gad95d2455d580745d41ef2f319c6585f8',1,'TypeDef.h']]],
+ ['radiolib_5flora_5fdetected_216',['RADIOLIB_LORA_DETECTED',['../group__status__codes.html#ga58ff08f4dba334cf8e26474ec2d3facd',1,'TypeDef.h']]],
+ ['radiolib_5fpreamble_5fdetected_217',['RADIOLIB_PREAMBLE_DETECTED',['../group__status__codes.html#ga382dc113e93f196401914853ec176b18',1,'TypeDef.h']]],
+ ['radiolib_5fshaping_5f0_5f3_218',['RADIOLIB_SHAPING_0_3',['../group__config__shaping.html#ga6a562fca42573d39e4a214c293756f64',1,'TypeDef.h']]],
+ ['radiolib_5fshaping_5f0_5f5_219',['RADIOLIB_SHAPING_0_5',['../group__config__shaping.html#gaa778d14c29d21fe329137a28a3f54a5d',1,'TypeDef.h']]],
+ ['radiolib_5fshaping_5f0_5f7_220',['RADIOLIB_SHAPING_0_7',['../group__config__shaping.html#ga677dde0ea956d5e99af30cf501a727ad',1,'TypeDef.h']]],
+ ['radiolib_5fshaping_5f1_5f0_221',['RADIOLIB_SHAPING_1_0',['../group__config__shaping.html#ga80e2185af1123c7632aa40cad1691e6d',1,'TypeDef.h']]],
+ ['radiolib_5fshaping_5fnone_222',['RADIOLIB_SHAPING_NONE',['../group__config__shaping.html#gaa9495bc5eb54df04f2ed7b1ccbb4f277',1,'TypeDef.h']]],
+ ['radiolib_5fstandby_5fcold_223',['RADIOLIB_STANDBY_COLD',['../group__config__standby.html#ga37f835c3cd3323e2cde1fe1ab7c635e7',1,'TypeDef.h']]],
+ ['radiolib_5fstandby_5fdefault_224',['RADIOLIB_STANDBY_DEFAULT',['../group__config__standby.html#ga3f3398b244d584ad94c691f60f2d9517',1,'TypeDef.h']]],
+ ['radiolib_5fstandby_5fwarm_225',['RADIOLIB_STANDBY_WARM',['../group__config__standby.html#ga9c4af50dde47d157538b1877190ea7b5',1,'TypeDef.h']]],
+ ['radiolibaes128_226',['RadioLibAES128',['../class_radio_lib_a_e_s128.html#a11f816221d1c06432ff80f2678ef46fe',1,'RadioLibAES128::RadioLibAES128()'],['../class_radio_lib_a_e_s128.html',1,'RadioLibAES128']]],
+ ['radiolibbch_227',['RadioLibBCH',['../class_radio_lib_b_c_h.html',1,'RadioLibBCH'],['../class_radio_lib_b_c_h.html#a39d55c0292e4c9337ee0672cd5241118',1,'RadioLibBCH::RadioLibBCH()']]],
+ ['radiolibcrc_228',['RadioLibCRC',['../class_radio_lib_c_r_c.html',1,'RadioLibCRC'],['../class_radio_lib_c_r_c.html#a4f4042a369d55e234f4fc28f189139d5',1,'RadioLibCRC::RadioLibCRC()']]],
+ ['radiolibhal_229',['RadioLibHal',['../class_radio_lib_hal.html',1,'RadioLibHal'],['../class_radio_lib_hal.html#ae75a54271cb8bea37d32dd146b9c6513',1,'RadioLibHal::RadioLibHal()']]],
+ ['radiolibprint_230',['RadioLibPrint',['../class_radio_lib_print.html',1,'']]],
+ ['random_231',['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_232',['randomByte',['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',1,'SX126x::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833',1,'CC1101::randomByte()']]],
+ ['range_233',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]],
+ ['rcvseqnumber_234',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]],
+ ['read_235',['read',['../class_morse_client.html#a77eab03be04ef2d693348d9580ee5d3c',1,'MorseClient::read()'],['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()']]],
+ ['readbit_236',['readBit',['../class_r_f69.html#ab797840275fbccc40162225c32f5ffc3',1,'RF69::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#aceeb18acbfedb20c6cf60e26d5275793',1,'SX128x::readBit()'],['../class_s_x127x.html#a1a2dc7554414f0ce2ee0db23087f698a',1,'SX127x::readBit()'],['../class_si443x.html#af23d8eb0f1c436e6cc60361df13c08f7',1,'Si443x::readBit()'],['../class_s_x126x.html#a8cdc4f25d4193dc75f9442874131eab3',1,'SX126x::readBit()'],['../class_c_c1101.html#a206e6c6f094aa7e68388fd9412cd969e',1,'CC1101::readBit()']]],
+ ['readdata_237',['readData',['../class_s_x128x.html#a3563453988a83d22dd07d4691543a300',1,'SX128x::readData()'],['../class_s_x127x.html#a3563453988a83d22dd07d4691543a300',1,'SX127x::readData()'],['../class_si443x.html#a3563453988a83d22dd07d4691543a300',1,'Si443x::readData()'],['../class_r_f69.html#a3563453988a83d22dd07d4691543a300',1,'RF69::readData()'],['../classn_r_f24.html#a3563453988a83d22dd07d4691543a300',1,'nRF24::readData()'],['../class_c_c1101.html#a3563453988a83d22dd07d4691543a300',1,'CC1101::readData()'],['../class_physical_layer.html#a3563453988a83d22dd07d4691543a300',1,'PhysicalLayer::readData()'],['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745',1,'SX127x::readData()'],['../class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2',1,'SX126x::readData()'],['../class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e',1,'Si443x::readData()'],['../class_r_f69.html#a3983b66c83818b4082805bcafc712f00',1,'RF69::readData()'],['../classn_r_f24.html#a410fb78acb4ed358818c132687b8857a',1,'nRF24::readData()'],['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData()'],['../class_s_x126x.html#a3563453988a83d22dd07d4691543a300',1,'SX126x::readData()']]],
+ ['receive_238',['receive',['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX128x::receive()'],['../class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX127x::receive()'],['../class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX126x::receive()'],['../class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'Si443x::receive()'],['../class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'RF69::receive()'],['../classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'nRF24::receive()'],['../class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'CC1101::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'PhysicalLayer::receive()']]],
+ ['receivedirect_239',['receiveDirect',['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6',1,'PhysicalLayer::receiveDirect()'],['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()'],['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect() override']]],
+ ['receivedirectasync_240',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]],
+ ['refin_241',['refIn',['../class_radio_lib_c_r_c.html#ac65a358753efd05067c19fcf1098ec04',1,'RadioLibCRC']]],
+ ['reflect_242',['reflect',['../class_module.html#a4add1a875bb88e91da232118201a78a8',1,'Module']]],
+ ['refout_243',['refOut',['../class_radio_lib_c_r_c.html#ab1b5aa578ed5818a7618df8c6cf98087',1,'RadioLibCRC']]],
+ ['regdump_244',['regdump',['../class_module.html#abb13a50ed53b009c04dc2ed6caf78423',1,'Module']]],
+ ['repeatercallsigns_245',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]],
+ ['repeaterssids_246',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]],
+ ['reply_247',['reply',['../class_bell_client.html#a9233e10bc794af85e3e86b4ec2a8746d',1,'BellClient']]],
+ ['reset_248',['reset',['../class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f',1,'SX126x::reset()'],['../class_c_c1101.html#a1fc87275c6f5d7f6927ca51a175eba21',1,'CC1101::reset()'],['../class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a',1,'RF69::reset()'],['../class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97',1,'Si443x::reset()'],['../class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac',1,'SX1272::reset()'],['../class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad',1,'SX1278::reset()'],['../class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68',1,'SX127x::reset()'],['../class_s_x128x.html#a2643ce22176293631fea2169f5e68e66',1,'SX128x::reset()']]],
+ ['rf69_249',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69::RF69()'],['../class_r_f69.html',1,'RF69']]],
+ ['rfm22_250',['RFM22',['../class_r_f_m22.html',1,'']]],
+ ['rfm23_251',['RFM23',['../class_r_f_m23.html',1,'']]],
+ ['rfm95_252',['RFM95',['../class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326',1,'RFM95::RFM95()'],['../class_r_f_m95.html',1,'RFM95']]],
+ ['rfm96_253',['RFM96',['../class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a',1,'RFM96::RFM96()'],['../class_r_f_m96.html',1,'RFM96']]],
+ ['rfm97_254',['RFM97',['../class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be',1,'RFM97::RFM97()'],['../class_r_f_m97.html',1,'RFM97']]],
+ ['rfm98_255',['RFM98',['../class_r_f_m98.html',1,'']]],
+ ['rfswitch_5fmax_5fpins_256',['RFSWITCH_MAX_PINS',['../class_module.html#a0c11551e12579bbabf57b19e12555b3c',1,'Module']]],
+ ['rfswitchmode_5ft_257',['RfSwitchMode_t',['../struct_module_1_1_rf_switch_mode__t.html',1,'Module']]],
+ ['rttyclient_258',['RTTYClient',['../class_r_t_t_y_client.html',1,'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/all_f.js b/search/all_f.js
index 21b97898..a6559a55 100644
--- a/search/all_f.js
+++ b/search/all_f.js
@@ -1,150 +1,150 @@
var searchData=
[
- ['scanchannel_255',['scanChannel',['../class_s_x126x.html#a755e7df4b0958f7c793d0c058408831a',1,'SX126x::scanChannel()'],['../class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb',1,'SX128x::scanChannel()'],['../class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5',1,'SX127x::scanChannel()']]],
- ['scanpixellen_256',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]],
- ['sendframe_257',['sendFrame',['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()'],['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()']]],
- ['sendheader_258',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]],
- ['sendline_259',['sendLine',['../class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0',1,'SSTVClient']]],
- ['sendmice_260',['sendMicE',['../class_a_p_r_s_client.html#af8f28eba026b0f0a25c8ba54a96f4743',1,'APRSClient']]],
- ['sendposition_261',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]],
- ['sendseqnumber_262',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]],
- ['sendtone_263',['sendTone',['../class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111',1,'PagerClient']]],
- ['setaccessaddress_264',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]],
- ['setaddresswidth_265',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]],
- ['setaeskey_266',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]],
- ['setafc_267',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]],
- ['setafcagctrigger_268',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]],
- ['setafcbandwidth_269',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]],
- ['setambienttemperature_270',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]],
- ['setautoack_271',['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_272',['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_273',['setBitRate',['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()'],['../class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::setBitRate()'],['../classn_r_f24.html#a0873f58ae62e41cff99813e21cc8b02a',1,'nRF24::setBitRate()'],['../class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13',1,'RF69::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e',1,'SX126x::setBitRate()'],['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee',1,'SX128x::setBitRate()']]],
- ['setbroadcastaddress_274',['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_275',['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_276',['setCorrection',['../class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e',1,'SSTVClient::setCorrection()'],['../class_f_s_k4_client.html#aab85cb6519e5448dc332bf17bd60f90a',1,'FSK4Client::setCorrection()'],['../class_bell_client.html#a90f3f33a09a4cf8d544ca1e9a23beae2',1,'BellClient::setCorrection()'],['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client::setCorrection()']]],
- ['setcrc_277',['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_278',['setCrcFiltering',['../class_c_c1101.html#a60695681fc74a37f2a31a9638552e877',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#ab531ad461b250a060e92d9c744e79070',1,'SX127x::setCrcFiltering()']]],
- ['setcurrentlimit_279',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]],
- ['setdatashaping_280',['setDataShaping',['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::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()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::setDataShaping()']]],
- ['setdatashapingook_281',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]],
- ['setdio0action_282',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ae75bc48cc74a407370cd9f4bf95e9e30',1,'SX127x::setDio0Action()']]],
- ['setdio1action_283',['setDio1Action',['../class_s_t_m32_w_lx.html#a63d61bc5057e9da3d0ea12feae67122e',1,'STM32WLx::setDio1Action()'],['../class_physical_layer.html#a63c0beb4990876947f746751d45ac41d',1,'PhysicalLayer::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()'],['../class_s_x127x.html#a7b4bce81839b105c464ebf922602e58b',1,'SX127x::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()']]],
- ['setdio2asrfswitch_284',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]],
- ['setdiomapping_285',['setDIOMapping',['../class_c_c1101.html#a009c31564866d8d14759f17f29b08ee6',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a0d7720672c0aa0cf4464d544540cbada',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#a103b606166eba8c69bff061270744768',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()']]],
- ['setdiopreambledetect_286',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]],
- ['setdirectaction_287',['setDirectAction',['../class_c_c1101.html#a5161fa10b19d857840579601ef565363',1,'CC1101::setDirectAction()'],['../class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28',1,'RF69::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()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()']]],
- ['setdirectsyncword_288',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]],
- ['setencoding_289',['setEncoding',['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_physical_layer.html#acb45b2342400a03a914a91d2ac7fb488',1,'PhysicalLayer::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()'],['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()'],['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()']]],
- ['setfhsshoppingperiod_290',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]],
- ['setfifoemptyaction_291',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()']]],
- ['setfifofullaction_292',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]],
- ['setfrequency_293',['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_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(float freq)'],['../class_s_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::setFrequency(float freq, bool calibrate)'],['../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_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()']]],
- ['setfrequencydeviation_294',['setFrequencyDeviation',['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::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_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()']]],
- ['setgain_295',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]],
- ['setgaincontrol_296',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]],
- ['setgdo0action_297',['setGdo0Action',['../class_c_c1101.html#a9bee13612cf4da067faeb57d18ee2eb7',1,'CC1101']]],
- ['setgdo2action_298',['setGdo2Action',['../class_c_c1101.html#ad71efbe54590e4431f3286ab99536fe9',1,'CC1101']]],
- ['sethighsensitivitymode_299',['setHighSensitivityMode',['../class_s_x128x.html#a6e45fbfaec7063e52e188f47a3a585a5',1,'SX128x']]],
- ['setinversion_300',['setInversion',['../class_hell_client.html#ae43025b9d55ee21a322bb5d7ee1065b0',1,'HellClient']]],
- ['setirqaction_301',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]],
- ['setlnatestboost_302',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]],
- ['setmodem_303',['setModem',['../class_bell_client.html#a163f65f3fcce87d9bea558b34c19bd47',1,'BellClient']]],
- ['setnodeaddress_304',['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(uint8_t nodeAddr)']]],
- ['setook_305',['setOOK',['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK()'],['../class_r_f69.html#a465df5a2e1f924f6d3ba4eae765847b7',1,'RF69::setOOK()'],['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()']]],
- ['setookfixedorfloorthreshold_306',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]],
- ['setookfixedthreshold_307',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]],
- ['setookpeakthresholddecrement_308',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement(uint8_t value)']]],
- ['setookpeakthresholdstep_309',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]],
- ['setookthresholdtype_310',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]],
- ['setoutputpower_311',['setOutputPower',['../class_c_c1101.html#a4f89d13ea170157df109eca36674f0aa',1,'CC1101::setOutputPower()'],['../classn_r_f24.html#ad9859fa54aed7d3cd82839bad9d7d33a',1,'nRF24::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',1,'RF69::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::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#ad988727ea6c9b4e11562651d312514c0',1,'SX128x::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()']]],
- ['setpreamblelength_312',['setPreambleLength',['../class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed',1,'SX127x::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()'],['../class_s_x126x.html#ab00f765bbfbfaa8c693532ea3a90c29b',1,'SX126x::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_c_c1101.html#ae77c828c9c7cc12012fe011e8c4d3570',1,'CC1101::setPreambleLength(uint8_t preambleLength, uint8_t qualityThreshold)']]],
- ['setpromiscuousmode_313',['setPromiscuousMode',['../class_c_c1101.html#a047be5159af73374521a26e8f880fe12',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#ae004326d663a9d6a9c30e792aa368b49',1,'RF69::setPromiscuousMode()']]],
- ['setreceivepipe_314',['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_315',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]],
- ['setregulatordcdc_316',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x']]],
- ['setregulatorldo_317',['setRegulatorLDO',['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x']]],
- ['setrepeaters_318',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]],
- ['setrfswitchpins_319',['setRfSwitchPins',['../class_module.html#a7d3adea64acab11c47c804afc74bd4f3',1,'Module::setRfSwitchPins()'],['../class_c_c1101.html#a5ef45183690bb1879f106af079b01140',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#ac341945538a84430c61f80f610a94411',1,'RF69::setRfSwitchPins()'],['../class_s_x126x.html#a0a0df468eacc71c1b2a093ac06bfff51',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#a8ca9edcae05060cce3ff7ee58faeb4e2',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5ba683fbc4a46418ce3736f224fb55f2',1,'SX128x::setRfSwitchPins()'],['../class_si443x.html#a43e7ceeff9114b35ab89f1d69916b375',1,'Si443x::setRfSwitchPins()']]],
- ['setrfswitchstate_320',['setRfSwitchState',['../class_module.html#afbed643f082286012bf44bba22381ae6',1,'Module']]],
- ['setrfswitchtable_321',['setRfSwitchTable',['../class_s_t_m32_w_lx.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'STM32WLx::setRfSwitchTable()'],['../class_s_x128x.html#ad5789bd27d46b24f54aac9ca55ec9958',1,'SX128x::setRfSwitchTable()'],['../class_s_x127x.html#ab9625a5246a45112267ce441ac2de254',1,'SX127x::setRfSwitchTable()'],['../class_s_x126x.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'SX126x::setRfSwitchTable()'],['../class_si443x.html#a8898f11cf9dabd9a5ad717376fdbffa6',1,'Si443x::setRfSwitchTable()'],['../class_r_f69.html#afff64ceef5f496ce035ff6d12d6bcc3c',1,'RF69::setRfSwitchTable()'],['../class_c_c1101.html#a7b401995be4bc136063a035ce1820634',1,'CC1101::setRfSwitchTable()'],['../class_module.html#ac308fa817a5c36c5dc724a0d15cefd4d',1,'Module::setRfSwitchTable()']]],
- ['setrssiconfig_322',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]],
- ['setrssithreshold_323',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]],
- ['setrxbandwidth_324',['setRxBandwidth',['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()'],['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()'],['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()']]],
- ['setrxboostedgainmode_325',['setRxBoostedGainMode',['../class_s_x126x.html#a920aa76ff5f0f579424ef6de92e588c8',1,'SX126x']]],
- ['setsendsequence_326',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]],
- ['setspreadingfactor_327',['setSpreadingFactor',['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67',1,'RFM97::setSpreadingFactor()'],['../class_s_x1272.html#a82084ac58502c83d2ada998410307490',1,'SX1272::setSpreadingFactor()'],['../class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f',1,'SX1273::setSpreadingFactor()'],['../class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf',1,'SX1277::setSpreadingFactor()'],['../class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08',1,'SX1278::setSpreadingFactor()'],['../class_s_x128x.html#ae435f57132f76f4283abb870176acf54',1,'SX128x::setSpreadingFactor()'],['../class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d',1,'SX126x::setSpreadingFactor(uint8_t sf)']]],
- ['setsyncbits_328',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]],
- ['setsyncword_329',['setSyncWord',['../class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf',1,'SX126x::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#a9b7afe338fd5b81122c369ecaf0c3ebc',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len)'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord()'],['../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_330',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]],
- ['settransmitpipe_331',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]],
- ['setwhitening_332',['setWhitening',['../class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]],
- ['si4430_333',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430::Si4430()'],['../class_si4430.html',1,'Si4430']]],
- ['si4431_334',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431::Si4431()'],['../class_si4431.html',1,'Si4431']]],
- ['si4432_335',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432::Si4432()'],['../class_si4432.html',1,'Si4432']]],
- ['si443x_336',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x::Si443x()'],['../class_si443x.html',1,'Si443x']]],
- ['size_337',['size',['../class_radio_lib_c_r_c.html#ad09b067c00cda1cc676c13602dee2f5a',1,'RadioLibCRC']]],
- ['sleep_338',['sleep',['../class_si443x.html#ada90718aeb67d7f0e9899da534de9695',1,'Si443x::sleep()'],['../class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb',1,'RF69::sleep()'],['../classn_r_f24.html#a033287e33c532638c11e2775a073f297',1,'nRF24::sleep()'],['../class_s_x126x.html#afb5509f0705cdd971065251ed6b2fb4e',1,'SX126x::sleep()'],['../class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df',1,'SX127x::sleep()'],['../class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f',1,'SX128x::sleep()'],['../class_physical_layer.html#af1bb9a5da26da8829795ebb72e9c666e',1,'PhysicalLayer::sleep()']]],
- ['spectralscanabort_339',['spectralScanAbort',['../class_s_x126x.html#a865397e1cca38bec2d055c047825ea07',1,'SX126x']]],
- ['spectralscangetresult_340',['spectralScanGetResult',['../class_s_x126x.html#ae473773e5bed4b08452e80311bdb26f2',1,'SX126x']]],
- ['spectralscangetstatus_341',['spectralScanGetStatus',['../class_s_x126x.html#a5595fff99d76d50d711b8cdad98527c4',1,'SX126x']]],
- ['spectralscanstart_342',['spectralScanStart',['../class_s_x126x.html#a8a3ad4e12df862ab18b326d9dba26d66',1,'SX126x']]],
- ['spiaddrwidth_343',['SPIaddrWidth',['../class_module.html#ac19a495026aae62f5c2f089aa1b2b57a',1,'Module']]],
- ['spibegin_344',['spiBegin',['../class_radio_lib_hal.html#aa1f8e5cd323e53ef9fa977734a05d030',1,'RadioLibHal']]],
- ['spibegintransaction_345',['spiBeginTransaction',['../class_radio_lib_hal.html#abe787d5e556190eef2c63e1581235460',1,'RadioLibHal']]],
- ['spicheckstream_346',['SPIcheckStream',['../class_module.html#a5efa7ae78cab1d7f43005e965923f769',1,'Module']]],
- ['spiend_347',['spiEnd',['../class_radio_lib_hal.html#a41c85e560155d644f5b4ce8444dd8b64',1,'RadioLibHal']]],
- ['spiendtransaction_348',['spiEndTransaction',['../class_radio_lib_hal.html#a68d9271c76f8c96afb734a4634bf92e9',1,'RadioLibHal']]],
- ['spigetregvalue_349',['SPIgetRegValue',['../class_module.html#a01e15988ec448c76142ee5709929be2c',1,'Module']]],
- ['spinopcommand_350',['SPInopCommand',['../class_module.html#a466112286d19675ca2dbe481358e4365',1,'Module']]],
- ['spiparsestatuscb_351',['SPIparseStatusCb',['../class_module.html#af6e89e2bc4976e8c5dc42dedda9fa6a2',1,'Module']]],
- ['spiparsestatuscb_5ft_352',['SPIparseStatusCb_t',['../class_module.html#a9393088249856eab568126aeb2493e4a',1,'Module']]],
- ['spireadcommand_353',['SPIreadCommand',['../class_module.html#a849ad85fc1bc3a7130e660c13973ab26',1,'Module']]],
- ['spireadregister_354',['SPIreadRegister',['../class_module.html#a9a545e4a001da0d9f6358279ac40d4f0',1,'Module']]],
- ['spireadregisterburst_355',['SPIreadRegisterBurst',['../class_module.html#a874e030f1931e606e380930d37dd83ee',1,'Module']]],
- ['spireadstream_356',['SPIreadStream',['../class_module.html#ab9fc874adc8dbe7c3f1fd3c267c27708',1,'Module::SPIreadStream(uint8_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a085415b49ff72238f118b937ad896cbd',1,'Module::SPIreadStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]],
- ['spisetregvalue_357',['SPIsetRegValue',['../class_module.html#a081191402ad5c49e6c21982fc4587b77',1,'Module']]],
- ['spistatuscommand_358',['SPIstatusCommand',['../class_module.html#a06d8d4257c584b57a529fcc405d87c79',1,'Module']]],
- ['spistreamerror_359',['SPIstreamError',['../class_module.html#a66b06e69d57b97116bed1c6f185381f1',1,'Module']]],
- ['spistreamtype_360',['SPIstreamType',['../class_module.html#a34927454be3a34df8a5a586c46c428af',1,'Module']]],
- ['spitransfer_361',['spiTransfer',['../class_radio_lib_hal.html#a12facb08577402e50c91c75ca7dd560f',1,'RadioLibHal']]],
- ['spitransfer_362',['SPItransfer',['../class_module.html#a78dd39aa71d97e2220a880df8162fdde',1,'Module']]],
- ['spitransferstream_363',['SPItransferStream',['../class_module.html#ac3586c8d4013cbdd22cf34032632c181',1,'Module']]],
- ['spiwritecommand_364',['SPIwriteCommand',['../class_module.html#ae89764d15e8df5694a6aec0e18f72d3f',1,'Module']]],
- ['spiwriteregister_365',['SPIwriteRegister',['../class_module.html#a4437af6552e258e95ed8ed452afa6dd4',1,'Module']]],
- ['spiwriteregisterburst_366',['SPIwriteRegisterBurst',['../class_module.html#af474f82d00fffc1ee0fc8def2c7f220c',1,'Module']]],
- ['spiwritestream_367',['SPIwriteStream',['../class_module.html#a74ce586afa403130007a474d3295d762',1,'Module::SPIwriteStream(uint8_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a7acbe601ebe6398781d0f2de5177305e',1,'Module::SPIwriteStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]],
- ['srccallsign_368',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]],
- ['srcssid_369',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]],
- ['sstvclient_370',['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_371',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]],
- ['standby_372',['standby',['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby()'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()'],['../class_physical_layer.html#a7d5da4311092e3df6b193ff303a0c5e8',1,'PhysicalLayer::standby(uint8_t mode)'],['../class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018',1,'PhysicalLayer::standby()'],['../class_f_s_k4_client.html#a8b5765371ebbf68a21bc0bbfdf9f82ac',1,'FSK4Client::standby()'],['../class_bell_client.html#a57c19c733b0dfe80bd321f23b18c1e80',1,'BellClient::standby()'],['../class_s_x128x.html#a389aab93e24ec8c7cc9c14de90e5dfae',1,'SX128x::standby(uint8_t mode, bool wakeup=false)'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x127x.html#aa565bbff460e487672953dc05d335cb0',1,'SX127x::standby(uint8_t mode) override'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby() override'],['../class_s_x126x.html#a2fa0384a529746811e2dcb2eeb4188ec',1,'SX126x::standby(uint8_t mode, bool wakeup=true)'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby() override'],['../class_si443x.html#acbc0f95f32ca961294666405596ff529',1,'Si443x::standby(uint8_t mode) override'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby() override'],['../class_r_f69.html#a6e3002ab0c58e2087a7d101eda7afa82',1,'RF69::standby(uint8_t mode) override'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby() override'],['../classn_r_f24.html#a03e9ae7fbd0d55887acf1996df28ed5b',1,'nRF24::standby()'],['../class_c_c1101.html#af374ad0ecd820a01baef7d177a30132a',1,'CC1101::standby()']]],
- ['standby_20mode_20type_20aliases_2e_373',['Standby mode type aliases.',['../group__config__standby.html',1,'']]],
- ['startchannelscan_374',['startChannelScan',['../class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059',1,'SX127x::startChannelScan()'],['../class_s_x126x.html#a10a0e75571350fb05fa100e5d5151be2',1,'SX126x::startChannelScan()']]],
- ['startdirect_375',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]],
- ['startranging_376',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]],
- ['startreceive_377',['startReceive',['../class_s_x127x.html#adffb96b7f80dc43909bb4cebde68fe9d',1,'SX127x::startReceive()'],['../class_r_f69.html#ae8b6f87d4b798dc8fcda07bfa5af5a66',1,'RF69::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../classn_r_f24.html#ad672f45f73267249265044063e19b4fa',1,'nRF24::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_c_c1101.html#a22ebe5b75a09c420cf6e6464dac3fe33',1,'CC1101::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3',1,'CC1101::startReceive()'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_si443x.html#a1070a6cde04a01d4a35da670f65ce539',1,'Si443x::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_s_x126x.html#a0ec1b926c93885739b546a7f39e8b09c',1,'SX126x::startReceive()'],['../class_s_x127x.html#a0ae533401c801f1d4034eb3db8b1f30c',1,'SX127x::startReceive()'],['../class_s_x128x.html#a8530aaeacc4c12736ce5aa5b5460ee19',1,'SX128x::startReceive()'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive()'],['../class_physical_layer.html#a13dbafeeb9dd9ede72cc4d907738ac48',1,'PhysicalLayer::startReceive()']]],
- ['startreceivedutycycle_378',['startReceiveDutyCycle',['../class_s_x126x.html#a5b4f8a41b593436b8c7a2a2d46ac387e',1,'SX126x']]],
- ['startreceivedutycycleauto_379',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a077f180905ce4818cbdacad0cd9fe841',1,'SX126x']]],
- ['startsignal_380',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]],
- ['starttransmit_381',['startTransmit',['../class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083',1,'SX127x::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_x128x.html#aef221e7d463c5228ce00ed6934512848',1,'SX128x::startTransmit()'],['../class_si443x.html#a923654706eff5118ef6e84214e837f27',1,'Si443x::startTransmit()'],['../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#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#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#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#ad59e37ce0606dc8051e40be9d14cfec3',1,'Si443x::startTransmit()'],['../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#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#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_382',['Status Codes',['../group__status__codes.html',1,'']]],
- ['stm32wlx_383',['STM32WLx',['../class_s_t_m32_w_lx.html',1,'STM32WLx'],['../class_s_t_m32_w_lx.html#ac0e8787dbb8e8aaa172b089ace6eaa09',1,'STM32WLx::STM32WLx()']]],
- ['stm32wlx_5fmodule_384',['STM32WLx_Module',['../class_s_t_m32_w_lx___module.html',1,'']]],
- ['stm32wlxhal_385',['Stm32wlxHal',['../class_stm32wlx_hal.html',1,'']]],
- ['sx1231_386',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231::SX1231()'],['../class_s_x1231.html',1,'SX1231']]],
- ['sx1261_387',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261::SX1261()'],['../class_s_x1261.html',1,'SX1261']]],
- ['sx1262_388',['SX1262',['../class_s_x1262.html',1,'SX1262'],['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262::SX1262()']]],
- ['sx1268_389',['SX1268',['../class_s_x1268.html',1,'SX1268'],['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268::SX1268()']]],
- ['sx126x_390',['SX126x',['../class_s_x126x.html',1,'SX126x'],['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x::SX126x()']]],
- ['sx1272_391',['SX1272',['../class_s_x1272.html',1,'SX1272'],['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272::SX1272()']]],
- ['sx1273_392',['SX1273',['../class_s_x1273.html',1,'SX1273'],['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273::SX1273()']]],
- ['sx1276_393',['SX1276',['../class_s_x1276.html',1,'SX1276'],['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276::SX1276()']]],
- ['sx1277_394',['SX1277',['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277::SX1277()'],['../class_s_x1277.html',1,'SX1277']]],
- ['sx1278_395',['SX1278',['../class_s_x1278.html',1,'SX1278'],['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278::SX1278()']]],
- ['sx1279_396',['SX1279',['../class_s_x1279.html',1,'SX1279'],['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279::SX1279()']]],
- ['sx127x_397',['SX127x',['../class_s_x127x.html',1,'SX127x'],['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x::SX127x()']]],
- ['sx1280_398',['SX1280',['../class_s_x1280.html',1,'SX1280'],['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280::SX1280()']]],
- ['sx1281_399',['SX1281',['../class_s_x1281.html',1,'SX1281'],['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281::SX1281()']]],
- ['sx1282_400',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282::SX1282()'],['../class_s_x1282.html',1,'SX1282']]],
- ['sx128x_401',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x::SX128x()'],['../class_s_x128x.html',1,'SX128x']]]
+ ['scanchannel_259',['scanChannel',['../class_s_x126x.html#a755e7df4b0958f7c793d0c058408831a',1,'SX126x::scanChannel()'],['../class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb',1,'SX128x::scanChannel()'],['../class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5',1,'SX127x::scanChannel()']]],
+ ['scanpixellen_260',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]],
+ ['sendframe_261',['sendFrame',['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()'],['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()']]],
+ ['sendheader_262',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]],
+ ['sendline_263',['sendLine',['../class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0',1,'SSTVClient']]],
+ ['sendmice_264',['sendMicE',['../class_a_p_r_s_client.html#af8f28eba026b0f0a25c8ba54a96f4743',1,'APRSClient']]],
+ ['sendposition_265',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]],
+ ['sendseqnumber_266',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]],
+ ['sendtone_267',['sendTone',['../class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111',1,'PagerClient']]],
+ ['setaccessaddress_268',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]],
+ ['setaddresswidth_269',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]],
+ ['setaeskey_270',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]],
+ ['setafc_271',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]],
+ ['setafcagctrigger_272',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]],
+ ['setafcbandwidth_273',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]],
+ ['setambienttemperature_274',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]],
+ ['setautoack_275',['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_276',['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_277',['setBitRate',['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()'],['../class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::setBitRate()'],['../classn_r_f24.html#a0873f58ae62e41cff99813e21cc8b02a',1,'nRF24::setBitRate()'],['../class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13',1,'RF69::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e',1,'SX126x::setBitRate()'],['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee',1,'SX128x::setBitRate()']]],
+ ['setbroadcastaddress_278',['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_279',['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_280',['setCorrection',['../class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e',1,'SSTVClient::setCorrection()'],['../class_f_s_k4_client.html#aab85cb6519e5448dc332bf17bd60f90a',1,'FSK4Client::setCorrection()'],['../class_bell_client.html#a90f3f33a09a4cf8d544ca1e9a23beae2',1,'BellClient::setCorrection()'],['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client::setCorrection()']]],
+ ['setcrc_281',['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_282',['setCrcFiltering',['../class_c_c1101.html#a60695681fc74a37f2a31a9638552e877',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#ab531ad461b250a060e92d9c744e79070',1,'SX127x::setCrcFiltering()']]],
+ ['setcurrentlimit_283',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]],
+ ['setdatashaping_284',['setDataShaping',['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::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()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::setDataShaping()']]],
+ ['setdatashapingook_285',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]],
+ ['setdio0action_286',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ae75bc48cc74a407370cd9f4bf95e9e30',1,'SX127x::setDio0Action()']]],
+ ['setdio1action_287',['setDio1Action',['../class_s_t_m32_w_lx.html#a63d61bc5057e9da3d0ea12feae67122e',1,'STM32WLx::setDio1Action()'],['../class_physical_layer.html#a63c0beb4990876947f746751d45ac41d',1,'PhysicalLayer::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()'],['../class_s_x127x.html#a7b4bce81839b105c464ebf922602e58b',1,'SX127x::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()']]],
+ ['setdio2asrfswitch_288',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]],
+ ['setdiomapping_289',['setDIOMapping',['../class_c_c1101.html#a009c31564866d8d14759f17f29b08ee6',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a0d7720672c0aa0cf4464d544540cbada',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#a103b606166eba8c69bff061270744768',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()']]],
+ ['setdiopreambledetect_290',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]],
+ ['setdirectaction_291',['setDirectAction',['../class_c_c1101.html#a5161fa10b19d857840579601ef565363',1,'CC1101::setDirectAction()'],['../class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28',1,'RF69::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()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()']]],
+ ['setdirectsyncword_292',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]],
+ ['setencoding_293',['setEncoding',['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_physical_layer.html#acb45b2342400a03a914a91d2ac7fb488',1,'PhysicalLayer::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()'],['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()'],['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()']]],
+ ['setfhsshoppingperiod_294',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]],
+ ['setfifoemptyaction_295',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()']]],
+ ['setfifofullaction_296',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]],
+ ['setfrequency_297',['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_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(float freq)'],['../class_s_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::setFrequency(float freq, bool calibrate)'],['../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_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()']]],
+ ['setfrequencydeviation_298',['setFrequencyDeviation',['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::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_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()']]],
+ ['setgain_299',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]],
+ ['setgaincontrol_300',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]],
+ ['setgdo0action_301',['setGdo0Action',['../class_c_c1101.html#a9bee13612cf4da067faeb57d18ee2eb7',1,'CC1101']]],
+ ['setgdo2action_302',['setGdo2Action',['../class_c_c1101.html#ad71efbe54590e4431f3286ab99536fe9',1,'CC1101']]],
+ ['sethighsensitivitymode_303',['setHighSensitivityMode',['../class_s_x128x.html#a6e45fbfaec7063e52e188f47a3a585a5',1,'SX128x']]],
+ ['setinversion_304',['setInversion',['../class_hell_client.html#ae43025b9d55ee21a322bb5d7ee1065b0',1,'HellClient']]],
+ ['setirqaction_305',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]],
+ ['setlnatestboost_306',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]],
+ ['setmodem_307',['setModem',['../class_bell_client.html#a163f65f3fcce87d9bea558b34c19bd47',1,'BellClient']]],
+ ['setnodeaddress_308',['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(uint8_t nodeAddr)']]],
+ ['setook_309',['setOOK',['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK()'],['../class_r_f69.html#a465df5a2e1f924f6d3ba4eae765847b7',1,'RF69::setOOK()'],['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()']]],
+ ['setookfixedorfloorthreshold_310',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]],
+ ['setookfixedthreshold_311',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]],
+ ['setookpeakthresholddecrement_312',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement(uint8_t value)']]],
+ ['setookpeakthresholdstep_313',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]],
+ ['setookthresholdtype_314',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]],
+ ['setoutputpower_315',['setOutputPower',['../class_c_c1101.html#a4f89d13ea170157df109eca36674f0aa',1,'CC1101::setOutputPower()'],['../classn_r_f24.html#ad9859fa54aed7d3cd82839bad9d7d33a',1,'nRF24::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',1,'RF69::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::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#ad988727ea6c9b4e11562651d312514c0',1,'SX128x::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()']]],
+ ['setpreamblelength_316',['setPreambleLength',['../class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed',1,'SX127x::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()'],['../class_s_x126x.html#ab00f765bbfbfaa8c693532ea3a90c29b',1,'SX126x::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_c_c1101.html#ae77c828c9c7cc12012fe011e8c4d3570',1,'CC1101::setPreambleLength(uint8_t preambleLength, uint8_t qualityThreshold)']]],
+ ['setpromiscuousmode_317',['setPromiscuousMode',['../class_c_c1101.html#a047be5159af73374521a26e8f880fe12',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#ae004326d663a9d6a9c30e792aa368b49',1,'RF69::setPromiscuousMode()']]],
+ ['setreceivepipe_318',['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_319',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]],
+ ['setregulatordcdc_320',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x']]],
+ ['setregulatorldo_321',['setRegulatorLDO',['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x']]],
+ ['setrepeaters_322',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]],
+ ['setrfswitchpins_323',['setRfSwitchPins',['../class_module.html#a7d3adea64acab11c47c804afc74bd4f3',1,'Module::setRfSwitchPins()'],['../class_c_c1101.html#a5ef45183690bb1879f106af079b01140',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#ac341945538a84430c61f80f610a94411',1,'RF69::setRfSwitchPins()'],['../class_s_x126x.html#a0a0df468eacc71c1b2a093ac06bfff51',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#a8ca9edcae05060cce3ff7ee58faeb4e2',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5ba683fbc4a46418ce3736f224fb55f2',1,'SX128x::setRfSwitchPins()'],['../class_si443x.html#a43e7ceeff9114b35ab89f1d69916b375',1,'Si443x::setRfSwitchPins()']]],
+ ['setrfswitchstate_324',['setRfSwitchState',['../class_module.html#afbed643f082286012bf44bba22381ae6',1,'Module']]],
+ ['setrfswitchtable_325',['setRfSwitchTable',['../class_s_t_m32_w_lx.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'STM32WLx::setRfSwitchTable()'],['../class_s_x128x.html#ad5789bd27d46b24f54aac9ca55ec9958',1,'SX128x::setRfSwitchTable()'],['../class_s_x127x.html#ab9625a5246a45112267ce441ac2de254',1,'SX127x::setRfSwitchTable()'],['../class_s_x126x.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'SX126x::setRfSwitchTable()'],['../class_si443x.html#a8898f11cf9dabd9a5ad717376fdbffa6',1,'Si443x::setRfSwitchTable()'],['../class_r_f69.html#afff64ceef5f496ce035ff6d12d6bcc3c',1,'RF69::setRfSwitchTable()'],['../class_c_c1101.html#a7b401995be4bc136063a035ce1820634',1,'CC1101::setRfSwitchTable()'],['../class_module.html#ac308fa817a5c36c5dc724a0d15cefd4d',1,'Module::setRfSwitchTable()']]],
+ ['setrssiconfig_326',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]],
+ ['setrssithreshold_327',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]],
+ ['setrxbandwidth_328',['setRxBandwidth',['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()'],['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()'],['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()']]],
+ ['setrxboostedgainmode_329',['setRxBoostedGainMode',['../class_s_x126x.html#a920aa76ff5f0f579424ef6de92e588c8',1,'SX126x']]],
+ ['setsendsequence_330',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]],
+ ['setspreadingfactor_331',['setSpreadingFactor',['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67',1,'RFM97::setSpreadingFactor()'],['../class_s_x1272.html#a82084ac58502c83d2ada998410307490',1,'SX1272::setSpreadingFactor()'],['../class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f',1,'SX1273::setSpreadingFactor()'],['../class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf',1,'SX1277::setSpreadingFactor()'],['../class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08',1,'SX1278::setSpreadingFactor()'],['../class_s_x128x.html#ae435f57132f76f4283abb870176acf54',1,'SX128x::setSpreadingFactor()'],['../class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d',1,'SX126x::setSpreadingFactor(uint8_t sf)']]],
+ ['setsyncbits_332',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]],
+ ['setsyncword_333',['setSyncWord',['../class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf',1,'SX126x::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#a9b7afe338fd5b81122c369ecaf0c3ebc',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len)'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord()'],['../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_334',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]],
+ ['settransmitpipe_335',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]],
+ ['setwhitening_336',['setWhitening',['../class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]],
+ ['si4430_337',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430::Si4430()'],['../class_si4430.html',1,'Si4430']]],
+ ['si4431_338',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431::Si4431()'],['../class_si4431.html',1,'Si4431']]],
+ ['si4432_339',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432::Si4432()'],['../class_si4432.html',1,'Si4432']]],
+ ['si443x_340',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x::Si443x()'],['../class_si443x.html',1,'Si443x']]],
+ ['size_341',['size',['../class_radio_lib_c_r_c.html#ad09b067c00cda1cc676c13602dee2f5a',1,'RadioLibCRC']]],
+ ['sleep_342',['sleep',['../class_si443x.html#ada90718aeb67d7f0e9899da534de9695',1,'Si443x::sleep()'],['../class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb',1,'RF69::sleep()'],['../classn_r_f24.html#a033287e33c532638c11e2775a073f297',1,'nRF24::sleep()'],['../class_s_x126x.html#afb5509f0705cdd971065251ed6b2fb4e',1,'SX126x::sleep()'],['../class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df',1,'SX127x::sleep()'],['../class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f',1,'SX128x::sleep()'],['../class_physical_layer.html#af1bb9a5da26da8829795ebb72e9c666e',1,'PhysicalLayer::sleep()']]],
+ ['spectralscanabort_343',['spectralScanAbort',['../class_s_x126x.html#a865397e1cca38bec2d055c047825ea07',1,'SX126x']]],
+ ['spectralscangetresult_344',['spectralScanGetResult',['../class_s_x126x.html#ae473773e5bed4b08452e80311bdb26f2',1,'SX126x']]],
+ ['spectralscangetstatus_345',['spectralScanGetStatus',['../class_s_x126x.html#a5595fff99d76d50d711b8cdad98527c4',1,'SX126x']]],
+ ['spectralscanstart_346',['spectralScanStart',['../class_s_x126x.html#a8a3ad4e12df862ab18b326d9dba26d66',1,'SX126x']]],
+ ['spiaddrwidth_347',['SPIaddrWidth',['../class_module.html#ac19a495026aae62f5c2f089aa1b2b57a',1,'Module']]],
+ ['spibegin_348',['spiBegin',['../class_radio_lib_hal.html#aa1f8e5cd323e53ef9fa977734a05d030',1,'RadioLibHal']]],
+ ['spibegintransaction_349',['spiBeginTransaction',['../class_radio_lib_hal.html#abe787d5e556190eef2c63e1581235460',1,'RadioLibHal']]],
+ ['spicheckstream_350',['SPIcheckStream',['../class_module.html#a5efa7ae78cab1d7f43005e965923f769',1,'Module']]],
+ ['spiend_351',['spiEnd',['../class_radio_lib_hal.html#a41c85e560155d644f5b4ce8444dd8b64',1,'RadioLibHal']]],
+ ['spiendtransaction_352',['spiEndTransaction',['../class_radio_lib_hal.html#a68d9271c76f8c96afb734a4634bf92e9',1,'RadioLibHal']]],
+ ['spigetregvalue_353',['SPIgetRegValue',['../class_module.html#a01e15988ec448c76142ee5709929be2c',1,'Module']]],
+ ['spinopcommand_354',['SPInopCommand',['../class_module.html#a466112286d19675ca2dbe481358e4365',1,'Module']]],
+ ['spiparsestatuscb_355',['SPIparseStatusCb',['../class_module.html#af6e89e2bc4976e8c5dc42dedda9fa6a2',1,'Module']]],
+ ['spiparsestatuscb_5ft_356',['SPIparseStatusCb_t',['../class_module.html#a9393088249856eab568126aeb2493e4a',1,'Module']]],
+ ['spireadcommand_357',['SPIreadCommand',['../class_module.html#a849ad85fc1bc3a7130e660c13973ab26',1,'Module']]],
+ ['spireadregister_358',['SPIreadRegister',['../class_module.html#a9a545e4a001da0d9f6358279ac40d4f0',1,'Module']]],
+ ['spireadregisterburst_359',['SPIreadRegisterBurst',['../class_module.html#a874e030f1931e606e380930d37dd83ee',1,'Module']]],
+ ['spireadstream_360',['SPIreadStream',['../class_module.html#ab9fc874adc8dbe7c3f1fd3c267c27708',1,'Module::SPIreadStream(uint8_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a085415b49ff72238f118b937ad896cbd',1,'Module::SPIreadStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]],
+ ['spisetregvalue_361',['SPIsetRegValue',['../class_module.html#a081191402ad5c49e6c21982fc4587b77',1,'Module']]],
+ ['spistatuscommand_362',['SPIstatusCommand',['../class_module.html#a06d8d4257c584b57a529fcc405d87c79',1,'Module']]],
+ ['spistreamerror_363',['SPIstreamError',['../class_module.html#a66b06e69d57b97116bed1c6f185381f1',1,'Module']]],
+ ['spistreamtype_364',['SPIstreamType',['../class_module.html#a34927454be3a34df8a5a586c46c428af',1,'Module']]],
+ ['spitransfer_365',['SPItransfer',['../class_module.html#a78dd39aa71d97e2220a880df8162fdde',1,'Module']]],
+ ['spitransfer_366',['spiTransfer',['../class_radio_lib_hal.html#a12facb08577402e50c91c75ca7dd560f',1,'RadioLibHal']]],
+ ['spitransferstream_367',['SPItransferStream',['../class_module.html#ac3586c8d4013cbdd22cf34032632c181',1,'Module']]],
+ ['spiwritecommand_368',['SPIwriteCommand',['../class_module.html#ae89764d15e8df5694a6aec0e18f72d3f',1,'Module']]],
+ ['spiwriteregister_369',['SPIwriteRegister',['../class_module.html#a4437af6552e258e95ed8ed452afa6dd4',1,'Module']]],
+ ['spiwriteregisterburst_370',['SPIwriteRegisterBurst',['../class_module.html#af474f82d00fffc1ee0fc8def2c7f220c',1,'Module']]],
+ ['spiwritestream_371',['SPIwriteStream',['../class_module.html#a74ce586afa403130007a474d3295d762',1,'Module::SPIwriteStream(uint8_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a7acbe601ebe6398781d0f2de5177305e',1,'Module::SPIwriteStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]],
+ ['srccallsign_372',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]],
+ ['srcssid_373',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]],
+ ['sstvclient_374',['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_375',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]],
+ ['standby_376',['standby',['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby()'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()'],['../class_physical_layer.html#a7d5da4311092e3df6b193ff303a0c5e8',1,'PhysicalLayer::standby(uint8_t mode)'],['../class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018',1,'PhysicalLayer::standby()'],['../class_f_s_k4_client.html#a8b5765371ebbf68a21bc0bbfdf9f82ac',1,'FSK4Client::standby()'],['../class_bell_client.html#a57c19c733b0dfe80bd321f23b18c1e80',1,'BellClient::standby()'],['../class_s_x128x.html#a389aab93e24ec8c7cc9c14de90e5dfae',1,'SX128x::standby(uint8_t mode, bool wakeup=false)'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x127x.html#aa565bbff460e487672953dc05d335cb0',1,'SX127x::standby(uint8_t mode) override'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby() override'],['../class_s_x126x.html#a2fa0384a529746811e2dcb2eeb4188ec',1,'SX126x::standby(uint8_t mode, bool wakeup=true)'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby() override'],['../class_si443x.html#acbc0f95f32ca961294666405596ff529',1,'Si443x::standby(uint8_t mode) override'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby() override'],['../class_r_f69.html#a6e3002ab0c58e2087a7d101eda7afa82',1,'RF69::standby(uint8_t mode) override'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby() override'],['../classn_r_f24.html#a03e9ae7fbd0d55887acf1996df28ed5b',1,'nRF24::standby()'],['../class_c_c1101.html#af374ad0ecd820a01baef7d177a30132a',1,'CC1101::standby()']]],
+ ['standby_20mode_20type_20aliases_2e_377',['Standby mode type aliases.',['../group__config__standby.html',1,'']]],
+ ['startchannelscan_378',['startChannelScan',['../class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059',1,'SX127x::startChannelScan()'],['../class_s_x126x.html#a10a0e75571350fb05fa100e5d5151be2',1,'SX126x::startChannelScan()']]],
+ ['startdirect_379',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]],
+ ['startranging_380',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]],
+ ['startreceive_381',['startReceive',['../class_s_x127x.html#acaa90f7b8fcb4c41e2672923945d8ea7',1,'SX127x::startReceive()'],['../class_s_x126x.html#a013065f21a7c029f310178f884a60898',1,'SX126x::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_s_x126x.html#a16e8b271dc5e9af3015dd2901153cbde',1,'SX126x::startReceive()'],['../class_si443x.html#a1070a6cde04a01d4a35da670f65ce539',1,'Si443x::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_r_f69.html#ae8b6f87d4b798dc8fcda07bfa5af5a66',1,'RF69::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../classn_r_f24.html#ad672f45f73267249265044063e19b4fa',1,'nRF24::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_c_c1101.html#a22ebe5b75a09c420cf6e6464dac3fe33',1,'CC1101::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3',1,'CC1101::startReceive()'],['../class_s_x127x.html#ae90a5df2d414dfcafd1e3b8aa790f9fd',1,'SX127x::startReceive()'],['../class_s_x127x.html#a0ae533401c801f1d4034eb3db8b1f30c',1,'SX127x::startReceive(uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_s_x128x.html#afe700968c1e02e335c389b59d950ca39',1,'SX128x::startReceive()'],['../class_s_x128x.html#a8530aaeacc4c12736ce5aa5b5460ee19',1,'SX128x::startReceive(uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive()'],['../class_physical_layer.html#a18664ad615c5507ff1690baaca90b094',1,'PhysicalLayer::startReceive()'],['../class_physical_layer.html#a13dbafeeb9dd9ede72cc4d907738ac48',1,'PhysicalLayer::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)']]],
+ ['startreceivedutycycle_382',['startReceiveDutyCycle',['../class_s_x126x.html#a5b4f8a41b593436b8c7a2a2d46ac387e',1,'SX126x']]],
+ ['startreceivedutycycleauto_383',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a077f180905ce4818cbdacad0cd9fe841',1,'SX126x']]],
+ ['startsignal_384',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]],
+ ['starttransmit_385',['startTransmit',['../class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083',1,'SX127x::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_x128x.html#aef221e7d463c5228ce00ed6934512848',1,'SX128x::startTransmit()'],['../class_si443x.html#a923654706eff5118ef6e84214e837f27',1,'Si443x::startTransmit()'],['../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#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#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#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#ad59e37ce0606dc8051e40be9d14cfec3',1,'Si443x::startTransmit()'],['../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#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#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_386',['Status Codes',['../group__status__codes.html',1,'']]],
+ ['stm32wlx_387',['STM32WLx',['../class_s_t_m32_w_lx.html',1,'STM32WLx'],['../class_s_t_m32_w_lx.html#ac0e8787dbb8e8aaa172b089ace6eaa09',1,'STM32WLx::STM32WLx()']]],
+ ['stm32wlx_5fmodule_388',['STM32WLx_Module',['../class_s_t_m32_w_lx___module.html',1,'']]],
+ ['stm32wlxhal_389',['Stm32wlxHal',['../class_stm32wlx_hal.html',1,'']]],
+ ['sx1231_390',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231::SX1231()'],['../class_s_x1231.html',1,'SX1231']]],
+ ['sx1261_391',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261::SX1261()'],['../class_s_x1261.html',1,'SX1261']]],
+ ['sx1262_392',['SX1262',['../class_s_x1262.html',1,'SX1262'],['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262::SX1262()']]],
+ ['sx1268_393',['SX1268',['../class_s_x1268.html',1,'SX1268'],['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268::SX1268()']]],
+ ['sx126x_394',['SX126x',['../class_s_x126x.html',1,'SX126x'],['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x::SX126x()']]],
+ ['sx1272_395',['SX1272',['../class_s_x1272.html',1,'SX1272'],['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272::SX1272()']]],
+ ['sx1273_396',['SX1273',['../class_s_x1273.html',1,'SX1273'],['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273::SX1273()']]],
+ ['sx1276_397',['SX1276',['../class_s_x1276.html',1,'SX1276'],['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276::SX1276()']]],
+ ['sx1277_398',['SX1277',['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277::SX1277()'],['../class_s_x1277.html',1,'SX1277']]],
+ ['sx1278_399',['SX1278',['../class_s_x1278.html',1,'SX1278'],['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278::SX1278()']]],
+ ['sx1279_400',['SX1279',['../class_s_x1279.html',1,'SX1279'],['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279::SX1279()']]],
+ ['sx127x_401',['SX127x',['../class_s_x127x.html',1,'SX127x'],['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x::SX127x()']]],
+ ['sx1280_402',['SX1280',['../class_s_x1280.html',1,'SX1280'],['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280::SX1280()']]],
+ ['sx1281_403',['SX1281',['../class_s_x1281.html',1,'SX1281'],['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281::SX1281()']]],
+ ['sx1282_404',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282::SX1282()'],['../class_s_x1282.html',1,'SX1282']]],
+ ['sx128x_405',['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 a3c0fcdb..7d180cc3 100644
--- a/search/classes_0.js
+++ b/search/classes_0.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['afskclient_421',['AFSKClient',['../class_a_f_s_k_client.html',1,'']]],
- ['aprsclient_422',['APRSClient',['../class_a_p_r_s_client.html',1,'']]],
- ['ax25client_423',['AX25Client',['../class_a_x25_client.html',1,'']]],
- ['ax25frame_424',['AX25Frame',['../class_a_x25_frame.html',1,'']]]
+ ['afskclient_426',['AFSKClient',['../class_a_f_s_k_client.html',1,'']]],
+ ['aprsclient_427',['APRSClient',['../class_a_p_r_s_client.html',1,'']]],
+ ['ax25client_428',['AX25Client',['../class_a_x25_client.html',1,'']]],
+ ['ax25frame_429',['AX25Frame',['../class_a_x25_frame.html',1,'']]]
];
diff --git a/search/classes_1.js b/search/classes_1.js
index dece9ba2..b891d5ac 100644
--- a/search/classes_1.js
+++ b/search/classes_1.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['bell101_425',['Bell101',['../struct_bell101.html',1,'']]],
- ['bell103_426',['Bell103',['../struct_bell103.html',1,'']]],
- ['bell202_427',['Bell202',['../struct_bell202.html',1,'']]],
- ['bellclient_428',['BellClient',['../class_bell_client.html',1,'']]],
- ['bellmodem_5ft_429',['BellModem_t',['../struct_bell_modem__t.html',1,'']]]
+ ['bell101_430',['Bell101',['../struct_bell101.html',1,'']]],
+ ['bell103_431',['Bell103',['../struct_bell103.html',1,'']]],
+ ['bell202_432',['Bell202',['../struct_bell202.html',1,'']]],
+ ['bellclient_433',['BellClient',['../class_bell_client.html',1,'']]],
+ ['bellmodem_5ft_434',['BellModem_t',['../struct_bell_modem__t.html',1,'']]]
];
diff --git a/search/classes_2.js b/search/classes_2.js
index 08da8689..c240d61f 100644
--- a/search/classes_2.js
+++ b/search/classes_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['cc1101_430',['CC1101',['../class_c_c1101.html',1,'']]]
+ ['cc1101_435',['CC1101',['../class_c_c1101.html',1,'']]]
];
diff --git a/search/classes_3.js b/search/classes_3.js
index 3c23d449..cd162f80 100644
--- a/search/classes_3.js
+++ b/search/classes_3.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['externalradio_431',['ExternalRadio',['../class_external_radio.html',1,'']]]
+ ['externalradio_436',['ExternalRadio',['../class_external_radio.html',1,'']]]
];
diff --git a/search/classes_4.js b/search/classes_4.js
index 7c73c19c..f346591d 100644
--- a/search/classes_4.js
+++ b/search/classes_4.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['fsk4client_432',['FSK4Client',['../class_f_s_k4_client.html',1,'']]]
+ ['fsk4client_437',['FSK4Client',['../class_f_s_k4_client.html',1,'']]]
];
diff --git a/search/classes_5.js b/search/classes_5.js
index 85ab92c1..b3d5904d 100644
--- a/search/classes_5.js
+++ b/search/classes_5.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['hal_433',['Hal',['../class_hal.html',1,'']]],
- ['hellclient_434',['HellClient',['../class_hell_client.html',1,'']]]
+ ['hal_438',['Hal',['../class_hal.html',1,'']]],
+ ['hellclient_439',['HellClient',['../class_hell_client.html',1,'']]]
];
diff --git a/search/classes_6.js b/search/classes_6.js
index 379bec3b..7f26e43a 100644
--- a/search/classes_6.js
+++ b/search/classes_6.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['ita2string_435',['ITA2String',['../class_i_t_a2_string.html',1,'']]]
+ ['ita2string_440',['ITA2String',['../class_i_t_a2_string.html',1,'']]]
];
diff --git a/search/classes_7.js b/search/classes_7.js
index 0426aa6c..b214b262 100644
--- a/search/classes_7.js
+++ b/search/classes_7.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['llcc68_436',['LLCC68',['../class_l_l_c_c68.html',1,'']]]
+ ['llcc68_441',['LLCC68',['../class_l_l_c_c68.html',1,'']]]
];
diff --git a/search/classes_8.js b/search/classes_8.js
index aefc45af..7e7210a2 100644
--- a/search/classes_8.js
+++ b/search/classes_8.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['module_437',['Module',['../class_module.html',1,'']]],
- ['morseclient_438',['MorseClient',['../class_morse_client.html',1,'']]]
+ ['module_442',['Module',['../class_module.html',1,'']]],
+ ['morseclient_443',['MorseClient',['../class_morse_client.html',1,'']]]
];
diff --git a/search/classes_9.js b/search/classes_9.js
index 4a2c10da..05afd285 100644
--- a/search/classes_9.js
+++ b/search/classes_9.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['nrf24_439',['nRF24',['../classn_r_f24.html',1,'']]]
+ ['nrf24_444',['nRF24',['../classn_r_f24.html',1,'']]]
];
diff --git a/search/classes_a.js b/search/classes_a.js
index 1b0843a4..32e8ac89 100644
--- a/search/classes_a.js
+++ b/search/classes_a.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['pagerclient_440',['PagerClient',['../class_pager_client.html',1,'']]],
- ['physicallayer_441',['PhysicalLayer',['../class_physical_layer.html',1,'']]]
+ ['pagerclient_445',['PagerClient',['../class_pager_client.html',1,'']]],
+ ['physicallayer_446',['PhysicalLayer',['../class_physical_layer.html',1,'']]]
];
diff --git a/search/classes_b.js b/search/classes_b.js
index a29f167c..db2bd589 100644
--- a/search/classes_b.js
+++ b/search/classes_b.js
@@ -1,16 +1,17 @@
var searchData=
[
- ['radiolibbch_442',['RadioLibBCH',['../class_radio_lib_b_c_h.html',1,'']]],
- ['radiolibcrc_443',['RadioLibCRC',['../class_radio_lib_c_r_c.html',1,'']]],
- ['radiolibhal_444',['RadioLibHal',['../class_radio_lib_hal.html',1,'']]],
- ['radiolibprint_445',['RadioLibPrint',['../class_radio_lib_print.html',1,'']]],
- ['rf69_446',['RF69',['../class_r_f69.html',1,'']]],
- ['rfm22_447',['RFM22',['../class_r_f_m22.html',1,'']]],
- ['rfm23_448',['RFM23',['../class_r_f_m23.html',1,'']]],
- ['rfm95_449',['RFM95',['../class_r_f_m95.html',1,'']]],
- ['rfm96_450',['RFM96',['../class_r_f_m96.html',1,'']]],
- ['rfm97_451',['RFM97',['../class_r_f_m97.html',1,'']]],
- ['rfm98_452',['RFM98',['../class_r_f_m98.html',1,'']]],
- ['rfswitchmode_5ft_453',['RfSwitchMode_t',['../struct_module_1_1_rf_switch_mode__t.html',1,'Module']]],
- ['rttyclient_454',['RTTYClient',['../class_r_t_t_y_client.html',1,'']]]
+ ['radiolibaes128_447',['RadioLibAES128',['../class_radio_lib_a_e_s128.html',1,'']]],
+ ['radiolibbch_448',['RadioLibBCH',['../class_radio_lib_b_c_h.html',1,'']]],
+ ['radiolibcrc_449',['RadioLibCRC',['../class_radio_lib_c_r_c.html',1,'']]],
+ ['radiolibhal_450',['RadioLibHal',['../class_radio_lib_hal.html',1,'']]],
+ ['radiolibprint_451',['RadioLibPrint',['../class_radio_lib_print.html',1,'']]],
+ ['rf69_452',['RF69',['../class_r_f69.html',1,'']]],
+ ['rfm22_453',['RFM22',['../class_r_f_m22.html',1,'']]],
+ ['rfm23_454',['RFM23',['../class_r_f_m23.html',1,'']]],
+ ['rfm95_455',['RFM95',['../class_r_f_m95.html',1,'']]],
+ ['rfm96_456',['RFM96',['../class_r_f_m96.html',1,'']]],
+ ['rfm97_457',['RFM97',['../class_r_f_m97.html',1,'']]],
+ ['rfm98_458',['RFM98',['../class_r_f_m98.html',1,'']]],
+ ['rfswitchmode_5ft_459',['RfSwitchMode_t',['../struct_module_1_1_rf_switch_mode__t.html',1,'Module']]],
+ ['rttyclient_460',['RTTYClient',['../class_r_t_t_y_client.html',1,'']]]
];
diff --git a/search/classes_c.js b/search/classes_c.js
index 546ba7cb..f0a41d17 100644
--- a/search/classes_c.js
+++ b/search/classes_c.js
@@ -1,28 +1,28 @@
var searchData=
[
- ['si4430_455',['Si4430',['../class_si4430.html',1,'']]],
- ['si4431_456',['Si4431',['../class_si4431.html',1,'']]],
- ['si4432_457',['Si4432',['../class_si4432.html',1,'']]],
- ['si443x_458',['Si443x',['../class_si443x.html',1,'']]],
- ['sstvclient_459',['SSTVClient',['../class_s_s_t_v_client.html',1,'']]],
- ['sstvmode_5ft_460',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]],
- ['stm32wlx_461',['STM32WLx',['../class_s_t_m32_w_lx.html',1,'']]],
- ['stm32wlx_5fmodule_462',['STM32WLx_Module',['../class_s_t_m32_w_lx___module.html',1,'']]],
- ['stm32wlxhal_463',['Stm32wlxHal',['../class_stm32wlx_hal.html',1,'']]],
- ['sx1231_464',['SX1231',['../class_s_x1231.html',1,'']]],
- ['sx1261_465',['SX1261',['../class_s_x1261.html',1,'']]],
- ['sx1262_466',['SX1262',['../class_s_x1262.html',1,'']]],
- ['sx1268_467',['SX1268',['../class_s_x1268.html',1,'']]],
- ['sx126x_468',['SX126x',['../class_s_x126x.html',1,'']]],
- ['sx1272_469',['SX1272',['../class_s_x1272.html',1,'']]],
- ['sx1273_470',['SX1273',['../class_s_x1273.html',1,'']]],
- ['sx1276_471',['SX1276',['../class_s_x1276.html',1,'']]],
- ['sx1277_472',['SX1277',['../class_s_x1277.html',1,'']]],
- ['sx1278_473',['SX1278',['../class_s_x1278.html',1,'']]],
- ['sx1279_474',['SX1279',['../class_s_x1279.html',1,'']]],
- ['sx127x_475',['SX127x',['../class_s_x127x.html',1,'']]],
- ['sx1280_476',['SX1280',['../class_s_x1280.html',1,'']]],
- ['sx1281_477',['SX1281',['../class_s_x1281.html',1,'']]],
- ['sx1282_478',['SX1282',['../class_s_x1282.html',1,'']]],
- ['sx128x_479',['SX128x',['../class_s_x128x.html',1,'']]]
+ ['si4430_461',['Si4430',['../class_si4430.html',1,'']]],
+ ['si4431_462',['Si4431',['../class_si4431.html',1,'']]],
+ ['si4432_463',['Si4432',['../class_si4432.html',1,'']]],
+ ['si443x_464',['Si443x',['../class_si443x.html',1,'']]],
+ ['sstvclient_465',['SSTVClient',['../class_s_s_t_v_client.html',1,'']]],
+ ['sstvmode_5ft_466',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]],
+ ['stm32wlx_467',['STM32WLx',['../class_s_t_m32_w_lx.html',1,'']]],
+ ['stm32wlx_5fmodule_468',['STM32WLx_Module',['../class_s_t_m32_w_lx___module.html',1,'']]],
+ ['stm32wlxhal_469',['Stm32wlxHal',['../class_stm32wlx_hal.html',1,'']]],
+ ['sx1231_470',['SX1231',['../class_s_x1231.html',1,'']]],
+ ['sx1261_471',['SX1261',['../class_s_x1261.html',1,'']]],
+ ['sx1262_472',['SX1262',['../class_s_x1262.html',1,'']]],
+ ['sx1268_473',['SX1268',['../class_s_x1268.html',1,'']]],
+ ['sx126x_474',['SX126x',['../class_s_x126x.html',1,'']]],
+ ['sx1272_475',['SX1272',['../class_s_x1272.html',1,'']]],
+ ['sx1273_476',['SX1273',['../class_s_x1273.html',1,'']]],
+ ['sx1276_477',['SX1276',['../class_s_x1276.html',1,'']]],
+ ['sx1277_478',['SX1277',['../class_s_x1277.html',1,'']]],
+ ['sx1278_479',['SX1278',['../class_s_x1278.html',1,'']]],
+ ['sx1279_480',['SX1279',['../class_s_x1279.html',1,'']]],
+ ['sx127x_481',['SX127x',['../class_s_x127x.html',1,'']]],
+ ['sx1280_482',['SX1280',['../class_s_x1280.html',1,'']]],
+ ['sx1281_483',['SX1281',['../class_s_x1281.html',1,'']]],
+ ['sx1282_484',['SX1282',['../class_s_x1282.html',1,'']]],
+ ['sx128x_485',['SX128x',['../class_s_x128x.html',1,'']]]
];
diff --git a/search/classes_d.js b/search/classes_d.js
index a923f359..f21ed72f 100644
--- a/search/classes_d.js
+++ b/search/classes_d.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['tone_5ft_480',['tone_t',['../structtone__t.html',1,'']]]
+ ['tone_5ft_486',['tone_t',['../structtone__t.html',1,'']]]
];
diff --git a/search/enums_0.js b/search/enums_0.js
index 2c417031..8589db9d 100644
--- a/search/enums_0.js
+++ b/search/enums_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['opmode_5ft_796',['OpMode_t',['../class_module.html#a5a67b3a63420d762ecba9448671c99bf',1,'Module::OpMode_t()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787',1,'STM32WLx::OpMode_t()']]]
+ ['opmode_5ft_807',['OpMode_t',['../class_module.html#a5a67b3a63420d762ecba9448671c99bf',1,'Module::OpMode_t()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787',1,'STM32WLx::OpMode_t()']]]
];
diff --git a/search/enumvalues_0.js b/search/enumvalues_0.js
index 9297491a..3861b417 100644
--- a/search/enumvalues_0.js
+++ b/search/enumvalues_0.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['mode_5fend_5fof_5ftable_797',['MODE_END_OF_TABLE',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa81cdd8986054c2ae5657eb5dfd536770',1,'Module::MODE_END_OF_TABLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a0cffe238c4822ab7f8beddf4ec72052b',1,'STM32WLx::MODE_END_OF_TABLE()']]],
- ['mode_5fidle_798',['MODE_IDLE',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa505acc66c5e0faa83d2216aca5f3e671',1,'Module::MODE_IDLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a8cf0ccad0eec5fde12798e0b0347d6bf',1,'STM32WLx::MODE_IDLE()']]],
- ['mode_5frx_799',['MODE_RX',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa7664838bb0818663f55b3354fec8a18f',1,'Module::MODE_RX()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a85ffabc9f35e2683aefdd785bf912172',1,'STM32WLx::MODE_RX()']]],
- ['mode_5ftx_800',['MODE_TX',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa269f4bc8ba3eb3d8568feb7b2decf571',1,'Module']]],
- ['mode_5ftx_5fhp_801',['MODE_TX_HP',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a50df4b8580f1bded3cb61e79f954789e',1,'STM32WLx']]],
- ['mode_5ftx_5flp_802',['MODE_TX_LP',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a20a2eda9aaf3c7cdb4a55955d6ff3544',1,'STM32WLx']]]
+ ['mode_5fend_5fof_5ftable_808',['MODE_END_OF_TABLE',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa81cdd8986054c2ae5657eb5dfd536770',1,'Module::MODE_END_OF_TABLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a0cffe238c4822ab7f8beddf4ec72052b',1,'STM32WLx::MODE_END_OF_TABLE()']]],
+ ['mode_5fidle_809',['MODE_IDLE',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa505acc66c5e0faa83d2216aca5f3e671',1,'Module::MODE_IDLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a8cf0ccad0eec5fde12798e0b0347d6bf',1,'STM32WLx::MODE_IDLE()']]],
+ ['mode_5frx_810',['MODE_RX',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa7664838bb0818663f55b3354fec8a18f',1,'Module::MODE_RX()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a85ffabc9f35e2683aefdd785bf912172',1,'STM32WLx::MODE_RX()']]],
+ ['mode_5ftx_811',['MODE_TX',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa269f4bc8ba3eb3d8568feb7b2decf571',1,'Module']]],
+ ['mode_5ftx_5fhp_812',['MODE_TX_HP',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a50df4b8580f1bded3cb61e79f954789e',1,'STM32WLx']]],
+ ['mode_5ftx_5flp_813',['MODE_TX_LP',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a20a2eda9aaf3c7cdb4a55955d6ff3544',1,'STM32WLx']]]
];
diff --git a/search/functions_0.js b/search/functions_0.js
index 25e014c7..b11dc823 100644
--- a/search/functions_0.js
+++ b/search/functions_0.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['afskclient_481',['AFSKClient',['../class_a_f_s_k_client.html#a89c7ab4759d37c9a032ac29fa9782eea',1,'AFSKClient::AFSKClient(PhysicalLayer *phy, uint32_t pin)'],['../class_a_f_s_k_client.html#ac54633fe75157ce126e44e4e494266f2',1,'AFSKClient::AFSKClient(AFSKClient *aud)']]],
- ['aprsclient_482',['APRSClient',['../class_a_p_r_s_client.html#a08e166ed706d79c66c1d5b48f195724c',1,'APRSClient']]],
- ['attachinterrupt_483',['attachInterrupt',['../class_radio_lib_hal.html#af142f747becacd1e3e13503f79fd5ebe',1,'RadioLibHal']]],
- ['autoldro_484',['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_485',['available',['../class_pager_client.html#aec073fa9e5adcff9730482d9583715e9',1,'PagerClient::available()'],['../class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26',1,'PhysicalLayer::available()']]],
- ['ax25client_486',['AX25Client',['../class_a_x25_client.html#ab074563d4d22a42d5ea9ad1693d6f373',1,'AX25Client::AX25Client(PhysicalLayer *phy)'],['../class_a_x25_client.html#a6e81e629817cdf1b377e4b4f7e4d6520',1,'AX25Client::AX25Client(AFSKClient *audio)']]],
- ['ax25frame_487',['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_487',['AFSKClient',['../class_a_f_s_k_client.html#a89c7ab4759d37c9a032ac29fa9782eea',1,'AFSKClient::AFSKClient(PhysicalLayer *phy, uint32_t pin)'],['../class_a_f_s_k_client.html#ac54633fe75157ce126e44e4e494266f2',1,'AFSKClient::AFSKClient(AFSKClient *aud)']]],
+ ['aprsclient_488',['APRSClient',['../class_a_p_r_s_client.html#a08e166ed706d79c66c1d5b48f195724c',1,'APRSClient']]],
+ ['attachinterrupt_489',['attachInterrupt',['../class_radio_lib_hal.html#af142f747becacd1e3e13503f79fd5ebe',1,'RadioLibHal']]],
+ ['autoldro_490',['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_491',['available',['../class_pager_client.html#aec073fa9e5adcff9730482d9583715e9',1,'PagerClient::available()'],['../class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26',1,'PhysicalLayer::available()']]],
+ ['ax25client_492',['AX25Client',['../class_a_x25_client.html#ab074563d4d22a42d5ea9ad1693d6f373',1,'AX25Client::AX25Client(PhysicalLayer *phy)'],['../class_a_x25_client.html#a6e81e629817cdf1b377e4b4f7e4d6520',1,'AX25Client::AX25Client(AFSKClient *audio)']]],
+ ['ax25frame_493',['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 de649591..a06e8446 100644
--- a/search/functions_1.js
+++ b/search/functions_1.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['begin_488',['begin',['../class_bell_client.html#add9edc89cd6ff5c527ddbdabe79cb60f',1,'BellClient::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#a275a9a86934124eab4982ad52bf91aea',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a916fa8b4477199c92ca630d1de7fdab5',1,'APRSClient::begin()'],['../class_a_x25_client.html#aadeefb210a0b5170d4e8d281c2257e73',1,'AX25Client::begin()'],['../class_l_l_c_c68.html#a53593942089544c09bfb5b665184054b',1,'LLCC68::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#ae0b25083baf01469786b6242389298fa',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_radio_lib_b_c_h.html#aba6f10d4ac2d40eb2222d1081a34c88b',1,'RadioLibBCH::begin()'],['../class_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()'],['../class_c_c1101.html#ad86f23bb3d113d20f6238a671f18b565',1,'CC1101::begin()'],['../classn_r_f24.html#a0ef68849f812367432f5a3798f94b8ce',1,'nRF24::begin()'],['../class_r_f69.html#a637ea5386066f5608bcbb4266e5c1bd6',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_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3',1,'Si4431::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_s_t_m32_w_lx.html#a4f2a9b5a72b5238d2014199d91094f84',1,'STM32WLx::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()'],['../class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()']]],
- ['beginble_489',['beginBLE',['../class_s_x128x.html#ace5ede905bf85aada0c61b9cfaaea127',1,'SX128x']]],
- ['beginflrc_490',['beginFLRC',['../class_s_x128x.html#a2c4a24623c5fd27b3cc937e55783d709',1,'SX128x']]],
- ['beginfsk_491',['beginFSK',['../class_r_f_m95.html#a7e0f8fa59ddd48f7b026b0f996202b30',1,'RFM95::beginFSK()'],['../class_s_x127x.html#a73f2d2fe803e3496026011f0da694cfb',1,'SX127x::beginFSK()'],['../class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b',1,'SX1279::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44',1,'SX1277::beginFSK()'],['../class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840',1,'SX1276::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1',1,'SX1262::beginFSK()'],['../class_s_t_m32_w_lx.html#af12e8eba13c5dd8bcf8656ed5c1f6cef',1,'STM32WLx::beginFSK()'],['../class_r_f_m96.html#a82ef1b7354238637eee6f4d65b9be6e5',1,'RFM96::beginFSK()']]],
- ['begingfsk_492',['beginGFSK',['../class_s_x128x.html#a6ed60dfbd142315bb4e1abd2555a470a',1,'SX128x']]],
- ['bellclient_493',['BellClient',['../class_bell_client.html#a20fcf0322ef40c31b3bc329f7d89a177',1,'BellClient::BellClient(PhysicalLayer *phy, uint32_t pin)'],['../class_bell_client.html#ab9d0d76bb88fc8bdc995ab800063c149',1,'BellClient::BellClient(AFSKClient *aud)']]],
- ['bytearr_494',['byteArr',['../class_i_t_a2_string.html#a3f42f7ad98473dbe36515e676622ed3d',1,'ITA2String']]]
+ ['begin_494',['begin',['../class_bell_client.html#add9edc89cd6ff5c527ddbdabe79cb60f',1,'BellClient::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#a275a9a86934124eab4982ad52bf91aea',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a916fa8b4477199c92ca630d1de7fdab5',1,'APRSClient::begin()'],['../class_a_x25_client.html#aadeefb210a0b5170d4e8d281c2257e73',1,'AX25Client::begin()'],['../class_l_l_c_c68.html#a53593942089544c09bfb5b665184054b',1,'LLCC68::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#ae0b25083baf01469786b6242389298fa',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_radio_lib_b_c_h.html#aba6f10d4ac2d40eb2222d1081a34c88b',1,'RadioLibBCH::begin()'],['../class_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()'],['../class_c_c1101.html#ad86f23bb3d113d20f6238a671f18b565',1,'CC1101::begin()'],['../classn_r_f24.html#a0ef68849f812367432f5a3798f94b8ce',1,'nRF24::begin()'],['../class_r_f69.html#a637ea5386066f5608bcbb4266e5c1bd6',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_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3',1,'Si4431::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_s_t_m32_w_lx.html#a4f2a9b5a72b5238d2014199d91094f84',1,'STM32WLx::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()'],['../class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()']]],
+ ['beginble_495',['beginBLE',['../class_s_x128x.html#ace5ede905bf85aada0c61b9cfaaea127',1,'SX128x']]],
+ ['beginflrc_496',['beginFLRC',['../class_s_x128x.html#a2c4a24623c5fd27b3cc937e55783d709',1,'SX128x']]],
+ ['beginfsk_497',['beginFSK',['../class_r_f_m95.html#a7e0f8fa59ddd48f7b026b0f996202b30',1,'RFM95::beginFSK()'],['../class_s_x127x.html#a73f2d2fe803e3496026011f0da694cfb',1,'SX127x::beginFSK()'],['../class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b',1,'SX1279::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44',1,'SX1277::beginFSK()'],['../class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840',1,'SX1276::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1',1,'SX1262::beginFSK()'],['../class_s_t_m32_w_lx.html#af12e8eba13c5dd8bcf8656ed5c1f6cef',1,'STM32WLx::beginFSK()'],['../class_r_f_m96.html#a82ef1b7354238637eee6f4d65b9be6e5',1,'RFM96::beginFSK()']]],
+ ['begingfsk_498',['beginGFSK',['../class_s_x128x.html#a6ed60dfbd142315bb4e1abd2555a470a',1,'SX128x']]],
+ ['bellclient_499',['BellClient',['../class_bell_client.html#a20fcf0322ef40c31b3bc329f7d89a177',1,'BellClient::BellClient(PhysicalLayer *phy, uint32_t pin)'],['../class_bell_client.html#ab9d0d76bb88fc8bdc995ab800063c149',1,'BellClient::BellClient(AFSKClient *aud)']]],
+ ['bytearr_500',['byteArr',['../class_i_t_a2_string.html#a3f42f7ad98473dbe36515e676622ed3d',1,'ITA2String']]]
];
diff --git a/search/functions_10.js b/search/functions_10.js
index 06e2a292..d8acf314 100644
--- a/search/functions_10.js
+++ b/search/functions_10.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['term_732',['term',['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module::term()'],['../class_radio_lib_hal.html#aa4f2bd49aea5a19aa9f85c720b4a883e',1,'RadioLibHal::term()']]],
- ['tone_733',['tone',['../class_radio_lib_hal.html#ab4cc3bef7109f00b77b95e84511b0bb9',1,'RadioLibHal::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]],
- ['transmit_734',['transmit',['../class_c_c1101.html#a3dd42f8d5569487ea74f004ca652a709',1,'CC1101::transmit()'],['../classn_r_f24.html#a3dd42f8d5569487ea74f004ca652a709',1,'nRF24::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534',1,'nRF24::transmit(const char *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#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#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#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#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_physical_layer.html#a3dd42f8d5569487ea74f004ca652a709',1,'PhysicalLayer::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#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit()'],['../class_pager_client.html#aab6a8977f89d43620b98bcedf5a47dbd',1,'PagerClient::transmit(const char *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)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit()'],['../class_c_c1101.html#a492b2d057dd803c3884fa1adc8e22534',1,'CC1101::transmit(const char *str, uint8_t addr=0)']]],
- ['transmitdirect_735',['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_736',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]]
+ ['term_742',['term',['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module::term()'],['../class_radio_lib_hal.html#aa4f2bd49aea5a19aa9f85c720b4a883e',1,'RadioLibHal::term()']]],
+ ['tone_743',['tone',['../class_radio_lib_hal.html#ab4cc3bef7109f00b77b95e84511b0bb9',1,'RadioLibHal::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]],
+ ['transmit_744',['transmit',['../class_c_c1101.html#a3dd42f8d5569487ea74f004ca652a709',1,'CC1101::transmit()'],['../classn_r_f24.html#a3dd42f8d5569487ea74f004ca652a709',1,'nRF24::transmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534',1,'nRF24::transmit(const char *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#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#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#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#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_physical_layer.html#a3dd42f8d5569487ea74f004ca652a709',1,'PhysicalLayer::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#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit()'],['../class_pager_client.html#aab6a8977f89d43620b98bcedf5a47dbd',1,'PagerClient::transmit(const char *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)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit()'],['../class_c_c1101.html#a492b2d057dd803c3884fa1adc8e22534',1,'CC1101::transmit(const char *str, uint8_t addr=0)']]],
+ ['transmitdirect_745',['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_746',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]]
];
diff --git a/search/functions_11.js b/search/functions_11.js
index 1ef0ccf5..8fdfba3f 100644
--- a/search/functions_11.js
+++ b/search/functions_11.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['uploadpatch_737',['uploadPatch',['../class_s_x126x.html#a2af78b744b3e61d3857bed93c3b1bde1',1,'SX126x']]]
+ ['uploadpatch_747',['uploadPatch',['../class_s_x126x.html#a2af78b744b3e61d3857bed93c3b1bde1',1,'SX126x']]]
];
diff --git a/search/functions_12.js b/search/functions_12.js
index 2aeecc68..15705ee4 100644
--- a/search/functions_12.js
+++ b/search/functions_12.js
@@ -1,4 +1,5 @@
var searchData=
[
- ['variablepacketlengthmode_738',['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_748',['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()']]],
+ ['verifycmac_749',['verifyCMAC',['../class_radio_lib_a_e_s128.html#a382e9dfdc10b7dd58e2bd0aa15f5e1dd',1,'RadioLibAES128']]]
];
diff --git a/search/functions_13.js b/search/functions_13.js
index 07c67cdf..cf8c05a6 100644
--- a/search/functions_13.js
+++ b/search/functions_13.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['waitformicroseconds_739',['waitForMicroseconds',['../class_module.html#a47978200f7e2e408fb64f506c81cee9f',1,'Module']]],
- ['write_740',['write',['../class_bell_client.html#aa2874910006a927d07d865e69cfe5c65',1,'BellClient::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)'],['../class_hell_client.html#a5c5117dadbe33da1cda5fd4981b405eb',1,'HellClient::write()'],['../class_morse_client.html#abd37869212f3338eb7c95c6f16dadbba',1,'MorseClient::write()'],['../class_r_t_t_y_client.html#a077a21423deee0393cead0b3a239691f',1,'RTTYClient::write()']]]
+ ['waitformicroseconds_750',['waitForMicroseconds',['../class_module.html#a47978200f7e2e408fb64f506c81cee9f',1,'Module']]],
+ ['write_751',['write',['../class_bell_client.html#aa2874910006a927d07d865e69cfe5c65',1,'BellClient::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)'],['../class_hell_client.html#a5c5117dadbe33da1cda5fd4981b405eb',1,'HellClient::write()'],['../class_morse_client.html#abd37869212f3338eb7c95c6f16dadbba',1,'MorseClient::write()'],['../class_r_t_t_y_client.html#a077a21423deee0393cead0b3a239691f',1,'RTTYClient::write()']]]
];
diff --git a/search/functions_14.js b/search/functions_14.js
index 1fa034b6..16d3dab5 100644
--- a/search/functions_14.js
+++ b/search/functions_14.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['yield_741',['yield',['../class_radio_lib_hal.html#a1bd9d614f66b374ec820ce31b167fdb2',1,'RadioLibHal']]]
+ ['yield_752',['yield',['../class_radio_lib_hal.html#a1bd9d614f66b374ec820ce31b167fdb2',1,'RadioLibHal']]]
];
diff --git a/search/functions_15.js b/search/functions_15.js
index 34485313..bd32b002 100644
--- a/search/functions_15.js
+++ b/search/functions_15.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['_7eax25frame_742',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]],
- ['_7eita2string_743',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]]
+ ['_7eax25frame_753',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]],
+ ['_7eita2string_754',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]]
];
diff --git a/search/functions_2.js b/search/functions_2.js
index 2c3f7c20..d93a904b 100644
--- a/search/functions_2.js
+++ b/search/functions_2.js
@@ -1,13 +1,13 @@
var searchData=
[
- ['cc1101_495',['CC1101',['../class_c_c1101.html#a6807e4254c4b55fa8d393b2bf8f2db3e',1,'CC1101']]],
- ['checksum_496',['checksum',['../class_radio_lib_c_r_c.html#a3700c124b0edb1882c9ea131c5b43d1d',1,'RadioLibCRC']]],
- ['cleardio0action_497',['clearDio0Action',['../class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942',1,'RF69::clearDio0Action()'],['../class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823',1,'SX127x::clearDio0Action()']]],
- ['cleardio1action_498',['clearDio1Action',['../class_physical_layer.html#ad30127e094d8148870b9631007ec6b29',1,'PhysicalLayer::clearDio1Action()'],['../class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f',1,'SX128x::clearDio1Action()'],['../class_s_x127x.html#a9b6532a25e1730973ac08146008adca5',1,'SX127x::clearDio1Action()'],['../class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd',1,'SX126x::clearDio1Action()'],['../class_s_t_m32_w_lx.html#a54130403f6afbb0924da17c28afb17fc',1,'STM32WLx::clearDio1Action()'],['../class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51',1,'RF69::clearDio1Action()']]],
- ['clearfhssint_499',['clearFHSSInt',['../class_s_x127x.html#a41089d9e5b45217d3e31ac22b5326b66',1,'SX127x']]],
- ['clearfifoemptyaction_500',['clearFifoEmptyAction',['../class_r_f69.html#a0d7b67499462777f7909860405ca6b62',1,'RF69::clearFifoEmptyAction()'],['../class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1',1,'SX127x::clearFifoEmptyAction()']]],
- ['clearfifofullaction_501',['clearFifoFullAction',['../class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3',1,'RF69::clearFifoFullAction()'],['../class_s_x127x.html#a0f041e91ab2fbb6f05eef56b5addac71',1,'SX127x::clearFifoFullAction()']]],
- ['cleargdo0action_502',['clearGdo0Action',['../class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8',1,'CC1101']]],
- ['cleargdo2action_503',['clearGdo2Action',['../class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4',1,'CC1101']]],
- ['clearirqaction_504',['clearIrqAction',['../class_si443x.html#a8d019f58551346c3f3bd8b72d2486109',1,'Si443x']]]
+ ['cc1101_501',['CC1101',['../class_c_c1101.html#a6807e4254c4b55fa8d393b2bf8f2db3e',1,'CC1101']]],
+ ['checksum_502',['checksum',['../class_radio_lib_c_r_c.html#a3700c124b0edb1882c9ea131c5b43d1d',1,'RadioLibCRC']]],
+ ['cleardio0action_503',['clearDio0Action',['../class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942',1,'RF69::clearDio0Action()'],['../class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823',1,'SX127x::clearDio0Action()']]],
+ ['cleardio1action_504',['clearDio1Action',['../class_physical_layer.html#ad30127e094d8148870b9631007ec6b29',1,'PhysicalLayer::clearDio1Action()'],['../class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f',1,'SX128x::clearDio1Action()'],['../class_s_x127x.html#a9b6532a25e1730973ac08146008adca5',1,'SX127x::clearDio1Action()'],['../class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd',1,'SX126x::clearDio1Action()'],['../class_s_t_m32_w_lx.html#a54130403f6afbb0924da17c28afb17fc',1,'STM32WLx::clearDio1Action()'],['../class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51',1,'RF69::clearDio1Action()']]],
+ ['clearfhssint_505',['clearFHSSInt',['../class_s_x127x.html#a41089d9e5b45217d3e31ac22b5326b66',1,'SX127x']]],
+ ['clearfifoemptyaction_506',['clearFifoEmptyAction',['../class_r_f69.html#a0d7b67499462777f7909860405ca6b62',1,'RF69::clearFifoEmptyAction()'],['../class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1',1,'SX127x::clearFifoEmptyAction()']]],
+ ['clearfifofullaction_507',['clearFifoFullAction',['../class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3',1,'RF69::clearFifoFullAction()'],['../class_s_x127x.html#a0f041e91ab2fbb6f05eef56b5addac71',1,'SX127x::clearFifoFullAction()']]],
+ ['cleargdo0action_508',['clearGdo0Action',['../class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8',1,'CC1101']]],
+ ['cleargdo2action_509',['clearGdo2Action',['../class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4',1,'CC1101']]],
+ ['clearirqaction_510',['clearIrqAction',['../class_si443x.html#a8d019f58551346c3f3bd8b72d2486109',1,'Si443x']]]
];
diff --git a/search/functions_3.js b/search/functions_3.js
index 5a61600b..ff2c3ccc 100644
--- a/search/functions_3.js
+++ b/search/functions_3.js
@@ -1,16 +1,17 @@
var searchData=
[
- ['decode_505',['decode',['../class_morse_client.html#abd1515c8e6c3ddade280be53f612ece7',1,'MorseClient']]],
- ['delay_506',['delay',['../class_radio_lib_hal.html#a8427720749d8c87d17654071dfa5b94e',1,'RadioLibHal']]],
- ['delaymicroseconds_507',['delayMicroseconds',['../class_radio_lib_hal.html#ad49128a75a3d7abdc68baa302955f3ac',1,'RadioLibHal']]],
- ['detachinterrupt_508',['detachInterrupt',['../class_radio_lib_hal.html#a2ddf72a41b3cfbb63ea7ab5362003b56',1,'RadioLibHal']]],
- ['digitalread_509',['digitalRead',['../class_radio_lib_hal.html#a0c7c2dffd662cefca7bf11e14c56dab2',1,'RadioLibHal']]],
- ['digitalwrite_510',['digitalWrite',['../class_radio_lib_hal.html#a4db0c60f2f6f64003f04cf0e03fea7ab',1,'RadioLibHal']]],
- ['disableaddressfiltering_511',['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_512',['disableAES',['../class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa',1,'RF69']]],
- ['disablebitsync_513',['disableBitSync',['../class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd',1,'SX127x']]],
- ['disablecontinuousmodebitsync_514',['disableContinuousModeBitSync',['../class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad',1,'RF69']]],
- ['disablepipe_515',['disablePipe',['../classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a',1,'nRF24']]],
- ['disablesyncwordfiltering_516',['disableSyncWordFiltering',['../class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b',1,'CC1101::disableSyncWordFiltering()'],['../class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80',1,'RF69::disableSyncWordFiltering()']]],
- ['dropsync_517',['dropSync',['../class_physical_layer.html#a429796eb2e7ea86781a2e8ca42af43f3',1,'PhysicalLayer']]]
+ ['decode_511',['decode',['../class_morse_client.html#abd1515c8e6c3ddade280be53f612ece7',1,'MorseClient']]],
+ ['decryptecb_512',['decryptECB',['../class_radio_lib_a_e_s128.html#abe0e368c6a94b2caf1559add1c262a98',1,'RadioLibAES128']]],
+ ['delay_513',['delay',['../class_radio_lib_hal.html#a8427720749d8c87d17654071dfa5b94e',1,'RadioLibHal']]],
+ ['delaymicroseconds_514',['delayMicroseconds',['../class_radio_lib_hal.html#ad49128a75a3d7abdc68baa302955f3ac',1,'RadioLibHal']]],
+ ['detachinterrupt_515',['detachInterrupt',['../class_radio_lib_hal.html#a2ddf72a41b3cfbb63ea7ab5362003b56',1,'RadioLibHal']]],
+ ['digitalread_516',['digitalRead',['../class_radio_lib_hal.html#a0c7c2dffd662cefca7bf11e14c56dab2',1,'RadioLibHal']]],
+ ['digitalwrite_517',['digitalWrite',['../class_radio_lib_hal.html#a4db0c60f2f6f64003f04cf0e03fea7ab',1,'RadioLibHal']]],
+ ['disableaddressfiltering_518',['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_519',['disableAES',['../class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa',1,'RF69']]],
+ ['disablebitsync_520',['disableBitSync',['../class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd',1,'SX127x']]],
+ ['disablecontinuousmodebitsync_521',['disableContinuousModeBitSync',['../class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad',1,'RF69']]],
+ ['disablepipe_522',['disablePipe',['../classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a',1,'nRF24']]],
+ ['disablesyncwordfiltering_523',['disableSyncWordFiltering',['../class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b',1,'CC1101::disableSyncWordFiltering()'],['../class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80',1,'RF69::disableSyncWordFiltering()']]],
+ ['dropsync_524',['dropSync',['../class_physical_layer.html#a429796eb2e7ea86781a2e8ca42af43f3',1,'PhysicalLayer']]]
];
diff --git a/search/functions_4.js b/search/functions_4.js
index bc23a6fa..dd9387f0 100644
--- a/search/functions_4.js
+++ b/search/functions_4.js
@@ -1,9 +1,10 @@
var searchData=
[
- ['enableaes_518',['enableAES',['../class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69',1,'RF69']]],
- ['enablebitsync_519',['enableBitSync',['../class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa',1,'SX127x']]],
- ['enablecontinuousmodebitsync_520',['enableContinuousModeBitSync',['../class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0',1,'RF69']]],
- ['enablesyncwordfiltering_521',['enableSyncWordFiltering',['../class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4',1,'CC1101::enableSyncWordFiltering()'],['../class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417',1,'RF69::enableSyncWordFiltering()']]],
- ['encode_522',['encode',['../class_radio_lib_b_c_h.html#afa0a2eb58245715536acb781cd351d8a',1,'RadioLibBCH']]],
- ['explicitheader_523',['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_525',['enableAES',['../class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69',1,'RF69']]],
+ ['enablebitsync_526',['enableBitSync',['../class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa',1,'SX127x']]],
+ ['enablecontinuousmodebitsync_527',['enableContinuousModeBitSync',['../class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0',1,'RF69']]],
+ ['enablesyncwordfiltering_528',['enableSyncWordFiltering',['../class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4',1,'CC1101::enableSyncWordFiltering()'],['../class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417',1,'RF69::enableSyncWordFiltering()']]],
+ ['encode_529',['encode',['../class_radio_lib_b_c_h.html#afa0a2eb58245715536acb781cd351d8a',1,'RadioLibBCH']]],
+ ['encryptecb_530',['encryptECB',['../class_radio_lib_a_e_s128.html#a4c7b49c3ed16f3849d8050a24a11c3c1',1,'RadioLibAES128']]],
+ ['explicitheader_531',['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 6b9a000c..22cca043 100644
--- a/search/functions_5.js
+++ b/search/functions_5.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['fifoadd_524',['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_525',['fifoGet',['../class_r_f69.html#aa6886410230c654400c76ec7710d623c',1,'RF69::fifoGet()'],['../class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a',1,'SX127x::fifoGet()']]],
- ['findrfswitchmode_526',['findRfSwitchMode',['../class_module.html#a5699a937b62ba41387567b4d679b9377',1,'Module']]],
- ['finishtransmit_527',['finishTransmit',['../class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4',1,'SX128x::finishTransmit()'],['../class_physical_layer.html#a1de26f68b939f5af79ec29cc34c7be18',1,'PhysicalLayer::finishTransmit()'],['../class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f',1,'SX127x::finishTransmit()'],['../class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e',1,'SX126x::finishTransmit()'],['../class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3',1,'Si443x::finishTransmit()'],['../class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b',1,'RF69::finishTransmit()'],['../classn_r_f24.html#af0c21ff66c011dfdc1ad12bc7dd11c2f',1,'nRF24::finishTransmit()'],['../class_c_c1101.html#af70ea860154cd6d2b2e2a6962e161c8f',1,'CC1101::finishTransmit() override']]],
- ['fixedpacketlengthmode_528',['fixedPacketLengthMode',['../class_c_c1101.html#ad25ad96cddf62273bffd601384d22275',1,'CC1101::fixedPacketLengthMode()'],['../class_r_f69.html#a0de2a07f264839cda945faebf7319e0e',1,'RF69::fixedPacketLengthMode()'],['../class_si443x.html#ad2b3a961a99d9e8f3a7ead6e8b69e858',1,'Si443x::fixedPacketLengthMode()'],['../class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5',1,'SX126x::fixedPacketLengthMode()'],['../class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359',1,'SX127x::fixedPacketLengthMode()']]],
- ['forceldro_529',['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_530',['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_532',['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_533',['fifoGet',['../class_r_f69.html#aa6886410230c654400c76ec7710d623c',1,'RF69::fifoGet()'],['../class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a',1,'SX127x::fifoGet()']]],
+ ['findrfswitchmode_534',['findRfSwitchMode',['../class_module.html#a5699a937b62ba41387567b4d679b9377',1,'Module']]],
+ ['finishtransmit_535',['finishTransmit',['../class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4',1,'SX128x::finishTransmit()'],['../class_physical_layer.html#a1de26f68b939f5af79ec29cc34c7be18',1,'PhysicalLayer::finishTransmit()'],['../class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f',1,'SX127x::finishTransmit()'],['../class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e',1,'SX126x::finishTransmit()'],['../class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3',1,'Si443x::finishTransmit()'],['../class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b',1,'RF69::finishTransmit()'],['../classn_r_f24.html#af0c21ff66c011dfdc1ad12bc7dd11c2f',1,'nRF24::finishTransmit()'],['../class_c_c1101.html#af70ea860154cd6d2b2e2a6962e161c8f',1,'CC1101::finishTransmit() override']]],
+ ['fixedpacketlengthmode_536',['fixedPacketLengthMode',['../class_c_c1101.html#ad25ad96cddf62273bffd601384d22275',1,'CC1101::fixedPacketLengthMode()'],['../class_r_f69.html#a0de2a07f264839cda945faebf7319e0e',1,'RF69::fixedPacketLengthMode()'],['../class_si443x.html#ad2b3a961a99d9e8f3a7ead6e8b69e858',1,'Si443x::fixedPacketLengthMode()'],['../class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5',1,'SX126x::fixedPacketLengthMode()'],['../class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359',1,'SX127x::fixedPacketLengthMode()']]],
+ ['forceldro_537',['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_538',['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 cfefdde8..8b21b74b 100644
--- a/search/functions_6.js
+++ b/search/functions_6.js
@@ -1,32 +1,33 @@
var searchData=
[
- ['getafcerror_531',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]],
- ['getchannelscanresult_532',['getChannelScanResult',['../class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f',1,'SX126x']]],
- ['getchipversion_533',['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_534',['getCs',['../class_module.html#aa6cac04c7cb6d5278a318db0966ad1a7',1,'Module']]],
- ['getcurrentlimit_535',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]],
- ['getdatarate_536',['getDataRate',['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate() const']]],
- ['getfhsschannel_537',['getFHSSChannel',['../class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c',1,'SX127x']]],
- ['getfhsshoppingperiod_538',['getFHSSHoppingPeriod',['../class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617',1,'SX127x']]],
- ['getfreqstep_539',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]],
- ['getfrequency_540',['getFrequency',['../class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed',1,'RF69']]],
- ['getfrequencydeviation_541',['getFrequencyDeviation',['../class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9',1,'RF69::getFrequencyDeviation()'],['../class_c_c1101.html#abe26fa310e973bf2b14750b9eae02124',1,'CC1101::getFrequencyDeviation()']]],
- ['getfrequencyerror_542',['getFrequencyError',['../class_s_x126x.html#a068d709ffb79ae66d718ffb76ffae997',1,'SX126x::getFrequencyError()'],['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x::getFrequencyError()'],['../class_s_x128x.html#a2b424000856a9dc212f571d0e8890635',1,'SX128x::getFrequencyError()']]],
- ['getgpio_543',['getGpio',['../class_module.html#a4ec27f0ba5e0009ea9661a5110526b52',1,'Module']]],
- ['getirq_544',['getIrq',['../class_module.html#ab61bc5066c356e2d0d79f08a2bd0fbc9',1,'Module']]],
- ['getirqflags_545',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]],
- ['getirqstatus_546',['getIrqStatus',['../class_s_x126x.html#a9a9b090eddcb811ee19b595debfab1df',1,'SX126x::getIrqStatus()'],['../class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22',1,'SX128x::getIrqStatus()']]],
- ['getlqi_547',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]],
- ['getmodemstatus_548',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]],
- ['getpacketlength_549',['getPacketLength',['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::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()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength()']]],
- ['getpictureheight_550',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]],
- ['getpromiscuousmode_551',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]],
- ['getrangingresult_552',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]],
- ['getrssi_553',['getRSSI',['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()'],['../class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b',1,'PhysicalLayer::getRSSI()'],['../class_s_x127x.html#a53d9bd78635a97dc0e3309b675763510',1,'SX127x::getRSSI()'],['../class_s_x1278.html#a260399b893988196771bc5a62d604822',1,'SX1278::getRSSI()'],['../class_s_x1272.html#acdf35ee105a327e0e6089615e6f9bb1a',1,'SX1272::getRSSI()'],['../class_s_x126x.html#afabefb1b214411198f3537e8afce898f',1,'SX126x::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc',1,'CC1101::getRSSI()']]],
- ['getrst_554',['getRst',['../class_module.html#ad6cddbf3aebec9717a1a381dd81ad398',1,'Module']]],
- ['getsnr_555',['getSNR',['../class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca',1,'SX126x::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()'],['../class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f',1,'PhysicalLayer::getSNR()']]],
- ['getstatus_556',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]],
- ['gettemperature_557',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]],
- ['gettempraw_558',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]],
- ['gettimeonair_559',['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()']]]
+ ['generatecmac_539',['generateCMAC',['../class_radio_lib_a_e_s128.html#a260a1ac84386141781b3d7c213ff161c',1,'RadioLibAES128']]],
+ ['getafcerror_540',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]],
+ ['getchannelscanresult_541',['getChannelScanResult',['../class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f',1,'SX126x']]],
+ ['getchipversion_542',['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_543',['getCs',['../class_module.html#aa6cac04c7cb6d5278a318db0966ad1a7',1,'Module']]],
+ ['getcurrentlimit_544',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]],
+ ['getdatarate_545',['getDataRate',['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate() const']]],
+ ['getfhsschannel_546',['getFHSSChannel',['../class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c',1,'SX127x']]],
+ ['getfhsshoppingperiod_547',['getFHSSHoppingPeriod',['../class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617',1,'SX127x']]],
+ ['getfreqstep_548',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]],
+ ['getfrequency_549',['getFrequency',['../class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed',1,'RF69']]],
+ ['getfrequencydeviation_550',['getFrequencyDeviation',['../class_c_c1101.html#abe26fa310e973bf2b14750b9eae02124',1,'CC1101::getFrequencyDeviation()'],['../class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9',1,'RF69::getFrequencyDeviation()']]],
+ ['getfrequencyerror_551',['getFrequencyError',['../class_s_x126x.html#a068d709ffb79ae66d718ffb76ffae997',1,'SX126x::getFrequencyError()'],['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x::getFrequencyError()'],['../class_s_x128x.html#a2b424000856a9dc212f571d0e8890635',1,'SX128x::getFrequencyError()']]],
+ ['getgpio_552',['getGpio',['../class_module.html#a4ec27f0ba5e0009ea9661a5110526b52',1,'Module']]],
+ ['getirq_553',['getIrq',['../class_module.html#ab61bc5066c356e2d0d79f08a2bd0fbc9',1,'Module']]],
+ ['getirqflags_554',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]],
+ ['getirqstatus_555',['getIrqStatus',['../class_s_x126x.html#a9a9b090eddcb811ee19b595debfab1df',1,'SX126x::getIrqStatus()'],['../class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22',1,'SX128x::getIrqStatus()']]],
+ ['getlqi_556',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]],
+ ['getmodemstatus_557',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]],
+ ['getpacketlength_558',['getPacketLength',['../class_physical_layer.html#a2fe95169b5cdc8cabe1f2af66cad6ef6',1,'PhysicalLayer::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::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()'],['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength()']]],
+ ['getpictureheight_559',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]],
+ ['getpromiscuousmode_560',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]],
+ ['getrangingresult_561',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]],
+ ['getrssi_562',['getRSSI',['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()'],['../class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b',1,'PhysicalLayer::getRSSI()'],['../class_s_x127x.html#a53d9bd78635a97dc0e3309b675763510',1,'SX127x::getRSSI()'],['../class_s_x1278.html#a260399b893988196771bc5a62d604822',1,'SX1278::getRSSI()'],['../class_s_x1272.html#acdf35ee105a327e0e6089615e6f9bb1a',1,'SX1272::getRSSI()'],['../class_s_x126x.html#afabefb1b214411198f3537e8afce898f',1,'SX126x::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc',1,'CC1101::getRSSI()']]],
+ ['getrst_563',['getRst',['../class_module.html#ad6cddbf3aebec9717a1a381dd81ad398',1,'Module']]],
+ ['getsnr_564',['getSNR',['../class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca',1,'SX126x::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()'],['../class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f',1,'PhysicalLayer::getSNR()']]],
+ ['getstatus_565',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]],
+ ['gettemperature_566',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]],
+ ['gettempraw_567',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]],
+ ['gettimeonair_568',['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 78e440f8..8159cd69 100644
--- a/search/functions_7.js
+++ b/search/functions_7.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['hellclient_560',['HellClient',['../class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0',1,'HellClient::HellClient(PhysicalLayer *phy)'],['../class_hell_client.html#afeb347f04148700427ad40614fd057c3',1,'HellClient::HellClient(AFSKClient *audio)']]],
- ['hexdump_561',['hexdump',['../class_module.html#ad0532274dafe433ba68529945bfe6a1b',1,'Module']]]
+ ['hellclient_569',['HellClient',['../class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0',1,'HellClient::HellClient(PhysicalLayer *phy)'],['../class_hell_client.html#afeb347f04148700427ad40614fd057c3',1,'HellClient::HellClient(AFSKClient *audio)']]],
+ ['hexdump_570',['hexdump',['../class_module.html#ad0532274dafe433ba68529945bfe6a1b',1,'Module']]]
];
diff --git a/search/functions_8.js b/search/functions_8.js
index cf3e4789..cee896c2 100644
--- a/search/functions_8.js
+++ b/search/functions_8.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['idle_562',['idle',['../class_bell_client.html#aabd170def79cdbfd56a1d243e6227a75',1,'BellClient::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_563',['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_564',['init',['../class_radio_lib_hal.html#a450037acdfeb4e87413674ac90feb4d2',1,'RadioLibHal::init()'],['../class_module.html#ad1956ac81429ec1f61f83dbc081cf18c',1,'Module::init()']]],
- ['invertiq_565',['invertIQ',['../class_s_x126x.html#a249c905c1752feb7d228f78a15d5b2e1',1,'SX126x::invertIQ()'],['../class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04',1,'SX127x::invertIQ()'],['../class_s_x128x.html#a1463f0769b815e95d789fd708dc2ffe6',1,'SX128x::invertIQ()']]],
- ['iscarrierdetected_566',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]],
- ['ita2string_567',['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_571',['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()'],['../class_bell_client.html#aabd170def79cdbfd56a1d243e6227a75',1,'BellClient::idle()']]],
+ ['implicitheader_572',['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_573',['init',['../class_radio_lib_hal.html#a450037acdfeb4e87413674ac90feb4d2',1,'RadioLibHal::init()'],['../class_radio_lib_a_e_s128.html#a2f688dbdf2b0506c077ca4501e40e22e',1,'RadioLibAES128::init()'],['../class_module.html#ad1956ac81429ec1f61f83dbc081cf18c',1,'Module::init()']]],
+ ['invertiq_574',['invertIQ',['../class_s_x126x.html#a249c905c1752feb7d228f78a15d5b2e1',1,'SX126x::invertIQ()'],['../class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04',1,'SX127x::invertIQ()'],['../class_s_x128x.html#a1463f0769b815e95d789fd708dc2ffe6',1,'SX128x::invertIQ()']]],
+ ['iscarrierdetected_575',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]],
+ ['ita2string_576',['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 e87782ff..34f2308a 100644
--- a/search/functions_9.js
+++ b/search/functions_9.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['length_568',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]],
- ['llcc68_569',['LLCC68',['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68']]]
+ ['length_577',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]],
+ ['llcc68_578',['LLCC68',['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68']]]
];
diff --git a/search/functions_a.js b/search/functions_a.js
index 95fab245..4ea17308 100644
--- a/search/functions_a.js
+++ b/search/functions_a.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['micros_570',['micros',['../class_radio_lib_hal.html#aedf55424bc4aa28379b6f4f6b04151d3',1,'RadioLibHal']]],
- ['millis_571',['millis',['../class_radio_lib_hal.html#a2bc5dbf7c13e6031fb9892075755a023',1,'RadioLibHal']]],
- ['module_572',['Module',['../class_module.html#a817178405f125e068e88bad62aeb6f3b',1,'Module::Module(RadioLibHal *hal, uint32_t cs, uint32_t irq, uint32_t rst, uint32_t gpio=RADIOLIB_NC)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]],
- ['morseclient_573',['MorseClient',['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)']]]
+ ['micros_579',['micros',['../class_radio_lib_hal.html#aedf55424bc4aa28379b6f4f6b04151d3',1,'RadioLibHal']]],
+ ['millis_580',['millis',['../class_radio_lib_hal.html#a2bc5dbf7c13e6031fb9892075755a023',1,'RadioLibHal']]],
+ ['module_581',['Module',['../class_module.html#a817178405f125e068e88bad62aeb6f3b',1,'Module::Module(RadioLibHal *hal, uint32_t cs, uint32_t irq, uint32_t rst, uint32_t gpio=RADIOLIB_NC)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]],
+ ['morseclient_582',['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 efb4578f..c688528d 100644
--- a/search/functions_b.js
+++ b/search/functions_b.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['notone_574',['noTone',['../class_radio_lib_hal.html#a6b5341c59728a1932e33216feee04ea5',1,'RadioLibHal::noTone()'],['../class_a_f_s_k_client.html#a664c1de9b5cd792826a5a77ac5457bae',1,'AFSKClient::noTone()']]],
- ['nrf24_575',['nRF24',['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24']]]
+ ['notone_583',['noTone',['../class_radio_lib_hal.html#a6b5341c59728a1932e33216feee04ea5',1,'RadioLibHal::noTone()'],['../class_a_f_s_k_client.html#a664c1de9b5cd792826a5a77ac5457bae',1,'AFSKClient::noTone()']]],
+ ['nrf24_584',['nRF24',['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24']]]
];
diff --git a/search/functions_c.js b/search/functions_c.js
index ef220185..179ad9ef 100644
--- a/search/functions_c.js
+++ b/search/functions_c.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['operator_3d_576',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()']]]
+ ['operator_3d_585',['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 37056af5..3ca4c9d9 100644
--- a/search/functions_d.js
+++ b/search/functions_d.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['packetmode_577',['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_578',['PagerClient',['../class_pager_client.html#a9f978120467b13104fb356e9b7d855ec',1,'PagerClient']]],
- ['physicallayer_579',['PhysicalLayer',['../class_physical_layer.html#add63d7d4fa8b14df5e185813794a49d5',1,'PhysicalLayer']]],
- ['pinmode_580',['pinMode',['../class_radio_lib_hal.html#af01b4e5e01352b99ce4329c9f9f8433b',1,'RadioLibHal']]],
- ['pintointerrupt_581',['pinToInterrupt',['../class_radio_lib_hal.html#a300a47d4d43dbe0c624f6e5dc1cf7a00',1,'RadioLibHal']]],
- ['printglyph_582',['printGlyph',['../class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9',1,'HellClient']]],
- ['pulsein_583',['pulseIn',['../class_radio_lib_hal.html#a35a6ef1b38553a3516c961872eb411d7',1,'RadioLibHal']]]
+ ['packetmode_586',['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_587',['PagerClient',['../class_pager_client.html#a9f978120467b13104fb356e9b7d855ec',1,'PagerClient']]],
+ ['physicallayer_588',['PhysicalLayer',['../class_physical_layer.html#add63d7d4fa8b14df5e185813794a49d5',1,'PhysicalLayer']]],
+ ['pinmode_589',['pinMode',['../class_radio_lib_hal.html#af01b4e5e01352b99ce4329c9f9f8433b',1,'RadioLibHal']]],
+ ['pintointerrupt_590',['pinToInterrupt',['../class_radio_lib_hal.html#a300a47d4d43dbe0c624f6e5dc1cf7a00',1,'RadioLibHal']]],
+ ['printglyph_591',['printGlyph',['../class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9',1,'HellClient']]],
+ ['pulsein_592',['pulseIn',['../class_radio_lib_hal.html#a35a6ef1b38553a3516c961872eb411d7',1,'RadioLibHal']]]
];
diff --git a/search/functions_e.js b/search/functions_e.js
index 6081b7f6..7c489cb4 100644
--- a/search/functions_e.js
+++ b/search/functions_e.js
@@ -1,23 +1,24 @@
var searchData=
[
- ['radiolibbch_584',['RadioLibBCH',['../class_radio_lib_b_c_h.html#a39d55c0292e4c9337ee0672cd5241118',1,'RadioLibBCH']]],
- ['radiolibcrc_585',['RadioLibCRC',['../class_radio_lib_c_r_c.html#a4f4042a369d55e234f4fc28f189139d5',1,'RadioLibCRC']]],
- ['radiolibhal_586',['RadioLibHal',['../class_radio_lib_hal.html#ae75a54271cb8bea37d32dd146b9c6513',1,'RadioLibHal']]],
- ['random_587',['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_588',['randomByte',['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',1,'SX126x::randomByte()'],['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833',1,'CC1101::randomByte()']]],
- ['range_589',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]],
- ['read_590',['read',['../class_morse_client.html#a77eab03be04ef2d693348d9580ee5d3c',1,'MorseClient::read()'],['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()']]],
- ['readbit_591',['readBit',['../class_c_c1101.html#a206e6c6f094aa7e68388fd9412cd969e',1,'CC1101::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#aceeb18acbfedb20c6cf60e26d5275793',1,'SX128x::readBit()'],['../class_s_x127x.html#a1a2dc7554414f0ce2ee0db23087f698a',1,'SX127x::readBit()'],['../class_s_x126x.html#a8cdc4f25d4193dc75f9442874131eab3',1,'SX126x::readBit()'],['../class_si443x.html#af23d8eb0f1c436e6cc60361df13c08f7',1,'Si443x::readBit()'],['../class_r_f69.html#ab797840275fbccc40162225c32f5ffc3',1,'RF69::readBit()']]],
- ['readdata_592',['readData',['../classn_r_f24.html#a410fb78acb4ed358818c132687b8857a',1,'nRF24::readData()'],['../class_s_x128x.html#a3563453988a83d22dd07d4691543a300',1,'SX128x::readData()'],['../class_s_x127x.html#a3563453988a83d22dd07d4691543a300',1,'SX127x::readData()'],['../class_s_x126x.html#a3563453988a83d22dd07d4691543a300',1,'SX126x::readData()'],['../class_si443x.html#a3563453988a83d22dd07d4691543a300',1,'Si443x::readData()'],['../class_r_f69.html#a3563453988a83d22dd07d4691543a300',1,'RF69::readData()'],['../classn_r_f24.html#a3563453988a83d22dd07d4691543a300',1,'nRF24::readData()'],['../class_c_c1101.html#a3563453988a83d22dd07d4691543a300',1,'CC1101::readData()'],['../class_physical_layer.html#a3563453988a83d22dd07d4691543a300',1,'PhysicalLayer::readData()'],['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745',1,'SX127x::readData()'],['../class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2',1,'SX126x::readData()'],['../class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e',1,'Si443x::readData()'],['../class_r_f69.html#a3983b66c83818b4082805bcafc712f00',1,'RF69::readData()'],['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData()']]],
- ['receive_593',['receive',['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX128x::receive()'],['../class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX127x::receive()'],['../class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX126x::receive()'],['../class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'Si443x::receive()'],['../class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'RF69::receive()'],['../classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'nRF24::receive()'],['../class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'CC1101::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'PhysicalLayer::receive()'],['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()']]],
- ['receivedirect_594',['receiveDirect',['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect()'],['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6',1,'PhysicalLayer::receiveDirect()']]],
- ['receivedirectasync_595',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]],
- ['reflect_596',['reflect',['../class_module.html#a4add1a875bb88e91da232118201a78a8',1,'Module']]],
- ['regdump_597',['regdump',['../class_module.html#abb13a50ed53b009c04dc2ed6caf78423',1,'Module']]],
- ['reset_598',['reset',['../class_c_c1101.html#a1fc87275c6f5d7f6927ca51a175eba21',1,'CC1101::reset()'],['../class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a',1,'RF69::reset()'],['../class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97',1,'Si443x::reset()'],['../class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f',1,'SX126x::reset()'],['../class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac',1,'SX1272::reset()'],['../class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad',1,'SX1278::reset()'],['../class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68',1,'SX127x::reset()'],['../class_s_x128x.html#a2643ce22176293631fea2169f5e68e66',1,'SX128x::reset()']]],
- ['rf69_599',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69']]],
- ['rfm95_600',['RFM95',['../class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326',1,'RFM95']]],
- ['rfm96_601',['RFM96',['../class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a',1,'RFM96']]],
- ['rfm97_602',['RFM97',['../class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be',1,'RFM97']]],
- ['rttyclient_603',['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)']]]
+ ['radiolibaes128_593',['RadioLibAES128',['../class_radio_lib_a_e_s128.html#a11f816221d1c06432ff80f2678ef46fe',1,'RadioLibAES128']]],
+ ['radiolibbch_594',['RadioLibBCH',['../class_radio_lib_b_c_h.html#a39d55c0292e4c9337ee0672cd5241118',1,'RadioLibBCH']]],
+ ['radiolibcrc_595',['RadioLibCRC',['../class_radio_lib_c_r_c.html#a4f4042a369d55e234f4fc28f189139d5',1,'RadioLibCRC']]],
+ ['radiolibhal_596',['RadioLibHal',['../class_radio_lib_hal.html#ae75a54271cb8bea37d32dd146b9c6513',1,'RadioLibHal']]],
+ ['random_597',['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_598',['randomByte',['../class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833',1,'CC1101::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_599',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]],
+ ['read_600',['read',['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()'],['../class_morse_client.html#a77eab03be04ef2d693348d9580ee5d3c',1,'MorseClient::read()']]],
+ ['readbit_601',['readBit',['../class_c_c1101.html#a206e6c6f094aa7e68388fd9412cd969e',1,'CC1101::readBit()'],['../class_r_f69.html#ab797840275fbccc40162225c32f5ffc3',1,'RF69::readBit()'],['../class_si443x.html#af23d8eb0f1c436e6cc60361df13c08f7',1,'Si443x::readBit()'],['../class_s_x126x.html#a8cdc4f25d4193dc75f9442874131eab3',1,'SX126x::readBit()'],['../class_s_x127x.html#a1a2dc7554414f0ce2ee0db23087f698a',1,'SX127x::readBit()'],['../class_s_x128x.html#aceeb18acbfedb20c6cf60e26d5275793',1,'SX128x::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit()']]],
+ ['readdata_602',['readData',['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData()'],['../class_s_x128x.html#a3563453988a83d22dd07d4691543a300',1,'SX128x::readData()'],['../class_s_x127x.html#a3563453988a83d22dd07d4691543a300',1,'SX127x::readData()'],['../class_s_x126x.html#a3563453988a83d22dd07d4691543a300',1,'SX126x::readData()'],['../class_si443x.html#a3563453988a83d22dd07d4691543a300',1,'Si443x::readData()'],['../class_r_f69.html#a3563453988a83d22dd07d4691543a300',1,'RF69::readData()'],['../classn_r_f24.html#a3563453988a83d22dd07d4691543a300',1,'nRF24::readData()'],['../class_c_c1101.html#a3563453988a83d22dd07d4691543a300',1,'CC1101::readData()'],['../class_physical_layer.html#a3563453988a83d22dd07d4691543a300',1,'PhysicalLayer::readData()'],['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745',1,'SX127x::readData()'],['../class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2',1,'SX126x::readData()'],['../class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e',1,'Si443x::readData()'],['../class_r_f69.html#a3983b66c83818b4082805bcafc712f00',1,'RF69::readData()'],['../classn_r_f24.html#a410fb78acb4ed358818c132687b8857a',1,'nRF24::readData()']]],
+ ['receive_603',['receive',['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX128x::receive()'],['../class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX127x::receive()'],['../class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX126x::receive()'],['../class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'Si443x::receive()'],['../class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'RF69::receive()'],['../classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'nRF24::receive()'],['../class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'CC1101::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'PhysicalLayer::receive()'],['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()']]],
+ ['receivedirect_604',['receiveDirect',['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect()'],['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6',1,'PhysicalLayer::receiveDirect()']]],
+ ['receivedirectasync_605',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]],
+ ['reflect_606',['reflect',['../class_module.html#a4add1a875bb88e91da232118201a78a8',1,'Module']]],
+ ['regdump_607',['regdump',['../class_module.html#abb13a50ed53b009c04dc2ed6caf78423',1,'Module']]],
+ ['reset_608',['reset',['../class_c_c1101.html#a1fc87275c6f5d7f6927ca51a175eba21',1,'CC1101::reset()'],['../class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a',1,'RF69::reset()'],['../class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97',1,'Si443x::reset()'],['../class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f',1,'SX126x::reset()'],['../class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac',1,'SX1272::reset()'],['../class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad',1,'SX1278::reset()'],['../class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68',1,'SX127x::reset()'],['../class_s_x128x.html#a2643ce22176293631fea2169f5e68e66',1,'SX128x::reset()']]],
+ ['rf69_609',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69']]],
+ ['rfm95_610',['RFM95',['../class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326',1,'RFM95']]],
+ ['rfm96_611',['RFM96',['../class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a',1,'RFM96']]],
+ ['rfm97_612',['RFM97',['../class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be',1,'RFM97']]],
+ ['rttyclient_613',['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 69d6bd17..a64abc7a 100644
--- a/search/functions_f.js
+++ b/search/functions_f.js
@@ -1,131 +1,131 @@
var searchData=
[
- ['scanchannel_604',['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_605',['sendFrame',['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()'],['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()']]],
- ['sendheader_606',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]],
- ['sendline_607',['sendLine',['../class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0',1,'SSTVClient']]],
- ['sendmice_608',['sendMicE',['../class_a_p_r_s_client.html#af8f28eba026b0f0a25c8ba54a96f4743',1,'APRSClient']]],
- ['sendposition_609',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]],
- ['sendtone_610',['sendTone',['../class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111',1,'PagerClient']]],
- ['setaccessaddress_611',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]],
- ['setaddresswidth_612',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]],
- ['setaeskey_613',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]],
- ['setafc_614',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]],
- ['setafcagctrigger_615',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]],
- ['setafcbandwidth_616',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]],
- ['setambienttemperature_617',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]],
- ['setautoack_618',['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_619',['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_620',['setBitRate',['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee',1,'SX128x::setBitRate()'],['../class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13',1,'RF69::setBitRate()'],['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()'],['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../classn_r_f24.html#a0873f58ae62e41cff99813e21cc8b02a',1,'nRF24::setBitRate()'],['../class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::setBitRate()'],['../class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e',1,'SX126x::setBitRate()']]],
- ['setbroadcastaddress_621',['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_622',['setCodingRate',['../class_s_x1272.html#a960913438feccad4c1913a9222384a5f',1,'SX1272::setCodingRate()'],['../class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a',1,'SX128x::setCodingRate()'],['../class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1',1,'SX1278::setCodingRate()'],['../class_s_x126x.html#afd3113858966e878e9c67a1e710bd586',1,'SX126x::setCodingRate()']]],
- ['setcorrection_623',['setCorrection',['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client::setCorrection()'],['../class_bell_client.html#a90f3f33a09a4cf8d544ca1e9a23beae2',1,'BellClient::setCorrection()'],['../class_f_s_k4_client.html#aab85cb6519e5448dc332bf17bd60f90a',1,'FSK4Client::setCorrection()'],['../class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e',1,'SSTVClient::setCorrection()']]],
- ['setcrc_624',['setCRC',['../class_s_x128x.html#aa4b1e0b96347011522e053f30202c0fe',1,'SX128x::setCRC()'],['../class_s_x1272.html#abd912314a977f92c464d36d862329ffc',1,'SX1272::setCRC()'],['../class_s_x126x.html#a95007639c2648a1dbb614493224606f1',1,'SX126x::setCRC()'],['../class_s_x1278.html#ac0be7586b8e40355bbd29d78ae9941d1',1,'SX1278::setCRC()']]],
- ['setcrcfiltering_625',['setCrcFiltering',['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#ab531ad461b250a060e92d9c744e79070',1,'SX127x::setCrcFiltering()'],['../class_c_c1101.html#a60695681fc74a37f2a31a9638552e877',1,'CC1101::setCrcFiltering()']]],
- ['setcurrentlimit_626',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]],
- ['setdatashaping_627',['setDataShaping',['../class_si443x.html#ade08c79074c7e4414d34eefa25cee168',1,'Si443x::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_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::setDataShaping()'],['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()']]],
- ['setdatashapingook_628',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]],
- ['setdio0action_629',['setDio0Action',['../class_s_x127x.html#ae75bc48cc74a407370cd9f4bf95e9e30',1,'SX127x::setDio0Action()'],['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action(void(*func)(void))']]],
- ['setdio1action_630',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_t_m32_w_lx.html#a63d61bc5057e9da3d0ea12feae67122e',1,'STM32WLx::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#a7b4bce81839b105c464ebf922602e58b',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()'],['../class_physical_layer.html#a63c0beb4990876947f746751d45ac41d',1,'PhysicalLayer::setDio1Action()']]],
- ['setdio2asrfswitch_631',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]],
- ['setdiomapping_632',['setDIOMapping',['../class_s_x127x.html#a103b606166eba8c69bff061270744768',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()'],['../class_r_f69.html#a0d7720672c0aa0cf4464d544540cbada',1,'RF69::setDIOMapping()'],['../class_c_c1101.html#a009c31564866d8d14759f17f29b08ee6',1,'CC1101::setDIOMapping()']]],
- ['setdiopreambledetect_633',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]],
- ['setdirectaction_634',['setDirectAction',['../class_c_c1101.html#a5161fa10b19d857840579601ef565363',1,'CC1101::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_635',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]],
- ['setencoding_636',['setEncoding',['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()'],['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()'],['../class_physical_layer.html#acb45b2342400a03a914a91d2ac7fb488',1,'PhysicalLayer::setEncoding()'],['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()'],['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()']]],
- ['setfhsshoppingperiod_637',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]],
- ['setfifoemptyaction_638',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()']]],
- ['setfifofullaction_639',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]],
- ['setfrequency_640',['setFrequency',['../class_s_x1268.html#abf338b7036d692a4a8ca6bf305c0cb12',1,'SX1268::setFrequency()'],['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::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_x1262.html#abb018b820eb71ca6b0cd92c62affa767',1,'SX1262::setFrequency()'],['../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()'],['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../classn_r_f24.html#a408278336cdf25fd205ecffea86c26e8',1,'nRF24::setFrequency()'],['../class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e',1,'CC1101::setFrequency()'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency()']]],
- ['setfrequencydeviation_641',['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_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()']]],
- ['setgain_642',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]],
- ['setgaincontrol_643',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]],
- ['setgdo0action_644',['setGdo0Action',['../class_c_c1101.html#a9bee13612cf4da067faeb57d18ee2eb7',1,'CC1101']]],
- ['setgdo2action_645',['setGdo2Action',['../class_c_c1101.html#ad71efbe54590e4431f3286ab99536fe9',1,'CC1101']]],
- ['sethighsensitivitymode_646',['setHighSensitivityMode',['../class_s_x128x.html#a6e45fbfaec7063e52e188f47a3a585a5',1,'SX128x']]],
- ['setinversion_647',['setInversion',['../class_hell_client.html#ae43025b9d55ee21a322bb5d7ee1065b0',1,'HellClient']]],
- ['setirqaction_648',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]],
- ['setlnatestboost_649',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]],
- ['setmodem_650',['setModem',['../class_bell_client.html#a163f65f3fcce87d9bea558b34c19bd47',1,'BellClient']]],
- ['setnodeaddress_651',['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_652',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK()'],['../class_r_f69.html#a465df5a2e1f924f6d3ba4eae765847b7',1,'RF69::setOOK()']]],
- ['setookfixedorfloorthreshold_653',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]],
- ['setookfixedthreshold_654',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]],
- ['setookpeakthresholddecrement_655',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement(uint8_t value)']]],
- ['setookpeakthresholdstep_656',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]],
- ['setookthresholdtype_657',['setOokThresholdType',['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()'],['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()']]],
- ['setoutputpower_658',['setOutputPower',['../class_c_c1101.html#a4f89d13ea170157df109eca36674f0aa',1,'CC1101::setOutputPower()'],['../class_s_x128x.html#ad988727ea6c9b4e11562651d312514c0',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_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',1,'RF69::setOutputPower()'],['../classn_r_f24.html#ad9859fa54aed7d3cd82839bad9d7d33a',1,'nRF24::setOutputPower()']]],
- ['setpreamblelength_659',['setPreambleLength',['../class_c_c1101.html#ae77c828c9c7cc12012fe011e8c4d3570',1,'CC1101::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_s_x126x.html#ab00f765bbfbfaa8c693532ea3a90c29b',1,'SX126x::setPreambleLength()'],['../class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed',1,'SX127x::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()']]],
- ['setpromiscuousmode_660',['setPromiscuousMode',['../class_r_f69.html#ae004326d663a9d6a9c30e792aa368b49',1,'RF69::setPromiscuousMode()'],['../class_c_c1101.html#a047be5159af73374521a26e8f880fe12',1,'CC1101::setPromiscuousMode()']]],
- ['setreceivepipe_661',['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_662',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]],
- ['setregulatordcdc_663',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x']]],
- ['setregulatorldo_664',['setRegulatorLDO',['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x']]],
- ['setrepeaters_665',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]],
- ['setrfswitchpins_666',['setRfSwitchPins',['../class_module.html#a7d3adea64acab11c47c804afc74bd4f3',1,'Module::setRfSwitchPins()'],['../class_c_c1101.html#a5ef45183690bb1879f106af079b01140',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#ac341945538a84430c61f80f610a94411',1,'RF69::setRfSwitchPins()'],['../class_si443x.html#a43e7ceeff9114b35ab89f1d69916b375',1,'Si443x::setRfSwitchPins()'],['../class_s_x126x.html#a0a0df468eacc71c1b2a093ac06bfff51',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#a8ca9edcae05060cce3ff7ee58faeb4e2',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5ba683fbc4a46418ce3736f224fb55f2',1,'SX128x::setRfSwitchPins()']]],
- ['setrfswitchstate_667',['setRfSwitchState',['../class_module.html#afbed643f082286012bf44bba22381ae6',1,'Module']]],
- ['setrfswitchtable_668',['setRfSwitchTable',['../class_module.html#ac308fa817a5c36c5dc724a0d15cefd4d',1,'Module::setRfSwitchTable()'],['../class_c_c1101.html#a7b401995be4bc136063a035ce1820634',1,'CC1101::setRfSwitchTable()'],['../class_r_f69.html#afff64ceef5f496ce035ff6d12d6bcc3c',1,'RF69::setRfSwitchTable()'],['../class_si443x.html#a8898f11cf9dabd9a5ad717376fdbffa6',1,'Si443x::setRfSwitchTable()'],['../class_s_x126x.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'SX126x::setRfSwitchTable()'],['../class_s_x127x.html#ab9625a5246a45112267ce441ac2de254',1,'SX127x::setRfSwitchTable()'],['../class_s_x128x.html#ad5789bd27d46b24f54aac9ca55ec9958',1,'SX128x::setRfSwitchTable()'],['../class_s_t_m32_w_lx.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'STM32WLx::setRfSwitchTable()']]],
- ['setrssiconfig_669',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]],
- ['setrssithreshold_670',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]],
- ['setrxbandwidth_671',['setRxBandwidth',['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()'],['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()'],['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()']]],
- ['setrxboostedgainmode_672',['setRxBoostedGainMode',['../class_s_x126x.html#a920aa76ff5f0f579424ef6de92e588c8',1,'SX126x']]],
- ['setsendsequence_673',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]],
- ['setspreadingfactor_674',['setSpreadingFactor',['../class_s_x1272.html#a82084ac58502c83d2ada998410307490',1,'SX1272::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_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f',1,'SX1273::setSpreadingFactor()'],['../class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d',1,'SX126x::setSpreadingFactor()'],['../class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67',1,'RFM97::setSpreadingFactor()'],['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()']]],
- ['setsyncbits_675',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]],
- ['setsyncword_676',['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_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len)'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord()'],['../class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a',1,'Si443x::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)'],['../class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf',1,'SX126x::setSyncWord(uint8_t *syncWord, uint8_t len)']]],
- ['settcxo_677',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]],
- ['settransmitpipe_678',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]],
- ['setwhitening_679',['setWhitening',['../class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]],
- ['si4430_680',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430']]],
- ['si4431_681',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431']]],
- ['si4432_682',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432']]],
- ['si443x_683',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x']]],
- ['sleep_684',['sleep',['../class_physical_layer.html#af1bb9a5da26da8829795ebb72e9c666e',1,'PhysicalLayer::sleep()'],['../class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f',1,'SX128x::sleep()'],['../class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df',1,'SX127x::sleep()'],['../class_si443x.html#ada90718aeb67d7f0e9899da534de9695',1,'Si443x::sleep()'],['../class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb',1,'RF69::sleep()'],['../classn_r_f24.html#a033287e33c532638c11e2775a073f297',1,'nRF24::sleep()'],['../class_s_x126x.html#afb5509f0705cdd971065251ed6b2fb4e',1,'SX126x::sleep(bool retainConfig=true)']]],
- ['spectralscanabort_685',['spectralScanAbort',['../class_s_x126x.html#a865397e1cca38bec2d055c047825ea07',1,'SX126x']]],
- ['spectralscangetresult_686',['spectralScanGetResult',['../class_s_x126x.html#ae473773e5bed4b08452e80311bdb26f2',1,'SX126x']]],
- ['spectralscangetstatus_687',['spectralScanGetStatus',['../class_s_x126x.html#a5595fff99d76d50d711b8cdad98527c4',1,'SX126x']]],
- ['spectralscanstart_688',['spectralScanStart',['../class_s_x126x.html#a8a3ad4e12df862ab18b326d9dba26d66',1,'SX126x']]],
- ['spibegin_689',['spiBegin',['../class_radio_lib_hal.html#aa1f8e5cd323e53ef9fa977734a05d030',1,'RadioLibHal']]],
- ['spibegintransaction_690',['spiBeginTransaction',['../class_radio_lib_hal.html#abe787d5e556190eef2c63e1581235460',1,'RadioLibHal']]],
- ['spicheckstream_691',['SPIcheckStream',['../class_module.html#a5efa7ae78cab1d7f43005e965923f769',1,'Module']]],
- ['spiend_692',['spiEnd',['../class_radio_lib_hal.html#a41c85e560155d644f5b4ce8444dd8b64',1,'RadioLibHal']]],
- ['spiendtransaction_693',['spiEndTransaction',['../class_radio_lib_hal.html#a68d9271c76f8c96afb734a4634bf92e9',1,'RadioLibHal']]],
- ['spigetregvalue_694',['SPIgetRegValue',['../class_module.html#a01e15988ec448c76142ee5709929be2c',1,'Module']]],
- ['spireadregister_695',['SPIreadRegister',['../class_module.html#a9a545e4a001da0d9f6358279ac40d4f0',1,'Module']]],
- ['spireadregisterburst_696',['SPIreadRegisterBurst',['../class_module.html#a874e030f1931e606e380930d37dd83ee',1,'Module']]],
- ['spireadstream_697',['SPIreadStream',['../class_module.html#ab9fc874adc8dbe7c3f1fd3c267c27708',1,'Module::SPIreadStream(uint8_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a085415b49ff72238f118b937ad896cbd',1,'Module::SPIreadStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]],
- ['spisetregvalue_698',['SPIsetRegValue',['../class_module.html#a081191402ad5c49e6c21982fc4587b77',1,'Module']]],
- ['spitransfer_699',['spiTransfer',['../class_radio_lib_hal.html#a12facb08577402e50c91c75ca7dd560f',1,'RadioLibHal']]],
- ['spitransfer_700',['SPItransfer',['../class_module.html#a78dd39aa71d97e2220a880df8162fdde',1,'Module']]],
- ['spitransferstream_701',['SPItransferStream',['../class_module.html#ac3586c8d4013cbdd22cf34032632c181',1,'Module']]],
- ['spiwriteregister_702',['SPIwriteRegister',['../class_module.html#a4437af6552e258e95ed8ed452afa6dd4',1,'Module']]],
- ['spiwriteregisterburst_703',['SPIwriteRegisterBurst',['../class_module.html#af474f82d00fffc1ee0fc8def2c7f220c',1,'Module']]],
- ['spiwritestream_704',['SPIwriteStream',['../class_module.html#a74ce586afa403130007a474d3295d762',1,'Module::SPIwriteStream(uint8_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a7acbe601ebe6398781d0f2de5177305e',1,'Module::SPIwriteStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]],
- ['sstvclient_705',['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)']]],
- ['standby_706',['standby',['../class_physical_layer.html#a7d5da4311092e3df6b193ff303a0c5e8',1,'PhysicalLayer::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()'],['../class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018',1,'PhysicalLayer::standby()'],['../class_f_s_k4_client.html#a8b5765371ebbf68a21bc0bbfdf9f82ac',1,'FSK4Client::standby()'],['../class_bell_client.html#a57c19c733b0dfe80bd321f23b18c1e80',1,'BellClient::standby()'],['../class_s_x128x.html#a389aab93e24ec8c7cc9c14de90e5dfae',1,'SX128x::standby(uint8_t mode, bool wakeup=false)'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x127x.html#aa565bbff460e487672953dc05d335cb0',1,'SX127x::standby(uint8_t mode) override'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby() override'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby()'],['../class_si443x.html#acbc0f95f32ca961294666405596ff529',1,'Si443x::standby(uint8_t mode) override'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby() override'],['../class_r_f69.html#a6e3002ab0c58e2087a7d101eda7afa82',1,'RF69::standby(uint8_t mode) override'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby() override'],['../classn_r_f24.html#a03e9ae7fbd0d55887acf1996df28ed5b',1,'nRF24::standby(uint8_t mode) override'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby() override'],['../class_c_c1101.html#af374ad0ecd820a01baef7d177a30132a',1,'CC1101::standby(uint8_t mode) override'],['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby() override'],['../class_s_x126x.html#a2fa0384a529746811e2dcb2eeb4188ec',1,'SX126x::standby(uint8_t mode, bool wakeup=true)']]],
- ['startchannelscan_707',['startChannelScan',['../class_s_x126x.html#a10a0e75571350fb05fa100e5d5151be2',1,'SX126x::startChannelScan()'],['../class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059',1,'SX127x::startChannelScan()']]],
- ['startdirect_708',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]],
- ['startranging_709',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]],
- ['startreceive_710',['startReceive',['../class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3',1,'CC1101::startReceive()'],['../class_physical_layer.html#a13dbafeeb9dd9ede72cc4d907738ac48',1,'PhysicalLayer::startReceive()'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive()'],['../class_s_x128x.html#a8530aaeacc4c12736ce5aa5b5460ee19',1,'SX128x::startReceive()'],['../class_s_x127x.html#a0ae533401c801f1d4034eb3db8b1f30c',1,'SX127x::startReceive(uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_s_x127x.html#adffb96b7f80dc43909bb4cebde68fe9d',1,'SX127x::startReceive(uint8_t len=0, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)'],['../class_s_x126x.html#a0ec1b926c93885739b546a7f39e8b09c',1,'SX126x::startReceive()'],['../class_si443x.html#a1070a6cde04a01d4a35da670f65ce539',1,'Si443x::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_r_f69.html#ae8b6f87d4b798dc8fcda07bfa5af5a66',1,'RF69::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../classn_r_f24.html#ad672f45f73267249265044063e19b4fa',1,'nRF24::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_c_c1101.html#a22ebe5b75a09c420cf6e6464dac3fe33',1,'CC1101::startReceive()']]],
- ['startreceivedutycycle_711',['startReceiveDutyCycle',['../class_s_x126x.html#a5b4f8a41b593436b8c7a2a2d46ac387e',1,'SX126x']]],
- ['startreceivedutycycleauto_712',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a077f180905ce4818cbdacad0cd9fe841',1,'SX126x']]],
- ['startsignal_713',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]],
- ['starttransmit_714',['startTransmit',['../class_s_x127x.html#a923654706eff5118ef6e84214e837f27',1,'SX127x::startTransmit()'],['../class_s_x128x.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'SX128x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a923654706eff5118ef6e84214e837f27',1,'SX128x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'SX127x::startTransmit()'],['../class_s_x126x.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'SX126x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x126x.html#a923654706eff5118ef6e84214e837f27',1,'SX126x::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_si443x.html#a923654706eff5118ef6e84214e837f27',1,'Si443x::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_r_f69.html#a923654706eff5118ef6e84214e837f27',1,'RF69::startTransmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'nRF24::startTransmit()'],['../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_physical_layer.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'PhysicalLayer::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *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#a923654706eff5118ef6e84214e837f27',1,'nRF24::startTransmit()']]],
- ['stm32wlx_715',['STM32WLx',['../class_s_t_m32_w_lx.html#ac0e8787dbb8e8aaa172b089ace6eaa09',1,'STM32WLx']]],
- ['sx1231_716',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231']]],
- ['sx1261_717',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261']]],
- ['sx1262_718',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262']]],
- ['sx1268_719',['SX1268',['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268']]],
- ['sx126x_720',['SX126x',['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x']]],
- ['sx1272_721',['SX1272',['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272']]],
- ['sx1273_722',['SX1273',['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273']]],
- ['sx1276_723',['SX1276',['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276']]],
- ['sx1277_724',['SX1277',['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277']]],
- ['sx1278_725',['SX1278',['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278']]],
- ['sx1279_726',['SX1279',['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279']]],
- ['sx127x_727',['SX127x',['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x']]],
- ['sx1280_728',['SX1280',['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280']]],
- ['sx1281_729',['SX1281',['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281']]],
- ['sx1282_730',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282']]],
- ['sx128x_731',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x']]]
+ ['scanchannel_614',['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_615',['sendFrame',['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()'],['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()']]],
+ ['sendheader_616',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]],
+ ['sendline_617',['sendLine',['../class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0',1,'SSTVClient']]],
+ ['sendmice_618',['sendMicE',['../class_a_p_r_s_client.html#af8f28eba026b0f0a25c8ba54a96f4743',1,'APRSClient']]],
+ ['sendposition_619',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]],
+ ['sendtone_620',['sendTone',['../class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111',1,'PagerClient']]],
+ ['setaccessaddress_621',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]],
+ ['setaddresswidth_622',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]],
+ ['setaeskey_623',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]],
+ ['setafc_624',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]],
+ ['setafcagctrigger_625',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]],
+ ['setafcbandwidth_626',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]],
+ ['setambienttemperature_627',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]],
+ ['setautoack_628',['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_629',['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_630',['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_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()'],['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::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_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e',1,'SX126x::setBitRate()']]],
+ ['setbroadcastaddress_631',['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_632',['setCodingRate',['../class_s_x1272.html#a960913438feccad4c1913a9222384a5f',1,'SX1272::setCodingRate()'],['../class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a',1,'SX128x::setCodingRate()'],['../class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1',1,'SX1278::setCodingRate()'],['../class_s_x126x.html#afd3113858966e878e9c67a1e710bd586',1,'SX126x::setCodingRate()']]],
+ ['setcorrection_633',['setCorrection',['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client::setCorrection()'],['../class_bell_client.html#a90f3f33a09a4cf8d544ca1e9a23beae2',1,'BellClient::setCorrection()'],['../class_f_s_k4_client.html#aab85cb6519e5448dc332bf17bd60f90a',1,'FSK4Client::setCorrection()'],['../class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e',1,'SSTVClient::setCorrection()']]],
+ ['setcrc_634',['setCRC',['../class_s_x1278.html#ac0be7586b8e40355bbd29d78ae9941d1',1,'SX1278::setCRC()'],['../class_s_x128x.html#aa4b1e0b96347011522e053f30202c0fe',1,'SX128x::setCRC()'],['../class_s_x1272.html#abd912314a977f92c464d36d862329ffc',1,'SX1272::setCRC()'],['../class_s_x126x.html#a95007639c2648a1dbb614493224606f1',1,'SX126x::setCRC()']]],
+ ['setcrcfiltering_635',['setCrcFiltering',['../class_c_c1101.html#a60695681fc74a37f2a31a9638552e877',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#ab531ad461b250a060e92d9c744e79070',1,'SX127x::setCrcFiltering()']]],
+ ['setcurrentlimit_636',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]],
+ ['setdatashaping_637',['setDataShaping',['../class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676',1,'SX126x::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_si443x.html#ade08c79074c7e4414d34eefa25cee168',1,'Si443x::setDataShaping()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::setDataShaping()'],['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()']]],
+ ['setdatashapingook_638',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]],
+ ['setdio0action_639',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ae75bc48cc74a407370cd9f4bf95e9e30',1,'SX127x::setDio0Action()']]],
+ ['setdio1action_640',['setDio1Action',['../class_s_t_m32_w_lx.html#a63d61bc5057e9da3d0ea12feae67122e',1,'STM32WLx::setDio1Action()'],['../class_physical_layer.html#a63c0beb4990876947f746751d45ac41d',1,'PhysicalLayer::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_x127x.html#a7b4bce81839b105c464ebf922602e58b',1,'SX127x::setDio1Action()']]],
+ ['setdio2asrfswitch_641',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]],
+ ['setdiomapping_642',['setDIOMapping',['../class_c_c1101.html#a009c31564866d8d14759f17f29b08ee6',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a0d7720672c0aa0cf4464d544540cbada',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#a103b606166eba8c69bff061270744768',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()']]],
+ ['setdiopreambledetect_643',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]],
+ ['setdirectaction_644',['setDirectAction',['../class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28',1,'RF69::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_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a',1,'SX126x::setDirectAction()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()'],['../class_c_c1101.html#a5161fa10b19d857840579601ef565363',1,'CC1101::setDirectAction()']]],
+ ['setdirectsyncword_645',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]],
+ ['setencoding_646',['setEncoding',['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()'],['../class_physical_layer.html#acb45b2342400a03a914a91d2ac7fb488',1,'PhysicalLayer::setEncoding()'],['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()'],['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()']]],
+ ['setfhsshoppingperiod_647',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]],
+ ['setfifoemptyaction_648',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()']]],
+ ['setfifofullaction_649',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]],
+ ['setfrequency_650',['setFrequency',['../class_s_x1277.html#a42adde5eecccdca95214980848795e82',1,'SX1277::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_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#abb018b820eb71ca6b0cd92c62affa767',1,'SX1262::setFrequency()'],['../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()'],['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../classn_r_f24.html#a408278336cdf25fd205ecffea86c26e8',1,'nRF24::setFrequency()'],['../class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e',1,'CC1101::setFrequency()'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency()']]],
+ ['setfrequencydeviation_651',['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_652',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]],
+ ['setgaincontrol_653',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]],
+ ['setgdo0action_654',['setGdo0Action',['../class_c_c1101.html#a9bee13612cf4da067faeb57d18ee2eb7',1,'CC1101']]],
+ ['setgdo2action_655',['setGdo2Action',['../class_c_c1101.html#ad71efbe54590e4431f3286ab99536fe9',1,'CC1101']]],
+ ['sethighsensitivitymode_656',['setHighSensitivityMode',['../class_s_x128x.html#a6e45fbfaec7063e52e188f47a3a585a5',1,'SX128x']]],
+ ['setinversion_657',['setInversion',['../class_hell_client.html#ae43025b9d55ee21a322bb5d7ee1065b0',1,'HellClient']]],
+ ['setirqaction_658',['setIrqAction',['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()'],['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()']]],
+ ['setlnatestboost_659',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]],
+ ['setmodem_660',['setModem',['../class_bell_client.html#a163f65f3fcce87d9bea558b34c19bd47',1,'BellClient']]],
+ ['setnodeaddress_661',['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_662',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a465df5a2e1f924f6d3ba4eae765847b7',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK(bool enableOOK)']]],
+ ['setookfixedorfloorthreshold_663',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]],
+ ['setookfixedthreshold_664',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]],
+ ['setookpeakthresholddecrement_665',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement(uint8_t value)']]],
+ ['setookpeakthresholdstep_666',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]],
+ ['setookthresholdtype_667',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]],
+ ['setoutputpower_668',['setOutputPower',['../class_s_x128x.html#ad988727ea6c9b4e11562651d312514c0',1,'SX128x::setOutputPower()'],['../class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88',1,'SX1278::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',1,'RF69::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_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../classn_r_f24.html#ad9859fa54aed7d3cd82839bad9d7d33a',1,'nRF24::setOutputPower()'],['../class_c_c1101.html#a4f89d13ea170157df109eca36674f0aa',1,'CC1101::setOutputPower(int8_t pwr)']]],
+ ['setpreamblelength_669',['setPreambleLength',['../class_c_c1101.html#ae77c828c9c7cc12012fe011e8c4d3570',1,'CC1101::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_s_x126x.html#ab00f765bbfbfaa8c693532ea3a90c29b',1,'SX126x::setPreambleLength()'],['../class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed',1,'SX127x::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()']]],
+ ['setpromiscuousmode_670',['setPromiscuousMode',['../class_c_c1101.html#a047be5159af73374521a26e8f880fe12',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#ae004326d663a9d6a9c30e792aa368b49',1,'RF69::setPromiscuousMode()']]],
+ ['setreceivepipe_671',['setReceivePipe',['../classn_r_f24.html#ab5bc08aef88d8cf41c38369044005da8',1,'nRF24::setReceivePipe(uint8_t pipeNum, uint8_t addrByte)'],['../classn_r_f24.html#a31bcc5a8c3747bf08a273dbdadc5481a',1,'nRF24::setReceivePipe(uint8_t pipeNum, uint8_t *addr)']]],
+ ['setrecvsequence_672',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]],
+ ['setregulatordcdc_673',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x']]],
+ ['setregulatorldo_674',['setRegulatorLDO',['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x']]],
+ ['setrepeaters_675',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]],
+ ['setrfswitchpins_676',['setRfSwitchPins',['../class_module.html#a7d3adea64acab11c47c804afc74bd4f3',1,'Module::setRfSwitchPins()'],['../class_c_c1101.html#a5ef45183690bb1879f106af079b01140',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#ac341945538a84430c61f80f610a94411',1,'RF69::setRfSwitchPins()'],['../class_si443x.html#a43e7ceeff9114b35ab89f1d69916b375',1,'Si443x::setRfSwitchPins()'],['../class_s_x126x.html#a0a0df468eacc71c1b2a093ac06bfff51',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#a8ca9edcae05060cce3ff7ee58faeb4e2',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5ba683fbc4a46418ce3736f224fb55f2',1,'SX128x::setRfSwitchPins()']]],
+ ['setrfswitchstate_677',['setRfSwitchState',['../class_module.html#afbed643f082286012bf44bba22381ae6',1,'Module']]],
+ ['setrfswitchtable_678',['setRfSwitchTable',['../class_r_f69.html#afff64ceef5f496ce035ff6d12d6bcc3c',1,'RF69::setRfSwitchTable()'],['../class_s_t_m32_w_lx.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'STM32WLx::setRfSwitchTable()'],['../class_s_x128x.html#ad5789bd27d46b24f54aac9ca55ec9958',1,'SX128x::setRfSwitchTable()'],['../class_s_x127x.html#ab9625a5246a45112267ce441ac2de254',1,'SX127x::setRfSwitchTable()'],['../class_s_x126x.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'SX126x::setRfSwitchTable()'],['../class_si443x.html#a8898f11cf9dabd9a5ad717376fdbffa6',1,'Si443x::setRfSwitchTable()'],['../class_c_c1101.html#a7b401995be4bc136063a035ce1820634',1,'CC1101::setRfSwitchTable()'],['../class_module.html#ac308fa817a5c36c5dc724a0d15cefd4d',1,'Module::setRfSwitchTable()']]],
+ ['setrssiconfig_679',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]],
+ ['setrssithreshold_680',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]],
+ ['setrxbandwidth_681',['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_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()'],['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()']]],
+ ['setrxboostedgainmode_682',['setRxBoostedGainMode',['../class_s_x126x.html#a920aa76ff5f0f579424ef6de92e588c8',1,'SX126x']]],
+ ['setsendsequence_683',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]],
+ ['setspreadingfactor_684',['setSpreadingFactor',['../class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf',1,'SX1277::setSpreadingFactor()'],['../class_s_x128x.html#ae435f57132f76f4283abb870176acf54',1,'SX128x::setSpreadingFactor()'],['../class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08',1,'SX1278::setSpreadingFactor()'],['../class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f',1,'SX1273::setSpreadingFactor()'],['../class_s_x1272.html#a82084ac58502c83d2ada998410307490',1,'SX1272::setSpreadingFactor()'],['../class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d',1,'SX126x::setSpreadingFactor()'],['../class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67',1,'RFM97::setSpreadingFactor()'],['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()']]],
+ ['setsyncbits_685',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]],
+ ['setsyncword_686',['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#a9b7afe338fd5b81122c369ecaf0c3ebc',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len)'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord()'],['../class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a',1,'Si443x::setSyncWord()'],['../class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf',1,'SX126x::setSyncWord()'],['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord()'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord()']]],
+ ['settcxo_687',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]],
+ ['settransmitpipe_688',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]],
+ ['setwhitening_689',['setWhitening',['../class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]],
+ ['si4430_690',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430']]],
+ ['si4431_691',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431']]],
+ ['si4432_692',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432']]],
+ ['si443x_693',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x']]],
+ ['sleep_694',['sleep',['../classn_r_f24.html#a033287e33c532638c11e2775a073f297',1,'nRF24::sleep()'],['../class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb',1,'RF69::sleep()'],['../class_si443x.html#ada90718aeb67d7f0e9899da534de9695',1,'Si443x::sleep()'],['../class_s_x126x.html#afb5509f0705cdd971065251ed6b2fb4e',1,'SX126x::sleep()'],['../class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df',1,'SX127x::sleep()'],['../class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f',1,'SX128x::sleep()'],['../class_physical_layer.html#af1bb9a5da26da8829795ebb72e9c666e',1,'PhysicalLayer::sleep()']]],
+ ['spectralscanabort_695',['spectralScanAbort',['../class_s_x126x.html#a865397e1cca38bec2d055c047825ea07',1,'SX126x']]],
+ ['spectralscangetresult_696',['spectralScanGetResult',['../class_s_x126x.html#ae473773e5bed4b08452e80311bdb26f2',1,'SX126x']]],
+ ['spectralscangetstatus_697',['spectralScanGetStatus',['../class_s_x126x.html#a5595fff99d76d50d711b8cdad98527c4',1,'SX126x']]],
+ ['spectralscanstart_698',['spectralScanStart',['../class_s_x126x.html#a8a3ad4e12df862ab18b326d9dba26d66',1,'SX126x']]],
+ ['spibegin_699',['spiBegin',['../class_radio_lib_hal.html#aa1f8e5cd323e53ef9fa977734a05d030',1,'RadioLibHal']]],
+ ['spibegintransaction_700',['spiBeginTransaction',['../class_radio_lib_hal.html#abe787d5e556190eef2c63e1581235460',1,'RadioLibHal']]],
+ ['spicheckstream_701',['SPIcheckStream',['../class_module.html#a5efa7ae78cab1d7f43005e965923f769',1,'Module']]],
+ ['spiend_702',['spiEnd',['../class_radio_lib_hal.html#a41c85e560155d644f5b4ce8444dd8b64',1,'RadioLibHal']]],
+ ['spiendtransaction_703',['spiEndTransaction',['../class_radio_lib_hal.html#a68d9271c76f8c96afb734a4634bf92e9',1,'RadioLibHal']]],
+ ['spigetregvalue_704',['SPIgetRegValue',['../class_module.html#a01e15988ec448c76142ee5709929be2c',1,'Module']]],
+ ['spireadregister_705',['SPIreadRegister',['../class_module.html#a9a545e4a001da0d9f6358279ac40d4f0',1,'Module']]],
+ ['spireadregisterburst_706',['SPIreadRegisterBurst',['../class_module.html#a874e030f1931e606e380930d37dd83ee',1,'Module']]],
+ ['spireadstream_707',['SPIreadStream',['../class_module.html#ab9fc874adc8dbe7c3f1fd3c267c27708',1,'Module::SPIreadStream(uint8_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a085415b49ff72238f118b937ad896cbd',1,'Module::SPIreadStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]],
+ ['spisetregvalue_708',['SPIsetRegValue',['../class_module.html#a081191402ad5c49e6c21982fc4587b77',1,'Module']]],
+ ['spitransfer_709',['SPItransfer',['../class_module.html#a78dd39aa71d97e2220a880df8162fdde',1,'Module']]],
+ ['spitransfer_710',['spiTransfer',['../class_radio_lib_hal.html#a12facb08577402e50c91c75ca7dd560f',1,'RadioLibHal']]],
+ ['spitransferstream_711',['SPItransferStream',['../class_module.html#ac3586c8d4013cbdd22cf34032632c181',1,'Module']]],
+ ['spiwriteregister_712',['SPIwriteRegister',['../class_module.html#a4437af6552e258e95ed8ed452afa6dd4',1,'Module']]],
+ ['spiwriteregisterburst_713',['SPIwriteRegisterBurst',['../class_module.html#af474f82d00fffc1ee0fc8def2c7f220c',1,'Module']]],
+ ['spiwritestream_714',['SPIwriteStream',['../class_module.html#a7acbe601ebe6398781d0f2de5177305e',1,'Module::SPIwriteStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a74ce586afa403130007a474d3295d762',1,'Module::SPIwriteStream(uint8_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]],
+ ['sstvclient_715',['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)']]],
+ ['standby_716',['standby',['../class_bell_client.html#a57c19c733b0dfe80bd321f23b18c1e80',1,'BellClient::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()'],['../class_physical_layer.html#a7d5da4311092e3df6b193ff303a0c5e8',1,'PhysicalLayer::standby(uint8_t mode)'],['../class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018',1,'PhysicalLayer::standby()'],['../class_f_s_k4_client.html#a8b5765371ebbf68a21bc0bbfdf9f82ac',1,'FSK4Client::standby()'],['../class_s_x128x.html#a389aab93e24ec8c7cc9c14de90e5dfae',1,'SX128x::standby(uint8_t mode, bool wakeup=false)'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x127x.html#aa565bbff460e487672953dc05d335cb0',1,'SX127x::standby(uint8_t mode) override'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby() override'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby()'],['../class_si443x.html#acbc0f95f32ca961294666405596ff529',1,'Si443x::standby(uint8_t mode) override'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby() override'],['../class_r_f69.html#a6e3002ab0c58e2087a7d101eda7afa82',1,'RF69::standby()'],['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby()'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby()'],['../classn_r_f24.html#a03e9ae7fbd0d55887acf1996df28ed5b',1,'nRF24::standby(uint8_t mode) override'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby() override'],['../class_c_c1101.html#af374ad0ecd820a01baef7d177a30132a',1,'CC1101::standby()'],['../class_s_x126x.html#a2fa0384a529746811e2dcb2eeb4188ec',1,'SX126x::standby()']]],
+ ['startchannelscan_717',['startChannelScan',['../class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059',1,'SX127x::startChannelScan()'],['../class_s_x126x.html#a10a0e75571350fb05fa100e5d5151be2',1,'SX126x::startChannelScan()']]],
+ ['startdirect_718',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]],
+ ['startranging_719',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]],
+ ['startreceive_720',['startReceive',['../class_physical_layer.html#a13dbafeeb9dd9ede72cc4d907738ac48',1,'PhysicalLayer::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_physical_layer.html#a18664ad615c5507ff1690baaca90b094',1,'PhysicalLayer::startReceive()'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive()'],['../class_s_x128x.html#a8530aaeacc4c12736ce5aa5b5460ee19',1,'SX128x::startReceive(uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)'],['../class_s_x128x.html#afe700968c1e02e335c389b59d950ca39',1,'SX128x::startReceive()'],['../class_s_x127x.html#a0ae533401c801f1d4034eb3db8b1f30c',1,'SX127x::startReceive(uint32_t mode, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_s_x127x.html#acaa90f7b8fcb4c41e2672923945d8ea7',1,'SX127x::startReceive(uint8_t len, uint8_t mode)'],['../class_s_x127x.html#ae90a5df2d414dfcafd1e3b8aa790f9fd',1,'SX127x::startReceive()'],['../class_s_x126x.html#a013065f21a7c029f310178f884a60898',1,'SX126x::startReceive()'],['../class_si443x.html#a1070a6cde04a01d4a35da670f65ce539',1,'Si443x::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_r_f69.html#ae8b6f87d4b798dc8fcda07bfa5af5a66',1,'RF69::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../classn_r_f24.html#ad672f45f73267249265044063e19b4fa',1,'nRF24::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_c_c1101.html#a22ebe5b75a09c420cf6e6464dac3fe33',1,'CC1101::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3',1,'CC1101::startReceive()'],['../class_s_x126x.html#a16e8b271dc5e9af3015dd2901153cbde',1,'SX126x::startReceive()']]],
+ ['startreceivedutycycle_721',['startReceiveDutyCycle',['../class_s_x126x.html#a5b4f8a41b593436b8c7a2a2d46ac387e',1,'SX126x']]],
+ ['startreceivedutycycleauto_722',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a077f180905ce4818cbdacad0cd9fe841',1,'SX126x']]],
+ ['startsignal_723',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]],
+ ['starttransmit_724',['startTransmit',['../class_s_x128x.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'SX128x::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a923654706eff5118ef6e84214e837f27',1,'SX128x::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_x127x.html#a923654706eff5118ef6e84214e837f27',1,'SX127x::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_x126x.html#a923654706eff5118ef6e84214e837f27',1,'SX126x::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_si443x.html#a923654706eff5118ef6e84214e837f27',1,'Si443x::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_r_f69.html#a923654706eff5118ef6e84214e837f27',1,'RF69::startTransmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'nRF24::startTransmit()'],['../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_physical_layer.html#ad59e37ce0606dc8051e40be9d14cfec3',1,'PhysicalLayer::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)'],['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *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#a923654706eff5118ef6e84214e837f27',1,'nRF24::startTransmit()']]],
+ ['stm32wlx_725',['STM32WLx',['../class_s_t_m32_w_lx.html#ac0e8787dbb8e8aaa172b089ace6eaa09',1,'STM32WLx']]],
+ ['sx1231_726',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231']]],
+ ['sx1261_727',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261']]],
+ ['sx1262_728',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262']]],
+ ['sx1268_729',['SX1268',['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268']]],
+ ['sx126x_730',['SX126x',['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x']]],
+ ['sx1272_731',['SX1272',['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272']]],
+ ['sx1273_732',['SX1273',['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273']]],
+ ['sx1276_733',['SX1276',['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276']]],
+ ['sx1277_734',['SX1277',['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277']]],
+ ['sx1278_735',['SX1278',['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278']]],
+ ['sx1279_736',['SX1279',['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279']]],
+ ['sx127x_737',['SX127x',['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x']]],
+ ['sx1280_738',['SX1280',['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280']]],
+ ['sx1281_739',['SX1281',['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281']]],
+ ['sx1282_740',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282']]],
+ ['sx128x_741',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x']]]
];
diff --git a/search/groups_0.js b/search/groups_0.js
index ba59373a..2dc03b5b 100644
--- a/search/groups_0.js
+++ b/search/groups_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['data_20shaping_20filter_20values_20aliases_2e_803',['Data shaping filter values aliases.',['../group__config__shaping.html',1,'']]]
+ ['data_20shaping_20filter_20values_20aliases_2e_814',['Data shaping filter values aliases.',['../group__config__shaping.html',1,'']]]
];
diff --git a/search/groups_1.js b/search/groups_1.js
index bf87054c..29517eb1 100644
--- a/search/groups_1.js
+++ b/search/groups_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['encoding_20type_20aliases_2e_804',['Encoding type aliases.',['../group__config__encoding.html',1,'']]]
+ ['encoding_20type_20aliases_2e_815',['Encoding type aliases.',['../group__config__encoding.html',1,'']]]
];
diff --git a/search/groups_2.js b/search/groups_2.js
index d8f254c9..b1bd9e9d 100644
--- a/search/groups_2.js
+++ b/search/groups_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['mic_2de_20message_20types_2e_805',['Mic-E message types.',['../group__mic__e__message__types.html',1,'']]]
+ ['mic_2de_20message_20types_2e_816',['Mic-E message types.',['../group__mic__e__message__types.html',1,'']]]
];
diff --git a/search/groups_3.js b/search/groups_3.js
index 8b53fc43..fe1707cb 100644
--- a/search/groups_3.js
+++ b/search/groups_3.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['standby_20mode_20type_20aliases_2e_806',['Standby mode type aliases.',['../group__config__standby.html',1,'']]],
- ['status_20codes_807',['Status Codes',['../group__status__codes.html',1,'']]]
+ ['standby_20mode_20type_20aliases_2e_817',['Standby mode type aliases.',['../group__config__standby.html',1,'']]],
+ ['status_20codes_818',['Status Codes',['../group__status__codes.html',1,'']]]
];
diff --git a/search/pages_0.js b/search/pages_0.js
index c7f4f24e..137902b2 100644
--- a/search/pages_0.js
+++ b/search/pages_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['radiolib_20documentation_808',['RadioLib Documentation',['../index.html',1,'']]]
+ ['radiolib_20documentation_819',['RadioLib Documentation',['../index.html',1,'']]]
];
diff --git a/search/pages_1.js b/search/pages_1.js
index a2e1aed6..44a2382d 100644
--- a/search/pages_1.js
+++ b/search/pages_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['todo_20list_809',['Todo List',['../todo.html',1,'']]]
+ ['todo_20list_820',['Todo List',['../todo.html',1,'']]]
];
diff --git a/search/typedefs_0.js b/search/typedefs_0.js
index c582b251..2df9fa30 100644
--- a/search/typedefs_0.js
+++ b/search/typedefs_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['spiparsestatuscb_5ft_795',['SPIparseStatusCb_t',['../class_module.html#a9393088249856eab568126aeb2493e4a',1,'Module']]]
+ ['spiparsestatuscb_5ft_806',['SPIparseStatusCb_t',['../class_module.html#a9393088249856eab568126aeb2493e4a',1,'Module']]]
];
diff --git a/search/variables_0.js b/search/variables_0.js
index 94915e68..58b55937 100644
--- a/search/variables_0.js
+++ b/search/variables_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['baudrate_744',['baudRate',['../struct_bell_modem__t.html#a8e16be8997a90db9a4b2482ec7e93171',1,'BellModem_t']]]
+ ['baudrate_755',['baudRate',['../struct_bell_modem__t.html#a8e16be8997a90db9a4b2482ec7e93171',1,'BellModem_t']]]
];
diff --git a/search/variables_1.js b/search/variables_1.js
index 05ddcf0d..f9bc91d8 100644
--- a/search/variables_1.js
+++ b/search/variables_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['control_745',['control',['../class_a_x25_frame.html#a5b196079b539dc417ca65dd4ad622f8f',1,'AX25Frame']]]
+ ['control_756',['control',['../class_a_x25_frame.html#a5b196079b539dc417ca65dd4ad622f8f',1,'AX25Frame']]]
];
diff --git a/search/variables_10.js b/search/variables_10.js
index 91b88f00..dfa96c97 100644
--- a/search/variables_10.js
+++ b/search/variables_10.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['xtal_794',['XTAL',['../class_s_x126x.html#ada0fe6c3d31885952b439135cf0c18f1',1,'SX126x']]]
+ ['xtal_805',['XTAL',['../class_s_x126x.html#ada0fe6c3d31885952b439135cf0c18f1',1,'SX126x']]]
];
diff --git a/search/variables_2.js b/search/variables_2.js
index 073fb5ac..04be7b34 100644
--- a/search/variables_2.js
+++ b/search/variables_2.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['destcallsign_746',['destCallsign',['../class_a_x25_frame.html#a7fe9805148e2dd46d163cd989473dbff',1,'AX25Frame']]],
- ['destssid_747',['destSSID',['../class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8',1,'AX25Frame']]]
+ ['destcallsign_757',['destCallsign',['../class_a_x25_frame.html#a7fe9805148e2dd46d163cd989473dbff',1,'AX25Frame']]],
+ ['destssid_758',['destSSID',['../class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8',1,'AX25Frame']]]
];
diff --git a/search/variables_3.js b/search/variables_3.js
index ebb7a56a..0550b66c 100644
--- a/search/variables_3.js
+++ b/search/variables_3.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['freq_748',['freq',['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t']]],
- ['freqmark_749',['freqMark',['../struct_bell_modem__t.html#ac57de3660aafb52bcf1b3197380c6ce5',1,'BellModem_t']]],
- ['freqmarkreply_750',['freqMarkReply',['../struct_bell_modem__t.html#aa26b8a2f2ae9722de9a69aab991ce229',1,'BellModem_t']]],
- ['freqspace_751',['freqSpace',['../struct_bell_modem__t.html#a27c1a411df3d887ca0ce246c3b5521f7',1,'BellModem_t']]],
- ['freqspacereply_752',['freqSpaceReply',['../struct_bell_modem__t.html#a40fe8a17a9b4fae3f313fea34077eacc',1,'BellModem_t']]]
+ ['freq_759',['freq',['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t']]],
+ ['freqmark_760',['freqMark',['../struct_bell_modem__t.html#ac57de3660aafb52bcf1b3197380c6ce5',1,'BellModem_t']]],
+ ['freqmarkreply_761',['freqMarkReply',['../struct_bell_modem__t.html#aa26b8a2f2ae9722de9a69aab991ce229',1,'BellModem_t']]],
+ ['freqspace_762',['freqSpace',['../struct_bell_modem__t.html#a27c1a411df3d887ca0ce246c3b5521f7',1,'BellModem_t']]],
+ ['freqspacereply_763',['freqSpaceReply',['../struct_bell_modem__t.html#a40fe8a17a9b4fae3f313fea34077eacc',1,'BellModem_t']]]
];
diff --git a/search/variables_4.js b/search/variables_4.js
index 979617f0..ed7b7343 100644
--- a/search/variables_4.js
+++ b/search/variables_4.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['gpiointerruptfalling_753',['GpioInterruptFalling',['../class_radio_lib_hal.html#a01f73b66a632fc9dba41a23f592e0936',1,'RadioLibHal']]],
- ['gpiointerruptrising_754',['GpioInterruptRising',['../class_radio_lib_hal.html#a7ff9f3c608d68575dfc8962ba3669851',1,'RadioLibHal']]],
- ['gpiolevelhigh_755',['GpioLevelHigh',['../class_radio_lib_hal.html#a409c719ef8a11e8765c90e98ba42316d',1,'RadioLibHal']]],
- ['gpiolevellow_756',['GpioLevelLow',['../class_radio_lib_hal.html#a3cfca7ff9303fe84119ba2f4a4e1bbf4',1,'RadioLibHal']]],
- ['gpiomodeinput_757',['GpioModeInput',['../class_radio_lib_hal.html#a2d197fc1f62be4cd2d2c22be30744769',1,'RadioLibHal']]],
- ['gpiomodeoutput_758',['GpioModeOutput',['../class_radio_lib_hal.html#a18a711dd900a796ccfd7dddbdd2e6afe',1,'RadioLibHal']]]
+ ['gpiointerruptfalling_764',['GpioInterruptFalling',['../class_radio_lib_hal.html#a01f73b66a632fc9dba41a23f592e0936',1,'RadioLibHal']]],
+ ['gpiointerruptrising_765',['GpioInterruptRising',['../class_radio_lib_hal.html#a7ff9f3c608d68575dfc8962ba3669851',1,'RadioLibHal']]],
+ ['gpiolevelhigh_766',['GpioLevelHigh',['../class_radio_lib_hal.html#a409c719ef8a11e8765c90e98ba42316d',1,'RadioLibHal']]],
+ ['gpiolevellow_767',['GpioLevelLow',['../class_radio_lib_hal.html#a3cfca7ff9303fe84119ba2f4a4e1bbf4',1,'RadioLibHal']]],
+ ['gpiomodeinput_768',['GpioModeInput',['../class_radio_lib_hal.html#a2d197fc1f62be4cd2d2c22be30744769',1,'RadioLibHal']]],
+ ['gpiomodeoutput_769',['GpioModeOutput',['../class_radio_lib_hal.html#a18a711dd900a796ccfd7dddbdd2e6afe',1,'RadioLibHal']]]
];
diff --git a/search/variables_5.js b/search/variables_5.js
index 1c69f3a3..bb84000d 100644
--- a/search/variables_5.js
+++ b/search/variables_5.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['hal_759',['hal',['../class_module.html#a4483f0a39a523dd1b37b467d81418f7d',1,'Module']]],
- ['height_760',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]]
+ ['hal_770',['hal',['../class_module.html#a4483f0a39a523dd1b37b467d81418f7d',1,'Module']]],
+ ['height_771',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]]
];
diff --git a/search/variables_6.js b/search/variables_6.js
index 369996e5..54c24a5c 100644
--- a/search/variables_6.js
+++ b/search/variables_6.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['info_761',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]],
- ['infolen_762',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]],
- ['init_763',['init',['../class_radio_lib_c_r_c.html#a579acc51fe7a01b0b9b3f2e0e57b7d5f',1,'RadioLibCRC']]]
+ ['info_772',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]],
+ ['infolen_773',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]],
+ ['init_774',['init',['../class_radio_lib_c_r_c.html#a579acc51fe7a01b0b9b3f2e0e57b7d5f',1,'RadioLibCRC']]]
];
diff --git a/search/variables_7.js b/search/variables_7.js
index 94a53c47..47a320bd 100644
--- a/search/variables_7.js
+++ b/search/variables_7.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['len_764',['len',['../structtone__t.html#a3b0421dd255c7c59552741957a6224ed',1,'tone_t']]]
+ ['len_775',['len',['../structtone__t.html#a3b0421dd255c7c59552741957a6224ed',1,'tone_t']]]
];
diff --git a/search/variables_8.js b/search/variables_8.js
index c7ce6c18..3f4a9a00 100644
--- a/search/variables_8.js
+++ b/search/variables_8.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['numrepeaters_765',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]],
- ['numtones_766',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]]
+ ['numrepeaters_776',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]],
+ ['numtones_777',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]]
];
diff --git a/search/variables_9.js b/search/variables_9.js
index 87226873..1d7e2859 100644
--- a/search/variables_9.js
+++ b/search/variables_9.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['out_767',['out',['../class_radio_lib_c_r_c.html#a46616ef58e9eeeca646de0c9fe681050',1,'RadioLibCRC']]]
+ ['out_778',['out',['../class_radio_lib_c_r_c.html#a46616ef58e9eeeca646de0c9fe681050',1,'RadioLibCRC']]]
];
diff --git a/search/variables_a.js b/search/variables_a.js
index 599633e9..33e03fcb 100644
--- a/search/variables_a.js
+++ b/search/variables_a.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['poly_768',['poly',['../class_radio_lib_c_r_c.html#af3942e08bde9d9d127f735bd10392f6d',1,'RadioLibCRC']]],
- ['protocolid_769',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]]
+ ['poly_779',['poly',['../class_radio_lib_c_r_c.html#af3942e08bde9d9d127f735bd10392f6d',1,'RadioLibCRC']]],
+ ['protocolid_780',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]]
];
diff --git a/search/variables_b.js b/search/variables_b.js
index c56ff5e8..4144929e 100644
--- a/search/variables_b.js
+++ b/search/variables_b.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['rcvseqnumber_770',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]],
- ['refin_771',['refIn',['../class_radio_lib_c_r_c.html#ac65a358753efd05067c19fcf1098ec04',1,'RadioLibCRC']]],
- ['refout_772',['refOut',['../class_radio_lib_c_r_c.html#ab1b5aa578ed5818a7618df8c6cf98087',1,'RadioLibCRC']]],
- ['repeatercallsigns_773',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]],
- ['repeaterssids_774',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]],
- ['reply_775',['reply',['../class_bell_client.html#a9233e10bc794af85e3e86b4ec2a8746d',1,'BellClient']]],
- ['rfswitch_5fmax_5fpins_776',['RFSWITCH_MAX_PINS',['../class_module.html#a0c11551e12579bbabf57b19e12555b3c',1,'Module']]]
+ ['rcvseqnumber_781',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]],
+ ['refin_782',['refIn',['../class_radio_lib_c_r_c.html#ac65a358753efd05067c19fcf1098ec04',1,'RadioLibCRC']]],
+ ['refout_783',['refOut',['../class_radio_lib_c_r_c.html#ab1b5aa578ed5818a7618df8c6cf98087',1,'RadioLibCRC']]],
+ ['repeatercallsigns_784',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]],
+ ['repeaterssids_785',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]],
+ ['reply_786',['reply',['../class_bell_client.html#a9233e10bc794af85e3e86b4ec2a8746d',1,'BellClient']]],
+ ['rfswitch_5fmax_5fpins_787',['RFSWITCH_MAX_PINS',['../class_module.html#a0c11551e12579bbabf57b19e12555b3c',1,'Module']]]
];
diff --git a/search/variables_c.js b/search/variables_c.js
index 20867826..c809a100 100644
--- a/search/variables_c.js
+++ b/search/variables_c.js
@@ -1,16 +1,16 @@
var searchData=
[
- ['scanpixellen_777',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]],
- ['sendseqnumber_778',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]],
- ['size_779',['size',['../class_radio_lib_c_r_c.html#ad09b067c00cda1cc676c13602dee2f5a',1,'RadioLibCRC']]],
- ['spiaddrwidth_780',['SPIaddrWidth',['../class_module.html#ac19a495026aae62f5c2f089aa1b2b57a',1,'Module']]],
- ['spinopcommand_781',['SPInopCommand',['../class_module.html#a466112286d19675ca2dbe481358e4365',1,'Module']]],
- ['spiparsestatuscb_782',['SPIparseStatusCb',['../class_module.html#af6e89e2bc4976e8c5dc42dedda9fa6a2',1,'Module']]],
- ['spireadcommand_783',['SPIreadCommand',['../class_module.html#a849ad85fc1bc3a7130e660c13973ab26',1,'Module']]],
- ['spistatuscommand_784',['SPIstatusCommand',['../class_module.html#a06d8d4257c584b57a529fcc405d87c79',1,'Module']]],
- ['spistreamerror_785',['SPIstreamError',['../class_module.html#a66b06e69d57b97116bed1c6f185381f1',1,'Module']]],
- ['spistreamtype_786',['SPIstreamType',['../class_module.html#a34927454be3a34df8a5a586c46c428af',1,'Module']]],
- ['spiwritecommand_787',['SPIwriteCommand',['../class_module.html#ae89764d15e8df5694a6aec0e18f72d3f',1,'Module']]],
- ['srccallsign_788',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]],
- ['srcssid_789',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]]
+ ['scanpixellen_788',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]],
+ ['sendseqnumber_789',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]],
+ ['size_790',['size',['../class_radio_lib_c_r_c.html#ad09b067c00cda1cc676c13602dee2f5a',1,'RadioLibCRC']]],
+ ['spiaddrwidth_791',['SPIaddrWidth',['../class_module.html#ac19a495026aae62f5c2f089aa1b2b57a',1,'Module']]],
+ ['spinopcommand_792',['SPInopCommand',['../class_module.html#a466112286d19675ca2dbe481358e4365',1,'Module']]],
+ ['spiparsestatuscb_793',['SPIparseStatusCb',['../class_module.html#af6e89e2bc4976e8c5dc42dedda9fa6a2',1,'Module']]],
+ ['spireadcommand_794',['SPIreadCommand',['../class_module.html#a849ad85fc1bc3a7130e660c13973ab26',1,'Module']]],
+ ['spistatuscommand_795',['SPIstatusCommand',['../class_module.html#a06d8d4257c584b57a529fcc405d87c79',1,'Module']]],
+ ['spistreamerror_796',['SPIstreamError',['../class_module.html#a66b06e69d57b97116bed1c6f185381f1',1,'Module']]],
+ ['spistreamtype_797',['SPIstreamType',['../class_module.html#a34927454be3a34df8a5a586c46c428af',1,'Module']]],
+ ['spiwritecommand_798',['SPIwriteCommand',['../class_module.html#ae89764d15e8df5694a6aec0e18f72d3f',1,'Module']]],
+ ['srccallsign_799',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]],
+ ['srcssid_800',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]]
];
diff --git a/search/variables_d.js b/search/variables_d.js
index dd9e4b43..82ef4d25 100644
--- a/search/variables_d.js
+++ b/search/variables_d.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['tones_790',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]],
- ['type_791',['type',['../structtone__t.html#af92472bf087b9a7ec0c350bd503bdd74',1,'tone_t']]]
+ ['tones_801',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]],
+ ['type_802',['type',['../structtone__t.html#af92472bf087b9a7ec0c350bd503bdd74',1,'tone_t']]]
];
diff --git a/search/variables_e.js b/search/variables_e.js
index 9d1141ad..70bfdd48 100644
--- a/search/variables_e.js
+++ b/search/variables_e.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['viscode_792',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]]
+ ['viscode_803',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]]
];
diff --git a/search/variables_f.js b/search/variables_f.js
index 2f0aa91e..6f532622 100644
--- a/search/variables_f.js
+++ b/search/variables_f.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['width_793',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]]
+ ['width_804',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]]
];