diff --git a/_pager_8h_source.html b/_pager_8h_source.html new file mode 100644 index 00000000..7b17e071 --- /dev/null +++ b/_pager_8h_source.html @@ -0,0 +1,228 @@ + + + + + + + +RadioLib: src/protocols/Pager/Pager.h Source File + + + + + + + + + + + + + +
+
+ + + + + + +
+
RadioLib +
+
Universal wireless communication library for Arduino
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
Pager.h
+
+
+
1 #if !defined(_RADIOLIB_PAGER_H) && !defined(RADIOLIB_EXCLUDE_PAGER)
+
2 #define _RADIOLIB_PAGER_H
+
3 
+
4 #include "../../TypeDef.h"
+
5 #include "../PhysicalLayer/PhysicalLayer.h"
+
6 
+
7 // frequency shift in Hz
+
8 #define RADIOLIB_PAGER_FREQ_SHIFT_HZ (4500)
+
9 
+
10 // supported encoding schemes
+
11 #define RADIOLIB_PAGER_ASCII (0)
+
12 #define RADIOLIB_PAGER_BCD (1)
+
13 
+
14 // preamble length in 32-bit code words
+
15 #define RADIOLIB_PAGER_PREAMBLE_LENGTH (18)
+
16 
+
17 // protocol-specified code words
+
18 #define RADIOLIB_PAGER_PREAMBLE_CODE_WORD (0xAAAAAAAA)
+
19 #define RADIOLIB_PAGER_FRAME_SYNC_CODE_WORD (0x7CD215D8)
+
20 #define RADIOLIB_PAGER_IDLE_CODE_WORD (0x7A89C197)
+
21 
+
22 // code word type identification flags
+
23 #define RADIOLIB_PAGER_ADDRESS_CODE_WORD (0UL)
+
24 #define RADIOLIB_PAGER_MESSAGE_CODE_WORD (1UL)
+
25 
+
26 // length of code word in bits
+
27 #define RADIOLIB_PAGER_CODE_WORD_LEN (32)
+
28 
+
29 // number of message bits in a single code block
+
30 #define RADIOLIB_PAGER_ADDRESS_POS (13)
+
31 #define RADIOLIB_PAGER_FUNC_BITS_POS (11)
+
32 #define RADIOLIB_PAGER_MESSAGE_BITS_LENGTH (20)
+
33 #define RADIOLIB_PAGER_MESSAGE_END_POS (11)
+
34 
+
35 // number of code words in a batch
+
36 #define RADIOLIB_PAGER_BATCH_LEN (16)
+
37 
+
38 // mask for address bits in a single code word
+
39 #define RADIOLIB_PAGER_ADDRESS_BITS_MASK (0x7FFFE000UL)
+
40 
+
41 // mask for function bits in a single code word
+
42 #define RADIOLIB_PAGER_FUNCTION_BITS_MASK (0x00001800UL)
+
43 
+
44 // mask for BCH bits in a single code word
+
45 #define RADIOLIB_PAGER_BCH_BITS_MASK (0x000007FFUL)
+
46 
+
47 // message type functional bits
+
48 #define RADIOLIB_PAGER_FUNC_BITS_NUMERIC (0b00UL << RADIOLIB_PAGER_FUNC_BITS_POS)
+
49 #define RADIOLIB_PAGER_FUNC_BITS_TONE (0b01UL << RADIOLIB_PAGER_FUNC_BITS_POS)
+
50 #define RADIOLIB_PAGER_FUNC_BITS_ALPHA (0b11UL << RADIOLIB_PAGER_FUNC_BITS_POS)
+
51 
+
52 // the maximum allowed address (2^22 - 1)
+
53 #define RADIOLIB_PAGER_ADDRESS_MAX (2097151)
+
54 
+
55 // BCH(31, 21) code constants
+
56 #define RADIOLIB_PAGER_BCH_M (5)
+
57 #define RADIOLIB_PAGER_BCH_N (31)
+
58 #define RADIOLIB_PAGER_BCH_K (21)
+
59 #define RADIOLIB_PAGER_BCH_D (5)
+
60 
+
61  // BCH(31, 21) primitive polynomial x^5 + x^2 + 1
+
62 #define RADIOLIB_PAGER_BCH_PRIMITIVE_POLY (0x25)
+
63 
+
69 class PagerClient {
+
70  public:
+
76  explicit PagerClient(PhysicalLayer* phy);
+
77 
+
78  // basic methods
+
79 
+
89  int16_t begin(float base, uint16_t speed);
+
90 
+
98  int16_t sendTone(uint32_t addr);
+
99 
+
111  int16_t transmit(String& str, uint32_t addr, uint8_t encoding = RADIOLIB_PAGER_BCD);
+
112 
+
124  int16_t transmit(const char* str, uint32_t addr, uint8_t encoding = RADIOLIB_PAGER_BCD);
+
125 
+
139  int16_t transmit(uint8_t* data, size_t len, uint32_t addr, uint8_t encoding = RADIOLIB_PAGER_BCD);
+
140 
+
152  int16_t startReceive(RADIOLIB_PIN_TYPE pin, uint32_t addr, uint32_t mask = 0xFFFFF);
+
153 
+
159  size_t available();
+
160 
+
171  int16_t readData(String& str, size_t len = 0);
+
172 
+
184  int16_t readData(uint8_t* data, size_t* len);
+
185 
+
186 #if !defined(RADIOLIB_GODMODE)
+
187  private:
+
188 #endif
+
189  PhysicalLayer* _phy;
+
190 
+
191  float _base;
+
192  float _speed;
+
193  uint32_t _baseRaw;
+
194  uint16_t _shift;
+
195  uint16_t _bitDuration;
+
196  uint32_t _readBatchPos;
+
197  uint32_t _filterAddr;
+
198  uint32_t _filterMask;
+
199 
+
200  // BCH encoder
+
201  int32_t _bchAlphaTo[RADIOLIB_PAGER_BCH_N + 1];
+
202  int32_t _bchIndexOf[RADIOLIB_PAGER_BCH_N + 1];
+
203  int32_t _bchG[RADIOLIB_PAGER_BCH_N - RADIOLIB_PAGER_BCH_K + 1];
+
204 
+
205  void write(uint32_t* data, size_t len);
+
206  void write(uint32_t codeWord);
+
207  uint32_t read();
+
208 
+
209  uint8_t encodeBCD(char c);
+
210  char decodeBCD(uint8_t b);
+
211 
+
212  void encoderInit();
+
213  uint32_t encodeBCH(uint32_t data);
+
214 };
+
215 
+
216 #endif
+
+
+
PagerClient::startReceive
int16_t startReceive(RADIOLIB_PIN_TYPE pin, uint32_t addr, uint32_t mask=0xFFFFF)
Start reception of POCSAG packets.
Definition: Pager.cpp:210
+
PagerClient::begin
int16_t begin(float base, uint16_t speed)
Initialization method.
Definition: Pager.cpp:18
+
PagerClient::transmit
int16_t transmit(String &str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)
Arduino String transmit method.
Definition: Pager.cpp:44
+
PagerClient::PagerClient
PagerClient(PhysicalLayer *phy)
Default constructor.
Definition: Pager.cpp:13
+
PagerClient::readData
int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: Pager.cpp:240
+
PagerClient
Client for Pager communication.
Definition: Pager.h:69
+
PagerClient::sendTone
int16_t sendTone(uint32_t addr)
Method to send a tone-only alert to a destination pager.
Definition: Pager.cpp:40
+
PhysicalLayer
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:14
+
PagerClient::available
size_t available()
Get the number of POCSAG batches available in buffer. Limited by the size of direct mode buffer!
Definition: Pager.cpp:236
+ + + + diff --git a/_physical_layer_8h_source.html b/_physical_layer_8h_source.html index e7fee3b6..40bc885e 100644 --- a/_physical_layer_8h_source.html +++ b/_physical_layer_8h_source.html @@ -133,80 +133,87 @@ $(document).ready(function(){initNavTree('_physical_layer_8h_source.html',''); i
190 
191  // configuration methods
192 
-
201  virtual int16_t setFrequencyDeviation(float freqDev) = 0;
-
202 
-
210  virtual int16_t setDataShaping(uint8_t sh) = 0;
-
211 
-
219  virtual int16_t setEncoding(uint8_t encoding) = 0;
+
200  virtual int16_t setFrequency(float freq) = 0;
+
201 
+
209  virtual int16_t setBitRate(float br) = 0;
+
210 
+
219  virtual int16_t setFrequencyDeviation(float freqDev) = 0;
220 
-
226  float getFreqStep() const;
-
227 
-
235  virtual size_t getPacketLength(bool update = true) = 0;
-
236 
-
244  int32_t random(int32_t max);
+
228  virtual int16_t setDataShaping(uint8_t sh) = 0;
+
229 
+
237  virtual int16_t setEncoding(uint8_t encoding) = 0;
+
238 
+
244  float getFreqStep() const;
245 
-
255  int32_t random(int32_t min, int32_t max);
-
256 
-
262  virtual uint8_t randomByte() = 0;
+
253  virtual size_t getPacketLength(bool update = true) = 0;
+
254 
+
262  int32_t random(int32_t max);
263 
-
269  int16_t startDirect();
-
270 
-
271  #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
-
272 
-
281  int16_t setDirectSyncWord(uint32_t syncWord, uint8_t len);
-
282 
-
288  virtual void setDirectAction(void (*func)(void)) = 0;
-
289 
-
295  virtual void readBit(RADIOLIB_PIN_TYPE pin) = 0;
-
296 
-
302  int16_t available();
-
303 
-
309  uint8_t read();
-
310  #endif
-
311 
-
321  virtual int16_t setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value);
-
322 
-
323 #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
-
324  protected:
-
325  void updateDirectBuffer(uint8_t bit);
-
326 #endif
-
327 
-
328 #if !defined(RADIOLIB_GODMODE)
-
329  private:
-
330 #endif
-
331  float _freqStep;
-
332  size_t _maxPacketLength;
-
333 
-
334  #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
-
335  uint8_t _bufferBitPos;
-
336  uint8_t _bufferWritePos;
-
337  uint8_t _bufferReadPos;
-
338  uint8_t _buffer[RADIOLIB_STATIC_ARRAY_SIZE];
-
339  uint32_t _syncBuffer;
-
340  uint32_t _directSyncWord;
-
341  uint8_t _directSyncWordLen;
-
342  uint32_t _directSyncWordMask;
-
343  bool _gotSync;
-
344  #endif
+
273  int32_t random(int32_t min, int32_t max);
+
274 
+
280  virtual uint8_t randomByte() = 0;
+
281 
+
287  int16_t startDirect();
+
288 
+
289  #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
+
290 
+
299  int16_t setDirectSyncWord(uint32_t syncWord, uint8_t len);
+
300 
+
306  virtual void setDirectAction(void (*func)(void)) = 0;
+
307 
+
313  virtual void readBit(RADIOLIB_PIN_TYPE pin) = 0;
+
314 
+
320  int16_t available();
+
321 
+
327  uint8_t read();
+
328  #endif
+
329 
+
339  virtual int16_t setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value);
+
340 
+
341 #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
+
342  protected:
+
343  void updateDirectBuffer(uint8_t bit);
+
344 #endif
345 
-
346  virtual Module* getMod() = 0;
-
347 
-
348  // allow specific classes access the private getMod method
-
349  friend class AFSKClient;
-
350  friend class RTTYClient;
-
351  friend class MorseClient;
-
352  friend class HellClient;
-
353  friend class SSTVClient;
-
354  friend class AX25Client;
-
355  friend class FSK4Client;
-
356 };
-
357 
-
358 #endif
+
346 #if !defined(RADIOLIB_GODMODE)
+
347  private:
+
348 #endif
+
349  float _freqStep;
+
350  size_t _maxPacketLength;
+
351 
+
352  #if !defined(RADIOLIB_EXCLUDE_DIRECT_RECEIVE)
+
353  uint8_t _bufferBitPos;
+
354  uint8_t _bufferWritePos;
+
355  uint8_t _bufferReadPos;
+
356  uint8_t _buffer[RADIOLIB_STATIC_ARRAY_SIZE];
+
357  uint32_t _syncBuffer;
+
358  uint32_t _directSyncWord;
+
359  uint8_t _directSyncWordLen;
+
360  uint32_t _directSyncWordMask;
+
361  bool _gotSync;
+
362  #endif
+
363 
+
364  virtual Module* getMod() = 0;
+
365 
+
366  // allow specific classes access the private getMod method
+
367  friend class AFSKClient;
+
368  friend class RTTYClient;
+
369  friend class MorseClient;
+
370  friend class HellClient;
+
371  friend class SSTVClient;
+
372  friend class AX25Client;
+
373  friend class FSK4Client;
+
374  friend class PagerClient;
+
375 };
+
376 
+
377 #endif
PhysicalLayer::transmit
int16_t transmit(__FlashStringHelper *fstr, uint8_t addr=0)
Arduino Flash String transmit method.
Definition: PhysicalLayer.cpp:12
PhysicalLayer::standby
virtual int16_t standby()=0
Sets module to standby.
+
PhysicalLayer::setBitRate
virtual int16_t setBitRate(float br)=0
Sets FSK bit rate. Allowed values range from 1.2 to 300 kbps. Only available in FSK mode.
PhysicalLayer::setFrequencyDeviation
virtual int16_t setFrequencyDeviation(float freqDev)=0
Sets FSK frequency deviation from carrier frequency. Allowed values depend on bit rate setting and mu...
+
PhysicalLayer::setFrequency
virtual int16_t setFrequency(float freq)=0
Sets carrier frequency. Allowed values range from 137.0 MHz to 525.0 MHz.
HellClient
Client for Hellschreiber transmissions.
Definition: Hellschreiber.h:89
PhysicalLayer::setEncoding
virtual int16_t setEncoding(uint8_t encoding)=0
Sets FSK data encoding. Only available in FSK mode. Must be implemented in module class.
PhysicalLayer::transmitDirect
virtual int16_t transmitDirect(uint32_t frf=0)=0
Enables direct transmission mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module ...
@@ -221,6 +228,7 @@ $(document).ready(function(){initNavTree('_physical_layer_8h_source.html',''); i
PhysicalLayer::finishTransmit
virtual int16_t finishTransmit()=0
Clean up after transmission is done.
PhysicalLayer::PhysicalLayer
PhysicalLayer(float freqStep, size_t maxPacketLength)
Default constructor.
Definition: PhysicalLayer.cpp:3
PhysicalLayer::startDirect
int16_t startDirect()
Configure module parameters for direct modes. Must be called prior to "ham" modes like RTTY or AX....
Definition: PhysicalLayer.cpp:179
+
PagerClient
Client for Pager communication.
Definition: Pager.h:69
MorseClient
Client for Morse Code communication. The public interface is the same as Arduino Serial.
Definition: Morse.h:93
PhysicalLayer::randomByte
virtual uint8_t randomByte()=0
Get one truly random byte from RSSI noise. Must be implemented in module class.
PhysicalLayer::random
int32_t random(int32_t max)
Get truly random number in range 0 - max.
Definition: PhysicalLayer.cpp:151
diff --git a/_radio_lib_8h_source.html b/_radio_lib_8h_source.html index 787bb376..5f380fa9 100644 --- a/_radio_lib_8h_source.html +++ b/_radio_lib_8h_source.html @@ -141,45 +141,46 @@ $(document).ready(function(){initNavTree('_radio_lib_8h_source.html',''); initRe
87 #include "protocols/AX25/AX25.h"
88 #include "protocols/Hellschreiber/Hellschreiber.h"
89 #include "protocols/Morse/Morse.h"
-
90 #include "protocols/RTTY/RTTY.h"
-
91 #include "protocols/SSTV/SSTV.h"
-
92 #include "protocols/FSK4/FSK4.h"
-
93 #include "protocols/APRS/APRS.h"
-
94 
-
95 // only create Radio class when using RadioShield
-
96 #if defined(RADIOLIB_RADIOSHIELD)
-
97 
-
98 // RadioShield pin definitions
-
99 #define RADIOSHIELD_CS_A 10
-
100 #define RADIOSHIELD_IRQ_A 2
-
101 #define RADIOSHIELD_RST_A 9
-
102 #define RADIOSHIELD_GPIO_A 8
-
103 #define RADIOSHIELD_CS_B 5
-
104 #define RADIOSHIELD_IRQ_B 3
-
105 #define RADIOSHIELD_RST_B 7
-
106 #define RADIOSHIELD_GPIO_B 6
-
107 
-
114 class Radio {
-
115  public:
-
116 
-
117  Module* ModuleA;
-
118  Module* ModuleB;
-
119 
-
123  Radio() {
-
124  ModuleA = new Module(RADIOSHIELD_CS_A, RADIOSHIELD_IRQ_A, RADIOSHIELD_RST_A, RADIOSHIELD_GPIO_A);
-
125  ModuleB = new Module(RADIOSHIELD_CS_B, RADIOSHIELD_IRQ_B, RADIOSHIELD_RST_B, RADIOSHIELD_GPIO_B);
-
126  }
-
127 
-
128 #if defined(RADIOLIB_GODMODE)
-
129  private:
-
130 #endif
-
131 
-
132 };
-
133 
-
134 Radio RadioShield;
-
135 #endif
-
136 
-
137 #endif
+
90 #include "protocols/Pager/Pager.h"
+
91 #include "protocols/RTTY/RTTY.h"
+
92 #include "protocols/SSTV/SSTV.h"
+
93 #include "protocols/FSK4/FSK4.h"
+
94 #include "protocols/APRS/APRS.h"
+
95 
+
96 // only create Radio class when using RadioShield
+
97 #if defined(RADIOLIB_RADIOSHIELD)
+
98 
+
99 // RadioShield pin definitions
+
100 #define RADIOSHIELD_CS_A 10
+
101 #define RADIOSHIELD_IRQ_A 2
+
102 #define RADIOSHIELD_RST_A 9
+
103 #define RADIOSHIELD_GPIO_A 8
+
104 #define RADIOSHIELD_CS_B 5
+
105 #define RADIOSHIELD_IRQ_B 3
+
106 #define RADIOSHIELD_RST_B 7
+
107 #define RADIOSHIELD_GPIO_B 6
+
108 
+
115 class Radio {
+
116  public:
+
117 
+
118  Module* ModuleA;
+
119  Module* ModuleB;
+
120 
+
124  Radio() {
+
125  ModuleA = new Module(RADIOSHIELD_CS_A, RADIOSHIELD_IRQ_A, RADIOSHIELD_RST_A, RADIOSHIELD_GPIO_A);
+
126  ModuleB = new Module(RADIOSHIELD_CS_B, RADIOSHIELD_IRQ_B, RADIOSHIELD_RST_B, RADIOSHIELD_GPIO_B);
+
127  }
+
128 
+
129 #if defined(RADIOLIB_GODMODE)
+
130  private:
+
131 #endif
+
132 
+
133 };
+
134 
+
135 Radio RadioShield;
+
136 #endif
+
137 
+
138 #endif
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:16
diff --git a/_type_def_8h_source.html b/_type_def_8h_source.html index ca7e6398..4d85e239 100644 --- a/_type_def_8h_source.html +++ b/_type_def_8h_source.html @@ -247,7 +247,13 @@ $(document).ready(function(){initNavTree('_type_def_8h_source.html',''); initRes
402 
406 #define RADIOLIB_ERR_RANGING_TIMEOUT (-901)
407 
-
412 #endif
+
408 // Pager-specific status codes
+
409 
+
413 #define RADIOLIB_ERR_INVALID_PAYLOAD (-1001)
+
414 
+
418 #define RADIOLIB_ERR_ADDRESS_NOT_FOUND (-1002)
+
419 
+
424 #endif
diff --git a/annotated.html b/annotated.html index 8a5c6cd1..b5fd6362 100644 --- a/annotated.html +++ b/annotated.html @@ -100,38 +100,39 @@ $(document).ready(function(){initNavTree('annotated.html',''); initResizable();  CModuleImplements all common low-level methods to control the wireless module. Every module class contains one private instance of this class  CMorseClientClient for Morse Code communication. The public interface is the same as Arduino Serial  CnRF24Control class for nRF24 module - CPhysicalLayerProvides 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 - CRF69Control class for RF69 module. Also serves as base class for SX1231 - CRFM22Only exists as alias for Si4432, since there seems to be no difference between RFM22 and Si4432 modules - CRFM23Only exists as alias for Si4431, since there seems to be no difference between RFM23 and Si4431 modules - CRFM95Derived class for RFM95 modules. Overrides some methods from SX1278 due to different parameter ranges - CRFM96Derived class for RFM96 modules. Overrides some methods from SX1278 due to different parameter ranges - CRFM97Derived class for RFM97 modules. Overrides some methods from RFM95 due to different parameter ranges - CRFM98Only exists as alias for RFM96, since there seems to be no difference between RFM96 and RFM98 modules - CRTTYClientClient for RTTY communication. The public interface is the same as Arduino Serial - CSi4430Derived class for Si4430 modules - CSi4431Derived class for Si4431 modules - CSi4432Derived class for Si4432 modules - CSi443xBase 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 - CSSTVClientClient for SSTV transmissions - CSSTVMode_tStructure to save data about supported SSTV modes - CSX1231Control class for SX1231 module. Overrides some methods from RF69 due to different register values - CSX1261Derived class for SX1261 modules - CSX1262Derived class for SX1262 modules - CSX1268Derived class for SX1268 modules - CSX126xBase 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 - CSX1272Derived class for SX1272 modules. Also used as base class for SX1273. Both modules use the same basic hardware and only differ in parameter ranges - CSX1273Derived class for SX1273 modules. Overrides some methods from SX1272 due to different parameter ranges - CSX1276Derived class for SX1276 modules. Overrides some methods from SX1278 due to different parameter ranges - CSX1277Derived class for SX1277 modules. Overrides some methods from SX1278 due to different parameter ranges - CSX1278Derived 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) - CSX1279Derived class for SX1279 modules. Overrides some methods from SX1278 due to different parameter ranges - CSX127xBase 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 - CSX1280Derived class for SX1280 modules - CSX1281Derived class for SX1281 modules - CSX1282Derived class for SX1282 modules - CSX128xBase 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 - Ctone_tStructure to save data about tone + CPagerClientClient for Pager communication + CPhysicalLayerProvides 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 + CRF69Control class for RF69 module. Also serves as base class for SX1231 + CRFM22Only exists as alias for Si4432, since there seems to be no difference between RFM22 and Si4432 modules + CRFM23Only exists as alias for Si4431, since there seems to be no difference between RFM23 and Si4431 modules + CRFM95Derived class for RFM95 modules. Overrides some methods from SX1278 due to different parameter ranges + CRFM96Derived class for RFM96 modules. Overrides some methods from SX1278 due to different parameter ranges + CRFM97Derived class for RFM97 modules. Overrides some methods from RFM95 due to different parameter ranges + CRFM98Only exists as alias for RFM96, since there seems to be no difference between RFM96 and RFM98 modules + CRTTYClientClient for RTTY communication. The public interface is the same as Arduino Serial + CSi4430Derived class for Si4430 modules + CSi4431Derived class for Si4431 modules + CSi4432Derived class for Si4432 modules + CSi443xBase 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 + CSSTVClientClient for SSTV transmissions + CSSTVMode_tStructure to save data about supported SSTV modes + CSX1231Control class for SX1231 module. Overrides some methods from RF69 due to different register values + CSX1261Derived class for SX1261 modules + CSX1262Derived class for SX1262 modules + CSX1268Derived class for SX1268 modules + CSX126xBase 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 + CSX1272Derived class for SX1272 modules. Also used as base class for SX1273. Both modules use the same basic hardware and only differ in parameter ranges + CSX1273Derived class for SX1273 modules. Overrides some methods from SX1272 due to different parameter ranges + CSX1276Derived class for SX1276 modules. Overrides some methods from SX1278 due to different parameter ranges + CSX1277Derived class for SX1277 modules. Overrides some methods from SX1278 due to different parameter ranges + CSX1278Derived 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) + CSX1279Derived class for SX1279 modules. Overrides some methods from SX1278 due to different parameter ranges + CSX127xBase 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 + CSX1280Derived class for SX1280 modules + CSX1281Derived class for SX1281 modules + CSX1282Derived class for SX1282 modules + CSX128xBase 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 + Ctone_tStructure to save data about tone diff --git a/annotated_dup.js b/annotated_dup.js index 6dd92258..9e5c5a7b 100644 --- a/annotated_dup.js +++ b/annotated_dup.js @@ -12,6 +12,7 @@ var annotated_dup = [ "Module", "class_module.html", "class_module" ], [ "MorseClient", "class_morse_client.html", "class_morse_client" ], [ "nRF24", "classn_r_f24.html", "classn_r_f24" ], + [ "PagerClient", "class_pager_client.html", "class_pager_client" ], [ "PhysicalLayer", "class_physical_layer.html", "class_physical_layer" ], [ "RF69", "class_r_f69.html", "class_r_f69" ], [ "RFM22", "class_r_f_m22.html", null ], diff --git a/class_c_c1101-members.html b/class_c_c1101-members.html index 5048d4a1..03736244 100644 --- a/class_c_c1101-members.html +++ b/class_c_c1101-members.html @@ -123,14 +123,14 @@ $(document).ready(function(){initNavTree('class_c_c1101.html',''); initResizable PhysicalLayer::receive(String &str, size_t len=0)PhysicalLayer receiveDirect() overrideCC1101virtual receiveDirectAsync()CC1101 - setBitRate(float br)CC1101 + setBitRate(float br)CC1101virtual setCrcFiltering(bool crcOn=true)CC1101 setDataShaping(uint8_t sh) overrideCC1101virtual setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)CC1101virtual setDirectAction(void(*func)(void))CC1101virtual setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer setEncoding(uint8_t encoding) overrideCC1101virtual - setFrequency(float freq)CC1101 + setFrequency(float freq)CC1101virtual setFrequencyDeviation(float freqDev) overrideCC1101virtual setGdo0Action(void(*func)(void), RADIOLIB_INTERRUPT_STATUS dir=RISING)CC1101 setGdo2Action(void(*func)(void), RADIOLIB_INTERRUPT_STATUS dir=FALLING)CC1101 diff --git a/class_c_c1101.html b/class_c_c1101.html index 6a83b5e2..265e8836 100644 --- a/class_c_c1101.html +++ b/class_c_c1101.html @@ -1002,6 +1002,9 @@ void 
+ + + + + + diff --git a/class_pager_client-members.html b/class_pager_client-members.html new file mode 100644 index 00000000..a9716440 --- /dev/null +++ b/class_pager_client-members.html @@ -0,0 +1,113 @@ + + + + + + + +RadioLib: Member List + + + + + + + + + + + + + +
+
+
@@ -1011,6 +1014,11 @@ void  + +
int16_t CC1101::setBitRate +virtual

Sets bit rate. Allowed values range from 0.025 to 600.0 kbps.

@@ -1022,6 +1030,8 @@ void 
Returns
Status Codes
+

Implements PhysicalLayer.

+ @@ -1214,6 +1224,9 @@ void 
+ + + - + @@ -145,46 +145,47 @@ $(document).ready(function(){initNavTree('class_l_l_c_c68.html',''); initResizab - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
@@ -1223,6 +1236,11 @@ void  + +
int16_t CC1101::setFrequency +virtual

Sets carrier frequency. Allowed values are in bands 300.0 to 348.0 MHz, 387.0 to 464.0 MHz and 779.0 to 928.0 MHz.

@@ -1234,6 +1252,8 @@ void 
Returns
Status Codes
+

Implements PhysicalLayer.

+ diff --git a/class_l_l_c_c68-members.html b/class_l_l_c_c68-members.html index e56de757..1f6c8610 100644 --- a/class_l_l_c_c68-members.html +++ b/class_l_l_c_c68-members.html @@ -132,7 +132,7 @@ $(document).ready(function(){initNavTree('class_l_l_c_c68.html',''); initResizab
reset(bool verify=true)SX126x
scanChannel()SX126x
setBandwidth(float bw)LLCC68
setBitRate(float br)SX126x
setBitRate(float br)SX126xvirtual
setBroadcastAddress(uint8_t broadAddr)SX126x
setCodingRate(uint8_t cr)SX126x
setCRC(uint8_t len, uint16_t initial=0x1D0F, uint16_t polynomial=0x1021, bool inverted=true)SX126x
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideSX126xvirtual
setFrequency(float freq, bool calibrate=true)SX1262
setFrequencyDeviation(float freqDev) overrideSX126xvirtual
setNodeAddress(uint8_t nodeAddr)SX126x
setOutputPower(int8_t power)SX1262
setPreambleLength(uint16_t preambleLength)SX126x
setRegulatorDCDC()SX126x
setRegulatorLDO()SX126x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX126x
setRxBandwidth(float rxBw)SX126x
setSpreadingFactor(uint8_t sf)LLCC68
setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x
setSyncWord(uint8_t *syncWord, uint8_t len)SX126x
setTCXO(float voltage, uint32_t delay=5000)SX126x
setWhitening(bool enabled, uint16_t initial=0x0100)SX126x
sleep(bool retainConfig=true)SX126x
standby() overrideSX126xvirtual
standby(uint8_t mode)SX126x
startChannelScan()SX126x
startDirect()PhysicalLayer
startReceive(uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF)SX126x
startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod)SX126x
startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual
startTransmit(String &str, uint8_t addr=0)SX126x
startTransmit(const char *str, uint8_t addr=0)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX126xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX126x
transmit(String &str, uint8_t addr=0)SX126x
transmit(const char *str, uint8_t addr=0)SX126x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX126xvirtual
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
SX126x::setFrequency(float freq)=0PhysicalLayerpure virtual
setFrequencyDeviation(float freqDev) overrideSX126xvirtual
setNodeAddress(uint8_t nodeAddr)SX126x
setOutputPower(int8_t power)SX1262
setPreambleLength(uint16_t preambleLength)SX126x
setRegulatorDCDC()SX126x
setRegulatorLDO()SX126x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX126x
setRxBandwidth(float rxBw)SX126x
setSpreadingFactor(uint8_t sf)LLCC68
setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x
setSyncWord(uint8_t *syncWord, uint8_t len)SX126x
setTCXO(float voltage, uint32_t delay=5000)SX126x
setWhitening(bool enabled, uint16_t initial=0x0100)SX126x
sleep(bool retainConfig=true)SX126x
standby() overrideSX126xvirtual
standby(uint8_t mode)SX126x
startChannelScan()SX126x
startDirect()PhysicalLayer
startReceive(uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF)SX126x
startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod)SX126x
startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual
startTransmit(String &str, uint8_t addr=0)SX126x
startTransmit(const char *str, uint8_t addr=0)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX126xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX126x
transmit(String &str, uint8_t addr=0)SX126x
transmit(const char *str, uint8_t addr=0)SX126x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX126xvirtual
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
diff --git a/class_l_l_c_c68.html b/class_l_l_c_c68.html index 408a0ed6..c5ad335a 100644 --- a/class_l_l_c_c68.html +++ b/class_l_l_c_c68.html @@ -385,6 +385,9 @@ void 
int16_t readData (String &str, size_t len=0)
 Reads data that was received after calling startReceive method. More...
 
virtual int16_t setFrequency (float freq)=0
 Sets carrier frequency. Allowed values range from 137.0 MHz to 525.0 MHz. More...
 
float getFreqStep () const
 Gets the module frequency step size that was set in constructor. More...
 
+ + + + + +
+
RadioLib +
+
Universal wireless communication library for Arduino
+
+
+ + + + + + + + +
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
PagerClient Member List
+
+
+ +

This is the complete list of members for PagerClient, including all inherited members.

+ + + + + + + + + + + +
available()PagerClient
begin(float base, uint16_t speed)PagerClient
PagerClient(PhysicalLayer *phy)PagerClientexplicit
readData(String &str, size_t len=0)PagerClient
readData(uint8_t *data, size_t *len)PagerClient
sendTone(uint32_t addr)PagerClient
startReceive(RADIOLIB_PIN_TYPE pin, uint32_t addr, uint32_t mask=0xFFFFF)PagerClient
transmit(String &str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)PagerClient
transmit(const char *str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)PagerClient
transmit(uint8_t *data, size_t len, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)PagerClient
+
+ + + + diff --git a/class_pager_client.html b/class_pager_client.html new file mode 100644 index 00000000..d8be007b --- /dev/null +++ b/class_pager_client.html @@ -0,0 +1,533 @@ + + + + + + + +RadioLib: PagerClient Class Reference + + + + + + + + + + + + + +
+
+ + + + + + +
+
RadioLib +
+
Universal wireless communication library for Arduino
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
PagerClient Class Reference
+
+
+ +

Client for Pager communication. + More...

+ +

#include <Pager.h>

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 PagerClient (PhysicalLayer *phy)
 Default constructor. More...
 
int16_t begin (float base, uint16_t speed)
 Initialization method. More...
 
int16_t sendTone (uint32_t addr)
 Method to send a tone-only alert to a destination pager. More...
 
int16_t transmit (String &str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)
 Arduino String transmit method. More...
 
int16_t transmit (const char *str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)
 C-string transmit method. More...
 
int16_t transmit (uint8_t *data, size_t len, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)
 Binary transmit method. Will transmit arbitrary binary data. More...
 
int16_t startReceive (RADIOLIB_PIN_TYPE pin, uint32_t addr, uint32_t mask=0xFFFFF)
 Start reception of POCSAG packets. More...
 
size_t available ()
 Get the number of POCSAG batches available in buffer. Limited by the size of direct mode buffer! More...
 
int16_t readData (String &str, size_t len=0)
 Reads data that was received after calling startReceive method. More...
 
int16_t readData (uint8_t *data, size_t *len)
 Reads data that was received after calling startReceive method. More...
 
+

Detailed Description

+

Client for Pager communication.

+

Constructor & Destructor Documentation

+ +

◆ PagerClient()

+ +
+
+ + + + + +
+ + + + + + + + +
PagerClient::PagerClient (PhysicalLayerphy)
+
+explicit
+
+ +

Default constructor.

+
Parameters
+ + +
phyPointer to the wireless module providing PhysicalLayer communication.
+
+
+ +
+
+

Member Function Documentation

+ +

◆ available()

+ +
+
+ + + + + + + +
size_t PagerClient::available ()
+
+ +

Get the number of POCSAG batches available in buffer. Limited by the size of direct mode buffer!

+
Returns
Number of available batches.
+ +
+
+ +

◆ begin()

+ +
+
+ + + + + + + + + + + + + + + + + + +
int16_t PagerClient::begin (float base,
uint16_t speed 
)
+
+ +

Initialization method.

+
Parameters
+ + + +
baseBase (center) frequency to be used in MHz.
speedBit rate to use in bps. Common POCSAG decoders can receive 512, 1200 and 2400 bps.
+
+
+
Returns
Status Codes
+ +
+
+ +

◆ readData() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
int16_t PagerClient::readData (String & str,
size_t len = 0 
)
+
+ +

Reads data that was received after calling startReceive method.

+
Parameters
+ + + +
strAddress of Arduino String to save the received data.
lenExpected number of characters in the message. When set to 0, the message length will be retreived automatically. When more bytes than received are requested, only the number of bytes requested will be returned.
+
+
+
Returns
Status Codes
+ +
+
+ +

◆ readData() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
int16_t PagerClient::readData (uint8_t * data,
size_t * len 
)
+
+ +

Reads data that was received after calling startReceive method.

+
Parameters
+ + + +
dataPointer to array to save the received message.
lenPointer to variable holding the number of bytes that will be read. When set to 0, the packet length will be retreived automatically. When more bytes than received are requested, only the number of bytes requested will be returned. Upon completion, the number of bytes received will be written to this variable.
+
+
+
Returns
Status Codes
+ +
+
+ +

◆ sendTone()

+ +
+
+ + + + + + + + +
int16_t PagerClient::sendTone (uint32_t addr)
+
+ +

Method to send a tone-only alert to a destination pager.

+
Parameters
+ + +
addrAddress of the destination pager. Allowed values are 0 to 2097151 - values above 2000000 are reserved.
+
+
+
Returns
Status Codes
+ +
+
+ +

◆ startReceive()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
int16_t PagerClient::startReceive (RADIOLIB_PIN_TYPE pin,
uint32_t addr,
uint32_t mask = 0xFFFFF 
)
+
+ +

Start reception of POCSAG packets.

+
Parameters
+ + + + +
pinPin to receive digital data on (e.g., DIO2 for SX127x).
addrAddress of this "pager". Allowed values are 0 to 2097151 - values above 2000000 are reserved.
maskAddress filter mask - set individual bits to enable or disable match on that bit of the address.¨Set to 0xFFFFF (all bits checked) by default.
+
+
+
Returns
Status Codes
+ +
+
+ +

◆ transmit() [1/3]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
int16_t PagerClient::transmit (const char * str,
uint32_t addr,
uint8_t encoding = RADIOLIB_PAGER_BCD 
)
+
+ +

C-string transmit method.

+
Parameters
+ + + + +
strC-string that will be transmitted.
addrAddress of the destination pager. Allowed values are 0 to 2097151 - values above 2000000 are reserved.
encodingEncoding to be used (BCD or ASCII). Defaults to RADIOLIB_PAGER_BCD.
+
+
+
Returns
Status Codes
+ +
+
+ +

◆ transmit() [2/3]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
int16_t PagerClient::transmit (String & str,
uint32_t addr,
uint8_t encoding = RADIOLIB_PAGER_BCD 
)
+
+ +

Arduino String transmit method.

+
Parameters
+ + + + +
strAddress of Arduino string that will be transmitted.
addrAddress of the destination pager. Allowed values are 0 to 2097151 - values above 2000000 are reserved.
encodingEncoding to be used (BCD or ASCII). Defaults to RADIOLIB_PAGER_BCD.
+
+
+
Returns
Status Codes
+ +
+
+ +

◆ transmit() [3/3]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
int16_t PagerClient::transmit (uint8_t * data,
size_t len,
uint32_t addr,
uint8_t encoding = RADIOLIB_PAGER_BCD 
)
+
+ +

Binary transmit method. Will transmit arbitrary binary data.

+
Parameters
+ + + + + +
dataBinary data that will be transmitted.
lenLength of binary data to transmit (in bytes).
addrAddress of the destination pager. Allowed values are 0 to 2097151 - values above 2000000 are reserved.
encodingEncoding to be used (BCD or ASCII). Defaults to RADIOLIB_PAGER_BCD.
+
+
+
Returns
Status Codes
+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/class_pager_client.js b/class_pager_client.js new file mode 100644 index 00000000..4e34d9d0 --- /dev/null +++ b/class_pager_client.js @@ -0,0 +1,13 @@ +var class_pager_client = +[ + [ "PagerClient", "class_pager_client.html#a9f978120467b13104fb356e9b7d855ec", null ], + [ "available", "class_pager_client.html#aec073fa9e5adcff9730482d9583715e9", null ], + [ "begin", "class_pager_client.html#afe4c4806471001c01b35bce0f1fe4e58", null ], + [ "readData", "class_pager_client.html#a947e37884f59c9e1a6b7d5dd817316fe", null ], + [ "readData", "class_pager_client.html#a158d97e372ade18db408484c8cb35428", null ], + [ "sendTone", "class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111", null ], + [ "startReceive", "class_pager_client.html#ad6f4f034b71311144f76b629a8ef8f8d", null ], + [ "transmit", "class_pager_client.html#aab6a8977f89d43620b98bcedf5a47dbd", null ], + [ "transmit", "class_pager_client.html#a897f990002a4a2196fcdb31c547e0648", null ], + [ "transmit", "class_pager_client.html#a77aafe7c86e6e1e4e22990be4e7f090b", null ] +]; \ No newline at end of file diff --git a/class_physical_layer-members.html b/class_physical_layer-members.html index a74423ab..b49b78dd 100644 --- a/class_physical_layer-members.html +++ b/class_physical_layer-members.html @@ -98,35 +98,38 @@ $(document).ready(function(){initNavTree('class_physical_layer.html',''); initRe getPacketLength(bool update=true)=0PhysicalLayerpure virtual HellClient (defined in PhysicalLayer)PhysicalLayerfriend MorseClient (defined in PhysicalLayer)PhysicalLayerfriend - PhysicalLayer(float freqStep, size_t maxPacketLength)PhysicalLayer - random(int32_t max)PhysicalLayer - random(int32_t min, int32_t max)PhysicalLayer - randomByte()=0PhysicalLayerpure virtual - read()PhysicalLayer - readBit(RADIOLIB_PIN_TYPE pin)=0PhysicalLayerpure virtual - readData(String &str, size_t len=0)PhysicalLayer - readData(uint8_t *data, size_t len)=0PhysicalLayerpure virtual - receive(String &str, size_t len=0)PhysicalLayer - receive(uint8_t *data, size_t len)=0PhysicalLayerpure virtual - receiveDirect()=0PhysicalLayerpure virtual - RTTYClient (defined in PhysicalLayer)PhysicalLayerfriend + PagerClient (defined in PhysicalLayer)PhysicalLayerfriend + PhysicalLayer(float freqStep, size_t maxPacketLength)PhysicalLayer + random(int32_t max)PhysicalLayer + random(int32_t min, int32_t max)PhysicalLayer + randomByte()=0PhysicalLayerpure virtual + read()PhysicalLayer + readBit(RADIOLIB_PIN_TYPE pin)=0PhysicalLayerpure virtual + readData(String &str, size_t len=0)PhysicalLayer + readData(uint8_t *data, size_t len)=0PhysicalLayerpure virtual + receive(String &str, size_t len=0)PhysicalLayer + receive(uint8_t *data, size_t len)=0PhysicalLayerpure virtual + receiveDirect()=0PhysicalLayerpure virtual + RTTYClient (defined in PhysicalLayer)PhysicalLayerfriend + setBitRate(float br)=0PhysicalLayerpure virtual setDataShaping(uint8_t sh)=0PhysicalLayerpure virtual setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)PhysicalLayervirtual setDirectAction(void(*func)(void))=0PhysicalLayerpure virtual setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer setEncoding(uint8_t encoding)=0PhysicalLayerpure virtual - setFrequencyDeviation(float freqDev)=0PhysicalLayerpure virtual - SSTVClient (defined in PhysicalLayer)PhysicalLayerfriend - standby()=0PhysicalLayerpure virtual - startDirect()PhysicalLayer - startTransmit(String &str, uint8_t addr=0)PhysicalLayer - startTransmit(const char *str, uint8_t addr=0)PhysicalLayer - startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0PhysicalLayerpure virtual - transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer - transmit(String &str, uint8_t addr=0)PhysicalLayer - transmit(const char *str, uint8_t addr=0)PhysicalLayer - transmit(uint8_t *data, size_t len, uint8_t addr=0)=0PhysicalLayerpure virtual - transmitDirect(uint32_t frf=0)=0PhysicalLayerpure virtual + setFrequency(float freq)=0PhysicalLayerpure virtual + setFrequencyDeviation(float freqDev)=0PhysicalLayerpure virtual + SSTVClient (defined in PhysicalLayer)PhysicalLayerfriend + standby()=0PhysicalLayerpure virtual + startDirect()PhysicalLayer + startTransmit(String &str, uint8_t addr=0)PhysicalLayer + startTransmit(const char *str, uint8_t addr=0)PhysicalLayer + startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0PhysicalLayerpure virtual + transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer + transmit(String &str, uint8_t addr=0)PhysicalLayer + transmit(const char *str, uint8_t addr=0)PhysicalLayer + transmit(uint8_t *data, size_t len, uint8_t addr=0)=0PhysicalLayerpure virtual + transmitDirect(uint32_t frf=0)=0PhysicalLayerpure virtual diff --git a/class_physical_layer.html b/class_physical_layer.html index d0a5b203..1037d7f6 100644 --- a/class_physical_layer.html +++ b/class_physical_layer.html @@ -179,6 +179,12 @@ Public Member Functions virtual int16_t receiveDirect ()=0  Enables direct reception mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module class. While in direct mode, the module will not be able to transmit or receive packets. Can only be activated in FSK mode. More...
  +virtual int16_t setFrequency (float freq)=0 + Sets carrier frequency. Allowed values range from 137.0 MHz to 525.0 MHz. More...
+  +virtual int16_t setBitRate (float br)=0 + Sets FSK bit rate. Allowed values range from 1.2 to 300 kbps. Only available in FSK mode. More...
+  virtual int16_t setFrequencyDeviation (float freqDev)=0  Sets FSK frequency deviation from carrier frequency. Allowed values depend on bit rate setting and must be lower than 200 kHz. Only available in FSK mode. Must be implemented in module class. More...
  @@ -248,6 +254,9 @@ class AX25Client< class FSK4Client   + +class PagerClient

Detailed Description

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.

@@ -748,6 +757,43 @@ class FSK4Client<

Implemented in SX127x, Si443x, CC1101, RF69, SX128x, SX126x, and nRF24.

+
+ + +

◆ setBitRate()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual int16_t PhysicalLayer::setBitRate (float br)
+
+pure virtual
+
+ +

Sets FSK bit rate. Allowed values range from 1.2 to 300 kbps. Only available in FSK mode.

+
Parameters
+ + +
brBit rate to be set (in kbps).
+
+
+
Returns
Status Codes
+ +

Implemented in SX127x, RF69, Si443x, CC1101, and SX126x.

+
@@ -944,6 +990,43 @@ class FSK4Client<

Implemented in SX127x, RF69, CC1101, SX126x, SX128x, Si443x, and nRF24.

+ + + +

◆ setFrequency()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual int16_t PhysicalLayer::setFrequency (float freq)
+
+pure virtual
+
+ +

Sets carrier frequency. Allowed values range from 137.0 MHz to 525.0 MHz.

+
Parameters
+ + +
freqCarrier frequency to be set in MHz.
+
+
+
Returns
Status Codes
+ +

Implemented in RF69, CC1101, SX128x, SX1278, SX1272, RFM95, RFM96, SX1276, SX1277, SX1279, Si4430, and Si4432.

+
diff --git a/class_physical_layer.js b/class_physical_layer.js index 6d337856..60732d1a 100644 --- a/class_physical_layer.js +++ b/class_physical_layer.js @@ -15,11 +15,13 @@ var class_physical_layer = [ "receive", "class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36", null ], [ "receive", "class_physical_layer.html#a2ad4c6a8ac267f8ac590260414ffcda3", null ], [ "receiveDirect", "class_physical_layer.html#a46b22145b33e97cf6065ed826799b6b4", null ], + [ "setBitRate", "class_physical_layer.html#a56e9cf39bc8847492f7f3cd67ebf1c46", null ], [ "setDataShaping", "class_physical_layer.html#ab643a814dce48f71a13bf6ea23f44cbd", null ], [ "setDIOMapping", "class_physical_layer.html#a47c1d94d2ad2fd7eb5d11480b44cc368", null ], [ "setDirectAction", "class_physical_layer.html#ab76fe7d3e0f453a807b205161c980086", null ], [ "setDirectSyncWord", "class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab", null ], [ "setEncoding", "class_physical_layer.html#a7d3419227d201d6912b77784636d437d", null ], + [ "setFrequency", "class_physical_layer.html#a4928642e647f2dd5b614b87b681cb0a6", null ], [ "setFrequencyDeviation", "class_physical_layer.html#ab9060e8ab7a2da192b3bf53b3501553b", null ], [ "standby", "class_physical_layer.html#a0e77da761a2cbb5c9535df0bdea993f9", null ], [ "startDirect", "class_physical_layer.html#a88a10657bd2215a11a2331f937414b55", null ], @@ -36,6 +38,7 @@ var class_physical_layer = [ "FSK4Client", "class_physical_layer.html#ac0313fe86041eb37d290019203e095d3", null ], [ "HellClient", "class_physical_layer.html#afeb005bab389f137def61f1acc3714d3", null ], [ "MorseClient", "class_physical_layer.html#ae5c5757c553100373984a416b6c3690a", null ], + [ "PagerClient", "class_physical_layer.html#a41ff2710d9e3a626becfa7a093900052", null ], [ "RTTYClient", "class_physical_layer.html#a018393f703a257e39cd263cccf4ffad5", null ], [ "SSTVClient", "class_physical_layer.html#ae8dd4f2f60ef4fd1fa1868a7a630ab20", null ] ]; \ No newline at end of file diff --git a/class_r_f69-members.html b/class_r_f69-members.html index 1a40cdf3..a8bc1fde 100644 --- a/class_r_f69-members.html +++ b/class_r_f69-members.html @@ -132,7 +132,7 @@ $(document).ready(function(){initNavTree('class_r_f69.html',''); initResizable() RF69(Module *module)RF69 setAESKey(uint8_t *key)RF69 setAmbientTemperature(int16_t tempAmbient)RF69 - setBitRate(float br)RF69 + setBitRate(float br)RF69virtual setBroadcastAddress(uint8_t broadAddr)RF69 setCrcFiltering(bool crcOn=true)RF69 setDataShaping(uint8_t sh) overrideRF69virtual @@ -144,7 +144,7 @@ $(document).ready(function(){initNavTree('class_r_f69.html',''); initResizable() setEncoding(uint8_t encoding) overrideRF69virtual setFifoEmptyAction(void(*func)(void))RF69 setFifoFullAction(void(*func)(void))RF69 - setFrequency(float freq)RF69 + setFrequency(float freq)RF69virtual setFrequencyDeviation(float freqDev) overrideRF69virtual setLnaTestBoost(bool value)RF69 setNodeAddress(uint8_t nodeAddr)RF69 diff --git a/class_r_f69.html b/class_r_f69.html index e08a8823..ff58c346 100644 --- a/class_r_f69.html +++ b/class_r_f69.html @@ -1217,6 +1217,9 @@ void 
+ + + + + + diff --git a/class_s_x126x-members.html b/class_s_x126x-members.html index de480e35..2e02f00c 100644 --- a/class_s_x126x-members.html +++ b/class_s_x126x-members.html @@ -129,7 +129,7 @@ $(document).ready(function(){initNavTree('class_s_x126x.html',''); initResizable - + @@ -141,44 +141,45 @@ $(document).ready(function(){initNavTree('class_s_x126x.html',''); initResizable - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
@@ -1226,6 +1229,11 @@ void  + +
int16_t RF69::setBitRate +virtual

Sets bit rate. Allowed values range from 1.2 to 300.0 kbps.

@@ -1237,6 +1245,8 @@ void 
Returns
Status Codes
+

Implements PhysicalLayer.

+ @@ -1560,6 +1570,9 @@ void 
+ + + - + @@ -167,7 +167,7 @@ $(document).ready(function(){initNavTree('class_r_f_m95.html',''); initResizable - + diff --git a/class_r_f_m95.html b/class_r_f_m95.html index 0536cdc3..cc787f7d 100644 --- a/class_r_f_m95.html +++ b/class_r_f_m95.html @@ -673,6 +673,9 @@ void  + + + diff --git a/class_s_x1268-members.html b/class_s_x1268-members.html index 1a2b88fa..bfb80349 100644 --- a/class_s_x1268-members.html +++ b/class_s_x1268-members.html @@ -131,7 +131,7 @@ $(document).ready(function(){initNavTree('class_s_x1268.html',''); initResizable - + @@ -144,46 +144,47 @@ $(document).ready(function(){initNavTree('class_s_x1268.html',''); initResizable - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
@@ -1569,6 +1582,11 @@ void  + +
int16_t RF69::setFrequency +virtual

Sets carrier frequency. Allowed values are in bands 290.0 to 340.0 MHz, 431.0 to 510.0 MHz and 862.0 to 1020.0 MHz.

@@ -1580,6 +1598,8 @@ void 
Returns
Status Codes
+

Implements PhysicalLayer.

+ diff --git a/class_r_f_m95-members.html b/class_r_f_m95-members.html index b52979e3..9ef2c89c 100644 --- a/class_r_f_m95-members.html +++ b/class_r_f_m95-members.html @@ -149,7 +149,7 @@ $(document).ready(function(){initNavTree('class_r_f_m95.html',''); initResizable
setAFCAGCTrigger(uint8_t trigger)SX127x
setAFCBandwidth(float afcBw)SX127x
setBandwidth(float bw)SX1278
setBitRate(float br)SX127x
setBitRate(float br)SX127xvirtual
setBroadcastAddress(uint8_t broadAddr)SX127x
setCodingRate(uint8_t cr)SX1278
setCRC(bool enable, bool mode=false)SX1278
setFHSSHoppingPeriod(uint8_t freqHoppingPeriod)SX127x
setFifoEmptyAction(void(*func)(void))SX127x
setFifoFullAction(void(*func)(void))SX127x
setFrequency(float freq)RFM95
setFrequency(float freq)RFM95virtual
setFrequencyDeviation(float freqDev) overrideSX127xvirtual
setGain(uint8_t gain)SX1278
setNodeAddress(uint8_t nodeAddr)SX127x
+ + + - + @@ -167,7 +167,7 @@ $(document).ready(function(){initNavTree('class_r_f_m96.html',''); initResizable - + diff --git a/class_r_f_m96.html b/class_r_f_m96.html index c3eda257..7cb5aca0 100644 --- a/class_r_f_m96.html +++ b/class_r_f_m96.html @@ -672,6 +672,9 @@ void  + + + diff --git a/class_s_x1262-members.html b/class_s_x1262-members.html index 2ec87ed2..8ff59150 100644 --- a/class_s_x1262-members.html +++ b/class_s_x1262-members.html @@ -131,7 +131,7 @@ $(document).ready(function(){initNavTree('class_s_x1262.html',''); initResizable - + @@ -144,46 +144,47 @@ $(document).ready(function(){initNavTree('class_s_x1262.html',''); initResizable - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
@@ -682,6 +685,11 @@ void  + +
int16_t RFM95::setFrequency +virtual

Sets carrier frequency. Allowed values range from 868.0 MHz to 915.0 MHz.

@@ -693,6 +701,8 @@ void 
Returns
Status Codes
+

Implements PhysicalLayer.

+
The documentation for this class was generated from the following files:
    diff --git a/class_r_f_m96-members.html b/class_r_f_m96-members.html index 602b2649..8e264d78 100644 --- a/class_r_f_m96-members.html +++ b/class_r_f_m96-members.html @@ -149,7 +149,7 @@ $(document).ready(function(){initNavTree('class_r_f_m96.html',''); initResizable
setAFCAGCTrigger(uint8_t trigger)SX127x
setAFCBandwidth(float afcBw)SX127x
setBandwidth(float bw)SX1278
setBitRate(float br)SX127x
setBitRate(float br)SX127xvirtual
setBroadcastAddress(uint8_t broadAddr)SX127x
setCodingRate(uint8_t cr)SX1278
setCRC(bool enable, bool mode=false)SX1278
setFHSSHoppingPeriod(uint8_t freqHoppingPeriod)SX127x
setFifoEmptyAction(void(*func)(void))SX127x
setFifoFullAction(void(*func)(void))SX127x
setFrequency(float freq)RFM96
setFrequency(float freq)RFM96virtual
setFrequencyDeviation(float freqDev) overrideSX127xvirtual
setGain(uint8_t gain)SX1278
setNodeAddress(uint8_t nodeAddr)SX127x
+ + + - + @@ -168,7 +168,7 @@ $(document).ready(function(){initNavTree('class_r_f_m97.html',''); initResizable - + diff --git a/class_s_x1231-members.html b/class_s_x1231-members.html index d49aafb6..125a2ede 100644 --- a/class_s_x1231-members.html +++ b/class_s_x1231-members.html @@ -132,7 +132,7 @@ $(document).ready(function(){initNavTree('class_s_x1231.html',''); initResizable - + @@ -144,7 +144,7 @@ $(document).ready(function(){initNavTree('class_s_x1231.html',''); initResizable - + diff --git a/class_s_x1261-members.html b/class_s_x1261-members.html index feb34db2..72192bde 100644 --- a/class_s_x1261-members.html +++ b/class_s_x1261-members.html @@ -131,7 +131,7 @@ $(document).ready(function(){initNavTree('class_s_x1261.html',''); initResizable - + @@ -144,47 +144,48 @@ $(document).ready(function(){initNavTree('class_s_x1261.html',''); initResizable - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
@@ -681,6 +684,11 @@ void  + +
int16_t RFM96::setFrequency +virtual

Sets carrier frequency. Allowed values range from 433.0 MHz to 470.0 MHz.

@@ -692,6 +700,8 @@ void 
Returns
Status Codes
+

Implements PhysicalLayer.

+
The documentation for this class was generated from the following files:
    diff --git a/class_r_f_m97-members.html b/class_r_f_m97-members.html index 20fe6637..7d1434de 100644 --- a/class_r_f_m97-members.html +++ b/class_r_f_m97-members.html @@ -150,7 +150,7 @@ $(document).ready(function(){initNavTree('class_r_f_m97.html',''); initResizable
setAFCAGCTrigger(uint8_t trigger)SX127x
setAFCBandwidth(float afcBw)SX127x
setBandwidth(float bw)SX1278
setBitRate(float br)SX127x
setBitRate(float br)SX127xvirtual
setBroadcastAddress(uint8_t broadAddr)SX127x
setCodingRate(uint8_t cr)SX1278
setCRC(bool enable, bool mode=false)SX1278
setFHSSHoppingPeriod(uint8_t freqHoppingPeriod)SX127x
setFifoEmptyAction(void(*func)(void))SX127x
setFifoFullAction(void(*func)(void))SX127x
setFrequency(float freq)RFM95
setFrequency(float freq)RFM95virtual
setFrequencyDeviation(float freqDev) overrideSX127xvirtual
setGain(uint8_t gain)SX1278
setNodeAddress(uint8_t nodeAddr)SX127x
RF69(Module *module)RF69
setAESKey(uint8_t *key)RF69
setAmbientTemperature(int16_t tempAmbient)RF69
setBitRate(float br)RF69
setBitRate(float br)RF69virtual
setBroadcastAddress(uint8_t broadAddr)RF69
setCrcFiltering(bool crcOn=true)RF69
setDataShaping(uint8_t sh) overrideRF69virtual
setEncoding(uint8_t encoding) overrideRF69virtual
setFifoEmptyAction(void(*func)(void))RF69
setFifoFullAction(void(*func)(void))RF69
setFrequency(float freq)RF69
setFrequency(float freq)RF69virtual
setFrequencyDeviation(float freqDev) overrideRF69virtual
setLnaTestBoost(bool value)RF69
setNodeAddress(uint8_t nodeAddr)RF69
reset(bool verify=true)SX126x
scanChannel()SX126x
setBandwidth(float bw)SX126x
setBitRate(float br)SX126x
setBitRate(float br)SX126xvirtual
setBroadcastAddress(uint8_t broadAddr)SX126x
setCodingRate(uint8_t cr)SX126x
setCRC(uint8_t len, uint16_t initial=0x1D0F, uint16_t polynomial=0x1021, bool inverted=true)SX126x
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideSX126xvirtual
setFrequency(float freq, bool calibrate=true)SX1262
setFrequencyDeviation(float freqDev) overrideSX126xvirtual
setNodeAddress(uint8_t nodeAddr)SX126x
setOutputPower(int8_t power)SX1261
setPreambleLength(uint16_t preambleLength)SX126x
setRegulatorDCDC()SX126x
setRegulatorLDO()SX126x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX126x
setRxBandwidth(float rxBw)SX126x
setSpreadingFactor(uint8_t sf)SX126x
setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x
setSyncWord(uint8_t *syncWord, uint8_t len)SX126x
setTCXO(float voltage, uint32_t delay=5000)SX126x
setWhitening(bool enabled, uint16_t initial=0x0100)SX126x
sleep(bool retainConfig=true)SX126x
standby() overrideSX126xvirtual
standby(uint8_t mode)SX126x
startChannelScan()SX126x
startDirect()PhysicalLayer
startReceive(uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF)SX126x
startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod)SX126x
startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual
startTransmit(String &str, uint8_t addr=0)SX126x
startTransmit(const char *str, uint8_t addr=0)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX126xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX126x
transmit(String &str, uint8_t addr=0)SX126x
transmit(const char *str, uint8_t addr=0)SX126x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX126xvirtual
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
SX126x::setFrequency(float freq)=0PhysicalLayerpure virtual
setFrequencyDeviation(float freqDev) overrideSX126xvirtual
setNodeAddress(uint8_t nodeAddr)SX126x
setOutputPower(int8_t power)SX1261
setPreambleLength(uint16_t preambleLength)SX126x
setRegulatorDCDC()SX126x
setRegulatorLDO()SX126x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX126x
setRxBandwidth(float rxBw)SX126x
setSpreadingFactor(uint8_t sf)SX126x
setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x
setSyncWord(uint8_t *syncWord, uint8_t len)SX126x
setTCXO(float voltage, uint32_t delay=5000)SX126x
setWhitening(bool enabled, uint16_t initial=0x0100)SX126x
sleep(bool retainConfig=true)SX126x
standby() overrideSX126xvirtual
standby(uint8_t mode)SX126x
startChannelScan()SX126x
startDirect()PhysicalLayer
startReceive(uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF)SX126x
startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod)SX126x
startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual
startTransmit(String &str, uint8_t addr=0)SX126x
startTransmit(const char *str, uint8_t addr=0)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX126xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX126x
transmit(String &str, uint8_t addr=0)SX126x
transmit(const char *str, uint8_t addr=0)SX126x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX126xvirtual
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
diff --git a/class_s_x1261.html b/class_s_x1261.html index 8ac6503d..bd366267 100644 --- a/class_s_x1261.html +++ b/class_s_x1261.html @@ -379,6 +379,9 @@ void 
int16_t readData (String &str, size_t len=0)
 Reads data that was received after calling startReceive method. More...
 
virtual int16_t setFrequency (float freq)=0
 Sets carrier frequency. Allowed values range from 137.0 MHz to 525.0 MHz. More...
 
float getFreqStep () const
 Gets the module frequency step size that was set in constructor. More...
 
reset(bool verify=true)SX126x
scanChannel()SX126x
setBandwidth(float bw)SX126x
setBitRate(float br)SX126x
setBitRate(float br)SX126xvirtual
setBroadcastAddress(uint8_t broadAddr)SX126x
setCodingRate(uint8_t cr)SX126x
setCRC(uint8_t len, uint16_t initial=0x1D0F, uint16_t polynomial=0x1021, bool inverted=true)SX126x
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideSX126xvirtual
setFrequency(float freq, bool calibrate=true)SX1262
setFrequencyDeviation(float freqDev) overrideSX126xvirtual
setNodeAddress(uint8_t nodeAddr)SX126x
setOutputPower(int8_t power)SX1262
setPreambleLength(uint16_t preambleLength)SX126x
setRegulatorDCDC()SX126x
setRegulatorLDO()SX126x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX126x
setRxBandwidth(float rxBw)SX126x
setSpreadingFactor(uint8_t sf)SX126x
setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x
setSyncWord(uint8_t *syncWord, uint8_t len)SX126x
setTCXO(float voltage, uint32_t delay=5000)SX126x
setWhitening(bool enabled, uint16_t initial=0x0100)SX126x
sleep(bool retainConfig=true)SX126x
standby() overrideSX126xvirtual
standby(uint8_t mode)SX126x
startChannelScan()SX126x
startDirect()PhysicalLayer
startReceive(uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF)SX126x
startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod)SX126x
startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual
startTransmit(String &str, uint8_t addr=0)SX126x
startTransmit(const char *str, uint8_t addr=0)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX126xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX126x
transmit(String &str, uint8_t addr=0)SX126x
transmit(const char *str, uint8_t addr=0)SX126x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX126xvirtual
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
SX126x::setFrequency(float freq)=0PhysicalLayerpure virtual
setFrequencyDeviation(float freqDev) overrideSX126xvirtual
setNodeAddress(uint8_t nodeAddr)SX126x
setOutputPower(int8_t power)SX1262
setPreambleLength(uint16_t preambleLength)SX126x
setRegulatorDCDC()SX126x
setRegulatorLDO()SX126x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX126x
setRxBandwidth(float rxBw)SX126x
setSpreadingFactor(uint8_t sf)SX126x
setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x
setSyncWord(uint8_t *syncWord, uint8_t len)SX126x
setTCXO(float voltage, uint32_t delay=5000)SX126x
setWhitening(bool enabled, uint16_t initial=0x0100)SX126x
sleep(bool retainConfig=true)SX126x
standby() overrideSX126xvirtual
standby(uint8_t mode)SX126x
startChannelScan()SX126x
startDirect()PhysicalLayer
startReceive(uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF)SX126x
startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod)SX126x
startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual
startTransmit(String &str, uint8_t addr=0)SX126x
startTransmit(const char *str, uint8_t addr=0)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX126xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX126x
transmit(String &str, uint8_t addr=0)SX126x
transmit(const char *str, uint8_t addr=0)SX126x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX126xvirtual
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
diff --git a/class_s_x1262.html b/class_s_x1262.html index 52bf3ff0..78a69605 100644 --- a/class_s_x1262.html +++ b/class_s_x1262.html @@ -373,6 +373,9 @@ void 
int16_t readData (String &str, size_t len=0)
 Reads data that was received after calling startReceive method. More...
 
virtual int16_t setFrequency (float freq)=0
 Sets carrier frequency. Allowed values range from 137.0 MHz to 525.0 MHz. More...
 
float getFreqStep () const
 Gets the module frequency step size that was set in constructor. More...
 
reset(bool verify=true)SX126x
scanChannel()SX126x
setBandwidth(float bw)SX126x
setBitRate(float br)SX126x
setBitRate(float br)SX126xvirtual
setBroadcastAddress(uint8_t broadAddr)SX126x
setCodingRate(uint8_t cr)SX126x
setCRC(uint8_t len, uint16_t initial=0x1D0F, uint16_t polynomial=0x1021, bool inverted=true)SX126x
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideSX126xvirtual
setFrequency(float freq, bool calibrate=true)SX1268
setFrequencyDeviation(float freqDev) overrideSX126xvirtual
setNodeAddress(uint8_t nodeAddr)SX126x
setOutputPower(int8_t power)SX1268
setPreambleLength(uint16_t preambleLength)SX126x
setRegulatorDCDC()SX126x
setRegulatorLDO()SX126x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX126x
setRxBandwidth(float rxBw)SX126x
setSpreadingFactor(uint8_t sf)SX126x
setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x
setSyncWord(uint8_t *syncWord, uint8_t len)SX126x
setTCXO(float voltage, uint32_t delay=5000)SX126x
setWhitening(bool enabled, uint16_t initial=0x0100)SX126x
sleep(bool retainConfig=true)SX126x
standby() overrideSX126xvirtual
standby(uint8_t mode)SX126x
startChannelScan()SX126x
startDirect()PhysicalLayer
startReceive(uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF)SX126x
startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod)SX126x
startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual
startTransmit(String &str, uint8_t addr=0)SX126x
startTransmit(const char *str, uint8_t addr=0)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX126xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX126x
transmit(String &str, uint8_t addr=0)SX126x
transmit(const char *str, uint8_t addr=0)SX126x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX126xvirtual
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
SX126x::setFrequency(float freq)=0PhysicalLayerpure virtual
setFrequencyDeviation(float freqDev) overrideSX126xvirtual
setNodeAddress(uint8_t nodeAddr)SX126x
setOutputPower(int8_t power)SX1268
setPreambleLength(uint16_t preambleLength)SX126x
setRegulatorDCDC()SX126x
setRegulatorLDO()SX126x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX126x
setRxBandwidth(float rxBw)SX126x
setSpreadingFactor(uint8_t sf)SX126x
setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x
setSyncWord(uint8_t *syncWord, uint8_t len)SX126x
setTCXO(float voltage, uint32_t delay=5000)SX126x
setWhitening(bool enabled, uint16_t initial=0x0100)SX126x
sleep(bool retainConfig=true)SX126x
standby() overrideSX126xvirtual
standby(uint8_t mode)SX126x
startChannelScan()SX126x
startDirect()PhysicalLayer
startReceive(uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF)SX126x
startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod)SX126x
startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual
startTransmit(String &str, uint8_t addr=0)SX126x
startTransmit(const char *str, uint8_t addr=0)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX126xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX126x
transmit(String &str, uint8_t addr=0)SX126x
transmit(const char *str, uint8_t addr=0)SX126x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX126xvirtual
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
diff --git a/class_s_x1268.html b/class_s_x1268.html index 7da81eea..f2802d3c 100644 --- a/class_s_x1268.html +++ b/class_s_x1268.html @@ -371,6 +371,9 @@ void 
int16_t readData (String &str, size_t len=0)
 Reads data that was received after calling startReceive method. More...
 
virtual int16_t setFrequency (float freq)=0
 Sets carrier frequency. Allowed values range from 137.0 MHz to 525.0 MHz. More...
 
float getFreqStep () const
 Gets the module frequency step size that was set in constructor. More...
 
reset(bool verify=true)SX126x
scanChannel()SX126x
setBandwidth(float bw)SX126x
setBitRate(float br)SX126x
setBitRate(float br)SX126xvirtual
setBroadcastAddress(uint8_t broadAddr)SX126x
setCodingRate(uint8_t cr)SX126x
setCRC(uint8_t len, uint16_t initial=0x1D0F, uint16_t polynomial=0x1021, bool inverted=true)SX126x
setDirectAction(void(*func)(void))SX126xvirtual
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideSX126xvirtual
setFrequencyDeviation(float freqDev) overrideSX126xvirtual
setNodeAddress(uint8_t nodeAddr)SX126x
setPreambleLength(uint16_t preambleLength)SX126x
setRegulatorDCDC()SX126x
setRegulatorLDO()SX126x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX126x
setRxBandwidth(float rxBw)SX126x
setSpreadingFactor(uint8_t sf)SX126x
setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x
setSyncWord(uint8_t *syncWord, uint8_t len)SX126x
setTCXO(float voltage, uint32_t delay=5000)SX126x
setWhitening(bool enabled, uint16_t initial=0x0100)SX126x
sleep(bool retainConfig=true)SX126x
standby() overrideSX126xvirtual
standby(uint8_t mode)SX126x
startChannelScan()SX126x
startDirect()PhysicalLayer
startReceive(uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF)SX126x
startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod)SX126x
startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual
startTransmit(String &str, uint8_t addr=0)SX126x
startTransmit(const char *str, uint8_t addr=0)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX126xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX126x
transmit(String &str, uint8_t addr=0)SX126x
transmit(const char *str, uint8_t addr=0)SX126x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX126xvirtual
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
setFrequency(float freq)=0PhysicalLayerpure virtual
setFrequencyDeviation(float freqDev) overrideSX126xvirtual
setNodeAddress(uint8_t nodeAddr)SX126x
setPreambleLength(uint16_t preambleLength)SX126x
setRegulatorDCDC()SX126x
setRegulatorLDO()SX126x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX126x
setRxBandwidth(float rxBw)SX126x
setSpreadingFactor(uint8_t sf)SX126x
setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x
setSyncWord(uint8_t *syncWord, uint8_t len)SX126x
setTCXO(float voltage, uint32_t delay=5000)SX126x
setWhitening(bool enabled, uint16_t initial=0x0100)SX126x
sleep(bool retainConfig=true)SX126x
standby() overrideSX126xvirtual
standby(uint8_t mode)SX126x
startChannelScan()SX126x
startDirect()PhysicalLayer
startReceive(uint32_t timeout=RADIOLIB_SX126X_RX_TIMEOUT_INF)SX126x
startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod)SX126x
startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual
startTransmit(String &str, uint8_t addr=0)SX126x
startTransmit(const char *str, uint8_t addr=0)SX126x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX126xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX126x
transmit(String &str, uint8_t addr=0)SX126x
transmit(const char *str, uint8_t addr=0)SX126x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX126x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX126xvirtual
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
diff --git a/class_s_x126x.html b/class_s_x126x.html index f2b21595..53dd9f95 100644 --- a/class_s_x126x.html +++ b/class_s_x126x.html @@ -358,6 +358,9 @@ void 
int16_t readData (String &str, size_t len=0)  Reads data that was received after calling startReceive method. More...
  +virtual int16_t setFrequency (float freq)=0 + Sets carrier frequency. Allowed values range from 137.0 MHz to 525.0 MHz. More...
+  float getFreqStep () const  Gets the module frequency step size that was set in constructor. More...
  @@ -1280,6 +1283,9 @@ void 
+ + + - + @@ -166,7 +166,7 @@ $(document).ready(function(){initNavTree('class_s_x1272.html',''); initResizable - + diff --git a/class_s_x1272.html b/class_s_x1272.html index 81553d6f..67747841 100644 --- a/class_s_x1272.html +++ b/class_s_x1272.html @@ -936,6 +936,9 @@ void 
@@ -1289,6 +1295,11 @@ void  + +
int16_t SX126x::setBitRate +virtual

Sets FSK bit rate. Allowed values range from 0.6 to 300.0 kbps.

@@ -1300,6 +1311,8 @@ void 
Returns
Status Codes
+

Implements PhysicalLayer.

+ diff --git a/class_s_x1272-members.html b/class_s_x1272-members.html index 363a8063..cc9f1c4c 100644 --- a/class_s_x1272-members.html +++ b/class_s_x1272-members.html @@ -148,7 +148,7 @@ $(document).ready(function(){initNavTree('class_s_x1272.html',''); initResizable
setAFCAGCTrigger(uint8_t trigger)SX127x
setAFCBandwidth(float afcBw)SX127x
setBandwidth(float bw)SX1272
setBitRate(float br)SX127x
setBitRate(float br)SX127xvirtual
setBroadcastAddress(uint8_t broadAddr)SX127x
setCodingRate(uint8_t cr)SX1272
setCRC(bool enable, bool mode=false)SX1272
setFHSSHoppingPeriod(uint8_t freqHoppingPeriod)SX127x
setFifoEmptyAction(void(*func)(void))SX127x
setFifoFullAction(void(*func)(void))SX127x
setFrequency(float freq)SX1272
setFrequency(float freq)SX1272virtual
setFrequencyDeviation(float freqDev) overrideSX127xvirtual
setGain(uint8_t gain)SX1272
setNodeAddress(uint8_t nodeAddr)SX127x
+ + + - + @@ -166,7 +166,7 @@ $(document).ready(function(){initNavTree('class_s_x1273.html',''); initResizable - + diff --git a/class_s_x1276-members.html b/class_s_x1276-members.html index ef60571a..1be0abba 100644 --- a/class_s_x1276-members.html +++ b/class_s_x1276-members.html @@ -148,7 +148,7 @@ $(document).ready(function(){initNavTree('class_s_x1276.html',''); initResizable - + @@ -166,7 +166,7 @@ $(document).ready(function(){initNavTree('class_s_x1276.html',''); initResizable - + diff --git a/class_s_x1276.html b/class_s_x1276.html index fd1fdd3a..79752d53 100644 --- a/class_s_x1276.html +++ b/class_s_x1276.html @@ -672,6 +672,9 @@ void  + + + @@ -1474,6 +1477,9 @@ void  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
@@ -945,6 +948,11 @@ void  + +
int16_t SX1272::setFrequency +virtual

Sets carrier frequency. Allowed values range from 860.0 MHz to 1020.0 MHz.

@@ -956,6 +964,8 @@ void 
Returns
Status Codes
+

Implements PhysicalLayer.

+ diff --git a/class_s_x1273-members.html b/class_s_x1273-members.html index 096e7606..5d94cb02 100644 --- a/class_s_x1273-members.html +++ b/class_s_x1273-members.html @@ -148,7 +148,7 @@ $(document).ready(function(){initNavTree('class_s_x1273.html',''); initResizable
setAFCAGCTrigger(uint8_t trigger)SX127x
setAFCBandwidth(float afcBw)SX127x
setBandwidth(float bw)SX1272
setBitRate(float br)SX127x
setBitRate(float br)SX127xvirtual
setBroadcastAddress(uint8_t broadAddr)SX127x
setCodingRate(uint8_t cr)SX1272
setCRC(bool enable, bool mode=false)SX1272
setFHSSHoppingPeriod(uint8_t freqHoppingPeriod)SX127x
setFifoEmptyAction(void(*func)(void))SX127x
setFifoFullAction(void(*func)(void))SX127x
setFrequency(float freq)SX1272
setFrequency(float freq)SX1272virtual
setFrequencyDeviation(float freqDev) overrideSX127xvirtual
setGain(uint8_t gain)SX1272
setNodeAddress(uint8_t nodeAddr)SX127x
setAFCAGCTrigger(uint8_t trigger)SX127x
setAFCBandwidth(float afcBw)SX127x
setBandwidth(float bw)SX1278
setBitRate(float br)SX127x
setBitRate(float br)SX127xvirtual
setBroadcastAddress(uint8_t broadAddr)SX127x
setCodingRate(uint8_t cr)SX1278
setCRC(bool enable, bool mode=false)SX1278
setFHSSHoppingPeriod(uint8_t freqHoppingPeriod)SX127x
setFifoEmptyAction(void(*func)(void))SX127x
setFifoFullAction(void(*func)(void))SX127x
setFrequency(float freq)SX1276
setFrequency(float freq)SX1276virtual
setFrequencyDeviation(float freqDev) overrideSX127xvirtual
setGain(uint8_t gain)SX1278
setNodeAddress(uint8_t nodeAddr)SX127x
+ + + - + @@ -166,7 +166,7 @@ $(document).ready(function(){initNavTree('class_s_x1277.html',''); initResizable - + diff --git a/class_s_x1277.html b/class_s_x1277.html index 6f10c6fc..e7f1debb 100644 --- a/class_s_x1277.html +++ b/class_s_x1277.html @@ -675,6 +675,9 @@ void  + + + diff --git a/class_s_x128x-members.html b/class_s_x128x-members.html index 681204d0..d5268843 100644 --- a/class_s_x128x-members.html +++ b/class_s_x128x-members.html @@ -125,46 +125,47 @@ $(document).ready(function(){initNavTree('class_s_x128x.html',''); initResizable - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
@@ -681,6 +684,11 @@ void  + +
int16_t SX1276::setFrequency +virtual

Sets carrier frequency. Allowed values range from 137.0 MHz to 1020.0 MHz.

@@ -692,6 +700,8 @@ void 
Returns
Status Codes
+

Implements PhysicalLayer.

+
The documentation for this class was generated from the following files:
    diff --git a/class_s_x1277-members.html b/class_s_x1277-members.html index 67a685df..482c3cec 100644 --- a/class_s_x1277-members.html +++ b/class_s_x1277-members.html @@ -148,7 +148,7 @@ $(document).ready(function(){initNavTree('class_s_x1277.html',''); initResizable
setAFCAGCTrigger(uint8_t trigger)SX127x
setAFCBandwidth(float afcBw)SX127x
setBandwidth(float bw)SX1278
setBitRate(float br)SX127x
setBitRate(float br)SX127xvirtual
setBroadcastAddress(uint8_t broadAddr)SX127x
setCodingRate(uint8_t cr)SX1278
setCRC(bool enable, bool mode=false)SX1278
setFHSSHoppingPeriod(uint8_t freqHoppingPeriod)SX127x
setFifoEmptyAction(void(*func)(void))SX127x
setFifoFullAction(void(*func)(void))SX127x
setFrequency(float freq)SX1277
setFrequency(float freq)SX1277virtual
setFrequencyDeviation(float freqDev) overrideSX127xvirtual
setGain(uint8_t gain)SX1278
setNodeAddress(uint8_t nodeAddr)SX127x
+ + + - + @@ -166,7 +166,7 @@ $(document).ready(function(){initNavTree('class_s_x1278.html',''); initResizable - + diff --git a/class_s_x1278.html b/class_s_x1278.html index 7e67d81a..645588cb 100644 --- a/class_s_x1278.html +++ b/class_s_x1278.html @@ -941,6 +941,9 @@ void  + + + diff --git a/class_s_x1282-members.html b/class_s_x1282-members.html index 3cb00e6a..c635b81c 100644 --- a/class_s_x1282-members.html +++ b/class_s_x1282-members.html @@ -127,50 +127,51 @@ $(document).ready(function(){initNavTree('class_s_x1282.html',''); initResizable - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
@@ -684,6 +687,11 @@ void  + +
int16_t SX1277::setFrequency +virtual

Sets carrier frequency. Allowed values range from 137.0 MHz to 1020.0 MHz.

@@ -695,6 +703,8 @@ void 
Returns
Status Codes
+

Implements PhysicalLayer.

+ diff --git a/class_s_x1278-members.html b/class_s_x1278-members.html index d6ad7574..a1ccf9b1 100644 --- a/class_s_x1278-members.html +++ b/class_s_x1278-members.html @@ -148,7 +148,7 @@ $(document).ready(function(){initNavTree('class_s_x1278.html',''); initResizable
setAFCAGCTrigger(uint8_t trigger)SX127x
setAFCBandwidth(float afcBw)SX127x
setBandwidth(float bw)SX1278
setBitRate(float br)SX127x
setBitRate(float br)SX127xvirtual
setBroadcastAddress(uint8_t broadAddr)SX127x
setCodingRate(uint8_t cr)SX1278
setCRC(bool enable, bool mode=false)SX1278
setFHSSHoppingPeriod(uint8_t freqHoppingPeriod)SX127x
setFifoEmptyAction(void(*func)(void))SX127x
setFifoFullAction(void(*func)(void))SX127x
setFrequency(float freq)SX1278
setFrequency(float freq)SX1278virtual
setFrequencyDeviation(float freqDev) overrideSX127xvirtual
setGain(uint8_t gain)SX1278
setNodeAddress(uint8_t nodeAddr)SX127x
+ + + - + @@ -166,7 +166,7 @@ $(document).ready(function(){initNavTree('class_s_x1279.html',''); initResizable - + diff --git a/class_s_x1279.html b/class_s_x1279.html index 7052f691..ea9a6a9d 100644 --- a/class_s_x1279.html +++ b/class_s_x1279.html @@ -134,9 +134,6 @@ Public Member Functions void  - - - @@ -672,6 +669,9 @@ void  + + + @@ -1491,6 +1494,9 @@ void  + + + diff --git a/class_s_x1281-members.html b/class_s_x1281-members.html index 5e2747ef..07c3aa1b 100644 --- a/class_s_x1281-members.html +++ b/class_s_x1281-members.html @@ -125,47 +125,48 @@ $(document).ready(function(){initNavTree('class_s_x1281.html',''); initResizable - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
@@ -950,6 +953,11 @@ void  + +
int16_t SX1278::setFrequency +virtual

Sets carrier frequency. Allowed values range from 137.0 MHz to 525.0 MHz.

@@ -961,6 +969,10 @@ void 
Returns
Status Codes
+

Implements PhysicalLayer.

+ +

Reimplemented in SX1279.

+ diff --git a/class_s_x1279-members.html b/class_s_x1279-members.html index 2564885b..96a2b392 100644 --- a/class_s_x1279-members.html +++ b/class_s_x1279-members.html @@ -148,7 +148,7 @@ $(document).ready(function(){initNavTree('class_s_x1279.html',''); initResizable
setAFCAGCTrigger(uint8_t trigger)SX127x
setAFCBandwidth(float afcBw)SX127x
setBandwidth(float bw)SX1278
setBitRate(float br)SX127x
setBitRate(float br)SX127xvirtual
setBroadcastAddress(uint8_t broadAddr)SX127x
setCodingRate(uint8_t cr)SX1278
setCRC(bool enable, bool mode=false)SX1278
setFHSSHoppingPeriod(uint8_t freqHoppingPeriod)SX127x
setFifoEmptyAction(void(*func)(void))SX127x
setFifoFullAction(void(*func)(void))SX127x
setFrequency(float freq)SX1279
setFrequency(float freq)SX1279virtual
setFrequencyDeviation(float freqDev) overrideSX127xvirtual
setGain(uint8_t gain)SX1278
setNodeAddress(uint8_t nodeAddr)SX127x
reset () override
 Reset method. Will reset the chip to the default state using RST pin.
 
int16_t setFrequency (float freq)
 Sets carrier frequency. Allowed values range from 137.0 MHz to 525.0 MHz. More...
 
int16_t setBandwidth (float bw)
 Sets LoRa link bandwidth. Allowed values are 10.4, 15.6, 20.8, 31.25, 41.7, 62.5, 125, 250 and 500 kHz. Only available in LoRa mode. More...
 
+ + + - + @@ -155,42 +155,43 @@ $(document).ready(function(){initNavTree('class_s_x127x.html',''); initResizable - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
@@ -681,6 +681,11 @@ void  + +
int16_t SX1279::setFrequency +virtual

Sets carrier frequency. Allowed values range from 137.0 MHz to 960.0 MHz.

@@ -692,6 +697,8 @@ void 
Returns
Status Codes
+

Reimplemented from SX1278.

+
The documentation for this class was generated from the following files:
    diff --git a/class_s_x127x-members.html b/class_s_x127x-members.html index 96c10ffb..df85d2bc 100644 --- a/class_s_x127x-members.html +++ b/class_s_x127x-members.html @@ -140,7 +140,7 @@ $(document).ready(function(){initNavTree('class_s_x127x.html',''); initResizable
setAFC(bool isEnabled)SX127x
setAFCAGCTrigger(uint8_t trigger)SX127x
setAFCBandwidth(float afcBw)SX127x
setBitRate(float br)SX127x
setBitRate(float br)SX127xvirtual
setBroadcastAddress(uint8_t broadAddr)SX127x
setCrcFiltering(bool crcOn=true)SX127x
setCurrentLimit(uint8_t currentLimit)SX127x
setFHSSHoppingPeriod(uint8_t freqHoppingPeriod)SX127x
setFifoEmptyAction(void(*func)(void))SX127x
setFifoFullAction(void(*func)(void))SX127x
setFrequencyDeviation(float freqDev) overrideSX127xvirtual
setNodeAddress(uint8_t nodeAddr)SX127x
setOOK(bool enableOOK)SX127x
setOokFixedOrFloorThreshold(uint8_t value)SX127x
setOokPeakThresholdDecrement(uint8_t value)SX127x
setOokPeakThresholdStep(uint8_t value)SX127x
setOokThresholdType(uint8_t type)SX127x
setPreambleLength(uint16_t preambleLength)SX127x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX127x
setRSSIConfig(uint8_t smoothingSamples, int8_t offset=0)SX127x
setRSSIThreshold(float dbm)SX127x
setRxBandwidth(float rxBw)SX127x
setSyncWord(uint8_t syncWord)SX127x
setSyncWord(uint8_t *syncWord, size_t len)SX127x
sleep()SX127x
standby() overrideSX127xvirtual
startChannelScan()SX127x
startDirect()PhysicalLayer
startReceive(uint8_t len=0, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)SX127x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX127xvirtual
startTransmit(String &str, uint8_t addr=0)SX127x
startTransmit(const char *str, uint8_t addr=0)SX127x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX127xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX127x
transmit(String &str, uint8_t addr=0)SX127x
transmit(const char *str, uint8_t addr=0)SX127x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX127xvirtual
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
setFrequency(float freq)=0PhysicalLayerpure virtual
setFrequencyDeviation(float freqDev) overrideSX127xvirtual
setNodeAddress(uint8_t nodeAddr)SX127x
setOOK(bool enableOOK)SX127x
setOokFixedOrFloorThreshold(uint8_t value)SX127x
setOokPeakThresholdDecrement(uint8_t value)SX127x
setOokPeakThresholdStep(uint8_t value)SX127x
setOokThresholdType(uint8_t type)SX127x
setPreambleLength(uint16_t preambleLength)SX127x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX127x
setRSSIConfig(uint8_t smoothingSamples, int8_t offset=0)SX127x
setRSSIThreshold(float dbm)SX127x
setRxBandwidth(float rxBw)SX127x
setSyncWord(uint8_t syncWord)SX127x
setSyncWord(uint8_t *syncWord, size_t len)SX127x
sleep()SX127x
standby() overrideSX127xvirtual
startChannelScan()SX127x
startDirect()PhysicalLayer
startReceive(uint8_t len=0, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)SX127x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX127xvirtual
startTransmit(String &str, uint8_t addr=0)SX127x
startTransmit(const char *str, uint8_t addr=0)SX127x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX127xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX127x
transmit(String &str, uint8_t addr=0)SX127x
transmit(const char *str, uint8_t addr=0)SX127x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX127x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX127xvirtual
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX127X_MAX_PACKET_LENGTH_FSK)SX127x
diff --git a/class_s_x127x.html b/class_s_x127x.html index d4c2b44d..0b033654 100644 --- a/class_s_x127x.html +++ b/class_s_x127x.html @@ -404,6 +404,9 @@ void 
int16_t readData (String &str, size_t len=0)
 Reads data that was received after calling startReceive method. More...
 
virtual int16_t setFrequency (float freq)=0
 Sets carrier frequency. Allowed values range from 137.0 MHz to 525.0 MHz. More...
 
virtual int16_t setDataShaping (uint8_t sh)=0
 Sets GFSK data shaping. Only available in FSK mode. Must be implemented in module class. More...
 
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
@@ -1500,6 +1506,11 @@ void  + +
int16_t SX127x::setBitRate +virtual

Sets FSK bit rate. Allowed values range from 1.2 to 300 kbps. Only available in FSK mode.

@@ -1512,6 +1523,8 @@ void 
Returns
Status Codes
Todo:
fractional part of bit rate setting (not in OOK)
+

Implements PhysicalLayer.

+ diff --git a/class_s_x1280-members.html b/class_s_x1280-members.html index f4519256..1bb25a26 100644 --- a/class_s_x1280-members.html +++ b/class_s_x1280-members.html @@ -127,49 +127,50 @@ $(document).ready(function(){initNavTree('class_s_x1280.html',''); initResizable
setAccessAddress(uint32_t addr)SX128x
setBandwidth(float bw)SX128x
setBitRate(uint16_t br)SX128x
setCodingRate(uint8_t cr, bool longInterleaving=false)SX128x
setCRC(uint8_t len, uint32_t initial=0x1D0F, uint16_t polynomial=0x1021)SX128x
setDataShaping(uint8_t sh) overrideSX128xvirtual
setDio1Action(void(*func)(void))SX128x
setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)PhysicalLayervirtual
setDirectAction(void(*func)(void))SX128xvirtual
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideSX128xvirtual
setFrequency(float freq)SX128x
setFrequencyDeviation(float freqDev) overrideSX128xvirtual
setGainControl(uint8_t gain=0)SX128x
setHighSensitivityMode(bool hsm=false)SX128x
setOutputPower(int8_t power)SX128x
setPreambleLength(uint32_t preambleLength)SX128x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX128x
setSpreadingFactor(uint8_t sf)SX128x
setSyncWord(uint8_t *syncWord, uint8_t len)SX128x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX128x
setWhitening(bool enabled)SX128x
sleep(bool retainConfig=true)SX128x
standby() overrideSX128xvirtual
standby(uint8_t mode)SX128x
startDirect()PhysicalLayer
startRanging(bool master, uint32_t addr)SX1280
startReceive(uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF)SX128x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX128xvirtual
startTransmit(String &str, uint8_t addr=0)SX128x
startTransmit(const char *str, uint8_t addr=0)SX128x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX128xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX128x
transmit(String &str, uint8_t addr=0)SX128x
transmit(const char *str, uint8_t addr=0)SX128x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX128xvirtual
PhysicalLayer::setBitRate(float br)=0PhysicalLayerpure virtual
setCodingRate(uint8_t cr, bool longInterleaving=false)SX128x
setCRC(uint8_t len, uint32_t initial=0x1D0F, uint16_t polynomial=0x1021)SX128x
setDataShaping(uint8_t sh) overrideSX128xvirtual
setDio1Action(void(*func)(void))SX128x
setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)PhysicalLayervirtual
setDirectAction(void(*func)(void))SX128xvirtual
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideSX128xvirtual
setFrequency(float freq)SX128xvirtual
setFrequencyDeviation(float freqDev) overrideSX128xvirtual
setGainControl(uint8_t gain=0)SX128x
setHighSensitivityMode(bool hsm=false)SX128x
setOutputPower(int8_t power)SX128x
setPreambleLength(uint32_t preambleLength)SX128x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX128x
setSpreadingFactor(uint8_t sf)SX128x
setSyncWord(uint8_t *syncWord, uint8_t len)SX128x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX128x
setWhitening(bool enabled)SX128x
sleep(bool retainConfig=true)SX128x
standby() overrideSX128xvirtual
standby(uint8_t mode)SX128x
startDirect()PhysicalLayer
startRanging(bool master, uint32_t addr)SX1280
startReceive(uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF)SX128x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX128xvirtual
startTransmit(String &str, uint8_t addr=0)SX128x
startTransmit(const char *str, uint8_t addr=0)SX128x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX128xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX128x
transmit(String &str, uint8_t addr=0)SX128x
transmit(const char *str, uint8_t addr=0)SX128x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX128xvirtual
diff --git a/class_s_x1280.html b/class_s_x1280.html index 88de213a..da041ce9 100644 --- a/class_s_x1280.html +++ b/class_s_x1280.html @@ -332,6 +332,9 @@ void 
int16_t readData (String &str, size_t len=0)
 Reads data that was received after calling startReceive method. More...
 
virtual int16_t setBitRate (float br)=0
 Sets FSK bit rate. Allowed values range from 1.2 to 300 kbps. Only available in FSK mode. More...
 
float getFreqStep () const
 Gets the module frequency step size that was set in constructor. More...
 
setAccessAddress(uint32_t addr)SX128x
setBandwidth(float bw)SX128x
setBitRate(uint16_t br)SX128x
setCodingRate(uint8_t cr, bool longInterleaving=false)SX128x
setCRC(uint8_t len, uint32_t initial=0x1D0F, uint16_t polynomial=0x1021)SX128x
setDataShaping(uint8_t sh) overrideSX128xvirtual
setDio1Action(void(*func)(void))SX128x
setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)PhysicalLayervirtual
setDirectAction(void(*func)(void))SX128xvirtual
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideSX128xvirtual
setFrequency(float freq)SX128x
setFrequencyDeviation(float freqDev) overrideSX128xvirtual
setGainControl(uint8_t gain=0)SX128x
setHighSensitivityMode(bool hsm=false)SX128x
setOutputPower(int8_t power)SX128x
setPreambleLength(uint32_t preambleLength)SX128x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX128x
setSpreadingFactor(uint8_t sf)SX128x
setSyncWord(uint8_t *syncWord, uint8_t len)SX128x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX128x
setWhitening(bool enabled)SX128x
sleep(bool retainConfig=true)SX128x
standby() overrideSX128xvirtual
standby(uint8_t mode)SX128x
startDirect()PhysicalLayer
startReceive(uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF)SX128x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX128xvirtual
startTransmit(String &str, uint8_t addr=0)SX128x
startTransmit(const char *str, uint8_t addr=0)SX128x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX128xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX128x
transmit(String &str, uint8_t addr=0)SX128x
transmit(const char *str, uint8_t addr=0)SX128x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX128xvirtual
PhysicalLayer::setBitRate(float br)=0PhysicalLayerpure virtual
setCodingRate(uint8_t cr, bool longInterleaving=false)SX128x
setCRC(uint8_t len, uint32_t initial=0x1D0F, uint16_t polynomial=0x1021)SX128x
setDataShaping(uint8_t sh) overrideSX128xvirtual
setDio1Action(void(*func)(void))SX128x
setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)PhysicalLayervirtual
setDirectAction(void(*func)(void))SX128xvirtual
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideSX128xvirtual
setFrequency(float freq)SX128xvirtual
setFrequencyDeviation(float freqDev) overrideSX128xvirtual
setGainControl(uint8_t gain=0)SX128x
setHighSensitivityMode(bool hsm=false)SX128x
setOutputPower(int8_t power)SX128x
setPreambleLength(uint32_t preambleLength)SX128x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX128x
setSpreadingFactor(uint8_t sf)SX128x
setSyncWord(uint8_t *syncWord, uint8_t len)SX128x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX128x
setWhitening(bool enabled)SX128x
sleep(bool retainConfig=true)SX128x
standby() overrideSX128xvirtual
standby(uint8_t mode)SX128x
startDirect()PhysicalLayer
startReceive(uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF)SX128x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX128xvirtual
startTransmit(String &str, uint8_t addr=0)SX128x
startTransmit(const char *str, uint8_t addr=0)SX128x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX128xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX128x
transmit(String &str, uint8_t addr=0)SX128x
transmit(const char *str, uint8_t addr=0)SX128x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX128xvirtual
diff --git a/class_s_x1281.html b/class_s_x1281.html index 550bbbe7..2642a637 100644 --- a/class_s_x1281.html +++ b/class_s_x1281.html @@ -319,6 +319,9 @@ void 
int16_t readData (String &str, size_t len=0)
 Reads data that was received after calling startReceive method. More...
 
virtual int16_t setBitRate (float br)=0
 Sets FSK bit rate. Allowed values range from 1.2 to 300 kbps. Only available in FSK mode. More...
 
float getFreqStep () const
 Gets the module frequency step size that was set in constructor. More...
 
setAccessAddress(uint32_t addr)SX128x
setBandwidth(float bw)SX128x
setBitRate(uint16_t br)SX128x
setCodingRate(uint8_t cr, bool longInterleaving=false)SX128x
setCRC(uint8_t len, uint32_t initial=0x1D0F, uint16_t polynomial=0x1021)SX128x
setDataShaping(uint8_t sh) overrideSX128xvirtual
setDio1Action(void(*func)(void))SX128x
setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)PhysicalLayervirtual
setDirectAction(void(*func)(void))SX128xvirtual
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideSX128xvirtual
setFrequency(float freq)SX128x
setFrequencyDeviation(float freqDev) overrideSX128xvirtual
setGainControl(uint8_t gain=0)SX128x
setHighSensitivityMode(bool hsm=false)SX128x
setOutputPower(int8_t power)SX128x
setPreambleLength(uint32_t preambleLength)SX128x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX128x
setSpreadingFactor(uint8_t sf)SX128x
setSyncWord(uint8_t *syncWord, uint8_t len)SX128x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX128x
setWhitening(bool enabled)SX128x
sleep(bool retainConfig=true)SX128x
standby() overrideSX128xvirtual
standby(uint8_t mode)SX128x
startDirect()PhysicalLayer
startRanging(bool master, uint32_t addr)SX1280
startReceive(uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF)SX128x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX128xvirtual
startTransmit(String &str, uint8_t addr=0)SX128x
startTransmit(const char *str, uint8_t addr=0)SX128x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX128xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX128x
transmit(String &str, uint8_t addr=0)SX128x
transmit(const char *str, uint8_t addr=0)SX128x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX128xvirtual
PhysicalLayer::setBitRate(float br)=0PhysicalLayerpure virtual
setCodingRate(uint8_t cr, bool longInterleaving=false)SX128x
setCRC(uint8_t len, uint32_t initial=0x1D0F, uint16_t polynomial=0x1021)SX128x
setDataShaping(uint8_t sh) overrideSX128xvirtual
setDio1Action(void(*func)(void))SX128x
setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)PhysicalLayervirtual
setDirectAction(void(*func)(void))SX128xvirtual
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideSX128xvirtual
setFrequency(float freq)SX128xvirtual
setFrequencyDeviation(float freqDev) overrideSX128xvirtual
setGainControl(uint8_t gain=0)SX128x
setHighSensitivityMode(bool hsm=false)SX128x
setOutputPower(int8_t power)SX128x
setPreambleLength(uint32_t preambleLength)SX128x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX128x
setSpreadingFactor(uint8_t sf)SX128x
setSyncWord(uint8_t *syncWord, uint8_t len)SX128x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX128x
setWhitening(bool enabled)SX128x
sleep(bool retainConfig=true)SX128x
standby() overrideSX128xvirtual
standby(uint8_t mode)SX128x
startDirect()PhysicalLayer
startRanging(bool master, uint32_t addr)SX1280
startReceive(uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF)SX128x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX128xvirtual
startTransmit(String &str, uint8_t addr=0)SX128x
startTransmit(const char *str, uint8_t addr=0)SX128x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX128xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX128x
transmit(String &str, uint8_t addr=0)SX128x
transmit(const char *str, uint8_t addr=0)SX128x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX128xvirtual
diff --git a/class_s_x1282.html b/class_s_x1282.html index ce981ac9..f4f42e07 100644 --- a/class_s_x1282.html +++ b/class_s_x1282.html @@ -336,6 +336,9 @@ void 
int16_t readData (String &str, size_t len=0)
 Reads data that was received after calling startReceive method. More...
 
virtual int16_t setBitRate (float br)=0
 Sets FSK bit rate. Allowed values range from 1.2 to 300 kbps. Only available in FSK mode. More...
 
float getFreqStep () const
 Gets the module frequency step size that was set in constructor. More...
 
setAccessAddress(uint32_t addr)SX128x
setBandwidth(float bw)SX128x
setBitRate(uint16_t br)SX128x
setCodingRate(uint8_t cr, bool longInterleaving=false)SX128x
setCRC(uint8_t len, uint32_t initial=0x1D0F, uint16_t polynomial=0x1021)SX128x
setDataShaping(uint8_t sh) overrideSX128xvirtual
setDio1Action(void(*func)(void))SX128x
setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)PhysicalLayervirtual
setDirectAction(void(*func)(void))SX128xvirtual
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideSX128xvirtual
setFrequency(float freq)SX128x
setFrequencyDeviation(float freqDev) overrideSX128xvirtual
setGainControl(uint8_t gain=0)SX128x
setHighSensitivityMode(bool hsm=false)SX128x
setOutputPower(int8_t power)SX128x
setPreambleLength(uint32_t preambleLength)SX128x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX128x
setSpreadingFactor(uint8_t sf)SX128x
setSyncWord(uint8_t *syncWord, uint8_t len)SX128x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX128x
setWhitening(bool enabled)SX128x
sleep(bool retainConfig=true)SX128x
standby() overrideSX128xvirtual
standby(uint8_t mode)SX128x
startDirect()PhysicalLayer
startReceive(uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF)SX128x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX128xvirtual
startTransmit(String &str, uint8_t addr=0)SX128x
startTransmit(const char *str, uint8_t addr=0)SX128x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX128xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX128x
transmit(String &str, uint8_t addr=0)SX128x
transmit(const char *str, uint8_t addr=0)SX128x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX128xvirtual
PhysicalLayer::setBitRate(float br)=0PhysicalLayerpure virtual
setCodingRate(uint8_t cr, bool longInterleaving=false)SX128x
setCRC(uint8_t len, uint32_t initial=0x1D0F, uint16_t polynomial=0x1021)SX128x
setDataShaping(uint8_t sh) overrideSX128xvirtual
setDio1Action(void(*func)(void))SX128x
setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)PhysicalLayervirtual
setDirectAction(void(*func)(void))SX128xvirtual
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideSX128xvirtual
setFrequency(float freq)SX128xvirtual
setFrequencyDeviation(float freqDev) overrideSX128xvirtual
setGainControl(uint8_t gain=0)SX128x
setHighSensitivityMode(bool hsm=false)SX128x
setOutputPower(int8_t power)SX128x
setPreambleLength(uint32_t preambleLength)SX128x
setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)SX128x
setSpreadingFactor(uint8_t sf)SX128x
setSyncWord(uint8_t *syncWord, uint8_t len)SX128x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX128x
setWhitening(bool enabled)SX128x
sleep(bool retainConfig=true)SX128x
standby() overrideSX128xvirtual
standby(uint8_t mode)SX128x
startDirect()PhysicalLayer
startReceive(uint16_t timeout=RADIOLIB_SX128X_RX_TIMEOUT_INF)SX128x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSX128xvirtual
startTransmit(String &str, uint8_t addr=0)SX128x
startTransmit(const char *str, uint8_t addr=0)SX128x
startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
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) overrideSX128xvirtual
transmit(__FlashStringHelper *fstr, uint8_t addr=0)SX128x
transmit(String &str, uint8_t addr=0)SX128x
transmit(const char *str, uint8_t addr=0)SX128x
transmit(uint8_t *data, size_t len, uint8_t addr=0)=0SX128x
PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX128xvirtual
diff --git a/class_s_x128x.html b/class_s_x128x.html index 1edbff85..c465752c 100644 --- a/class_s_x128x.html +++ b/class_s_x128x.html @@ -315,6 +315,9 @@ void 
int16_t readData (String &str, size_t len=0)
 Reads data that was received after calling startReceive method. More...
 
virtual int16_t setBitRate (float br)=0
 Sets FSK bit rate. Allowed values range from 1.2 to 300 kbps. Only available in FSK mode. More...
 
float getFreqStep () const
 Gets the module frequency step size that was set in constructor. More...
 
+ + + - + - + diff --git a/class_si4430.html b/class_si4430.html index 1c3a1c4f..442cc8bc 100644 --- a/class_si4430.html +++ b/class_si4430.html @@ -416,6 +416,9 @@ void  - - - - - - + + + + + + + + diff --git a/functions.html b/functions.html index 582988f3..7f458821 100644 --- a/functions.html +++ b/functions.html @@ -100,7 +100,8 @@ $(document).ready(function(){initNavTree('functions.html',''); initResizable(); , SX1278
  • available() -: PhysicalLayer +: PagerClient +, PhysicalLayer
  • AX25Client() : AX25Client diff --git a/functions_b.html b/functions_b.html index 57adb848..ae3815d5 100644 --- a/functions_b.html +++ b/functions_b.html @@ -96,6 +96,7 @@ $(document).ready(function(){initNavTree('functions_b.html',''); initResizable() , Module , MorseClient , nRF24 +, PagerClient , RF69 , RFM95 , RFM96 @@ -104,7 +105,7 @@ $(document).ready(function(){initNavTree('functions_b.html',''); initResizable() , Si4431 , Si4432 , Si443x -, SSTVClient +, SSTVClient , SX1231 , SX1262 , SX1268 diff --git a/functions_func.html b/functions_func.html index f151a2ee..5708c876 100644 --- a/functions_func.html +++ b/functions_func.html @@ -100,7 +100,8 @@ $(document).ready(function(){initNavTree('functions_func.html',''); initResizabl , SX1278
  • available() -: PhysicalLayer +: PagerClient +, PhysicalLayer
  • AX25Client() : AX25Client diff --git a/functions_func_b.html b/functions_func_b.html index c3e14406..e68e22a2 100644 --- a/functions_func_b.html +++ b/functions_func_b.html @@ -96,6 +96,7 @@ $(document).ready(function(){initNavTree('functions_func_b.html',''); initResiza , Module , MorseClient , nRF24 +, PagerClient , RF69 , RFM95 , RFM96 @@ -104,7 +105,7 @@ $(document).ready(function(){initNavTree('functions_func_b.html',''); initResiza , Si4431 , Si4432 , Si443x -, SSTVClient +, SSTVClient , SX1231 , SX1262 , SX1268 diff --git a/functions_func_p.html b/functions_func_p.html index 1dc90e9e..beb18aa2 100644 --- a/functions_func_p.html +++ b/functions_func_p.html @@ -91,6 +91,9 @@ $(document).ready(function(){initNavTree('functions_func_p.html',''); initResiza , Si443x , SX127x
  • +
  • PagerClient() +: PagerClient +
  • PhysicalLayer() : PhysicalLayer
  • diff --git a/functions_func_r.html b/functions_func_r.html index 4b5820d5..7043762f 100644 --- a/functions_func_r.html +++ b/functions_func_r.html @@ -118,7 +118,8 @@ $(document).ready(function(){initNavTree('functions_func_r.html',''); initResiza
  • readData() : CC1101 , nRF24 -, PhysicalLayer +, PagerClient +, PhysicalLayer , RF69 , Si443x , SX126x diff --git a/functions_func_s.html b/functions_func_s.html index 875673be..f38dd2fe 100644 --- a/functions_func_s.html +++ b/functions_func_s.html @@ -103,6 +103,9 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
  • sendPosition() : APRSClient
  • +
  • sendTone() +: PagerClient +
  • setAccessAddress() : SX128x
  • @@ -136,6 +139,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
  • setBitRate() : CC1101 +, PhysicalLayer , RF69 , Si443x , SX126x @@ -249,6 +253,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
  • setFrequency() : CC1101 , nRF24 +, PhysicalLayer , RF69 , RFM95 , RFM96 @@ -411,12 +416,12 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza : SX126x
  • setSyncWord() -: CC1101 +: CC1101 , RF69 , Si443x , SX126x -, SX127x -, SX128x +, SX127x +, SX128x
  • setTCXO() : SX126x @@ -470,7 +475,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza : Module
  • SSTVClient() -: SSTVClient +: SSTVClient
  • standby() : CC1101 @@ -481,7 +486,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza , Si443x , SX126x , SX127x -, SX128x +, SX128x
  • startChannelScan() : SX126x @@ -496,6 +501,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
  • startReceive() : CC1101 , nRF24 +, PagerClient , RF69 , Si443x , SX126x @@ -514,7 +520,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
  • startTransmit() : CC1101 , nRF24 -, PhysicalLayer +, PhysicalLayer , RF69 , Si443x , SX126x diff --git a/functions_func_t.html b/functions_func_t.html index 1d84167d..6c04672b 100644 --- a/functions_func_t.html +++ b/functions_func_t.html @@ -99,6 +99,7 @@ $(document).ready(function(){initNavTree('functions_func_t.html',''); initResiza : AX25Client , CC1101 , nRF24 +, PagerClient , PhysicalLayer , RF69 , Si443x diff --git a/functions_p.html b/functions_p.html index ed3b8c78..b773e811 100644 --- a/functions_p.html +++ b/functions_p.html @@ -91,6 +91,9 @@ $(document).ready(function(){initNavTree('functions_p.html',''); initResizable() , Si443x , SX127x
  • +
  • PagerClient() +: PagerClient +
  • PhysicalLayer() : PhysicalLayer
  • diff --git a/functions_r.html b/functions_r.html index 5f7ada06..57b790bd 100644 --- a/functions_r.html +++ b/functions_r.html @@ -121,6 +121,7 @@ $(document).ready(function(){initNavTree('functions_r.html',''); initResizable()
  • readData() : CC1101 , nRF24 +, PagerClient , PhysicalLayer , RF69 , Si443x diff --git a/functions_s.html b/functions_s.html index dd3cc1a6..4cd828b8 100644 --- a/functions_s.html +++ b/functions_s.html @@ -109,6 +109,9 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • sendSeqNumber : AX25Frame
  • +
  • sendTone() +: PagerClient +
  • setAccessAddress() : SX128x
  • @@ -142,6 +145,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • setBitRate() : CC1101 +, PhysicalLayer , RF69 , Si443x , SX126x @@ -255,6 +259,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • setFrequency() : CC1101 , nRF24 +, PhysicalLayer , RF69 , RFM95 , RFM96 @@ -417,7 +422,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() : SX126x
  • setSyncWord() -: CC1101 +: CC1101 , RF69 , Si443x , SX126x @@ -497,7 +502,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() , RF69 , RTTYClient , Si443x -, SX126x +, SX126x , SX127x , SX128x
  • @@ -514,6 +519,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • startReceive() : CC1101 , nRF24 +, PagerClient , RF69 , Si443x , SX126x diff --git a/functions_t.html b/functions_t.html index df5e48bd..f5d4989d 100644 --- a/functions_t.html +++ b/functions_t.html @@ -102,7 +102,8 @@ $(document).ready(function(){initNavTree('functions_t.html',''); initResizable() : AX25Client , CC1101 , nRF24 -, PhysicalLayer +, PagerClient +, PhysicalLayer , RF69 , Si443x , SX126x diff --git a/group__status__codes.html b/group__status__codes.html index 87416577..aa2ef0c4 100644 --- a/group__status__codes.html +++ b/group__status__codes.html @@ -326,6 +326,14 @@ Macros #define 
  • + + + + + +
    @@ -1483,6 +1489,11 @@ void  + +
    int16_t SX128x::setFrequency +virtual

    Sets carrier frequency. Allowed values are in range from 2400.0 to 2500.0 MHz.

    @@ -1494,6 +1505,8 @@ void 
    Returns
    Status Codes
    +

    Implements PhysicalLayer.

    + diff --git a/class_si4430-members.html b/class_si4430-members.html index 093e9ea5..ab8aec50 100644 --- a/class_si4430-members.html +++ b/class_si4430-members.html @@ -116,13 +116,13 @@ $(document).ready(function(){initNavTree('class_si4430.html',''); initResizable(
    PhysicalLayer::receive(String &str, size_t len=0)PhysicalLayer
    receiveDirect() overrideSi443xvirtual
    reset()Si443x
    setBitRate(float br)Si443x
    setBitRate(float br)Si443xvirtual
    setDataShaping(uint8_t sh) overrideSi443xvirtual
    setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)PhysicalLayervirtual
    setDirectAction(void(*func)(void))Si443xvirtual
    setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
    setEncoding(uint8_t encoding) overrideSi443xvirtual
    setFrequency(float freq)Si4430
    setFrequency(float freq)Si4430virtual
    setFrequencyDeviation(float freqDev) overrideSi443xvirtual
    setIrqAction(void(*func)(void))Si443x
    setOutputPower(int8_t power)Si4430
    + + + - + - + diff --git a/class_si4432-members.html b/class_si4432-members.html index 543c9ef5..bf24bd12 100644 --- a/class_si4432-members.html +++ b/class_si4432-members.html @@ -116,13 +116,13 @@ $(document).ready(function(){initNavTree('class_si4432.html',''); initResizable( - + - + diff --git a/class_si4432.html b/class_si4432.html index 0a80148e..b2632c57 100644 --- a/class_si4432.html +++ b/class_si4432.html @@ -404,6 +404,9 @@ void  + + + @@ -799,6 +802,9 @@ void  - - - - - - - - + + + + + + + + + + diff --git a/classn_r_f24.html b/classn_r_f24.html index eb6b2ae0..70033c05 100644 --- a/classn_r_f24.html +++ b/classn_r_f24.html @@ -266,6 +266,12 @@ Public Member Functions + + + + + + diff --git a/dir_6dea20bfcf2e1a380cdc520d491b79a2.html b/dir_6dea20bfcf2e1a380cdc520d491b79a2.html new file mode 100644 index 00000000..8ac06fee --- /dev/null +++ b/dir_6dea20bfcf2e1a380cdc520d491b79a2.html @@ -0,0 +1,101 @@ + + + + + + + +RadioLib: src/protocols/Pager Directory Reference + + + + + + + + + + + + + +
    +
    +
    @@ -425,6 +428,11 @@ void  + +
    int16_t Si4430::setFrequency +virtual

    Sets carrier frequency. Allowed values range from 900.0 MHz to 960.0 MHz.

    @@ -436,6 +444,8 @@ void 
    Returns
    Status Codes
    +

    Implements PhysicalLayer.

    + diff --git a/class_si4431-members.html b/class_si4431-members.html index 52353065..690f162a 100644 --- a/class_si4431-members.html +++ b/class_si4431-members.html @@ -116,13 +116,13 @@ $(document).ready(function(){initNavTree('class_si4431.html',''); initResizable(
    PhysicalLayer::receive(String &str, size_t len=0)PhysicalLayer
    receiveDirect() overrideSi443xvirtual
    reset()Si443x
    setBitRate(float br)Si443x
    setBitRate(float br)Si443xvirtual
    setDataShaping(uint8_t sh) overrideSi443xvirtual
    setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)PhysicalLayervirtual
    setDirectAction(void(*func)(void))Si443xvirtual
    setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
    setEncoding(uint8_t encoding) overrideSi443xvirtual
    setFrequency(float freq)Si4432
    setFrequency(float freq)Si4432virtual
    setFrequencyDeviation(float freqDev) overrideSi443xvirtual
    setIrqAction(void(*func)(void))Si443x
    setOutputPower(int8_t power)Si4431
    PhysicalLayer::receive(String &str, size_t len=0)PhysicalLayer
    receiveDirect() overrideSi443xvirtual
    reset()Si443x
    setBitRate(float br)Si443x
    setBitRate(float br)Si443xvirtual
    setDataShaping(uint8_t sh) overrideSi443xvirtual
    setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)PhysicalLayervirtual
    setDirectAction(void(*func)(void))Si443xvirtual
    setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
    setEncoding(uint8_t encoding) overrideSi443xvirtual
    setFrequency(float freq)Si4432
    setFrequency(float freq)Si4432virtual
    setFrequencyDeviation(float freqDev) overrideSi443xvirtual
    setIrqAction(void(*func)(void))Si443x
    setOutputPower(int8_t power)Si4432
    + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    @@ -413,6 +416,11 @@ void  + +
    int16_t Si4432::setFrequency +virtual

    Sets carrier frequency. Allowed values range from 240.0 MHz to 930.0 MHz.

    @@ -424,6 +432,8 @@ void 
    Returns
    Status Codes
    +

    Implements PhysicalLayer.

    + diff --git a/class_si443x-members.html b/class_si443x-members.html index 9dc1e34d..587a8375 100644 --- a/class_si443x-members.html +++ b/class_si443x-members.html @@ -115,39 +115,40 @@ $(document).ready(function(){initNavTree('class_si443x.html',''); initResizable(
    PhysicalLayer::receive(String &str, size_t len=0)PhysicalLayer
    receiveDirect() overrideSi443xvirtual
    reset()Si443x
    setBitRate(float br)Si443x
    setBitRate(float br)Si443xvirtual
    setDataShaping(uint8_t sh) overrideSi443xvirtual
    setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)PhysicalLayervirtual
    setDirectAction(void(*func)(void))Si443xvirtual
    setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
    setEncoding(uint8_t encoding) overrideSi443xvirtual
    setFrequencyDeviation(float freqDev) overrideSi443xvirtual
    setIrqAction(void(*func)(void))Si443x
    setPreambleLength(uint8_t preambleLen)Si443x
    setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)Si443x
    setRxBandwidth(float rxBw)Si443x
    setSyncWord(uint8_t *syncWord, size_t len)Si443x
    Si443x(Module *mod)Si443x
    sleep()Si443x
    standby() overrideSi443xvirtual
    startDirect()PhysicalLayer
    startReceive()Si443x
    startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSi443xvirtual
    startTransmit(String &str, uint8_t addr=0)Si443x
    startTransmit(const char *str, uint8_t addr=0)Si443x
    startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0Si443x
    PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
    PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer
    transmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSi443xvirtual
    transmit(__FlashStringHelper *fstr, uint8_t addr=0)Si443x
    transmit(String &str, uint8_t addr=0)Si443x
    transmit(const char *str, uint8_t addr=0)Si443x
    transmit(uint8_t *data, size_t len, uint8_t addr=0)=0Si443x
    PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
    PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
    PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
    transmitDirect(uint32_t frf=0) overrideSi443xvirtual
    variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SI443X_MAX_PACKET_LENGTH)Si443x
    setFrequency(float freq)=0PhysicalLayerpure virtual
    setFrequencyDeviation(float freqDev) overrideSi443xvirtual
    setIrqAction(void(*func)(void))Si443x
    setPreambleLength(uint8_t preambleLen)Si443x
    setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)Si443x
    setRxBandwidth(float rxBw)Si443x
    setSyncWord(uint8_t *syncWord, size_t len)Si443x
    Si443x(Module *mod)Si443x
    sleep()Si443x
    standby() overrideSi443xvirtual
    startDirect()PhysicalLayer
    startReceive()Si443x
    startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSi443xvirtual
    startTransmit(String &str, uint8_t addr=0)Si443x
    startTransmit(const char *str, uint8_t addr=0)Si443x
    startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0Si443x
    PhysicalLayer::startTransmit(String &str, uint8_t addr=0)PhysicalLayer
    PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer
    transmit(uint8_t *data, size_t len, uint8_t addr=0) overrideSi443xvirtual
    transmit(__FlashStringHelper *fstr, uint8_t addr=0)Si443x
    transmit(String &str, uint8_t addr=0)Si443x
    transmit(const char *str, uint8_t addr=0)Si443x
    transmit(uint8_t *data, size_t len, uint8_t addr=0)=0Si443x
    PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)PhysicalLayer
    PhysicalLayer::transmit(String &str, uint8_t addr=0)PhysicalLayer
    PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
    transmitDirect(uint32_t frf=0) overrideSi443xvirtual
    variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SI443X_MAX_PACKET_LENGTH)Si443x
    diff --git a/class_si443x.html b/class_si443x.html index a960240d..abe65723 100644 --- a/class_si443x.html +++ b/class_si443x.html @@ -265,6 +265,9 @@ void 
    int16_t readData (String &str, size_t len=0)
     Reads data that was received after calling startReceive method. More...
     
    virtual int16_t setFrequency (float freq)=0
     Sets carrier frequency. Allowed values range from 137.0 MHz to 525.0 MHz. More...
     
    float getFreqStep () const
     Gets the module frequency step size that was set in constructor. More...
     
    + + + - + + + + - - - - - - + + + + + + + - + + - - - - - - - + + + + + - - - - - - + + + + + + + - + - - - - - + - - + + - +
    @@ -808,6 +814,11 @@ void  + +
    int16_t Si443x::setBitRate +virtual

    Sets FSK bit rate. Allowed values range from 0.123 to 256.0 kbps.

    @@ -819,6 +830,8 @@ void 
    Returns
    Status Codes
    +

    Implements PhysicalLayer.

    + diff --git a/classes.html b/classes.html index 8669fd1a..58bebc2e 100644 --- a/classes.html +++ b/classes.html @@ -92,85 +92,86 @@ $(document).ready(function(){initNavTree('classes.html',''); initResizable(); })
      i  
      r  
    +
    PhysicalLayer   Si4431   SX1278   
      r  
    Si4432    SX1279   
    Si443x   SX127x   
    AFSKClient    ITA2String   RF69   SSTVClient   SX1280   Si443x   SX127x   
    APRSClient   
      l  
    RF69   SSTVClient   SX1280   
    AX25Client    RFM22    SSTVMode_t    SX1281   
    AX25Client   
    AX25Frame   LLCC68    RFM23    SX1231    SX1282   
    AX25Frame   LLCC68   RFM95   SX1261   SX128x   
      c  
      m  
    RFM96   RFM95   SX1261   SX128x   
    RFM96    SX1262   
      t  
    RFM97   SX1268   
    CC1101    Module   RFM98   SX126x   tone_t   RFM97   SX1268   
      f  
    MorseClient   RFM98   SX126x   tone_t   
      n  
    +
    RTTYClient    SX1272   
      n  
    -
    FSK4Client   
      s  
    SX1273   
    FSK4Client   SX1276   
      h  
    nRF24   Si4430   SX1277   SX1276   
      p  
    Si4431   SX1278   Si4430   SX1277   
    HellClient   
    PhysicalLayer   
    PagerClient   
    diff --git a/classn_r_f24-members.html b/classn_r_f24-members.html index 69bd67ed..4df98586 100644 --- a/classn_r_f24-members.html +++ b/classn_r_f24-members.html @@ -117,14 +117,16 @@ $(document).ready(function(){initNavTree('classn_r_f24.html',''); initResizable(
    setAddressWidth(uint8_t addrWidth)nRF24
    setAutoAck(bool autoAckOn=true)nRF24
    setAutoAck(uint8_t pipeNum, bool autoAckOn)nRF24
    setCrcFiltering(bool crcOn=true)nRF24
    setDataRate(int16_t dataRate)nRF24
    setDataShaping(uint8_t sh) overridenRF24virtual
    setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)PhysicalLayervirtual
    setDirectAction(void(*func)(void))nRF24virtual
    setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
    setEncoding(uint8_t encoding) overridenRF24virtual
    setFrequency(int16_t freq)nRF24
    setBitRate(float br)=0PhysicalLayerpure virtual
    setCrcFiltering(bool crcOn=true)nRF24
    setDataRate(int16_t dataRate)nRF24
    setDataShaping(uint8_t sh) overridenRF24virtual
    setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)PhysicalLayervirtual
    setDirectAction(void(*func)(void))nRF24virtual
    setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
    setEncoding(uint8_t encoding) overridenRF24virtual
    setFrequency(int16_t freq)nRF24
    PhysicalLayer::setFrequency(float freq)=0PhysicalLayerpure virtual
    setFrequencyDeviation(float freqDev) overridenRF24virtual
    setIrqAction(void(*func)(void))nRF24
    setOutputPower(int8_t power)nRF24
    int16_t readData (String &str, size_t len=0)
     Reads data that was received after calling startReceive method. More...
     
    virtual int16_t setFrequency (float freq)=0
     Sets carrier frequency. Allowed values range from 137.0 MHz to 525.0 MHz. More...
     
    virtual int16_t setBitRate (float br)=0
     Sets FSK bit rate. Allowed values range from 1.2 to 300 kbps. Only available in FSK mode. More...
     
    float getFreqStep () const
     Gets the module frequency step size that was set in constructor. More...
     
    + + + + + +
    +
    RadioLib +
    +
    Universal wireless communication library for Arduino
    +
    +
    + + + + + + + + +
    + +
    +
    +
    + +
    + +
    +
    + + +
    + +
    + +
    +
    +
    Pager Directory Reference
    +
    +
    +
    +
    + +
    + + diff --git a/dir_6dea20bfcf2e1a380cdc520d491b79a2.js b/dir_6dea20bfcf2e1a380cdc520d491b79a2.js new file mode 100644 index 00000000..cc698884 --- /dev/null +++ b/dir_6dea20bfcf2e1a380cdc520d491b79a2.js @@ -0,0 +1,4 @@ +var dir_6dea20bfcf2e1a380cdc520d491b79a2 = +[ + [ "Pager.h", "_pager_8h_source.html", null ] +]; \ No newline at end of file diff --git a/dir_79690749eba542503bb1a9a3dbb495e1.js b/dir_79690749eba542503bb1a9a3dbb495e1.js index fdc9b940..4a0b6ea3 100644 --- a/dir_79690749eba542503bb1a9a3dbb495e1.js +++ b/dir_79690749eba542503bb1a9a3dbb495e1.js @@ -6,6 +6,7 @@ var dir_79690749eba542503bb1a9a3dbb495e1 = [ "FSK4", "dir_daa71c65dcbe444af3aedb7a2ef08741.html", "dir_daa71c65dcbe444af3aedb7a2ef08741" ], [ "Hellschreiber", "dir_c14921ab4918e015c91d11c846a1924a.html", "dir_c14921ab4918e015c91d11c846a1924a" ], [ "Morse", "dir_d916eb25599dc82f14db514c97a6ae6d.html", "dir_d916eb25599dc82f14db514c97a6ae6d" ], + [ "Pager", "dir_6dea20bfcf2e1a380cdc520d491b79a2.html", "dir_6dea20bfcf2e1a380cdc520d491b79a2" ], [ "PhysicalLayer", "dir_2cdd3c47e80335731aa10f67042c391a.html", "dir_2cdd3c47e80335731aa10f67042c391a" ], [ "RTTY", "dir_620e20826520c01cf981aa9c981ff885.html", "dir_620e20826520c01cf981aa9c981ff885" ], [ "SSTV", "dir_66ce0d8112a82c480b60d648cf9cb1ca.html", "dir_66ce0d8112a82c480b60d648cf9cb1ca" ] diff --git a/files.html b/files.html index dc1c71f8..54b5f814 100644 --- a/files.html +++ b/files.html @@ -143,12 +143,14 @@ $(document).ready(function(){initNavTree('files.html',''); initResizable(); });
     Hellschreiber.h
      Morse
     Morse.h
      PhysicalLayer
     PhysicalLayer.h
      RTTY
     RTTY.h
      SSTV
     SSTV.h
      Pager
     Pager.h
      PhysicalLayer
     PhysicalLayer.h
      RTTY
     RTTY.h
      SSTV
     SSTV.h
     BuildOpt.h
     Module.h
     RadioLib.h
    RADIOLIB_ERR_RANGING_TIMEOUT   (-901)
     Timed out waiting for ranging exchange finish.
     
    +#define RADIOLIB_ERR_INVALID_PAYLOAD   (-1001)
     The provided payload data configuration is invalid.
     
    +#define RADIOLIB_ERR_ADDRESS_NOT_FOUND   (-1002)
     The requested address was not found in the received data.
     

    Detailed Description

    Macro Definition Documentation

    diff --git a/group__status__codes.js b/group__status__codes.js index 280e1520..0b4bb363 100644 --- a/group__status__codes.js +++ b/group__status__codes.js @@ -2,6 +2,7 @@ var group__status__codes = [ [ "RADIOLIB_CHANNEL_FREE", "group__status__codes.html#ga4673596b2cc7290be5ee0a2e9ee42718", null ], [ "RADIOLIB_ERR_ACK_NOT_RECEIVED", "group__status__codes.html#gafeff72bd7b618959d86b804a11f09063", null ], + [ "RADIOLIB_ERR_ADDRESS_NOT_FOUND", "group__status__codes.html#ga806183ed238159d317132b0d44d7a0a2", null ], [ "RADIOLIB_ERR_CHIP_NOT_FOUND", "group__status__codes.html#ga5d11e8ce64fb412c2169d0f30b9e9c62", null ], [ "RADIOLIB_ERR_CRC_MISMATCH", "group__status__codes.html#ga9da949184e940a4fa6f4afb63c315963", null ], [ "RADIOLIB_ERR_INVALID_ADDRESS_WIDTH", "group__status__codes.html#gafbc04b924d23cba05307e94972d7d607", null ], @@ -29,6 +30,7 @@ var group__status__codes = [ "RADIOLIB_ERR_INVALID_NUM_SAMPLES", "group__status__codes.html#gaa5d0e76a10099c6e1cfd8f24e48995a2", null ], [ "RADIOLIB_ERR_INVALID_OOK_RSSI_PEAK_TYPE", "group__status__codes.html#gabc97efb9f410af5c0a9c1e5f882e41d8", null ], [ "RADIOLIB_ERR_INVALID_OUTPUT_POWER", "group__status__codes.html#ga55da4b2ee0661872a37f1c57fc61c666", null ], + [ "RADIOLIB_ERR_INVALID_PAYLOAD", "group__status__codes.html#ga5529b54dc67d5ccdc2a29989ebf43711", null ], [ "RADIOLIB_ERR_INVALID_PIPE_NUMBER", "group__status__codes.html#ga3ed4264643f97b76f9f3cf242338573d", null ], [ "RADIOLIB_ERR_INVALID_PREAMBLE_LENGTH", "group__status__codes.html#ga9dc55947447ed9c91217f86a9bca75bb", null ], [ "RADIOLIB_ERR_INVALID_REPEATER_CALLSIGN", "group__status__codes.html#ga684497ce1c94442b5fe0396ea4ec930d", null ], diff --git a/hierarchy.html b/hierarchy.html index f65bf5a4..832ac9e4 100644 --- a/hierarchy.html +++ b/hierarchy.html @@ -97,41 +97,42 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();
     CITA2StringITA2-encoded string
     CModuleImplements all common low-level methods to control the wireless module. Every module class contains one private instance of this class
     CMorseClientClient for Morse Code communication. The public interface is the same as Arduino Serial
     CPhysicalLayerProvides 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
     CCC1101Control class for CC1101 module
     CnRF24Control class for nRF24 module
     CRF69Control class for RF69 module. Also serves as base class for SX1231
     CSX1231Control class for SX1231 module. Overrides some methods from RF69 due to different register values
     CSi443xBase 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
     CSi4432Derived class for Si4432 modules
     CSi4430Derived class for Si4430 modules
     CSi4431Derived class for Si4431 modules
     CSX126xBase 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
     CSX1262Derived class for SX1262 modules
     CLLCC68Derived class for LLCC68 modules
     CSX1261Derived class for SX1261 modules
     CSX1268Derived class for SX1268 modules
     CSX127xBase 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
     CSX1272Derived class for SX1272 modules. Also used as base class for SX1273. Both modules use the same basic hardware and only differ in parameter ranges
     CSX1273Derived class for SX1273 modules. Overrides some methods from SX1272 due to different parameter ranges
     CSX1278Derived 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)
     CRFM95Derived class for RFM95 modules. Overrides some methods from SX1278 due to different parameter ranges
     CRFM97Derived class for RFM97 modules. Overrides some methods from RFM95 due to different parameter ranges
     CRFM96Derived class for RFM96 modules. Overrides some methods from SX1278 due to different parameter ranges
     CSX1276Derived class for SX1276 modules. Overrides some methods from SX1278 due to different parameter ranges
     CSX1277Derived class for SX1277 modules. Overrides some methods from SX1278 due to different parameter ranges
     CSX1279Derived class for SX1279 modules. Overrides some methods from SX1278 due to different parameter ranges
     CSX128xBase 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
     CSX1281Derived class for SX1281 modules
     CSX1280Derived class for SX1280 modules
     CSX1282Derived class for SX1282 modules
     CRFM22Only exists as alias for Si4432, since there seems to be no difference between RFM22 and Si4432 modules
     CRFM23Only exists as alias for Si4431, since there seems to be no difference between RFM23 and Si4431 modules
     CRFM98Only exists as alias for RFM96, since there seems to be no difference between RFM96 and RFM98 modules
     CRTTYClientClient for RTTY communication. The public interface is the same as Arduino Serial
     CSSTVClientClient for SSTV transmissions
     CSSTVMode_tStructure to save data about supported SSTV modes
     Ctone_tStructure to save data about tone
     CPagerClientClient for Pager communication
     CPhysicalLayerProvides 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
     CCC1101Control class for CC1101 module
     CnRF24Control class for nRF24 module
     CRF69Control class for RF69 module. Also serves as base class for SX1231
     CSX1231Control class for SX1231 module. Overrides some methods from RF69 due to different register values
     CSi443xBase 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
     CSi4432Derived class for Si4432 modules
     CSi4430Derived class for Si4430 modules
     CSi4431Derived class for Si4431 modules
     CSX126xBase 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
     CSX1262Derived class for SX1262 modules
     CLLCC68Derived class for LLCC68 modules
     CSX1261Derived class for SX1261 modules
     CSX1268Derived class for SX1268 modules
     CSX127xBase 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
     CSX1272Derived class for SX1272 modules. Also used as base class for SX1273. Both modules use the same basic hardware and only differ in parameter ranges
     CSX1273Derived class for SX1273 modules. Overrides some methods from SX1272 due to different parameter ranges
     CSX1278Derived 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)
     CRFM95Derived class for RFM95 modules. Overrides some methods from SX1278 due to different parameter ranges
     CRFM97Derived class for RFM97 modules. Overrides some methods from RFM95 due to different parameter ranges
     CRFM96Derived class for RFM96 modules. Overrides some methods from SX1278 due to different parameter ranges
     CSX1276Derived class for SX1276 modules. Overrides some methods from SX1278 due to different parameter ranges
     CSX1277Derived class for SX1277 modules. Overrides some methods from SX1278 due to different parameter ranges
     CSX1279Derived class for SX1279 modules. Overrides some methods from SX1278 due to different parameter ranges
     CSX128xBase 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
     CSX1281Derived class for SX1281 modules
     CSX1280Derived class for SX1280 modules
     CSX1282Derived class for SX1282 modules
     CRFM22Only exists as alias for Si4432, since there seems to be no difference between RFM22 and Si4432 modules
     CRFM23Only exists as alias for Si4431, since there seems to be no difference between RFM23 and Si4431 modules
     CRFM98Only exists as alias for RFM96, since there seems to be no difference between RFM96 and RFM98 modules
     CRTTYClientClient for RTTY communication. The public interface is the same as Arduino Serial
     CSSTVClientClient for SSTV transmissions
     CSSTVMode_tStructure to save data about supported SSTV modes
     Ctone_tStructure to save data about tone
    diff --git a/hierarchy.js b/hierarchy.js index 6c7532d3..8dda6f32 100644 --- a/hierarchy.js +++ b/hierarchy.js @@ -9,6 +9,7 @@ var hierarchy = [ "ITA2String", "class_i_t_a2_string.html", null ], [ "Module", "class_module.html", null ], [ "MorseClient", "class_morse_client.html", null ], + [ "PagerClient", "class_pager_client.html", null ], [ "PhysicalLayer", "class_physical_layer.html", [ [ "CC1101", "class_c_c1101.html", null ], [ "nRF24", "classn_r_f24.html", null ], diff --git a/navtreedata.js b/navtreedata.js index 6554a6e4..c4bbbe40 100644 --- a/navtreedata.js +++ b/navtreedata.js @@ -45,10 +45,10 @@ var NAVTREE = var NAVTREEINDEX = [ "_a_f_s_k_8h_source.html", -"class_module.html#ae89764d15e8df5694a6aec0e18f72d3f", -"class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376", -"class_s_x128x.html#ab139a34e03a6fd5a781cd54da21d308f", -"group__status__codes.html#gac192dbf5134a10ed561100b01129224c" +"class_module.html#ae76932d2c2895939f8074c58848b61e8", +"class_s_x126x.html#a2ad4c6a8ac267f8ac590260414ffcda3", +"class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb", +"group__status__codes.html#ga7f57f6eddc68b9a59cceab4fdf6556ba" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/navtreeindex0.js b/navtreeindex0.js index 34d96d13..8315930c 100644 --- a/navtreeindex0.js +++ b/navtreeindex0.js @@ -10,16 +10,17 @@ var NAVTREEINDEX0 = "_l_l_c_c68_8h_source.html":[4,0,0,0,1,0], "_module_8h_source.html":[4,0,0,3], "_morse_8h_source.html":[4,0,0,1,5,0], -"_physical_layer_8h_source.html":[4,0,0,1,6,0], +"_pager_8h_source.html":[4,0,0,1,6,0], +"_physical_layer_8h_source.html":[4,0,0,1,7,0], "_r_f69_8h_source.html":[4,0,0,0,3,0], "_r_f_m22_8h_source.html":[4,0,0,0,4,0], "_r_f_m23_8h_source.html":[4,0,0,0,4,1], "_r_f_m95_8h_source.html":[4,0,0,0,5,0], "_r_f_m96_8h_source.html":[4,0,0,0,5,1], "_r_f_m97_8h_source.html":[4,0,0,0,5,2], -"_r_t_t_y_8h_source.html":[4,0,0,1,7,0], +"_r_t_t_y_8h_source.html":[4,0,0,1,8,0], "_radio_lib_8h_source.html":[4,0,0,4], -"_s_s_t_v_8h_source.html":[4,0,0,1,8,0], +"_s_s_t_v_8h_source.html":[4,0,0,1,9,0], "_s_x1231_8h_source.html":[4,0,0,0,7,0], "_s_x1261_8h_source.html":[4,0,0,0,8,0], "_s_x1262_8h_source.html":[4,0,0,0,8,1], @@ -248,6 +249,5 @@ var NAVTREEINDEX0 = "class_module.html#ad7ca9ae5a22cdacdf9437ca9cd37c9b4":[3,0,9,46], "class_module.html#ae352c7a7b997fc1b17189c1312a8347f":[3,0,9,15], "class_module.html#ae53e355a77f2b7ce6473c62ac5f37334":[3,0,9,12], -"class_module.html#ae7201089f1789070192ef1ea0c4f2498":[3,0,9,33], -"class_module.html#ae76932d2c2895939f8074c58848b61e8":[3,0,9,23] +"class_module.html#ae7201089f1789070192ef1ea0c4f2498":[3,0,9,33] }; diff --git a/navtreeindex1.js b/navtreeindex1.js index 8586032f..3b82f99a 100644 --- a/navtreeindex1.js +++ b/navtreeindex1.js @@ -1,5 +1,6 @@ var NAVTREEINDEX1 = { +"class_module.html#ae76932d2c2895939f8074c58848b61e8":[3,0,9,23], "class_module.html#ae89764d15e8df5694a6aec0e18f72d3f":[3,0,9,59], "class_module.html#aeb4c7447372d56a7cae6db91994aacfc":[3,0,9,13], "class_module.html#aeb905cec1dcdac08201cf81dea652254":[3,0,9,36], @@ -39,215 +40,214 @@ var NAVTREEINDEX1 = "class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a":[3,0,10,0], "class_morse_client.html#af466855a342b3cc70b496a79caf65232":[3,0,10,17], "class_morse_client.html#afea22f16b6360e122116da4b7b6cc2f7":[3,0,10,19], -"class_physical_layer.html":[3,0,12], -"class_physical_layer.html#a0012621c1414f4c7573e961b57884a5b":[3,0,12,32], -"class_physical_layer.html#a018393f703a257e39cd263cccf4ffad5":[3,0,12,36], -"class_physical_layer.html#a0bd6046e068ef63e3f2b6bead48e02a7":[3,0,12,4], -"class_physical_layer.html#a0e77da761a2cbb5c9535df0bdea993f9":[3,0,12,21], -"class_physical_layer.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,12,13], -"class_physical_layer.html#a34543b885aa57ade08a4c659991e523e":[3,0,12,7], -"class_physical_layer.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,12,25], -"class_physical_layer.html#a46b22145b33e97cf6065ed826799b6b4":[3,0,12,14], -"class_physical_layer.html#a47c1d94d2ad2fd7eb5d11480b44cc368":[3,0,12,16], -"class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,12,27], -"class_physical_layer.html#a4b04eb6155b06d8ef400131c647d54e7":[3,0,12,30], -"class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62":[3,0,12,0], -"class_physical_layer.html#a76113e10481743094a1cd0280692b0a9":[3,0,12,6], -"class_physical_layer.html#a7d3419227d201d6912b77784636d437d":[3,0,12,19], -"class_physical_layer.html#a88a10657bd2215a11a2331f937414b55":[3,0,12,22], -"class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab":[3,0,12,18], -"class_physical_layer.html#a923654706eff5118ef6e84214e837f27":[3,0,12,23], -"class_physical_layer.html#a929662904e9af2611e098dc13b91c977":[3,0,12,8], -"class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c":[3,0,12,3], -"class_physical_layer.html#a9b720e7776ad7ea805932578907b0058":[3,0,12,9], -"class_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,12,26], -"class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26":[3,0,12,1], -"class_physical_layer.html#ab643a814dce48f71a13bf6ea23f44cbd":[3,0,12,15], -"class_physical_layer.html#ab76fe7d3e0f453a807b205161c980086":[3,0,12,17], -"class_physical_layer.html#ab9060e8ab7a2da192b3bf53b3501553b":[3,0,12,20], -"class_physical_layer.html#ac0313fe86041eb37d290019203e095d3":[3,0,12,33], -"class_physical_layer.html#acb94e5999123b5a1c63dd279b2a5a251":[3,0,12,31], -"class_physical_layer.html#acd9171bd71aa80fb86113b612c42de53":[3,0,12,5], -"class_physical_layer.html#ae5c5757c553100373984a416b6c3690a":[3,0,12,35], -"class_physical_layer.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,12,11], -"class_physical_layer.html#ae8dd4f2f60ef4fd1fa1868a7a630ab20":[3,0,12,37], -"class_physical_layer.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,12,10], -"class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,12,28], -"class_physical_layer.html#aeba51a21ad3c6d56b61a55061de7fc92":[3,0,12,2], -"class_physical_layer.html#af068e6e862c99e39d0261a7971dd56db":[3,0,12,24], -"class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,12,29], -"class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,12,12], -"class_physical_layer.html#afeb005bab389f137def61f1acc3714d3":[3,0,12,34], -"class_r_f69.html":[3,0,13], -"class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853":[3,0,13,21], -"class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847":[3,0,13,71], -"class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638":[3,0,13,17], -"class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa":[3,0,13,24], -"class_r_f69.html#a0d7b67499462777f7909860405ca6b62":[3,0,13,4], -"class_r_f69.html#a0de2a07f264839cda945faebf7319e0e":[3,0,13,16], -"class_r_f69.html#a13ed34d82f3e08131b496196ba05a66d":[3,0,13,13], -"class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa":[3,0,13,7], -"class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b":[3,0,13,45], -"class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8":[3,0,13,36], -"class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69":[3,0,13,10], -"class_r_f69.html#a2023f0f22aad00a702bdf598c2154043":[3,0,13,23], -"class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1":[3,0,13,62], -"class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a":[3,0,13,53], -"class_r_f69.html#a222682569338abb49d6952430b6eebdd":[3,0,13,73], -"class_r_f69.html#a26667d50ec845c28e17236c69c886561":[3,0,13,60], -"class_r_f69.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,13,30], -"class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459":[3,0,13,51], -"class_r_f69.html#a35944b24d27a1ac98c1034cfcdb816cd":[3,0,13,1], -"class_r_f69.html#a3983b66c83818b4082805bcafc712f00":[3,0,13,26], -"class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b":[3,0,13,15], -"class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80":[3,0,13,9], -"class_r_f69.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,13,67], -"class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a":[3,0,13,38], -"class_r_f69.html#a434420f2def6c383608223105469fda1":[3,0,13,52], -"class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb":[3,0,13,61], -"class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,13,69], -"class_r_f69.html#a4b879c689b19036411d884f6657f95db":[3,0,13,41], -"class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee":[3,0,13,6], -"class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417":[3,0,13,12], -"class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f":[3,0,13,22], -"class_r_f69.html#a6d90ad1d455de045c53c5758babd876c":[3,0,13,56], -"class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a":[3,0,13,59], -"class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d":[3,0,13,44], -"class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9":[3,0,13,55], -"class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0":[3,0,13,11], -"class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28":[3,0,13,42], -"class_r_f69.html#a855dc194947b095b821ec1524ba6814c":[3,0,13,66], -"class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1":[3,0,13,19], -"class_r_f69.html#a923654706eff5118ef6e84214e837f27":[3,0,13,64], -"class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942":[3,0,13,2], -"class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad":[3,0,13,8], -"class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc":[3,0,13,54], -"class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a":[3,0,13,50], -"class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77":[3,0,13,39], -"class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194":[3,0,13,48], -"class_r_f69.html#aa6886410230c654400c76ec7710d623c":[3,0,13,14], -"class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf":[3,0,13,40], -"class_r_f69.html#aada7c48828b950cdfd260594d502b03d":[3,0,13,57], -"class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2":[3,0,13,43], -"class_r_f69.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,13,68], -"class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b":[3,0,13,46], -"class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c":[3,0,13,49], -"class_r_f69.html#abd556b0f455f9510213b17588a4baf1b":[3,0,13,31], -"class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3":[3,0,13,33], -"class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e":[3,0,13,37], -"class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703":[3,0,13,34], -"class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7":[3,0,13,20], -"class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13":[3,0,13,35], -"class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be":[3,0,13,47], -"class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51":[3,0,13,3], -"class_r_f69.html#ae36e8e6042245621a182b29526fe2245":[3,0,13,29], -"class_r_f69.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,13,27], -"class_r_f69.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,13,25], -"class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3":[3,0,13,5], -"class_r_f69.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,13,70], -"class_r_f69.html#af068e6e862c99e39d0261a7971dd56db":[3,0,13,65], -"class_r_f69.html#af434c67aabe02258ee6696a59973617b":[3,0,13,74], -"class_r_f69.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,13,72], -"class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a":[3,0,13,32], -"class_r_f69.html#afae38fa64242043de34096bf497725f1":[3,0,13,63], -"class_r_f69.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,13,28], -"class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448":[3,0,13,0], -"class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a":[3,0,13,58], -"class_r_f69.html#afd3a98c6ff75e1036c9ba6d5423851df":[3,0,13,18], -"class_r_f_m22.html":[3,0,14], -"class_r_f_m23.html":[3,0,15], -"class_r_f_m95.html":[3,0,16], -"class_r_f_m95.html#a5c37eaf6ae8c558a9a623157dd9f894a":[3,0,16,1], -"class_r_f_m95.html#a7e0f8fa59ddd48f7b026b0f996202b30":[3,0,16,2], -"class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326":[3,0,16,0], -"class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87":[3,0,16,3], -"class_r_f_m96.html":[3,0,17], -"class_r_f_m96.html#a82ef1b7354238637eee6f4d65b9be6e5":[3,0,17,2], -"class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a":[3,0,17,0], -"class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84":[3,0,17,3], -"class_r_f_m96.html#aef1588799e5855cb464259e8ce2d865b":[3,0,17,1], -"class_r_f_m97.html":[3,0,18], -"class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be":[3,0,18,0], -"class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67":[3,0,18,1], -"class_r_f_m98.html":[3,0,19], -"class_r_t_t_y_client.html":[3,0,20], -"class_r_t_t_y_client.html#a02feea7bcdeaee42f91507d34399777d":[3,0,20,21], -"class_r_t_t_y_client.html#a05633ffc5007424aaa97b55f9bb4832f":[3,0,20,6], -"class_r_t_t_y_client.html#a077a21423deee0393cead0b3a239691f":[3,0,20,30], -"class_r_t_t_y_client.html#a094aa9c3506c0620d01e9c5e04a60e3e":[3,0,20,28], -"class_r_t_t_y_client.html#a0b131a635864b56e8e4ed7450d69c593":[3,0,20,7], -"class_r_t_t_y_client.html#a3854b00703118c3f024eb032216b3d6d":[3,0,20,13], -"class_r_t_t_y_client.html#a49169d8cf3b4121f6930a9c70e3dc9dc":[3,0,20,29], -"class_r_t_t_y_client.html#a4cdfebbf555f3e02e650df8eef2386b8":[3,0,20,25], -"class_r_t_t_y_client.html#a4dc1637ed62069b787d27779c7a5982f":[3,0,20,14], -"class_r_t_t_y_client.html#a523a0617c3729989e18405096e5283d5":[3,0,20,11], -"class_r_t_t_y_client.html#a56981a884b5d76d820493dddb7d605ec":[3,0,20,24], -"class_r_t_t_y_client.html#a59962fb30c431d5e975cd82fcfb0b86d":[3,0,20,12], -"class_r_t_t_y_client.html#a5fc5f8235ec0a330ae602b162e09c8bb":[3,0,20,5], -"class_r_t_t_y_client.html#a6c005f4bf067d1bfa6ef7793ffb25d16":[3,0,20,22], -"class_r_t_t_y_client.html#a7201a35a28f1c43ab16c71b69153e232":[3,0,20,15], -"class_r_t_t_y_client.html#a73281624d10f9c05810527f4762fdeb9":[3,0,20,23], -"class_r_t_t_y_client.html#a7a2c72461356b6569a2076436a14d94b":[3,0,20,8], -"class_r_t_t_y_client.html#a7ec7cc1dd981198972a0d4ad031dd987":[3,0,20,17], -"class_r_t_t_y_client.html#a7f45fcc2c241a95939d34560f5631664":[3,0,20,10], -"class_r_t_t_y_client.html#a9086c57441dc8712d940a0186e3c573e":[3,0,20,16], -"class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22":[3,0,20,27], -"class_r_t_t_y_client.html#ab0e11944c2f1e2c60fc45bcd2db18570":[3,0,20,1], -"class_r_t_t_y_client.html#ab31265a133757ae99b1fd6de074a1824":[3,0,20,4], -"class_r_t_t_y_client.html#ac1ce7543eccd14a22865c1cb7b1bc69f":[3,0,20,20], -"class_r_t_t_y_client.html#ac477e65ea756e56bb9043d778a51b4bc":[3,0,20,3], -"class_r_t_t_y_client.html#ac4ae2458f8005c87161c74cf827d35b9":[3,0,20,2], -"class_r_t_t_y_client.html#ac5d60281fe24f0724ffd727034d2851d":[3,0,20,26], -"class_r_t_t_y_client.html#ac6b22c13d227bca5ac80ce3fa855f75a":[3,0,20,9], -"class_r_t_t_y_client.html#ae4f9506d85cde12c8265d71b5088dec6":[3,0,20,19], -"class_r_t_t_y_client.html#ae6bc08fa88457ee00a992448be1d63ea":[3,0,20,0], -"class_r_t_t_y_client.html#af51f7af5ca169a1dcfab604789b466dc":[3,0,20,18], -"class_s_s_t_v_client.html":[3,0,25], -"class_s_s_t_v_client.html#a0126ac04934f589b8cb04a038c342044":[3,0,25,5], -"class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e":[3,0,25,6], -"class_s_s_t_v_client.html#a3d85be3941250366eec2cd9a147a4f5c":[3,0,25,3], -"class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0":[3,0,25,7], -"class_s_s_t_v_client.html#a8606cf73f86f6f1b29cea9ae9b46c81e":[3,0,25,2], -"class_s_s_t_v_client.html#a99e46bec8403dfc36b9e5b102b1f7cf1":[3,0,25,1], -"class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d":[3,0,25,4], -"class_s_s_t_v_client.html#af15cf501c00172270d2d2c43d7a7100a":[3,0,25,0], -"class_s_x1231.html":[3,0,27], -"class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244":[3,0,27,1], -"class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269":[3,0,27,0], -"class_s_x1261.html":[3,0,28], -"class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35":[3,0,28,0], -"class_s_x1261.html#aa541f927995a1756c651b93fd24edc65":[3,0,28,1], -"class_s_x1262.html":[3,0,29], -"class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d":[3,0,29,0], -"class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1":[3,0,29,2], -"class_s_x1262.html#a7e72da22fa1fc2d87186107a3285e846":[3,0,29,3], -"class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc":[3,0,29,1], -"class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc":[3,0,29,4], -"class_s_x1268.html":[3,0,30], -"class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45":[3,0,30,4], -"class_s_x1268.html#a6ad998275281de5c6f24f8a64db88052":[3,0,30,3], -"class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f":[3,0,30,0], -"class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71":[3,0,30,1], -"class_s_x1268.html#af6b041392136b599eec57085e2067a6f":[3,0,30,2], -"class_s_x126x.html":[3,0,31], -"class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d":[3,0,31,39], -"class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925":[3,0,31,16], -"class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676":[3,0,31,38], -"class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2":[3,0,31,47], -"class_s_x126x.html#a288257242e483cb3eb6944333179dd26":[3,0,31,48], -"class_s_x126x.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,31,28], -"class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60":[3,0,31,42], -"class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c":[3,0,31,3], -"class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08":[3,0,31,32], -"class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2":[3,0,31,24], -"class_s_x126x.html#a3765f534418d4e0540c179621c019138":[3,0,31,6], -"class_s_x126x.html#a37a716aab163aebbe36599dc7e530c92":[3,0,31,59], -"class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf":[3,0,31,52], -"class_s_x126x.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,31,66], -"class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8":[3,0,31,9], -"class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,31,68], -"class_s_x126x.html#a514cabe74bbe3434d7e4f244c4077752":[3,0,31,44], -"class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6":[3,0,31,54], -"class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22":[3,0,31,49], -"class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8":[3,0,31,46] +"class_pager_client.html":[3,0,12], +"class_pager_client.html#a158d97e372ade18db408484c8cb35428":[3,0,12,4], +"class_pager_client.html#a77aafe7c86e6e1e4e22990be4e7f090b":[3,0,12,9], +"class_pager_client.html#a897f990002a4a2196fcdb31c547e0648":[3,0,12,8], +"class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111":[3,0,12,5], +"class_pager_client.html#a947e37884f59c9e1a6b7d5dd817316fe":[3,0,12,3], +"class_pager_client.html#a9f978120467b13104fb356e9b7d855ec":[3,0,12,0], +"class_pager_client.html#aab6a8977f89d43620b98bcedf5a47dbd":[3,0,12,7], +"class_pager_client.html#ad6f4f034b71311144f76b629a8ef8f8d":[3,0,12,6], +"class_pager_client.html#aec073fa9e5adcff9730482d9583715e9":[3,0,12,1], +"class_pager_client.html#afe4c4806471001c01b35bce0f1fe4e58":[3,0,12,2], +"class_physical_layer.html":[3,0,13], +"class_physical_layer.html#a0012621c1414f4c7573e961b57884a5b":[3,0,13,34], +"class_physical_layer.html#a018393f703a257e39cd263cccf4ffad5":[3,0,13,39], +"class_physical_layer.html#a0bd6046e068ef63e3f2b6bead48e02a7":[3,0,13,4], +"class_physical_layer.html#a0e77da761a2cbb5c9535df0bdea993f9":[3,0,13,23], +"class_physical_layer.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,13,13], +"class_physical_layer.html#a34543b885aa57ade08a4c659991e523e":[3,0,13,7], +"class_physical_layer.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,13,27], +"class_physical_layer.html#a41ff2710d9e3a626becfa7a093900052":[3,0,13,38], +"class_physical_layer.html#a46b22145b33e97cf6065ed826799b6b4":[3,0,13,14], +"class_physical_layer.html#a47c1d94d2ad2fd7eb5d11480b44cc368":[3,0,13,17], +"class_physical_layer.html#a4928642e647f2dd5b614b87b681cb0a6":[3,0,13,21], +"class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,13,29], +"class_physical_layer.html#a4b04eb6155b06d8ef400131c647d54e7":[3,0,13,32], +"class_physical_layer.html#a56e9cf39bc8847492f7f3cd67ebf1c46":[3,0,13,15], +"class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62":[3,0,13,0], +"class_physical_layer.html#a76113e10481743094a1cd0280692b0a9":[3,0,13,6], +"class_physical_layer.html#a7d3419227d201d6912b77784636d437d":[3,0,13,20], +"class_physical_layer.html#a88a10657bd2215a11a2331f937414b55":[3,0,13,24], +"class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab":[3,0,13,19], +"class_physical_layer.html#a923654706eff5118ef6e84214e837f27":[3,0,13,25], +"class_physical_layer.html#a929662904e9af2611e098dc13b91c977":[3,0,13,8], +"class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c":[3,0,13,3], +"class_physical_layer.html#a9b720e7776ad7ea805932578907b0058":[3,0,13,9], +"class_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,13,28], +"class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26":[3,0,13,1], +"class_physical_layer.html#ab643a814dce48f71a13bf6ea23f44cbd":[3,0,13,16], +"class_physical_layer.html#ab76fe7d3e0f453a807b205161c980086":[3,0,13,18], +"class_physical_layer.html#ab9060e8ab7a2da192b3bf53b3501553b":[3,0,13,22], +"class_physical_layer.html#ac0313fe86041eb37d290019203e095d3":[3,0,13,35], +"class_physical_layer.html#acb94e5999123b5a1c63dd279b2a5a251":[3,0,13,33], +"class_physical_layer.html#acd9171bd71aa80fb86113b612c42de53":[3,0,13,5], +"class_physical_layer.html#ae5c5757c553100373984a416b6c3690a":[3,0,13,37], +"class_physical_layer.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,13,11], +"class_physical_layer.html#ae8dd4f2f60ef4fd1fa1868a7a630ab20":[3,0,13,40], +"class_physical_layer.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,13,10], +"class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,13,30], +"class_physical_layer.html#aeba51a21ad3c6d56b61a55061de7fc92":[3,0,13,2], +"class_physical_layer.html#af068e6e862c99e39d0261a7971dd56db":[3,0,13,26], +"class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,13,31], +"class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,13,12], +"class_physical_layer.html#afeb005bab389f137def61f1acc3714d3":[3,0,13,36], +"class_r_f69.html":[3,0,14], +"class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853":[3,0,14,21], +"class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847":[3,0,14,71], +"class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638":[3,0,14,17], +"class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa":[3,0,14,24], +"class_r_f69.html#a0d7b67499462777f7909860405ca6b62":[3,0,14,4], +"class_r_f69.html#a0de2a07f264839cda945faebf7319e0e":[3,0,14,16], +"class_r_f69.html#a13ed34d82f3e08131b496196ba05a66d":[3,0,14,13], +"class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa":[3,0,14,7], +"class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b":[3,0,14,45], +"class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8":[3,0,14,36], +"class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69":[3,0,14,10], +"class_r_f69.html#a2023f0f22aad00a702bdf598c2154043":[3,0,14,23], +"class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1":[3,0,14,62], +"class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a":[3,0,14,53], +"class_r_f69.html#a222682569338abb49d6952430b6eebdd":[3,0,14,73], +"class_r_f69.html#a26667d50ec845c28e17236c69c886561":[3,0,14,60], +"class_r_f69.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,14,30], +"class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459":[3,0,14,51], +"class_r_f69.html#a35944b24d27a1ac98c1034cfcdb816cd":[3,0,14,1], +"class_r_f69.html#a3983b66c83818b4082805bcafc712f00":[3,0,14,26], +"class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b":[3,0,14,15], +"class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80":[3,0,14,9], +"class_r_f69.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,14,67], +"class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a":[3,0,14,38], +"class_r_f69.html#a434420f2def6c383608223105469fda1":[3,0,14,52], +"class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb":[3,0,14,61], +"class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,14,69], +"class_r_f69.html#a4b879c689b19036411d884f6657f95db":[3,0,14,41], +"class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee":[3,0,14,6], +"class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417":[3,0,14,12], +"class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f":[3,0,14,22], +"class_r_f69.html#a6d90ad1d455de045c53c5758babd876c":[3,0,14,56], +"class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a":[3,0,14,59], +"class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d":[3,0,14,44], +"class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9":[3,0,14,55], +"class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0":[3,0,14,11], +"class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28":[3,0,14,42], +"class_r_f69.html#a855dc194947b095b821ec1524ba6814c":[3,0,14,66], +"class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1":[3,0,14,19], +"class_r_f69.html#a923654706eff5118ef6e84214e837f27":[3,0,14,64], +"class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942":[3,0,14,2], +"class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad":[3,0,14,8], +"class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc":[3,0,14,54], +"class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a":[3,0,14,50], +"class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77":[3,0,14,39], +"class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194":[3,0,14,48], +"class_r_f69.html#aa6886410230c654400c76ec7710d623c":[3,0,14,14], +"class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf":[3,0,14,40], +"class_r_f69.html#aada7c48828b950cdfd260594d502b03d":[3,0,14,57], +"class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2":[3,0,14,43], +"class_r_f69.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,14,68], +"class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b":[3,0,14,46], +"class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c":[3,0,14,49], +"class_r_f69.html#abd556b0f455f9510213b17588a4baf1b":[3,0,14,31], +"class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3":[3,0,14,33], +"class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e":[3,0,14,37], +"class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703":[3,0,14,34], +"class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7":[3,0,14,20], +"class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13":[3,0,14,35], +"class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be":[3,0,14,47], +"class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51":[3,0,14,3], +"class_r_f69.html#ae36e8e6042245621a182b29526fe2245":[3,0,14,29], +"class_r_f69.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,14,27], +"class_r_f69.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,14,25], +"class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3":[3,0,14,5], +"class_r_f69.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,14,70], +"class_r_f69.html#af068e6e862c99e39d0261a7971dd56db":[3,0,14,65], +"class_r_f69.html#af434c67aabe02258ee6696a59973617b":[3,0,14,74], +"class_r_f69.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,14,72], +"class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a":[3,0,14,32], +"class_r_f69.html#afae38fa64242043de34096bf497725f1":[3,0,14,63], +"class_r_f69.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,14,28], +"class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448":[3,0,14,0], +"class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a":[3,0,14,58], +"class_r_f69.html#afd3a98c6ff75e1036c9ba6d5423851df":[3,0,14,18], +"class_r_f_m22.html":[3,0,15], +"class_r_f_m23.html":[3,0,16], +"class_r_f_m95.html":[3,0,17], +"class_r_f_m95.html#a5c37eaf6ae8c558a9a623157dd9f894a":[3,0,17,1], +"class_r_f_m95.html#a7e0f8fa59ddd48f7b026b0f996202b30":[3,0,17,2], +"class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326":[3,0,17,0], +"class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87":[3,0,17,3], +"class_r_f_m96.html":[3,0,18], +"class_r_f_m96.html#a82ef1b7354238637eee6f4d65b9be6e5":[3,0,18,2], +"class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a":[3,0,18,0], +"class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84":[3,0,18,3], +"class_r_f_m96.html#aef1588799e5855cb464259e8ce2d865b":[3,0,18,1], +"class_r_f_m97.html":[3,0,19], +"class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be":[3,0,19,0], +"class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67":[3,0,19,1], +"class_r_f_m98.html":[3,0,20], +"class_r_t_t_y_client.html":[3,0,21], +"class_r_t_t_y_client.html#a02feea7bcdeaee42f91507d34399777d":[3,0,21,21], +"class_r_t_t_y_client.html#a05633ffc5007424aaa97b55f9bb4832f":[3,0,21,6], +"class_r_t_t_y_client.html#a077a21423deee0393cead0b3a239691f":[3,0,21,30], +"class_r_t_t_y_client.html#a094aa9c3506c0620d01e9c5e04a60e3e":[3,0,21,28], +"class_r_t_t_y_client.html#a0b131a635864b56e8e4ed7450d69c593":[3,0,21,7], +"class_r_t_t_y_client.html#a3854b00703118c3f024eb032216b3d6d":[3,0,21,13], +"class_r_t_t_y_client.html#a49169d8cf3b4121f6930a9c70e3dc9dc":[3,0,21,29], +"class_r_t_t_y_client.html#a4cdfebbf555f3e02e650df8eef2386b8":[3,0,21,25], +"class_r_t_t_y_client.html#a4dc1637ed62069b787d27779c7a5982f":[3,0,21,14], +"class_r_t_t_y_client.html#a523a0617c3729989e18405096e5283d5":[3,0,21,11], +"class_r_t_t_y_client.html#a56981a884b5d76d820493dddb7d605ec":[3,0,21,24], +"class_r_t_t_y_client.html#a59962fb30c431d5e975cd82fcfb0b86d":[3,0,21,12], +"class_r_t_t_y_client.html#a5fc5f8235ec0a330ae602b162e09c8bb":[3,0,21,5], +"class_r_t_t_y_client.html#a6c005f4bf067d1bfa6ef7793ffb25d16":[3,0,21,22], +"class_r_t_t_y_client.html#a7201a35a28f1c43ab16c71b69153e232":[3,0,21,15], +"class_r_t_t_y_client.html#a73281624d10f9c05810527f4762fdeb9":[3,0,21,23], +"class_r_t_t_y_client.html#a7a2c72461356b6569a2076436a14d94b":[3,0,21,8], +"class_r_t_t_y_client.html#a7ec7cc1dd981198972a0d4ad031dd987":[3,0,21,17], +"class_r_t_t_y_client.html#a7f45fcc2c241a95939d34560f5631664":[3,0,21,10], +"class_r_t_t_y_client.html#a9086c57441dc8712d940a0186e3c573e":[3,0,21,16], +"class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22":[3,0,21,27], +"class_r_t_t_y_client.html#ab0e11944c2f1e2c60fc45bcd2db18570":[3,0,21,1], +"class_r_t_t_y_client.html#ab31265a133757ae99b1fd6de074a1824":[3,0,21,4], +"class_r_t_t_y_client.html#ac1ce7543eccd14a22865c1cb7b1bc69f":[3,0,21,20], +"class_r_t_t_y_client.html#ac477e65ea756e56bb9043d778a51b4bc":[3,0,21,3], +"class_r_t_t_y_client.html#ac4ae2458f8005c87161c74cf827d35b9":[3,0,21,2], +"class_r_t_t_y_client.html#ac5d60281fe24f0724ffd727034d2851d":[3,0,21,26], +"class_r_t_t_y_client.html#ac6b22c13d227bca5ac80ce3fa855f75a":[3,0,21,9], +"class_r_t_t_y_client.html#ae4f9506d85cde12c8265d71b5088dec6":[3,0,21,19], +"class_r_t_t_y_client.html#ae6bc08fa88457ee00a992448be1d63ea":[3,0,21,0], +"class_r_t_t_y_client.html#af51f7af5ca169a1dcfab604789b466dc":[3,0,21,18], +"class_s_s_t_v_client.html":[3,0,26], +"class_s_s_t_v_client.html#a0126ac04934f589b8cb04a038c342044":[3,0,26,5], +"class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e":[3,0,26,6], +"class_s_s_t_v_client.html#a3d85be3941250366eec2cd9a147a4f5c":[3,0,26,3], +"class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0":[3,0,26,7], +"class_s_s_t_v_client.html#a8606cf73f86f6f1b29cea9ae9b46c81e":[3,0,26,2], +"class_s_s_t_v_client.html#a99e46bec8403dfc36b9e5b102b1f7cf1":[3,0,26,1], +"class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d":[3,0,26,4], +"class_s_s_t_v_client.html#af15cf501c00172270d2d2c43d7a7100a":[3,0,26,0], +"class_s_x1231.html":[3,0,28], +"class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244":[3,0,28,1], +"class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269":[3,0,28,0], +"class_s_x1261.html":[3,0,29], +"class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35":[3,0,29,0], +"class_s_x1261.html#aa541f927995a1756c651b93fd24edc65":[3,0,29,1], +"class_s_x1262.html":[3,0,30], +"class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d":[3,0,30,0], +"class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1":[3,0,30,2], +"class_s_x1262.html#a7e72da22fa1fc2d87186107a3285e846":[3,0,30,3], +"class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc":[3,0,30,1], +"class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc":[3,0,30,4], +"class_s_x1268.html":[3,0,31], +"class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45":[3,0,31,4], +"class_s_x1268.html#a6ad998275281de5c6f24f8a64db88052":[3,0,31,3], +"class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f":[3,0,31,0], +"class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71":[3,0,31,1], +"class_s_x1268.html#af6b041392136b599eec57085e2067a6f":[3,0,31,2], +"class_s_x126x.html":[3,0,32], +"class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d":[3,0,32,39], +"class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925":[3,0,32,16], +"class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676":[3,0,32,38], +"class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2":[3,0,32,47], +"class_s_x126x.html#a288257242e483cb3eb6944333179dd26":[3,0,32,48] }; diff --git a/navtreeindex2.js b/navtreeindex2.js index 0d424c45..ecfe2763 100644 --- a/navtreeindex2.js +++ b/navtreeindex2.js @@ -1,253 +1,253 @@ var NAVTREEINDEX2 = { -"class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376":[3,0,31,55], -"class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd":[3,0,31,4], -"class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f":[3,0,31,62], -"class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71":[3,0,31,57], -"class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3":[3,0,31,43], -"class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e":[3,0,31,33], -"class_s_x126x.html#a7e342ddbef84cf845bef8f4448b8da10":[3,0,31,19], -"class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561":[3,0,31,21], -"class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435":[3,0,31,29], -"class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e":[3,0,31,7], -"class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e":[3,0,31,37], -"class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b":[3,0,31,72], -"class_s_x126x.html#a923654706eff5118ef6e84214e837f27":[3,0,31,63], -"class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d":[3,0,31,73], -"class_s_x126x.html#a936a40038e05740a528f2b53f8e17010":[3,0,31,2], -"class_s_x126x.html#a95007639c2648a1dbb614493224606f1":[3,0,31,36], -"class_s_x126x.html#a9a9b090eddcb811ee19b595debfab1df":[3,0,31,13], -"class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f":[3,0,31,30], -"class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f":[3,0,31,53], -"class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab":[3,0,31,11], -"class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009":[3,0,31,70], -"class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8":[3,0,31,0], -"class_s_x126x.html#aae1af90432c457e5bf8f8f362295399b":[3,0,31,14], -"class_s_x126x.html#ab00f765bbfbfaa8c693532ea3a90c29b":[3,0,31,45], -"class_s_x126x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,31,67], -"class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1":[3,0,31,65], -"class_s_x126x.html#ab9ce38cfeaa36ddcc2d82b2974d7088c":[3,0,31,1], -"class_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a":[3,0,31,41], -"class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5":[3,0,31,8], -"class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034":[3,0,31,34], -"class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f":[3,0,31,10], -"class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987":[3,0,31,15], -"class_s_x126x.html#ac594fbb30c5010658c970a64654c7162":[3,0,31,51], -"class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9":[3,0,31,12], -"class_s_x126x.html#ad7569396f09f3867dc1bd4d4a0613acd":[3,0,31,58], -"class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136":[3,0,31,61], -"class_s_x126x.html#adec09cba71494bd927ad1da786606ca6":[3,0,31,20], -"class_s_x126x.html#ae36664f9c605a8fe74b2f357e0ec3323":[3,0,31,17], -"class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca":[3,0,31,18], -"class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0":[3,0,31,27], -"class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf":[3,0,31,40], -"class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d":[3,0,31,50], -"class_s_x126x.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,31,25], -"class_s_x126x.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,31,23], -"class_s_x126x.html#ae9f24414bd684434c310df54b3558f21":[3,0,31,31], -"class_s_x126x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,31,69], -"class_s_x126x.html#aeb92dc9d2e2a2b3a3a5ff2856528d497":[3,0,31,60], -"class_s_x126x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,31,64], -"class_s_x126x.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,31,71], -"class_s_x126x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,31,26], -"class_s_x126x.html#afb5509f0705cdd971065251ed6b2fb4e":[3,0,31,56], -"class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2":[3,0,31,5], -"class_s_x126x.html#afd3113858966e878e9c67a1e710bd586":[3,0,31,35], -"class_s_x126x.html#aff80db65e546934980feac7e6c81dd80":[3,0,31,22], -"class_s_x1272.html":[3,0,32], -"class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac":[3,0,32,8], -"class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b":[3,0,32,9], -"class_s_x1272.html#a0d8e68cf913422535dc43cbdf73a3f10":[3,0,32,6], -"class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47":[3,0,32,13], -"class_s_x1272.html#a4aaf9d61310fa7b4fce413ae53d30ac0":[3,0,32,5], -"class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3":[3,0,32,7], -"class_s_x1272.html#a6677a04aa0c2f3bbde2509786b6a66de":[3,0,32,16], -"class_s_x1272.html#a82084ac58502c83d2ada998410307490":[3,0,32,17], -"class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260":[3,0,32,3], -"class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea":[3,0,32,12], -"class_s_x1272.html#a960913438feccad4c1913a9222384a5f":[3,0,32,10], -"class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626":[3,0,32,0], -"class_s_x1272.html#abb4bbfe8acc6026c833d267d78417b63":[3,0,32,1], -"class_s_x1272.html#abd912314a977f92c464d36d862329ffc":[3,0,32,11], -"class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852":[3,0,32,15], -"class_s_x1272.html#ae3c9704cb58232f696b5f90f69c115f7":[3,0,32,4], -"class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9":[3,0,32,2], -"class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8":[3,0,32,14], -"class_s_x1273.html":[3,0,33], -"class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2":[3,0,33,1], -"class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f":[3,0,33,2], -"class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b":[3,0,33,0], -"class_s_x1276.html":[3,0,34], -"class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008":[3,0,34,3], -"class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b":[3,0,34,0], -"class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7":[3,0,34,1], -"class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840":[3,0,34,2], -"class_s_x1277.html":[3,0,35], -"class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf":[3,0,35,4], -"class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda":[3,0,35,0], -"class_s_x1277.html#a42adde5eecccdca95214980848795e82":[3,0,35,3], -"class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3":[3,0,35,1], -"class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44":[3,0,35,2], -"class_s_x1278.html":[3,0,36], -"class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e":[3,0,36,0], -"class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4":[3,0,36,13], -"class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6":[3,0,36,9], -"class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e":[3,0,36,7], -"class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4":[3,0,36,14], -"class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad":[3,0,36,8], -"class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856":[3,0,36,5], -"class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1":[3,0,36,4], -"class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88":[3,0,36,16], -"class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1":[3,0,36,10], -"class_s_x1278.html#a86464af008b71d12948690b780280e7d":[3,0,36,3], -"class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf":[3,0,36,2], -"class_s_x1278.html#aa57b713988cfa224a6db2ff325052931":[3,0,36,15], -"class_s_x1278.html#ac0be7586b8e40355bbd29d78ae9941d1":[3,0,36,11], -"class_s_x1278.html#ae02adcde8c2978c0d1b157729dd5df1e":[3,0,36,1], -"class_s_x1278.html#ae52d84fa301309a4a4294312571fc3b8":[3,0,36,6], -"class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08":[3,0,36,17], -"class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563":[3,0,36,12], -"class_s_x1279.html":[3,0,37], -"class_s_x1279.html#a324a37dee0522f43692cd414141becc2":[3,0,37,1], -"class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b":[3,0,37,2], -"class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a":[3,0,37,0], -"class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817":[3,0,37,3], -"class_s_x127x.html":[3,0,38], -"class_s_x127x.html#a071442611a32154e8b3db7981f242a53":[3,0,38,31], -"class_s_x127x.html#a0995088d37689a3c240a1af791df6cf1":[3,0,38,29], -"class_s_x127x.html#a0f041e91ab2fbb6f05eef56b5addac71":[3,0,38,7], -"class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538":[3,0,38,60], -"class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa":[3,0,38,10], -"class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c":[3,0,38,85], -"class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059":[3,0,38,73], -"class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04":[3,0,38,28], -"class_s_x127x.html#a201c31366f32c41b801724fb662265c1":[3,0,38,56], -"class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee":[3,0,38,59], -"class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a":[3,0,38,12], -"class_s_x127x.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,38,37], -"class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53":[3,0,38,68], -"class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc":[3,0,38,23], -"class_s_x127x.html#a2f993bc663b8937f3683047f5e3b2509":[3,0,38,11], -"class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68":[3,0,38,39], -"class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002":[3,0,38,47], -"class_s_x127x.html#a41089d9e5b45217d3e31ac22b5326b66":[3,0,38,5], -"class_s_x127x.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,38,78], -"class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e":[3,0,38,41], -"class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df":[3,0,38,71], -"class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679":[3,0,38,57], -"class_s_x127x.html#a462fa74275e67c296328a01f361892d5":[3,0,38,24], -"class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54":[3,0,38,62], -"class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,38,80], -"class_s_x127x.html#a4c27736905cf848a67d6cbc92df823b8":[3,0,38,22], -"class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544":[3,0,38,15], -"class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76":[3,0,38,67], -"class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c":[3,0,38,18], -"class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430":[3,0,38,1], -"class_s_x127x.html#a606d839b3a992c681ac9ad7ca6020022":[3,0,38,44], -"class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef":[3,0,38,43], -"class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450":[3,0,38,30], -"class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359":[3,0,38,14], -"class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb":[3,0,38,55], -"class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823":[3,0,38,3], -"class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41":[3,0,38,72], -"class_s_x127x.html#a7b85344084b800966a46ace59dcb5277":[3,0,38,51], -"class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1":[3,0,38,54], -"class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f":[3,0,38,13], -"class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd":[3,0,38,9], -"class_s_x127x.html#a8b93142202167270db109d18b743c744":[3,0,38,63], -"class_s_x127x.html#a923654706eff5118ef6e84214e837f27":[3,0,38,75], -"class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1":[3,0,38,26], -"class_s_x127x.html#a9b3a76eb89cad60dcad92513e6848f5a":[3,0,38,46], -"class_s_x127x.html#a9b6532a25e1730973ac08146008adca5":[3,0,38,4], -"class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc":[3,0,38,69], -"class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29":[3,0,38,82], -"class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238":[3,0,38,52], -"class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f":[3,0,38,38], -"class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1":[3,0,38,6], -"class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d":[3,0,38,61], -"class_s_x127x.html#ab0f67330124cefc07a462e77922453d0":[3,0,38,42], -"class_s_x127x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,38,79], -"class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed":[3,0,38,64], -"class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95":[3,0,38,58], -"class_s_x127x.html#abad2d455012bd28d304589c8164390eb":[3,0,38,53], -"class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb":[3,0,38,25], -"class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40":[3,0,38,45], -"class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745":[3,0,38,33], -"class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde":[3,0,38,70], -"class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d":[3,0,38,21], -"class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c":[3,0,38,0], -"class_s_x127x.html#ad3955f85f456edae772a51025a19029b":[3,0,38,66], -"class_s_x127x.html#ad532e1a62c6ee2c58f9517e6e62728ac":[3,0,38,27], -"class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617":[3,0,38,19], -"class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5":[3,0,38,40], -"class_s_x127x.html#ada53419d65f207f352124da7747c5960":[3,0,38,48], -"class_s_x127x.html#adbea7515add3d81c3024ceb0d570266b":[3,0,38,50], -"class_s_x127x.html#adc25b685de0859b799488bf7729350b6":[3,0,38,17], -"class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083":[3,0,38,77], -"class_s_x127x.html#add78edb65673d9e88931a55b0672a9f3":[3,0,38,2], -"class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c":[3,0,38,36], -"class_s_x127x.html#adffb96b7f80dc43909bb4cebde68fe9d":[3,0,38,74], -"class_s_x127x.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,38,34], -"class_s_x127x.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,38,32], -"class_s_x127x.html#ae9781180418c1ec9c365b74acbc98d8a":[3,0,38,65], -"class_s_x127x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,38,81], -"class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd":[3,0,38,16], -"class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84":[3,0,38,84], -"class_s_x127x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,38,76], -"class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362":[3,0,38,20], -"class_s_x127x.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,38,83], -"class_s_x127x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,38,35], -"class_s_x127x.html#afc844f7f3530f4076c8ea5f684c1b123":[3,0,38,49], -"class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5":[3,0,38,8], -"class_s_x1280.html":[3,0,39], -"class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb":[3,0,39,0], -"class_s_x1280.html#a812e289084b2f78977b254c28f0fff7c":[3,0,39,2], -"class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f":[3,0,39,1], -"class_s_x1280.html#af30ff497ca3bcc043dc4dc2e7587a795":[3,0,39,3], -"class_s_x1281.html":[3,0,40], -"class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998":[3,0,40,0], -"class_s_x1282.html":[3,0,41], -"class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232":[3,0,41,0], -"class_s_x128x.html":[3,0,42], -"class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed":[3,0,42,32], -"class_s_x128x.html#a0efa595867624a54153d693d16f9f731":[3,0,42,43], -"class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133":[3,0,42,40], -"class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1":[3,0,42,44], -"class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f":[3,0,42,46], -"class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371":[3,0,42,35], -"class_s_x128x.html#a2361a94f2e12ebc93e750a027d633232":[3,0,42,13], -"class_s_x128x.html#a2643ce22176293631fea2169f5e68e66":[3,0,42,24], -"class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1":[3,0,42,36], -"class_s_x128x.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,42,22], -"class_s_x128x.html#a2b424000856a9dc212f571d0e8890635":[3,0,42,8], -"class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45":[3,0,42,47], -"class_s_x128x.html#a2dd0ecae9f54cf6943cf702ae15f5039":[3,0,42,16], -"class_s_x128x.html#a316340d7ba2a6e7cb5742e3ff21e728c":[3,0,42,2], -"class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99":[3,0,42,21], -"class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91":[3,0,42,37], -"class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735":[3,0,42,10], -"class_s_x128x.html#a3bee00ec197ef9855c0079cb0a3009a6":[3,0,42,28], -"class_s_x128x.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,42,53], -"class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4":[3,0,42,7], -"class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,42,55], -"class_s_x128x.html#a53892566b0259d348158efe3c3c3601a":[3,0,42,59], -"class_s_x128x.html#a5f11803b3430bc059321b443f407e78b":[3,0,42,41], -"class_s_x128x.html#a69ee7379f4b79abf626df186b2db6441":[3,0,42,9], -"class_s_x128x.html#a73e3655e92bca9a06e2d0abbf1a4bed4":[3,0,42,38], -"class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947":[3,0,42,34], -"class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb":[3,0,42,25], -"class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2":[3,0,42,12], -"class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f":[3,0,42,45], -"class_s_x128x.html#a8dd8ce38bc9d0d8dbd711b373e864e93":[3,0,42,4], -"class_s_x128x.html#a923654706eff5118ef6e84214e837f27":[3,0,42,50], -"class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5":[3,0,42,26], -"class_s_x128x.html#a94b7fb26cc99385d30b0c98b76d8188d":[3,0,42,6], -"class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb":[3,0,42,18], -"class_s_x128x.html#a94d3003277925e2dc3372548b3311008":[3,0,42,11], -"class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a":[3,0,42,15], -"class_s_x128x.html#a99491c705e88dddc820f884b778f1660":[3,0,42,31], -"class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7":[3,0,42,0], -"class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a":[3,0,42,29], -"class_s_x128x.html#aa11ba80f0cebb3e6927c775ad5f96b4e":[3,0,42,48], -"class_s_x128x.html#aa4b1e0b96347011522e053f30202c0fe":[3,0,42,30] +"class_s_x126x.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,32,28], +"class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60":[3,0,32,42], +"class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c":[3,0,32,3], +"class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08":[3,0,32,32], +"class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2":[3,0,32,24], +"class_s_x126x.html#a3765f534418d4e0540c179621c019138":[3,0,32,6], +"class_s_x126x.html#a37a716aab163aebbe36599dc7e530c92":[3,0,32,59], +"class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf":[3,0,32,52], +"class_s_x126x.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,32,66], +"class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8":[3,0,32,9], +"class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,32,68], +"class_s_x126x.html#a514cabe74bbe3434d7e4f244c4077752":[3,0,32,44], +"class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6":[3,0,32,54], +"class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22":[3,0,32,49], +"class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8":[3,0,32,46], +"class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376":[3,0,32,55], +"class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd":[3,0,32,4], +"class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f":[3,0,32,62], +"class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71":[3,0,32,57], +"class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3":[3,0,32,43], +"class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e":[3,0,32,33], +"class_s_x126x.html#a7e342ddbef84cf845bef8f4448b8da10":[3,0,32,19], +"class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561":[3,0,32,21], +"class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435":[3,0,32,29], +"class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e":[3,0,32,7], +"class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e":[3,0,32,37], +"class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b":[3,0,32,72], +"class_s_x126x.html#a923654706eff5118ef6e84214e837f27":[3,0,32,63], +"class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d":[3,0,32,73], +"class_s_x126x.html#a936a40038e05740a528f2b53f8e17010":[3,0,32,2], +"class_s_x126x.html#a95007639c2648a1dbb614493224606f1":[3,0,32,36], +"class_s_x126x.html#a9a9b090eddcb811ee19b595debfab1df":[3,0,32,13], +"class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f":[3,0,32,30], +"class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f":[3,0,32,53], +"class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab":[3,0,32,11], +"class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009":[3,0,32,70], +"class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8":[3,0,32,0], +"class_s_x126x.html#aae1af90432c457e5bf8f8f362295399b":[3,0,32,14], +"class_s_x126x.html#ab00f765bbfbfaa8c693532ea3a90c29b":[3,0,32,45], +"class_s_x126x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,32,67], +"class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1":[3,0,32,65], +"class_s_x126x.html#ab9ce38cfeaa36ddcc2d82b2974d7088c":[3,0,32,1], +"class_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a":[3,0,32,41], +"class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5":[3,0,32,8], +"class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034":[3,0,32,34], +"class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f":[3,0,32,10], +"class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987":[3,0,32,15], +"class_s_x126x.html#ac594fbb30c5010658c970a64654c7162":[3,0,32,51], +"class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9":[3,0,32,12], +"class_s_x126x.html#ad7569396f09f3867dc1bd4d4a0613acd":[3,0,32,58], +"class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136":[3,0,32,61], +"class_s_x126x.html#adec09cba71494bd927ad1da786606ca6":[3,0,32,20], +"class_s_x126x.html#ae36664f9c605a8fe74b2f357e0ec3323":[3,0,32,17], +"class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca":[3,0,32,18], +"class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0":[3,0,32,27], +"class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf":[3,0,32,40], +"class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d":[3,0,32,50], +"class_s_x126x.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,32,25], +"class_s_x126x.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,32,23], +"class_s_x126x.html#ae9f24414bd684434c310df54b3558f21":[3,0,32,31], +"class_s_x126x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,32,69], +"class_s_x126x.html#aeb92dc9d2e2a2b3a3a5ff2856528d497":[3,0,32,60], +"class_s_x126x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,32,64], +"class_s_x126x.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,32,71], +"class_s_x126x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,32,26], +"class_s_x126x.html#afb5509f0705cdd971065251ed6b2fb4e":[3,0,32,56], +"class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2":[3,0,32,5], +"class_s_x126x.html#afd3113858966e878e9c67a1e710bd586":[3,0,32,35], +"class_s_x126x.html#aff80db65e546934980feac7e6c81dd80":[3,0,32,22], +"class_s_x1272.html":[3,0,33], +"class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac":[3,0,33,8], +"class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b":[3,0,33,9], +"class_s_x1272.html#a0d8e68cf913422535dc43cbdf73a3f10":[3,0,33,6], +"class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47":[3,0,33,13], +"class_s_x1272.html#a4aaf9d61310fa7b4fce413ae53d30ac0":[3,0,33,5], +"class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3":[3,0,33,7], +"class_s_x1272.html#a6677a04aa0c2f3bbde2509786b6a66de":[3,0,33,16], +"class_s_x1272.html#a82084ac58502c83d2ada998410307490":[3,0,33,17], +"class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260":[3,0,33,3], +"class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea":[3,0,33,12], +"class_s_x1272.html#a960913438feccad4c1913a9222384a5f":[3,0,33,10], +"class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626":[3,0,33,0], +"class_s_x1272.html#abb4bbfe8acc6026c833d267d78417b63":[3,0,33,1], +"class_s_x1272.html#abd912314a977f92c464d36d862329ffc":[3,0,33,11], +"class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852":[3,0,33,15], +"class_s_x1272.html#ae3c9704cb58232f696b5f90f69c115f7":[3,0,33,4], +"class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9":[3,0,33,2], +"class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8":[3,0,33,14], +"class_s_x1273.html":[3,0,34], +"class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2":[3,0,34,1], +"class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f":[3,0,34,2], +"class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b":[3,0,34,0], +"class_s_x1276.html":[3,0,35], +"class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008":[3,0,35,3], +"class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b":[3,0,35,0], +"class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7":[3,0,35,1], +"class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840":[3,0,35,2], +"class_s_x1277.html":[3,0,36], +"class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf":[3,0,36,4], +"class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda":[3,0,36,0], +"class_s_x1277.html#a42adde5eecccdca95214980848795e82":[3,0,36,3], +"class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3":[3,0,36,1], +"class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44":[3,0,36,2], +"class_s_x1278.html":[3,0,37], +"class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e":[3,0,37,0], +"class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4":[3,0,37,13], +"class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6":[3,0,37,9], +"class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e":[3,0,37,7], +"class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4":[3,0,37,14], +"class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad":[3,0,37,8], +"class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856":[3,0,37,5], +"class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1":[3,0,37,4], +"class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88":[3,0,37,16], +"class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1":[3,0,37,10], +"class_s_x1278.html#a86464af008b71d12948690b780280e7d":[3,0,37,3], +"class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf":[3,0,37,2], +"class_s_x1278.html#aa57b713988cfa224a6db2ff325052931":[3,0,37,15], +"class_s_x1278.html#ac0be7586b8e40355bbd29d78ae9941d1":[3,0,37,11], +"class_s_x1278.html#ae02adcde8c2978c0d1b157729dd5df1e":[3,0,37,1], +"class_s_x1278.html#ae52d84fa301309a4a4294312571fc3b8":[3,0,37,6], +"class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08":[3,0,37,17], +"class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563":[3,0,37,12], +"class_s_x1279.html":[3,0,38], +"class_s_x1279.html#a324a37dee0522f43692cd414141becc2":[3,0,38,1], +"class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b":[3,0,38,2], +"class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a":[3,0,38,0], +"class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817":[3,0,38,3], +"class_s_x127x.html":[3,0,39], +"class_s_x127x.html#a071442611a32154e8b3db7981f242a53":[3,0,39,31], +"class_s_x127x.html#a0995088d37689a3c240a1af791df6cf1":[3,0,39,29], +"class_s_x127x.html#a0f041e91ab2fbb6f05eef56b5addac71":[3,0,39,7], +"class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538":[3,0,39,60], +"class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa":[3,0,39,10], +"class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c":[3,0,39,85], +"class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059":[3,0,39,73], +"class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04":[3,0,39,28], +"class_s_x127x.html#a201c31366f32c41b801724fb662265c1":[3,0,39,56], +"class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee":[3,0,39,59], +"class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a":[3,0,39,12], +"class_s_x127x.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,39,37], +"class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53":[3,0,39,68], +"class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc":[3,0,39,23], +"class_s_x127x.html#a2f993bc663b8937f3683047f5e3b2509":[3,0,39,11], +"class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68":[3,0,39,39], +"class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002":[3,0,39,47], +"class_s_x127x.html#a41089d9e5b45217d3e31ac22b5326b66":[3,0,39,5], +"class_s_x127x.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,39,78], +"class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e":[3,0,39,41], +"class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df":[3,0,39,71], +"class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679":[3,0,39,57], +"class_s_x127x.html#a462fa74275e67c296328a01f361892d5":[3,0,39,24], +"class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54":[3,0,39,62], +"class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,39,80], +"class_s_x127x.html#a4c27736905cf848a67d6cbc92df823b8":[3,0,39,22], +"class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544":[3,0,39,15], +"class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76":[3,0,39,67], +"class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c":[3,0,39,18], +"class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430":[3,0,39,1], +"class_s_x127x.html#a606d839b3a992c681ac9ad7ca6020022":[3,0,39,44], +"class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef":[3,0,39,43], +"class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450":[3,0,39,30], +"class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359":[3,0,39,14], +"class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb":[3,0,39,55], +"class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823":[3,0,39,3], +"class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41":[3,0,39,72], +"class_s_x127x.html#a7b85344084b800966a46ace59dcb5277":[3,0,39,51], +"class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1":[3,0,39,54], +"class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f":[3,0,39,13], +"class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd":[3,0,39,9], +"class_s_x127x.html#a8b93142202167270db109d18b743c744":[3,0,39,63], +"class_s_x127x.html#a923654706eff5118ef6e84214e837f27":[3,0,39,75], +"class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1":[3,0,39,26], +"class_s_x127x.html#a9b3a76eb89cad60dcad92513e6848f5a":[3,0,39,46], +"class_s_x127x.html#a9b6532a25e1730973ac08146008adca5":[3,0,39,4], +"class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc":[3,0,39,69], +"class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29":[3,0,39,82], +"class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238":[3,0,39,52], +"class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f":[3,0,39,38], +"class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1":[3,0,39,6], +"class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d":[3,0,39,61], +"class_s_x127x.html#ab0f67330124cefc07a462e77922453d0":[3,0,39,42], +"class_s_x127x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,39,79], +"class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed":[3,0,39,64], +"class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95":[3,0,39,58], +"class_s_x127x.html#abad2d455012bd28d304589c8164390eb":[3,0,39,53], +"class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb":[3,0,39,25], +"class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40":[3,0,39,45], +"class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745":[3,0,39,33], +"class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde":[3,0,39,70], +"class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d":[3,0,39,21], +"class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c":[3,0,39,0], +"class_s_x127x.html#ad3955f85f456edae772a51025a19029b":[3,0,39,66], +"class_s_x127x.html#ad532e1a62c6ee2c58f9517e6e62728ac":[3,0,39,27], +"class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617":[3,0,39,19], +"class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5":[3,0,39,40], +"class_s_x127x.html#ada53419d65f207f352124da7747c5960":[3,0,39,48], +"class_s_x127x.html#adbea7515add3d81c3024ceb0d570266b":[3,0,39,50], +"class_s_x127x.html#adc25b685de0859b799488bf7729350b6":[3,0,39,17], +"class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083":[3,0,39,77], +"class_s_x127x.html#add78edb65673d9e88931a55b0672a9f3":[3,0,39,2], +"class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c":[3,0,39,36], +"class_s_x127x.html#adffb96b7f80dc43909bb4cebde68fe9d":[3,0,39,74], +"class_s_x127x.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,39,34], +"class_s_x127x.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,39,32], +"class_s_x127x.html#ae9781180418c1ec9c365b74acbc98d8a":[3,0,39,65], +"class_s_x127x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,39,81], +"class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd":[3,0,39,16], +"class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84":[3,0,39,84], +"class_s_x127x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,39,76], +"class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362":[3,0,39,20], +"class_s_x127x.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,39,83], +"class_s_x127x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,39,35], +"class_s_x127x.html#afc844f7f3530f4076c8ea5f684c1b123":[3,0,39,49], +"class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5":[3,0,39,8], +"class_s_x1280.html":[3,0,40], +"class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb":[3,0,40,0], +"class_s_x1280.html#a812e289084b2f78977b254c28f0fff7c":[3,0,40,2], +"class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f":[3,0,40,1], +"class_s_x1280.html#af30ff497ca3bcc043dc4dc2e7587a795":[3,0,40,3], +"class_s_x1281.html":[3,0,41], +"class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998":[3,0,41,0], +"class_s_x1282.html":[3,0,42], +"class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232":[3,0,42,0], +"class_s_x128x.html":[3,0,43], +"class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed":[3,0,43,32], +"class_s_x128x.html#a0efa595867624a54153d693d16f9f731":[3,0,43,43], +"class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133":[3,0,43,40], +"class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1":[3,0,43,44], +"class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f":[3,0,43,46], +"class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371":[3,0,43,35], +"class_s_x128x.html#a2361a94f2e12ebc93e750a027d633232":[3,0,43,13], +"class_s_x128x.html#a2643ce22176293631fea2169f5e68e66":[3,0,43,24], +"class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1":[3,0,43,36], +"class_s_x128x.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,43,22], +"class_s_x128x.html#a2b424000856a9dc212f571d0e8890635":[3,0,43,8], +"class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45":[3,0,43,47], +"class_s_x128x.html#a2dd0ecae9f54cf6943cf702ae15f5039":[3,0,43,16], +"class_s_x128x.html#a316340d7ba2a6e7cb5742e3ff21e728c":[3,0,43,2], +"class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99":[3,0,43,21], +"class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91":[3,0,43,37], +"class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735":[3,0,43,10], +"class_s_x128x.html#a3bee00ec197ef9855c0079cb0a3009a6":[3,0,43,28], +"class_s_x128x.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,43,53], +"class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4":[3,0,43,7], +"class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,43,55], +"class_s_x128x.html#a53892566b0259d348158efe3c3c3601a":[3,0,43,59], +"class_s_x128x.html#a5f11803b3430bc059321b443f407e78b":[3,0,43,41], +"class_s_x128x.html#a69ee7379f4b79abf626df186b2db6441":[3,0,43,9], +"class_s_x128x.html#a73e3655e92bca9a06e2d0abbf1a4bed4":[3,0,43,38], +"class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947":[3,0,43,34] }; diff --git a/navtreeindex3.js b/navtreeindex3.js index e6a22008..f59ffa60 100644 --- a/navtreeindex3.js +++ b/navtreeindex3.js @@ -1,82 +1,97 @@ var NAVTREEINDEX3 = { -"class_s_x128x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,42,54], -"class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f":[3,0,42,5], -"class_s_x128x.html#ac69cc622020419cb3393eac5cc88915b":[3,0,42,14], -"class_s_x128x.html#ac7df67afbb0b1a88daf5ec50f3d65660":[3,0,42,3], -"class_s_x128x.html#acbd0d1a48051ccd35f4a89c9b8d05bdf":[3,0,42,1], -"class_s_x128x.html#ad59ee052d8ab1f250245a14039fc8b66":[3,0,42,49], -"class_s_x128x.html#ad6e2b46c317a8d8512cf0380025147a9":[3,0,42,39], -"class_s_x128x.html#ae435f57132f76f4283abb870176acf54":[3,0,42,42], -"class_s_x128x.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,42,19], -"class_s_x128x.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,42,17], -"class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a":[3,0,42,27], -"class_s_x128x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,42,56], -"class_s_x128x.html#aef221e7d463c5228ce00ed6934512848":[3,0,42,52], -"class_s_x128x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,42,51], -"class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5":[3,0,42,57], -"class_s_x128x.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,42,58], -"class_s_x128x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,42,20], -"class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236":[3,0,42,33], -"class_s_x128x.html#aff7d86352c98771595375e17d19a2a97":[3,0,42,23], -"class_si4430.html":[3,0,21], -"class_si4430.html#a025a31861d1511090168e416140d0343":[3,0,21,2], -"class_si4430.html#aaed612b8936609442042d8156e085d2c":[3,0,21,1], -"class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9":[3,0,21,0], -"class_si4430.html#af8d615431bf66e06b45487f3fff73d16":[3,0,21,3], -"class_si4431.html":[3,0,22], -"class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0":[3,0,22,0], -"class_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3":[3,0,22,1], -"class_si4431.html#a4da296b35056e076ff69a288bd801d19":[3,0,22,2], -"class_si4432.html":[3,0,23], -"class_si4432.html#a5efc3a08f91a411da011201dc128fb34":[3,0,23,1], -"class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca":[3,0,23,3], -"class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84":[3,0,23,2], -"class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac":[3,0,23,0], -"class_si443x.html":[3,0,24], -"class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2":[3,0,24,31], -"class_si443x.html#a1382fc3b68f447e381613e6670747128":[3,0,24,22], -"class_si443x.html#a178b471527813a608c04db7d3c9648d6":[3,0,24,17], -"class_si443x.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,24,16], -"class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10":[3,0,24,7], -"class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314":[3,0,24,34], -"class_si443x.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,24,35], -"class_si443x.html#a427f24f614f04e87094354047bf1bf00":[3,0,24,6], -"class_si443x.html#a453eda5436dc4dfe0dad676dc3977752":[3,0,24,1], -"class_si443x.html#a45d3ffcb312c34a2f6391be6d609d7b7":[3,0,24,10], -"class_si443x.html#a4821a6141caf16141074615c976ecd91":[3,0,24,25], -"class_si443x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,24,37], -"class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a":[3,0,24,28], -"class_si443x.html#a51e6b7c677e82042224798114f311175":[3,0,24,27], -"class_si443x.html#a55252bda74e8c67636a8c1fa0e9f58d3":[3,0,24,5], -"class_si443x.html#a55fae20e81755c8b014d080741d61913":[3,0,24,21], -"class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99":[3,0,24,41], -"class_si443x.html#a616eb24c4b11c5d39caaade160be8092":[3,0,24,8], -"class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3":[3,0,24,3], -"class_si443x.html#a74848176d435227e601c86ff37b0edbe":[3,0,24,9], -"class_si443x.html#a782748025e19ec6e597293afb6570bff":[3,0,24,39], -"class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66":[3,0,24,23], -"class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726":[3,0,24,24], -"class_si443x.html#a8d019f58551346c3f3bd8b72d2486109":[3,0,24,2], -"class_si443x.html#a923654706eff5118ef6e84214e837f27":[3,0,24,32], -"class_si443x.html#aabca3ba8eda212938febab1df2e764b4":[3,0,24,15], -"class_si443x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,24,36], -"class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a":[3,0,24,42], -"class_si443x.html#ac45d2776df3ff338db154ead143fb7b8":[3,0,24,30], -"class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e":[3,0,24,12], -"class_si443x.html#ad2b3a961a99d9e8f3a7ead6e8b69e858":[3,0,24,4], -"class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170":[3,0,24,19], -"class_si443x.html#ada90718aeb67d7f0e9899da534de9695":[3,0,24,29], -"class_si443x.html#ade08c79074c7e4414d34eefa25cee168":[3,0,24,20], -"class_si443x.html#ae365087803b88b29932b5c793edff1d4":[3,0,24,26], -"class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97":[3,0,24,18], -"class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9":[3,0,24,0], -"class_si443x.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,24,13], -"class_si443x.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,24,11], -"class_si443x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,24,38], -"class_si443x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,24,33], -"class_si443x.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,24,40], -"class_si443x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,24,14], +"class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb":[3,0,43,25], +"class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2":[3,0,43,12], +"class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f":[3,0,43,45], +"class_s_x128x.html#a8dd8ce38bc9d0d8dbd711b373e864e93":[3,0,43,4], +"class_s_x128x.html#a923654706eff5118ef6e84214e837f27":[3,0,43,50], +"class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5":[3,0,43,26], +"class_s_x128x.html#a94b7fb26cc99385d30b0c98b76d8188d":[3,0,43,6], +"class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb":[3,0,43,18], +"class_s_x128x.html#a94d3003277925e2dc3372548b3311008":[3,0,43,11], +"class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a":[3,0,43,15], +"class_s_x128x.html#a99491c705e88dddc820f884b778f1660":[3,0,43,31], +"class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7":[3,0,43,0], +"class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a":[3,0,43,29], +"class_s_x128x.html#aa11ba80f0cebb3e6927c775ad5f96b4e":[3,0,43,48], +"class_s_x128x.html#aa4b1e0b96347011522e053f30202c0fe":[3,0,43,30], +"class_s_x128x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,43,54], +"class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f":[3,0,43,5], +"class_s_x128x.html#ac69cc622020419cb3393eac5cc88915b":[3,0,43,14], +"class_s_x128x.html#ac7df67afbb0b1a88daf5ec50f3d65660":[3,0,43,3], +"class_s_x128x.html#acbd0d1a48051ccd35f4a89c9b8d05bdf":[3,0,43,1], +"class_s_x128x.html#ad59ee052d8ab1f250245a14039fc8b66":[3,0,43,49], +"class_s_x128x.html#ad6e2b46c317a8d8512cf0380025147a9":[3,0,43,39], +"class_s_x128x.html#ae435f57132f76f4283abb870176acf54":[3,0,43,42], +"class_s_x128x.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,43,19], +"class_s_x128x.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,43,17], +"class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a":[3,0,43,27], +"class_s_x128x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,43,56], +"class_s_x128x.html#aef221e7d463c5228ce00ed6934512848":[3,0,43,52], +"class_s_x128x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,43,51], +"class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5":[3,0,43,57], +"class_s_x128x.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,43,58], +"class_s_x128x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,43,20], +"class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236":[3,0,43,33], +"class_s_x128x.html#aff7d86352c98771595375e17d19a2a97":[3,0,43,23], +"class_si4430.html":[3,0,22], +"class_si4430.html#a025a31861d1511090168e416140d0343":[3,0,22,2], +"class_si4430.html#aaed612b8936609442042d8156e085d2c":[3,0,22,1], +"class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9":[3,0,22,0], +"class_si4430.html#af8d615431bf66e06b45487f3fff73d16":[3,0,22,3], +"class_si4431.html":[3,0,23], +"class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0":[3,0,23,0], +"class_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3":[3,0,23,1], +"class_si4431.html#a4da296b35056e076ff69a288bd801d19":[3,0,23,2], +"class_si4432.html":[3,0,24], +"class_si4432.html#a5efc3a08f91a411da011201dc128fb34":[3,0,24,1], +"class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca":[3,0,24,3], +"class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84":[3,0,24,2], +"class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac":[3,0,24,0], +"class_si443x.html":[3,0,25], +"class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2":[3,0,25,31], +"class_si443x.html#a1382fc3b68f447e381613e6670747128":[3,0,25,22], +"class_si443x.html#a178b471527813a608c04db7d3c9648d6":[3,0,25,17], +"class_si443x.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,25,16], +"class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10":[3,0,25,7], +"class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314":[3,0,25,34], +"class_si443x.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,25,35], +"class_si443x.html#a427f24f614f04e87094354047bf1bf00":[3,0,25,6], +"class_si443x.html#a453eda5436dc4dfe0dad676dc3977752":[3,0,25,1], +"class_si443x.html#a45d3ffcb312c34a2f6391be6d609d7b7":[3,0,25,10], +"class_si443x.html#a4821a6141caf16141074615c976ecd91":[3,0,25,25], +"class_si443x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,25,37], +"class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a":[3,0,25,28], +"class_si443x.html#a51e6b7c677e82042224798114f311175":[3,0,25,27], +"class_si443x.html#a55252bda74e8c67636a8c1fa0e9f58d3":[3,0,25,5], +"class_si443x.html#a55fae20e81755c8b014d080741d61913":[3,0,25,21], +"class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99":[3,0,25,41], +"class_si443x.html#a616eb24c4b11c5d39caaade160be8092":[3,0,25,8], +"class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3":[3,0,25,3], +"class_si443x.html#a74848176d435227e601c86ff37b0edbe":[3,0,25,9], +"class_si443x.html#a782748025e19ec6e597293afb6570bff":[3,0,25,39], +"class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66":[3,0,25,23], +"class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726":[3,0,25,24], +"class_si443x.html#a8d019f58551346c3f3bd8b72d2486109":[3,0,25,2], +"class_si443x.html#a923654706eff5118ef6e84214e837f27":[3,0,25,32], +"class_si443x.html#aabca3ba8eda212938febab1df2e764b4":[3,0,25,15], +"class_si443x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,25,36], +"class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a":[3,0,25,42], +"class_si443x.html#ac45d2776df3ff338db154ead143fb7b8":[3,0,25,30], +"class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e":[3,0,25,12], +"class_si443x.html#ad2b3a961a99d9e8f3a7ead6e8b69e858":[3,0,25,4], +"class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170":[3,0,25,19], +"class_si443x.html#ada90718aeb67d7f0e9899da534de9695":[3,0,25,29], +"class_si443x.html#ade08c79074c7e4414d34eefa25cee168":[3,0,25,20], +"class_si443x.html#ae365087803b88b29932b5c793edff1d4":[3,0,25,26], +"class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97":[3,0,25,18], +"class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9":[3,0,25,0], +"class_si443x.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,25,13], +"class_si443x.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,25,11], +"class_si443x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,25,38], +"class_si443x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,25,33], +"class_si443x.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,25,40], +"class_si443x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,25,14], "classes.html":[3,1], "classn_r_f24.html":[3,0,11], "classn_r_f24.html#a033287e33c532638c11e2775a073f297":[3,0,11,32], @@ -126,13 +141,14 @@ var NAVTREEINDEX3 = "classn_r_f24.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,11,13], "dir_1496c164e9c77875dd570f4157f3157f.html":[4,0,0,0,4], "dir_17a0c4358d096e2caf9f04fe2ab66c1d.html":[4,0,0,0,1], -"dir_2cdd3c47e80335731aa10f67042c391a.html":[4,0,0,1,6], +"dir_2cdd3c47e80335731aa10f67042c391a.html":[4,0,0,1,7], "dir_2d04440730a0443b949b3f3ffedccfc3.html":[4,0,0,1,2], "dir_3a277ada553fbb989028f9b071a02542.html":[4,0,0,0,3], -"dir_620e20826520c01cf981aa9c981ff885.html":[4,0,0,1,7], -"dir_66ce0d8112a82c480b60d648cf9cb1ca.html":[4,0,0,1,8], +"dir_620e20826520c01cf981aa9c981ff885.html":[4,0,0,1,8], +"dir_66ce0d8112a82c480b60d648cf9cb1ca.html":[4,0,0,1,9], "dir_68267d1309a1af8e8297ef4c3efbcdba.html":[4,0,0], "dir_6baa7f88a31cf8c1ad1b651eaa1fd5b9.html":[4,0,0,0,5], +"dir_6dea20bfcf2e1a380cdc520d491b79a2.html":[4,0,0,1,6], "dir_70c194bd40717a4946dbd8bc35f09b17.html":[4,0,0,1,0], "dir_747c20e84f9dfe1cc835713177129efc.html":[4,0,0,0,8], "dir_79690749eba542503bb1a9a3dbb495e1.html":[4,0,0,1], @@ -204,50 +220,34 @@ var NAVTREEINDEX3 = "group__config__shaping.html#gaa9495bc5eb54df04f2ed7b1ccbb4f277":[2,1,4], "group__mic__e__message__types.html":[2,0], "group__status__codes.html":[2,3], -"group__status__codes.html#ga0066a30650888853a622413a579d891c":[2,3,37], -"group__status__codes.html#ga00c1c2b500feea59d0d47dddd7179be1":[2,3,55], -"group__status__codes.html#ga0710b406a7e12ab6e0f77fdb3374cd9a":[2,3,5], -"group__status__codes.html#ga0e196b0ec8efd606cd60592f88b626e8":[2,3,38], -"group__status__codes.html#ga0f0aad5acd6d24fc7da9269664912d48":[2,3,33], -"group__status__codes.html#ga0f1e3d5da7867511500fcd4a43f4df2f":[2,3,32], -"group__status__codes.html#ga193402d53d354b58c70e5324d1e5b531":[2,3,15], -"group__status__codes.html#ga31e0864281b5ea21c53206c49877b670":[2,3,52], -"group__status__codes.html#ga382dc113e93f196401914853ec176b18":[2,3,59], -"group__status__codes.html#ga3ed4264643f97b76f9f3cf242338573d":[2,3,29], -"group__status__codes.html#ga41b17f0207ad1aa10d666c8a9e4830c5":[2,3,16], -"group__status__codes.html#ga4602702eac86c5c3a13b93a06d846fac":[2,3,46], +"group__status__codes.html#ga0066a30650888853a622413a579d891c":[2,3,39], +"group__status__codes.html#ga00c1c2b500feea59d0d47dddd7179be1":[2,3,57], +"group__status__codes.html#ga0710b406a7e12ab6e0f77fdb3374cd9a":[2,3,6], +"group__status__codes.html#ga0e196b0ec8efd606cd60592f88b626e8":[2,3,40], +"group__status__codes.html#ga0f0aad5acd6d24fc7da9269664912d48":[2,3,35], +"group__status__codes.html#ga0f1e3d5da7867511500fcd4a43f4df2f":[2,3,34], +"group__status__codes.html#ga193402d53d354b58c70e5324d1e5b531":[2,3,16], +"group__status__codes.html#ga31e0864281b5ea21c53206c49877b670":[2,3,54], +"group__status__codes.html#ga382dc113e93f196401914853ec176b18":[2,3,61], +"group__status__codes.html#ga3ed4264643f97b76f9f3cf242338573d":[2,3,31], +"group__status__codes.html#ga41b17f0207ad1aa10d666c8a9e4830c5":[2,3,17], +"group__status__codes.html#ga4602702eac86c5c3a13b93a06d846fac":[2,3,48], "group__status__codes.html#ga4673596b2cc7290be5ee0a2e9ee42718":[2,3,0], -"group__status__codes.html#ga47f1cc22b76c6b8685bd7e265ab78a1a":[2,3,25], -"group__status__codes.html#ga4b30b822814dc8d49d3f3229011c8aff":[2,3,36], -"group__status__codes.html#ga4c1dd3c7f2b37c973a047c58506729f5":[2,3,45], -"group__status__codes.html#ga4e64d3ed035b21bfb81cf2bca35b2ecb":[2,3,10], -"group__status__codes.html#ga508806c18663156b0d00d1a21c957468":[2,3,6], -"group__status__codes.html#ga54a2fc9441c25b56979c6edab097ff12":[2,3,44], -"group__status__codes.html#ga5584a219fcb1a8e1789142b18a3a511e":[2,3,40], -"group__status__codes.html#ga55da4b2ee0661872a37f1c57fc61c666":[2,3,28], -"group__status__codes.html#ga58ff08f4dba334cf8e26474ec2d3facd":[2,3,58], -"group__status__codes.html#ga5d11e8ce64fb412c2169d0f30b9e9c62":[2,3,2], -"group__status__codes.html#ga684497ce1c94442b5fe0396ea4ec930d":[2,3,31], -"group__status__codes.html#ga691e968e9f057a6cecb37a5dd5d8bd68":[2,3,41], -"group__status__codes.html#ga6b75df06d8c18366f85848331c49a1af":[2,3,34], -"group__status__codes.html#ga72b849c71b8fdf112d318518a3b1ac7d":[2,3,51], -"group__status__codes.html#ga733a7f3f12109103384522dac4d1146e":[2,3,8], -"group__status__codes.html#ga7afc28738967d4d91c13d1d412d6f5e4":[2,3,43], -"group__status__codes.html#ga7f57f6eddc68b9a59cceab4fdf6556ba":[2,3,23], -"group__status__codes.html#ga7f9712de2117b89215410fc18776dc84":[2,3,39], -"group__status__codes.html#ga85e34d08b298a4125f77ddede011db3b":[2,3,21], -"group__status__codes.html#ga908f3a5ab6937d28536791c96cf9de23":[2,3,19], -"group__status__codes.html#ga9a098ceda0c3f153515c8cc36f1d683e":[2,3,13], -"group__status__codes.html#ga9da949184e940a4fa6f4afb63c315963":[2,3,3], -"group__status__codes.html#ga9dc55947447ed9c91217f86a9bca75bb":[2,3,30], -"group__status__codes.html#ga9f80eb00fad12bb0bec384ad83b6941b":[2,3,17], -"group__status__codes.html#gaa1f484c73f9abe05408c84fe5891539b":[2,3,35], -"group__status__codes.html#gaa5d0e76a10099c6e1cfd8f24e48995a2":[2,3,26], -"group__status__codes.html#gaabe141287f2d6ba723658309f4464662":[2,3,18], -"group__status__codes.html#gab0f9cb8ee829a8504fc110de18c4ff67":[2,3,22], -"group__status__codes.html#gab152891bb13f6f70e6631820904e9d90":[2,3,42], -"group__status__codes.html#gabc695a4fae689e856ae6f618e334066f":[2,3,49], -"group__status__codes.html#gabc97efb9f410af5c0a9c1e5f882e41d8":[2,3,27], -"group__status__codes.html#gabf529b0d150265c071c2255cb45f9e4f":[2,3,47], -"group__status__codes.html#gac1902fa5b8d5c9469dd9261880ba2957":[2,3,50] +"group__status__codes.html#ga47f1cc22b76c6b8685bd7e265ab78a1a":[2,3,26], +"group__status__codes.html#ga4b30b822814dc8d49d3f3229011c8aff":[2,3,38], +"group__status__codes.html#ga4c1dd3c7f2b37c973a047c58506729f5":[2,3,47], +"group__status__codes.html#ga4e64d3ed035b21bfb81cf2bca35b2ecb":[2,3,11], +"group__status__codes.html#ga508806c18663156b0d00d1a21c957468":[2,3,7], +"group__status__codes.html#ga54a2fc9441c25b56979c6edab097ff12":[2,3,46], +"group__status__codes.html#ga5529b54dc67d5ccdc2a29989ebf43711":[2,3,30], +"group__status__codes.html#ga5584a219fcb1a8e1789142b18a3a511e":[2,3,42], +"group__status__codes.html#ga55da4b2ee0661872a37f1c57fc61c666":[2,3,29], +"group__status__codes.html#ga58ff08f4dba334cf8e26474ec2d3facd":[2,3,60], +"group__status__codes.html#ga5d11e8ce64fb412c2169d0f30b9e9c62":[2,3,3], +"group__status__codes.html#ga684497ce1c94442b5fe0396ea4ec930d":[2,3,33], +"group__status__codes.html#ga691e968e9f057a6cecb37a5dd5d8bd68":[2,3,43], +"group__status__codes.html#ga6b75df06d8c18366f85848331c49a1af":[2,3,36], +"group__status__codes.html#ga72b849c71b8fdf112d318518a3b1ac7d":[2,3,53], +"group__status__codes.html#ga733a7f3f12109103384522dac4d1146e":[2,3,9], +"group__status__codes.html#ga7afc28738967d4d91c13d1d412d6f5e4":[2,3,45] }; diff --git a/navtreeindex4.js b/navtreeindex4.js index 6dde90d8..64482cd9 100644 --- a/navtreeindex4.js +++ b/navtreeindex4.js @@ -1,18 +1,36 @@ var NAVTREEINDEX4 = { -"group__status__codes.html#gac192dbf5134a10ed561100b01129224c":[2,3,7], -"group__status__codes.html#gac1c27fd5a9ec38601a53c1c5ad428063":[2,3,9], -"group__status__codes.html#gac314f4bd89f306c8a16237be9a9c80cb":[2,3,12], -"group__status__codes.html#gac4185b9eaead4de110763759f01e1f4f":[2,3,53], -"group__status__codes.html#gacc0baeb3e5fc99760a07d18ba55531b6":[2,3,54], -"group__status__codes.html#gad95d2455d580745d41ef2f319c6585f8":[2,3,57], -"group__status__codes.html#gae0e8ebbd71661b8a107b01befc997e5e":[2,3,24], -"group__status__codes.html#gae4d77c5138cc5f21fb2af4b0791e9f81":[2,3,56], -"group__status__codes.html#gaeafdfcb2b10b08385feea93163fc3918":[2,3,20], -"group__status__codes.html#gaedc74820131d6cb654302d776360f969":[2,3,11], -"group__status__codes.html#gaf16af86f43ac2946e82a1e87aea2882b":[2,3,14], -"group__status__codes.html#gafadba2c16b7296cbaf96978e8eadfa45":[2,3,48], -"group__status__codes.html#gafbc04b924d23cba05307e94972d7d607":[2,3,4], +"group__status__codes.html#ga7f57f6eddc68b9a59cceab4fdf6556ba":[2,3,24], +"group__status__codes.html#ga7f9712de2117b89215410fc18776dc84":[2,3,41], +"group__status__codes.html#ga806183ed238159d317132b0d44d7a0a2":[2,3,2], +"group__status__codes.html#ga85e34d08b298a4125f77ddede011db3b":[2,3,22], +"group__status__codes.html#ga908f3a5ab6937d28536791c96cf9de23":[2,3,20], +"group__status__codes.html#ga9a098ceda0c3f153515c8cc36f1d683e":[2,3,14], +"group__status__codes.html#ga9da949184e940a4fa6f4afb63c315963":[2,3,4], +"group__status__codes.html#ga9dc55947447ed9c91217f86a9bca75bb":[2,3,32], +"group__status__codes.html#ga9f80eb00fad12bb0bec384ad83b6941b":[2,3,18], +"group__status__codes.html#gaa1f484c73f9abe05408c84fe5891539b":[2,3,37], +"group__status__codes.html#gaa5d0e76a10099c6e1cfd8f24e48995a2":[2,3,27], +"group__status__codes.html#gaabe141287f2d6ba723658309f4464662":[2,3,19], +"group__status__codes.html#gab0f9cb8ee829a8504fc110de18c4ff67":[2,3,23], +"group__status__codes.html#gab152891bb13f6f70e6631820904e9d90":[2,3,44], +"group__status__codes.html#gabc695a4fae689e856ae6f618e334066f":[2,3,51], +"group__status__codes.html#gabc97efb9f410af5c0a9c1e5f882e41d8":[2,3,28], +"group__status__codes.html#gabf529b0d150265c071c2255cb45f9e4f":[2,3,49], +"group__status__codes.html#gac1902fa5b8d5c9469dd9261880ba2957":[2,3,52], +"group__status__codes.html#gac192dbf5134a10ed561100b01129224c":[2,3,8], +"group__status__codes.html#gac1c27fd5a9ec38601a53c1c5ad428063":[2,3,10], +"group__status__codes.html#gac314f4bd89f306c8a16237be9a9c80cb":[2,3,13], +"group__status__codes.html#gac4185b9eaead4de110763759f01e1f4f":[2,3,55], +"group__status__codes.html#gacc0baeb3e5fc99760a07d18ba55531b6":[2,3,56], +"group__status__codes.html#gad95d2455d580745d41ef2f319c6585f8":[2,3,59], +"group__status__codes.html#gae0e8ebbd71661b8a107b01befc997e5e":[2,3,25], +"group__status__codes.html#gae4d77c5138cc5f21fb2af4b0791e9f81":[2,3,58], +"group__status__codes.html#gaeafdfcb2b10b08385feea93163fc3918":[2,3,21], +"group__status__codes.html#gaedc74820131d6cb654302d776360f969":[2,3,12], +"group__status__codes.html#gaf16af86f43ac2946e82a1e87aea2882b":[2,3,15], +"group__status__codes.html#gafadba2c16b7296cbaf96978e8eadfa45":[2,3,50], +"group__status__codes.html#gafbc04b924d23cba05307e94972d7d607":[2,3,5], "group__status__codes.html#gafeff72bd7b618959d86b804a11f09063":[2,3,1], "hierarchy.html":[3,2], "index.html":[0], @@ -20,20 +38,20 @@ var NAVTREEINDEX4 = "modules.html":[2], "n_r_f24_8h_source.html":[4,0,0,0,2,0], "pages.html":[], -"struct_s_s_t_v_mode__t.html":[3,0,26], -"struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad":[3,0,26,3], -"struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820":[3,0,26,4], -"struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694":[3,0,26,2], -"struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031":[3,0,26,0], -"struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40":[3,0,26,5], -"struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096":[3,0,26,1], -"structtone__t.html":[3,0,43], -"structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf":[3,0,43,4], -"structtone__t.html#a3b0421dd255c7c59552741957a6224ed":[3,0,43,5], -"structtone__t.html#a77bdc77a9ff234c29010fbdfd90e84eda3419d77c8075bfd15090f8aac3dc05b2":[3,0,43,3], -"structtone__t.html#a77bdc77a9ff234c29010fbdfd90e84eda8e78a66137f08df7785513efe3839c25":[3,0,43,2], -"structtone__t.html#a77bdc77a9ff234c29010fbdfd90e84edab48055f9dc61d70f0204b2e5f9a56c09":[3,0,43,1], -"structtone__t.html#a77bdc77a9ff234c29010fbdfd90e84edaeb5f3bbccaae0db7ee2e25cbd2fdaaf6":[3,0,43,0], -"structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40":[3,0,43,6], +"struct_s_s_t_v_mode__t.html":[3,0,27], +"struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad":[3,0,27,3], +"struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820":[3,0,27,4], +"struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694":[3,0,27,2], +"struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031":[3,0,27,0], +"struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40":[3,0,27,5], +"struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096":[3,0,27,1], +"structtone__t.html":[3,0,44], +"structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf":[3,0,44,4], +"structtone__t.html#a3b0421dd255c7c59552741957a6224ed":[3,0,44,5], +"structtone__t.html#a77bdc77a9ff234c29010fbdfd90e84eda3419d77c8075bfd15090f8aac3dc05b2":[3,0,44,3], +"structtone__t.html#a77bdc77a9ff234c29010fbdfd90e84eda8e78a66137f08df7785513efe3839c25":[3,0,44,2], +"structtone__t.html#a77bdc77a9ff234c29010fbdfd90e84edab48055f9dc61d70f0204b2e5f9a56c09":[3,0,44,1], +"structtone__t.html#a77bdc77a9ff234c29010fbdfd90e84edaeb5f3bbccaae0db7ee2e25cbd2fdaaf6":[3,0,44,0], +"structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40":[3,0,44,6], "todo.html":[1] }; diff --git a/search/all_0.js b/search/all_0.js index 8e66a7bd..9b4b505d 100644 --- a/search/all_0.js +++ b/search/all_0.js @@ -4,7 +4,7 @@ var searchData= ['aprsclient_1',['APRSClient',['../class_a_p_r_s_client.html',1,'APRSClient'],['../class_a_p_r_s_client.html#a08e166ed706d79c66c1d5b48f195724c',1,'APRSClient::APRSClient()']]], ['attachinterrupt_2',['attachInterrupt',['../class_module.html#a91aaa34aecdfeaf24948551b037033be',1,'Module']]], ['autoldro_3',['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_4',['available',['../class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26',1,'PhysicalLayer']]], + ['available_4',['available',['../class_pager_client.html#aec073fa9e5adcff9730482d9583715e9',1,'PagerClient::available()'],['../class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26',1,'PhysicalLayer::available()']]], ['ax25client_5',['AX25Client',['../class_a_x25_client.html',1,'AX25Client'],['../class_a_x25_client.html#ab074563d4d22a42d5ea9ad1693d6f373',1,'AX25Client::AX25Client(PhysicalLayer *phy)'],['../class_a_x25_client.html#a6e81e629817cdf1b377e4b4f7e4d6520',1,'AX25Client::AX25Client(AFSKClient *audio)']]], ['ax25frame_6',['AX25Frame',['../class_a_x25_frame.html',1,'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/all_1.js b/search/all_1.js index d10c6d45..29177a32 100644 --- a/search/all_1.js +++ b/search/all_1.js @@ -1,6 +1,6 @@ var searchData= [ - ['begin_7',['begin',['../class_module.html#af6bfd022681d360082e3dd31a984e1f7',1,'Module::begin()'],['../class_c_c1101.html#a3b40fd5505fec6bad5986f67a5062593',1,'CC1101::begin()'],['../class_l_l_c_c68.html#a039fc3259e4f208d96eaa310720b161d',1,'LLCC68::begin()'],['../classn_r_f24.html#a60eb59262c5004b587b1d8177706ff28',1,'nRF24::begin()'],['../class_r_f69.html#a35944b24d27a1ac98c1034cfcdb816cd',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_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_s_x126x.html#a936a40038e05740a528f2b53f8e17010',1,'SX126x::begin()'],['../class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9',1,'SX1272::begin()'],['../class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()'],['../class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3',1,'SX1277::begin()'],['../class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf',1,'SX1278::begin()'],['../class_s_x1279.html#a324a37dee0522f43692cd414141becc2',1,'SX1279::begin()'],['../class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430',1,'SX127x::begin()'],['../class_s_x128x.html#acbd0d1a48051ccd35f4a89c9b8d05bdf',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a4befd17d1f753049f7ec08c48d8b8496',1,'APRSClient::begin()'],['../class_a_x25_client.html#a38be2b9385e4804339b3e4b57b90c2ca',1,'AX25Client::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_r_t_t_y_client.html#ac4ae2458f8005c87161c74cf827d35b9',1,'RTTYClient::begin()'],['../class_s_s_t_v_client.html#a3d85be3941250366eec2cd9a147a4f5c',1,'SSTVClient::begin(float base, const SSTVMode_t &mode, float correction=1.0)'],['../class_s_s_t_v_client.html#a8606cf73f86f6f1b29cea9ae9b46c81e',1,'SSTVClient::begin(const SSTVMode_t &mode, float correction=1.0)']]], + ['begin_7',['begin',['../class_module.html#af6bfd022681d360082e3dd31a984e1f7',1,'Module::begin()'],['../class_c_c1101.html#a3b40fd5505fec6bad5986f67a5062593',1,'CC1101::begin()'],['../class_l_l_c_c68.html#a039fc3259e4f208d96eaa310720b161d',1,'LLCC68::begin()'],['../classn_r_f24.html#a60eb59262c5004b587b1d8177706ff28',1,'nRF24::begin()'],['../class_r_f69.html#a35944b24d27a1ac98c1034cfcdb816cd',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_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_s_x126x.html#a936a40038e05740a528f2b53f8e17010',1,'SX126x::begin()'],['../class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9',1,'SX1272::begin()'],['../class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()'],['../class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3',1,'SX1277::begin()'],['../class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf',1,'SX1278::begin()'],['../class_s_x1279.html#a324a37dee0522f43692cd414141becc2',1,'SX1279::begin()'],['../class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430',1,'SX127x::begin()'],['../class_s_x128x.html#acbd0d1a48051ccd35f4a89c9b8d05bdf',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a4befd17d1f753049f7ec08c48d8b8496',1,'APRSClient::begin()'],['../class_a_x25_client.html#a38be2b9385e4804339b3e4b57b90c2ca',1,'AX25Client::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#afe4c4806471001c01b35bce0f1fe4e58',1,'PagerClient::begin()'],['../class_r_t_t_y_client.html#ac4ae2458f8005c87161c74cf827d35b9',1,'RTTYClient::begin()'],['../class_s_s_t_v_client.html#a3d85be3941250366eec2cd9a147a4f5c',1,'SSTVClient::begin(float base, const SSTVMode_t &mode, float correction=1.0)'],['../class_s_s_t_v_client.html#a8606cf73f86f6f1b29cea9ae9b46c81e',1,'SSTVClient::begin(const SSTVMode_t &mode, float correction=1.0)']]], ['beginble_8',['beginBLE',['../class_s_x128x.html#a316340d7ba2a6e7cb5742e3ff21e728c',1,'SX128x']]], ['beginflrc_9',['beginFLRC',['../class_s_x128x.html#ac7df67afbb0b1a88daf5ec50f3d65660',1,'SX128x']]], ['beginfsk_10',['beginFSK',['../class_r_f_m95.html#a7e0f8fa59ddd48f7b026b0f996202b30',1,'RFM95::beginFSK()'],['../class_r_f_m96.html#a82ef1b7354238637eee6f4d65b9be6e5',1,'RFM96::beginFSK()'],['../class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1',1,'SX1262::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840',1,'SX1276::beginFSK()'],['../class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44',1,'SX1277::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b',1,'SX1279::beginFSK()'],['../class_s_x127x.html#add78edb65673d9e88931a55b0672a9f3',1,'SX127x::beginFSK()']]], diff --git a/search/all_10.js b/search/all_10.js index b0908bb7..130ef14b 100644 --- a/search/all_10.js +++ b/search/all_10.js @@ -1,13 +1,13 @@ var searchData= [ - ['term_323',['term',['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module']]], - ['todo_20list_324',['Todo List',['../todo.html',1,'']]], - ['tone_325',['tone',['../class_module.html#a33e33df69d58660b8cd0e2dafe5e9189',1,'Module::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]], - ['tone_5ft_326',['tone_t',['../structtone__t.html',1,'']]], - ['tones_327',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]], - ['transfer_328',['transfer',['../class_module.html#a45e7823c44ac0aa8a10bd4f365890c98',1,'Module']]], - ['transmit_329',['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_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f',1,'PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b',1,'PhysicalLayer::transmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'PhysicalLayer::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]], - ['transmitdirect_330',['transmitDirect',['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect()'],['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_physical_layer.html#a4b04eb6155b06d8ef400131c647d54e7',1,'PhysicalLayer::transmitDirect()']]], - ['transmitdirectasync_331',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]], - ['type_332',['type',['../structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40',1,'tone_t']]] + ['term_327',['term',['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module']]], + ['todo_20list_328',['Todo List',['../todo.html',1,'']]], + ['tone_329',['tone',['../class_module.html#a33e33df69d58660b8cd0e2dafe5e9189',1,'Module::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]], + ['tone_5ft_330',['tone_t',['../structtone__t.html',1,'']]], + ['tones_331',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]], + ['transfer_332',['transfer',['../class_module.html#a45e7823c44ac0aa8a10bd4f365890c98',1,'Module']]], + ['transmit_333',['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#a897f990002a4a2196fcdb31c547e0648',1,'PagerClient::transmit(String &str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_pager_client.html#aab6a8977f89d43620b98bcedf5a47dbd',1,'PagerClient::transmit(const char *str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_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#ab139a34e03a6fd5a781cd54da21d308f',1,'PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b',1,'PhysicalLayer::transmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'PhysicalLayer::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]], + ['transmitdirect_334',['transmitDirect',['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect()'],['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_physical_layer.html#a4b04eb6155b06d8ef400131c647d54e7',1,'PhysicalLayer::transmitDirect()']]], + ['transmitdirectasync_335',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]], + ['type_336',['type',['../structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40',1,'tone_t']]] ]; diff --git a/search/all_11.js b/search/all_11.js index 3ed6f3ab..915cabe3 100644 --- a/search/all_11.js +++ b/search/all_11.js @@ -1,5 +1,5 @@ var searchData= [ - ['variablepacketlengthmode_333',['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_334',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]] + ['variablepacketlengthmode_337',['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_338',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]] ]; diff --git a/search/all_12.js b/search/all_12.js index 02ace1f5..43ab3180 100644 --- a/search/all_12.js +++ b/search/all_12.js @@ -1,4 +1,4 @@ var searchData= [ - ['width_335',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]] + ['width_339',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]] ]; diff --git a/search/all_13.js b/search/all_13.js index fc0cbce7..636b2a4e 100644 --- a/search/all_13.js +++ b/search/all_13.js @@ -1,4 +1,4 @@ var searchData= [ - ['yield_336',['yield',['../class_module.html#a227d2d38e4747d0f49bb4df1c80b45d7',1,'Module']]] + ['yield_340',['yield',['../class_module.html#a227d2d38e4747d0f49bb4df1c80b45d7',1,'Module']]] ]; diff --git a/search/all_14.js b/search/all_14.js index eaf9afb2..28d1028c 100644 --- a/search/all_14.js +++ b/search/all_14.js @@ -1,5 +1,5 @@ var searchData= [ - ['_7eax25frame_337',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]], - ['_7eita2string_338',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]] + ['_7eax25frame_341',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]], + ['_7eita2string_342',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]] ]; diff --git a/search/all_d.js b/search/all_d.js index 555d4506..46bb0484 100644 --- a/search/all_d.js +++ b/search/all_d.js @@ -1,9 +1,10 @@ var searchData= [ ['packetmode_108',['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()']]], - ['physicallayer_109',['PhysicalLayer',['../class_physical_layer.html',1,'PhysicalLayer'],['../class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62',1,'PhysicalLayer::PhysicalLayer()']]], - ['pinmode_110',['pinMode',['../class_module.html#af7e4872dad3d19b6f75f532c88683168',1,'Module']]], - ['printglyph_111',['printGlyph',['../class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9',1,'HellClient']]], - ['protocolid_112',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]], - ['pulsein_113',['pulseIn',['../class_module.html#a1310b9594f86fb1dc6646479922a1fdc',1,'Module']]] + ['pagerclient_109',['PagerClient',['../class_pager_client.html',1,'PagerClient'],['../class_pager_client.html#a9f978120467b13104fb356e9b7d855ec',1,'PagerClient::PagerClient()']]], + ['physicallayer_110',['PhysicalLayer',['../class_physical_layer.html',1,'PhysicalLayer'],['../class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62',1,'PhysicalLayer::PhysicalLayer()']]], + ['pinmode_111',['pinMode',['../class_module.html#af7e4872dad3d19b6f75f532c88683168',1,'Module']]], + ['printglyph_112',['printGlyph',['../class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9',1,'HellClient']]], + ['protocolid_113',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]], + ['pulsein_114',['pulseIn',['../class_module.html#a1310b9594f86fb1dc6646479922a1fdc',1,'Module']]] ]; diff --git a/search/all_e.js b/search/all_e.js index 844e7803..57b34fc6 100644 --- a/search/all_e.js +++ b/search/all_e.js @@ -1,94 +1,96 @@ var searchData= [ - ['radiolib_20documentation_114',['RadioLib Documentation',['../index.html',1,'']]], - ['radiolib_5fchannel_5ffree_115',['RADIOLIB_CHANNEL_FREE',['../group__status__codes.html#ga4673596b2cc7290be5ee0a2e9ee42718',1,'TypeDef.h']]], - ['radiolib_5fencoding_5fmanchester_116',['RADIOLIB_ENCODING_MANCHESTER',['../group__config__encoding.html#gaffff394bbc47c05ed1bfde2e16a596e8',1,'TypeDef.h']]], - ['radiolib_5fencoding_5fnrz_117',['RADIOLIB_ENCODING_NRZ',['../group__config__encoding.html#ga0253ae0c289d950e36106102a983f9cb',1,'TypeDef.h']]], - ['radiolib_5fencoding_5fwhitening_118',['RADIOLIB_ENCODING_WHITENING',['../group__config__encoding.html#ga0bfc51be5abf0b434a49540bddb65328',1,'TypeDef.h']]], - ['radiolib_5ferr_5fack_5fnot_5freceived_119',['RADIOLIB_ERR_ACK_NOT_RECEIVED',['../group__status__codes.html#gafeff72bd7b618959d86b804a11f09063',1,'TypeDef.h']]], - ['radiolib_5ferr_5fchip_5fnot_5ffound_120',['RADIOLIB_ERR_CHIP_NOT_FOUND',['../group__status__codes.html#ga5d11e8ce64fb412c2169d0f30b9e9c62',1,'TypeDef.h']]], - ['radiolib_5ferr_5fcrc_5fmismatch_121',['RADIOLIB_ERR_CRC_MISMATCH',['../group__status__codes.html#ga9da949184e940a4fa6f4afb63c315963',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5faddress_5fwidth_122',['RADIOLIB_ERR_INVALID_ADDRESS_WIDTH',['../group__status__codes.html#gafbc04b924d23cba05307e94972d7d607',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fbandwidth_123',['RADIOLIB_ERR_INVALID_BANDWIDTH',['../group__status__codes.html#ga0710b406a7e12ab6e0f77fdb3374cd9a',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fbit_5frange_124',['RADIOLIB_ERR_INVALID_BIT_RANGE',['../group__status__codes.html#ga508806c18663156b0d00d1a21c957468',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fbit_5frate_125',['RADIOLIB_ERR_INVALID_BIT_RATE',['../group__status__codes.html#gac192dbf5134a10ed561100b01129224c',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fbit_5frate_5fbw_5fratio_126',['RADIOLIB_ERR_INVALID_BIT_RATE_BW_RATIO',['../group__status__codes.html#ga733a7f3f12109103384522dac4d1146e',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fcallsign_127',['RADIOLIB_ERR_INVALID_CALLSIGN',['../group__status__codes.html#gac1c27fd5a9ec38601a53c1c5ad428063',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fcoding_5frate_128',['RADIOLIB_ERR_INVALID_CODING_RATE',['../group__status__codes.html#ga4e64d3ed035b21bfb81cf2bca35b2ecb',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fcrc_5fconfiguration_129',['RADIOLIB_ERR_INVALID_CRC_CONFIGURATION',['../group__status__codes.html#gaedc74820131d6cb654302d776360f969',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fcurrent_5flimit_130',['RADIOLIB_ERR_INVALID_CURRENT_LIMIT',['../group__status__codes.html#gac314f4bd89f306c8a16237be9a9c80cb',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fdata_5frate_131',['RADIOLIB_ERR_INVALID_DATA_RATE',['../group__status__codes.html#ga9a098ceda0c3f153515c8cc36f1d683e',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fdata_5fshaping_132',['RADIOLIB_ERR_INVALID_DATA_SHAPING',['../group__status__codes.html#gaf16af86f43ac2946e82a1e87aea2882b',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fdio_5fpin_133',['RADIOLIB_ERR_INVALID_DIO_PIN',['../group__status__codes.html#ga193402d53d354b58c70e5324d1e5b531',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fencoding_134',['RADIOLIB_ERR_INVALID_ENCODING',['../group__status__codes.html#ga41b17f0207ad1aa10d666c8a9e4830c5',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5ffrequency_135',['RADIOLIB_ERR_INVALID_FREQUENCY',['../group__status__codes.html#ga9f80eb00fad12bb0bec384ad83b6941b',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5ffrequency_5fdeviation_136',['RADIOLIB_ERR_INVALID_FREQUENCY_DEVIATION',['../group__status__codes.html#gaabe141287f2d6ba723658309f4464662',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fgain_137',['RADIOLIB_ERR_INVALID_GAIN',['../group__status__codes.html#ga908f3a5ab6937d28536791c96cf9de23',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fmic_5fe_5ftelemetry_138',['RADIOLIB_ERR_INVALID_MIC_E_TELEMETRY',['../group__status__codes.html#gaeafdfcb2b10b08385feea93163fc3918',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fmic_5fe_5ftelemetry_5flength_139',['RADIOLIB_ERR_INVALID_MIC_E_TELEMETRY_LENGTH',['../group__status__codes.html#ga85e34d08b298a4125f77ddede011db3b',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fmodulation_140',['RADIOLIB_ERR_INVALID_MODULATION',['../group__status__codes.html#gab0f9cb8ee829a8504fc110de18c4ff67',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fmodulation_5fparameters_141',['RADIOLIB_ERR_INVALID_MODULATION_PARAMETERS',['../group__status__codes.html#ga7f57f6eddc68b9a59cceab4fdf6556ba',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fnum_5fbroad_5faddrs_142',['RADIOLIB_ERR_INVALID_NUM_BROAD_ADDRS',['../group__status__codes.html#gae0e8ebbd71661b8a107b01befc997e5e',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fnum_5frepeaters_143',['RADIOLIB_ERR_INVALID_NUM_REPEATERS',['../group__status__codes.html#ga47f1cc22b76c6b8685bd7e265ab78a1a',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fnum_5fsamples_144',['RADIOLIB_ERR_INVALID_NUM_SAMPLES',['../group__status__codes.html#gaa5d0e76a10099c6e1cfd8f24e48995a2',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fook_5frssi_5fpeak_5ftype_145',['RADIOLIB_ERR_INVALID_OOK_RSSI_PEAK_TYPE',['../group__status__codes.html#gabc97efb9f410af5c0a9c1e5f882e41d8',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5foutput_5fpower_146',['RADIOLIB_ERR_INVALID_OUTPUT_POWER',['../group__status__codes.html#ga55da4b2ee0661872a37f1c57fc61c666',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fpipe_5fnumber_147',['RADIOLIB_ERR_INVALID_PIPE_NUMBER',['../group__status__codes.html#ga3ed4264643f97b76f9f3cf242338573d',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fpreamble_5flength_148',['RADIOLIB_ERR_INVALID_PREAMBLE_LENGTH',['../group__status__codes.html#ga9dc55947447ed9c91217f86a9bca75bb',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5frepeater_5fcallsign_149',['RADIOLIB_ERR_INVALID_REPEATER_CALLSIGN',['../group__status__codes.html#ga684497ce1c94442b5fe0396ea4ec930d',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5frssi_5foffset_150',['RADIOLIB_ERR_INVALID_RSSI_OFFSET',['../group__status__codes.html#ga0f1e3d5da7867511500fcd4a43f4df2f',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5frssi_5fthreshold_151',['RADIOLIB_ERR_INVALID_RSSI_THRESHOLD',['../group__status__codes.html#ga0f0aad5acd6d24fc7da9269664912d48',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5frtty_5fshift_152',['RADIOLIB_ERR_INVALID_RTTY_SHIFT',['../group__status__codes.html#ga6b75df06d8c18366f85848331c49a1af',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5frx_5fbandwidth_153',['RADIOLIB_ERR_INVALID_RX_BANDWIDTH',['../group__status__codes.html#gaa1f484c73f9abe05408c84fe5891539b',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5frx_5fperiod_154',['RADIOLIB_ERR_INVALID_RX_PERIOD',['../group__status__codes.html#ga4b30b822814dc8d49d3f3229011c8aff',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fsleep_5fperiod_155',['RADIOLIB_ERR_INVALID_SLEEP_PERIOD',['../group__status__codes.html#ga0066a30650888853a622413a579d891c',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fspreading_5ffactor_156',['RADIOLIB_ERR_INVALID_SPREADING_FACTOR',['../group__status__codes.html#ga0e196b0ec8efd606cd60592f88b626e8',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fsymbol_157',['RADIOLIB_ERR_INVALID_SYMBOL',['../group__status__codes.html#ga7f9712de2117b89215410fc18776dc84',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fsync_5fword_158',['RADIOLIB_ERR_INVALID_SYNC_WORD',['../group__status__codes.html#ga5584a219fcb1a8e1789142b18a3a511e',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5ftcxo_5fvoltage_159',['RADIOLIB_ERR_INVALID_TCXO_VOLTAGE',['../group__status__codes.html#ga691e968e9f057a6cecb37a5dd5d8bd68',1,'TypeDef.h']]], - ['radiolib_5ferr_5flora_5fheader_5fdamaged_160',['RADIOLIB_ERR_LORA_HEADER_DAMAGED',['../group__status__codes.html#gab152891bb13f6f70e6631820904e9d90',1,'TypeDef.h']]], - ['radiolib_5ferr_5fmemory_5fallocation_5ffailed_161',['RADIOLIB_ERR_MEMORY_ALLOCATION_FAILED',['../group__status__codes.html#ga7afc28738967d4d91c13d1d412d6f5e4',1,'TypeDef.h']]], - ['radiolib_5ferr_5fmic_5fe_5ftelemetry_5fstatus_162',['RADIOLIB_ERR_MIC_E_TELEMETRY_STATUS',['../group__status__codes.html#ga54a2fc9441c25b56979c6edab097ff12',1,'TypeDef.h']]], - ['radiolib_5ferr_5fnone_163',['RADIOLIB_ERR_NONE',['../group__status__codes.html#ga4c1dd3c7f2b37c973a047c58506729f5',1,'TypeDef.h']]], - ['radiolib_5ferr_5fpacket_5ftoo_5flong_164',['RADIOLIB_ERR_PACKET_TOO_LONG',['../group__status__codes.html#ga4602702eac86c5c3a13b93a06d846fac',1,'TypeDef.h']]], - ['radiolib_5ferr_5franging_5ftimeout_165',['RADIOLIB_ERR_RANGING_TIMEOUT',['../group__status__codes.html#gabf529b0d150265c071c2255cb45f9e4f',1,'TypeDef.h']]], - ['radiolib_5ferr_5frx_5ftimeout_166',['RADIOLIB_ERR_RX_TIMEOUT',['../group__status__codes.html#gafadba2c16b7296cbaf96978e8eadfa45',1,'TypeDef.h']]], - ['radiolib_5ferr_5fspi_5fcmd_5ffailed_167',['RADIOLIB_ERR_SPI_CMD_FAILED',['../group__status__codes.html#gabc695a4fae689e856ae6f618e334066f',1,'TypeDef.h']]], - ['radiolib_5ferr_5fspi_5fcmd_5finvalid_168',['RADIOLIB_ERR_SPI_CMD_INVALID',['../group__status__codes.html#gac1902fa5b8d5c9469dd9261880ba2957',1,'TypeDef.h']]], - ['radiolib_5ferr_5fspi_5fcmd_5ftimeout_169',['RADIOLIB_ERR_SPI_CMD_TIMEOUT',['../group__status__codes.html#ga72b849c71b8fdf112d318518a3b1ac7d',1,'TypeDef.h']]], - ['radiolib_5ferr_5fspi_5fwrite_5ffailed_170',['RADIOLIB_ERR_SPI_WRITE_FAILED',['../group__status__codes.html#ga31e0864281b5ea21c53206c49877b670',1,'TypeDef.h']]], - ['radiolib_5ferr_5ftx_5ftimeout_171',['RADIOLIB_ERR_TX_TIMEOUT',['../group__status__codes.html#gac4185b9eaead4de110763759f01e1f4f',1,'TypeDef.h']]], - ['radiolib_5ferr_5funknown_172',['RADIOLIB_ERR_UNKNOWN',['../group__status__codes.html#gacc0baeb3e5fc99760a07d18ba55531b6',1,'TypeDef.h']]], - ['radiolib_5ferr_5funsupported_173',['RADIOLIB_ERR_UNSUPPORTED',['../group__status__codes.html#ga00c1c2b500feea59d0d47dddd7179be1',1,'TypeDef.h']]], - ['radiolib_5ferr_5funsupported_5fencoding_174',['RADIOLIB_ERR_UNSUPPORTED_ENCODING',['../group__status__codes.html#gae4d77c5138cc5f21fb2af4b0791e9f81',1,'TypeDef.h']]], - ['radiolib_5ferr_5fwrong_5fmodem_175',['RADIOLIB_ERR_WRONG_MODEM',['../group__status__codes.html#gad95d2455d580745d41ef2f319c6585f8',1,'TypeDef.h']]], - ['radiolib_5flora_5fdetected_176',['RADIOLIB_LORA_DETECTED',['../group__status__codes.html#ga58ff08f4dba334cf8e26474ec2d3facd',1,'TypeDef.h']]], - ['radiolib_5fpreamble_5fdetected_177',['RADIOLIB_PREAMBLE_DETECTED',['../group__status__codes.html#ga382dc113e93f196401914853ec176b18',1,'TypeDef.h']]], - ['radiolib_5fshaping_5f0_5f3_178',['RADIOLIB_SHAPING_0_3',['../group__config__shaping.html#ga6a562fca42573d39e4a214c293756f64',1,'TypeDef.h']]], - ['radiolib_5fshaping_5f0_5f5_179',['RADIOLIB_SHAPING_0_5',['../group__config__shaping.html#gaa778d14c29d21fe329137a28a3f54a5d',1,'TypeDef.h']]], - ['radiolib_5fshaping_5f0_5f7_180',['RADIOLIB_SHAPING_0_7',['../group__config__shaping.html#ga677dde0ea956d5e99af30cf501a727ad',1,'TypeDef.h']]], - ['radiolib_5fshaping_5f1_5f0_181',['RADIOLIB_SHAPING_1_0',['../group__config__shaping.html#ga80e2185af1123c7632aa40cad1691e6d',1,'TypeDef.h']]], - ['radiolib_5fshaping_5fnone_182',['RADIOLIB_SHAPING_NONE',['../group__config__shaping.html#gaa9495bc5eb54df04f2ed7b1ccbb4f277',1,'TypeDef.h']]], - ['random_183',['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_184',['randomByte',['../class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833',1,'CC1101::randomByte()'],['../classn_r_f24.html#a5cc7cd54db2a6af1c9183a2d0653fe2e',1,'nRF24::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',1,'SX126x::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_physical_layer.html#a34543b885aa57ade08a4c659991e523e',1,'PhysicalLayer::randomByte()']]], - ['range_185',['range',['../class_s_x1280.html#a812e289084b2f78977b254c28f0fff7c',1,'SX1280']]], - ['rcvseqnumber_186',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], - ['read_187',['read',['../class_morse_client.html#a709093c92d69f29f1520f0b290af374b',1,'MorseClient::read()'],['../class_physical_layer.html#a929662904e9af2611e098dc13b91c977',1,'PhysicalLayer::read()']]], - ['readbit_188',['readBit',['../class_c_c1101.html#a5cebec89fc0fa0f5ccbce28c6ce7d2dc',1,'CC1101::readBit()'],['../classn_r_f24.html#a2db0cd487b03f937afc0bc2e3eccb6f6',1,'nRF24::readBit()'],['../class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa',1,'RF69::readBit()'],['../class_si443x.html#a45d3ffcb312c34a2f6391be6d609d7b7',1,'Si443x::readBit()'],['../class_s_x126x.html#aff80db65e546934980feac7e6c81dd80',1,'SX126x::readBit()'],['../class_s_x127x.html#a071442611a32154e8b3db7981f242a53',1,'SX127x::readBit()'],['../class_s_x128x.html#a2dd0ecae9f54cf6943cf702ae15f5039',1,'SX128x::readBit()'],['../class_physical_layer.html#a9b720e7776ad7ea805932578907b0058',1,'PhysicalLayer::readBit()']]], - ['readdata_189',['readData',['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData()'],['../classn_r_f24.html#a410fb78acb4ed358818c132687b8857a',1,'nRF24::readData()'],['../class_r_f69.html#a3983b66c83818b4082805bcafc712f00',1,'RF69::readData()'],['../class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e',1,'Si443x::readData()'],['../class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2',1,'SX126x::readData()'],['../class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745',1,'SX127x::readData()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_physical_layer.html#ae8eed0e888a7c8742e89d2b850977de2',1,'PhysicalLayer::readData(String &str, size_t len=0)'],['../class_physical_layer.html#ae8b6c756eb4b92855433ca389d73c632',1,'PhysicalLayer::readData(uint8_t *data, size_t len)=0']]], - ['receive_190',['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_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'PhysicalLayer::receive(String &str, size_t len=0)'],['../class_physical_layer.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'PhysicalLayer::receive(uint8_t *data, size_t len)=0']]], - ['receivedirect_191',['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#a46b22145b33e97cf6065ed826799b6b4',1,'PhysicalLayer::receiveDirect()']]], - ['receivedirectasync_192',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]], - ['regdump_193',['regdump',['../class_module.html#a7216d32fc55130d111409c6f2050d9c0',1,'Module']]], - ['repeatercallsigns_194',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]], - ['repeaterssids_195',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]], - ['reset_196',['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_197',['RF69',['../class_r_f69.html',1,'RF69'],['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69::RF69()']]], - ['rfm22_198',['RFM22',['../class_r_f_m22.html',1,'']]], - ['rfm23_199',['RFM23',['../class_r_f_m23.html',1,'']]], - ['rfm95_200',['RFM95',['../class_r_f_m95.html',1,'RFM95'],['../class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326',1,'RFM95::RFM95()']]], - ['rfm96_201',['RFM96',['../class_r_f_m96.html',1,'RFM96'],['../class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a',1,'RFM96::RFM96()']]], - ['rfm97_202',['RFM97',['../class_r_f_m97.html',1,'RFM97'],['../class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be',1,'RFM97::RFM97()']]], - ['rfm98_203',['RFM98',['../class_r_f_m98.html',1,'']]], - ['rttyclient_204',['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_115',['RadioLib Documentation',['../index.html',1,'']]], + ['radiolib_5fchannel_5ffree_116',['RADIOLIB_CHANNEL_FREE',['../group__status__codes.html#ga4673596b2cc7290be5ee0a2e9ee42718',1,'TypeDef.h']]], + ['radiolib_5fencoding_5fmanchester_117',['RADIOLIB_ENCODING_MANCHESTER',['../group__config__encoding.html#gaffff394bbc47c05ed1bfde2e16a596e8',1,'TypeDef.h']]], + ['radiolib_5fencoding_5fnrz_118',['RADIOLIB_ENCODING_NRZ',['../group__config__encoding.html#ga0253ae0c289d950e36106102a983f9cb',1,'TypeDef.h']]], + ['radiolib_5fencoding_5fwhitening_119',['RADIOLIB_ENCODING_WHITENING',['../group__config__encoding.html#ga0bfc51be5abf0b434a49540bddb65328',1,'TypeDef.h']]], + ['radiolib_5ferr_5fack_5fnot_5freceived_120',['RADIOLIB_ERR_ACK_NOT_RECEIVED',['../group__status__codes.html#gafeff72bd7b618959d86b804a11f09063',1,'TypeDef.h']]], + ['radiolib_5ferr_5faddress_5fnot_5ffound_121',['RADIOLIB_ERR_ADDRESS_NOT_FOUND',['../group__status__codes.html#ga806183ed238159d317132b0d44d7a0a2',1,'TypeDef.h']]], + ['radiolib_5ferr_5fchip_5fnot_5ffound_122',['RADIOLIB_ERR_CHIP_NOT_FOUND',['../group__status__codes.html#ga5d11e8ce64fb412c2169d0f30b9e9c62',1,'TypeDef.h']]], + ['radiolib_5ferr_5fcrc_5fmismatch_123',['RADIOLIB_ERR_CRC_MISMATCH',['../group__status__codes.html#ga9da949184e940a4fa6f4afb63c315963',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5faddress_5fwidth_124',['RADIOLIB_ERR_INVALID_ADDRESS_WIDTH',['../group__status__codes.html#gafbc04b924d23cba05307e94972d7d607',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fbandwidth_125',['RADIOLIB_ERR_INVALID_BANDWIDTH',['../group__status__codes.html#ga0710b406a7e12ab6e0f77fdb3374cd9a',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fbit_5frange_126',['RADIOLIB_ERR_INVALID_BIT_RANGE',['../group__status__codes.html#ga508806c18663156b0d00d1a21c957468',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fbit_5frate_127',['RADIOLIB_ERR_INVALID_BIT_RATE',['../group__status__codes.html#gac192dbf5134a10ed561100b01129224c',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fbit_5frate_5fbw_5fratio_128',['RADIOLIB_ERR_INVALID_BIT_RATE_BW_RATIO',['../group__status__codes.html#ga733a7f3f12109103384522dac4d1146e',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fcallsign_129',['RADIOLIB_ERR_INVALID_CALLSIGN',['../group__status__codes.html#gac1c27fd5a9ec38601a53c1c5ad428063',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fcoding_5frate_130',['RADIOLIB_ERR_INVALID_CODING_RATE',['../group__status__codes.html#ga4e64d3ed035b21bfb81cf2bca35b2ecb',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fcrc_5fconfiguration_131',['RADIOLIB_ERR_INVALID_CRC_CONFIGURATION',['../group__status__codes.html#gaedc74820131d6cb654302d776360f969',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fcurrent_5flimit_132',['RADIOLIB_ERR_INVALID_CURRENT_LIMIT',['../group__status__codes.html#gac314f4bd89f306c8a16237be9a9c80cb',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fdata_5frate_133',['RADIOLIB_ERR_INVALID_DATA_RATE',['../group__status__codes.html#ga9a098ceda0c3f153515c8cc36f1d683e',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fdata_5fshaping_134',['RADIOLIB_ERR_INVALID_DATA_SHAPING',['../group__status__codes.html#gaf16af86f43ac2946e82a1e87aea2882b',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fdio_5fpin_135',['RADIOLIB_ERR_INVALID_DIO_PIN',['../group__status__codes.html#ga193402d53d354b58c70e5324d1e5b531',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fencoding_136',['RADIOLIB_ERR_INVALID_ENCODING',['../group__status__codes.html#ga41b17f0207ad1aa10d666c8a9e4830c5',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5ffrequency_137',['RADIOLIB_ERR_INVALID_FREQUENCY',['../group__status__codes.html#ga9f80eb00fad12bb0bec384ad83b6941b',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5ffrequency_5fdeviation_138',['RADIOLIB_ERR_INVALID_FREQUENCY_DEVIATION',['../group__status__codes.html#gaabe141287f2d6ba723658309f4464662',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fgain_139',['RADIOLIB_ERR_INVALID_GAIN',['../group__status__codes.html#ga908f3a5ab6937d28536791c96cf9de23',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fmic_5fe_5ftelemetry_140',['RADIOLIB_ERR_INVALID_MIC_E_TELEMETRY',['../group__status__codes.html#gaeafdfcb2b10b08385feea93163fc3918',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fmic_5fe_5ftelemetry_5flength_141',['RADIOLIB_ERR_INVALID_MIC_E_TELEMETRY_LENGTH',['../group__status__codes.html#ga85e34d08b298a4125f77ddede011db3b',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fmodulation_142',['RADIOLIB_ERR_INVALID_MODULATION',['../group__status__codes.html#gab0f9cb8ee829a8504fc110de18c4ff67',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fmodulation_5fparameters_143',['RADIOLIB_ERR_INVALID_MODULATION_PARAMETERS',['../group__status__codes.html#ga7f57f6eddc68b9a59cceab4fdf6556ba',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fnum_5fbroad_5faddrs_144',['RADIOLIB_ERR_INVALID_NUM_BROAD_ADDRS',['../group__status__codes.html#gae0e8ebbd71661b8a107b01befc997e5e',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fnum_5frepeaters_145',['RADIOLIB_ERR_INVALID_NUM_REPEATERS',['../group__status__codes.html#ga47f1cc22b76c6b8685bd7e265ab78a1a',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fnum_5fsamples_146',['RADIOLIB_ERR_INVALID_NUM_SAMPLES',['../group__status__codes.html#gaa5d0e76a10099c6e1cfd8f24e48995a2',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fook_5frssi_5fpeak_5ftype_147',['RADIOLIB_ERR_INVALID_OOK_RSSI_PEAK_TYPE',['../group__status__codes.html#gabc97efb9f410af5c0a9c1e5f882e41d8',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5foutput_5fpower_148',['RADIOLIB_ERR_INVALID_OUTPUT_POWER',['../group__status__codes.html#ga55da4b2ee0661872a37f1c57fc61c666',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fpayload_149',['RADIOLIB_ERR_INVALID_PAYLOAD',['../group__status__codes.html#ga5529b54dc67d5ccdc2a29989ebf43711',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fpipe_5fnumber_150',['RADIOLIB_ERR_INVALID_PIPE_NUMBER',['../group__status__codes.html#ga3ed4264643f97b76f9f3cf242338573d',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fpreamble_5flength_151',['RADIOLIB_ERR_INVALID_PREAMBLE_LENGTH',['../group__status__codes.html#ga9dc55947447ed9c91217f86a9bca75bb',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5frepeater_5fcallsign_152',['RADIOLIB_ERR_INVALID_REPEATER_CALLSIGN',['../group__status__codes.html#ga684497ce1c94442b5fe0396ea4ec930d',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5frssi_5foffset_153',['RADIOLIB_ERR_INVALID_RSSI_OFFSET',['../group__status__codes.html#ga0f1e3d5da7867511500fcd4a43f4df2f',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5frssi_5fthreshold_154',['RADIOLIB_ERR_INVALID_RSSI_THRESHOLD',['../group__status__codes.html#ga0f0aad5acd6d24fc7da9269664912d48',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5frtty_5fshift_155',['RADIOLIB_ERR_INVALID_RTTY_SHIFT',['../group__status__codes.html#ga6b75df06d8c18366f85848331c49a1af',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5frx_5fbandwidth_156',['RADIOLIB_ERR_INVALID_RX_BANDWIDTH',['../group__status__codes.html#gaa1f484c73f9abe05408c84fe5891539b',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5frx_5fperiod_157',['RADIOLIB_ERR_INVALID_RX_PERIOD',['../group__status__codes.html#ga4b30b822814dc8d49d3f3229011c8aff',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fsleep_5fperiod_158',['RADIOLIB_ERR_INVALID_SLEEP_PERIOD',['../group__status__codes.html#ga0066a30650888853a622413a579d891c',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fspreading_5ffactor_159',['RADIOLIB_ERR_INVALID_SPREADING_FACTOR',['../group__status__codes.html#ga0e196b0ec8efd606cd60592f88b626e8',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fsymbol_160',['RADIOLIB_ERR_INVALID_SYMBOL',['../group__status__codes.html#ga7f9712de2117b89215410fc18776dc84',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fsync_5fword_161',['RADIOLIB_ERR_INVALID_SYNC_WORD',['../group__status__codes.html#ga5584a219fcb1a8e1789142b18a3a511e',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5ftcxo_5fvoltage_162',['RADIOLIB_ERR_INVALID_TCXO_VOLTAGE',['../group__status__codes.html#ga691e968e9f057a6cecb37a5dd5d8bd68',1,'TypeDef.h']]], + ['radiolib_5ferr_5flora_5fheader_5fdamaged_163',['RADIOLIB_ERR_LORA_HEADER_DAMAGED',['../group__status__codes.html#gab152891bb13f6f70e6631820904e9d90',1,'TypeDef.h']]], + ['radiolib_5ferr_5fmemory_5fallocation_5ffailed_164',['RADIOLIB_ERR_MEMORY_ALLOCATION_FAILED',['../group__status__codes.html#ga7afc28738967d4d91c13d1d412d6f5e4',1,'TypeDef.h']]], + ['radiolib_5ferr_5fmic_5fe_5ftelemetry_5fstatus_165',['RADIOLIB_ERR_MIC_E_TELEMETRY_STATUS',['../group__status__codes.html#ga54a2fc9441c25b56979c6edab097ff12',1,'TypeDef.h']]], + ['radiolib_5ferr_5fnone_166',['RADIOLIB_ERR_NONE',['../group__status__codes.html#ga4c1dd3c7f2b37c973a047c58506729f5',1,'TypeDef.h']]], + ['radiolib_5ferr_5fpacket_5ftoo_5flong_167',['RADIOLIB_ERR_PACKET_TOO_LONG',['../group__status__codes.html#ga4602702eac86c5c3a13b93a06d846fac',1,'TypeDef.h']]], + ['radiolib_5ferr_5franging_5ftimeout_168',['RADIOLIB_ERR_RANGING_TIMEOUT',['../group__status__codes.html#gabf529b0d150265c071c2255cb45f9e4f',1,'TypeDef.h']]], + ['radiolib_5ferr_5frx_5ftimeout_169',['RADIOLIB_ERR_RX_TIMEOUT',['../group__status__codes.html#gafadba2c16b7296cbaf96978e8eadfa45',1,'TypeDef.h']]], + ['radiolib_5ferr_5fspi_5fcmd_5ffailed_170',['RADIOLIB_ERR_SPI_CMD_FAILED',['../group__status__codes.html#gabc695a4fae689e856ae6f618e334066f',1,'TypeDef.h']]], + ['radiolib_5ferr_5fspi_5fcmd_5finvalid_171',['RADIOLIB_ERR_SPI_CMD_INVALID',['../group__status__codes.html#gac1902fa5b8d5c9469dd9261880ba2957',1,'TypeDef.h']]], + ['radiolib_5ferr_5fspi_5fcmd_5ftimeout_172',['RADIOLIB_ERR_SPI_CMD_TIMEOUT',['../group__status__codes.html#ga72b849c71b8fdf112d318518a3b1ac7d',1,'TypeDef.h']]], + ['radiolib_5ferr_5fspi_5fwrite_5ffailed_173',['RADIOLIB_ERR_SPI_WRITE_FAILED',['../group__status__codes.html#ga31e0864281b5ea21c53206c49877b670',1,'TypeDef.h']]], + ['radiolib_5ferr_5ftx_5ftimeout_174',['RADIOLIB_ERR_TX_TIMEOUT',['../group__status__codes.html#gac4185b9eaead4de110763759f01e1f4f',1,'TypeDef.h']]], + ['radiolib_5ferr_5funknown_175',['RADIOLIB_ERR_UNKNOWN',['../group__status__codes.html#gacc0baeb3e5fc99760a07d18ba55531b6',1,'TypeDef.h']]], + ['radiolib_5ferr_5funsupported_176',['RADIOLIB_ERR_UNSUPPORTED',['../group__status__codes.html#ga00c1c2b500feea59d0d47dddd7179be1',1,'TypeDef.h']]], + ['radiolib_5ferr_5funsupported_5fencoding_177',['RADIOLIB_ERR_UNSUPPORTED_ENCODING',['../group__status__codes.html#gae4d77c5138cc5f21fb2af4b0791e9f81',1,'TypeDef.h']]], + ['radiolib_5ferr_5fwrong_5fmodem_178',['RADIOLIB_ERR_WRONG_MODEM',['../group__status__codes.html#gad95d2455d580745d41ef2f319c6585f8',1,'TypeDef.h']]], + ['radiolib_5flora_5fdetected_179',['RADIOLIB_LORA_DETECTED',['../group__status__codes.html#ga58ff08f4dba334cf8e26474ec2d3facd',1,'TypeDef.h']]], + ['radiolib_5fpreamble_5fdetected_180',['RADIOLIB_PREAMBLE_DETECTED',['../group__status__codes.html#ga382dc113e93f196401914853ec176b18',1,'TypeDef.h']]], + ['radiolib_5fshaping_5f0_5f3_181',['RADIOLIB_SHAPING_0_3',['../group__config__shaping.html#ga6a562fca42573d39e4a214c293756f64',1,'TypeDef.h']]], + ['radiolib_5fshaping_5f0_5f5_182',['RADIOLIB_SHAPING_0_5',['../group__config__shaping.html#gaa778d14c29d21fe329137a28a3f54a5d',1,'TypeDef.h']]], + ['radiolib_5fshaping_5f0_5f7_183',['RADIOLIB_SHAPING_0_7',['../group__config__shaping.html#ga677dde0ea956d5e99af30cf501a727ad',1,'TypeDef.h']]], + ['radiolib_5fshaping_5f1_5f0_184',['RADIOLIB_SHAPING_1_0',['../group__config__shaping.html#ga80e2185af1123c7632aa40cad1691e6d',1,'TypeDef.h']]], + ['radiolib_5fshaping_5fnone_185',['RADIOLIB_SHAPING_NONE',['../group__config__shaping.html#gaa9495bc5eb54df04f2ed7b1ccbb4f277',1,'TypeDef.h']]], + ['random_186',['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_187',['randomByte',['../class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833',1,'CC1101::randomByte()'],['../classn_r_f24.html#a5cc7cd54db2a6af1c9183a2d0653fe2e',1,'nRF24::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',1,'SX126x::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_physical_layer.html#a34543b885aa57ade08a4c659991e523e',1,'PhysicalLayer::randomByte()']]], + ['range_188',['range',['../class_s_x1280.html#a812e289084b2f78977b254c28f0fff7c',1,'SX1280']]], + ['rcvseqnumber_189',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], + ['read_190',['read',['../class_morse_client.html#a709093c92d69f29f1520f0b290af374b',1,'MorseClient::read()'],['../class_physical_layer.html#a929662904e9af2611e098dc13b91c977',1,'PhysicalLayer::read()']]], + ['readbit_191',['readBit',['../class_c_c1101.html#a5cebec89fc0fa0f5ccbce28c6ce7d2dc',1,'CC1101::readBit()'],['../classn_r_f24.html#a2db0cd487b03f937afc0bc2e3eccb6f6',1,'nRF24::readBit()'],['../class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa',1,'RF69::readBit()'],['../class_si443x.html#a45d3ffcb312c34a2f6391be6d609d7b7',1,'Si443x::readBit()'],['../class_s_x126x.html#aff80db65e546934980feac7e6c81dd80',1,'SX126x::readBit()'],['../class_s_x127x.html#a071442611a32154e8b3db7981f242a53',1,'SX127x::readBit()'],['../class_s_x128x.html#a2dd0ecae9f54cf6943cf702ae15f5039',1,'SX128x::readBit()'],['../class_physical_layer.html#a9b720e7776ad7ea805932578907b0058',1,'PhysicalLayer::readBit()']]], + ['readdata_192',['readData',['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData()'],['../classn_r_f24.html#a410fb78acb4ed358818c132687b8857a',1,'nRF24::readData()'],['../class_r_f69.html#a3983b66c83818b4082805bcafc712f00',1,'RF69::readData()'],['../class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e',1,'Si443x::readData()'],['../class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2',1,'SX126x::readData()'],['../class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745',1,'SX127x::readData()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_pager_client.html#a947e37884f59c9e1a6b7d5dd817316fe',1,'PagerClient::readData(String &str, size_t len=0)'],['../class_pager_client.html#a158d97e372ade18db408484c8cb35428',1,'PagerClient::readData(uint8_t *data, size_t *len)'],['../class_physical_layer.html#ae8eed0e888a7c8742e89d2b850977de2',1,'PhysicalLayer::readData(String &str, size_t len=0)'],['../class_physical_layer.html#ae8b6c756eb4b92855433ca389d73c632',1,'PhysicalLayer::readData(uint8_t *data, size_t len)=0']]], + ['receive_193',['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_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'PhysicalLayer::receive(String &str, size_t len=0)'],['../class_physical_layer.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'PhysicalLayer::receive(uint8_t *data, size_t len)=0']]], + ['receivedirect_194',['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#a46b22145b33e97cf6065ed826799b6b4',1,'PhysicalLayer::receiveDirect()']]], + ['receivedirectasync_195',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]], + ['regdump_196',['regdump',['../class_module.html#a7216d32fc55130d111409c6f2050d9c0',1,'Module']]], + ['repeatercallsigns_197',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]], + ['repeaterssids_198',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]], + ['reset_199',['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_200',['RF69',['../class_r_f69.html',1,'RF69'],['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69::RF69()']]], + ['rfm22_201',['RFM22',['../class_r_f_m22.html',1,'']]], + ['rfm23_202',['RFM23',['../class_r_f_m23.html',1,'']]], + ['rfm95_203',['RFM95',['../class_r_f_m95.html',1,'RFM95'],['../class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326',1,'RFM95::RFM95()']]], + ['rfm96_204',['RFM96',['../class_r_f_m96.html',1,'RFM96'],['../class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a',1,'RFM96::RFM96()']]], + ['rfm97_205',['RFM97',['../class_r_f_m97.html',1,'RFM97'],['../class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be',1,'RFM97::RFM97()']]], + ['rfm98_206',['RFM98',['../class_r_f_m98.html',1,'']]], + ['rttyclient_207',['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 5f26fc38..1fcc9016 100644 --- a/search/all_f.js +++ b/search/all_f.js @@ -1,121 +1,122 @@ var searchData= [ - ['scanchannel_205',['scanChannel',['../class_s_x126x.html#ae9f24414bd684434c310df54b3558f21',1,'SX126x::scanChannel()'],['../class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5',1,'SX127x::scanChannel()'],['../class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb',1,'SX128x::scanChannel()']]], - ['scanpixellen_206',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]], - ['sendframe_207',['sendFrame',['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()'],['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()']]], - ['sendheader_208',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]], - ['sendline_209',['sendLine',['../class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0',1,'SSTVClient']]], - ['sendposition_210',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]], - ['sendseqnumber_211',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]], - ['setaccessaddress_212',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]], - ['setaddresswidth_213',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]], - ['setaeskey_214',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]], - ['setafc_215',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]], - ['setafcagctrigger_216',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]], - ['setafcbandwidth_217',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], - ['setambienttemperature_218',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], - ['setautoack_219',['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_220',['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_221',['setBitRate',['../class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::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_x127x.html#a606d839b3a992c681ac9ad7ca6020022',1,'SX127x::setBitRate()'],['../class_s_x128x.html#a3bee00ec197ef9855c0079cb0a3009a6',1,'SX128x::setBitRate()']]], - ['setbroadcastaddress_222',['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_223',['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_224',['setCorrection',['../class_a_x25_client.html#aa6a10784d59428a4d5c13067ba6af69c',1,'AX25Client']]], - ['setcrc_225',['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_226',['setCrcFiltering',['../class_c_c1101.html#aafac40359c4a1bb01aae12da6b03be26',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#a9b3a76eb89cad60dcad92513e6848f5a',1,'SX127x::setCrcFiltering()']]], - ['setcurrentlimit_227',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]], - ['setdatarate_228',['setDataRate',['../classn_r_f24.html#a1f3ec2196733a2e2476f50690967f285',1,'nRF24']]], - ['setdatashaping_229',['setDataShaping',['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::setDataShaping()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::setDataShaping()'],['../class_si443x.html#ade08c79074c7e4414d34eefa25cee168',1,'Si443x::setDataShaping()'],['../class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676',1,'SX126x::setDataShaping()'],['../class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea',1,'SX1272::setDataShaping()'],['../class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563',1,'SX1278::setDataShaping()'],['../class_s_x128x.html#a99491c705e88dddc820f884b778f1660',1,'SX128x::setDataShaping()'],['../class_physical_layer.html#ab643a814dce48f71a13bf6ea23f44cbd',1,'PhysicalLayer::setDataShaping()']]], - ['setdatashapingook_230',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]], - ['setdio0action_231',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ada53419d65f207f352124da7747c5960',1,'SX127x::setDio0Action()']]], - ['setdio1action_232',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#afc844f7f3530f4076c8ea5f684c1b123',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()']]], - ['setdio2asrfswitch_233',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], - ['setdiomapping_234',['setDIOMapping',['../class_c_c1101.html#a1acad996e9452c504cf0f89806c46c8a',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a4b879c689b19036411d884f6657f95db',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#adbea7515add3d81c3024ceb0d570266b',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a47c1d94d2ad2fd7eb5d11480b44cc368',1,'PhysicalLayer::setDIOMapping()']]], - ['setdiopreambledetect_235',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]], - ['setdirectaction_236',['setDirectAction',['../class_c_c1101.html#a5161fa10b19d857840579601ef565363',1,'CC1101::setDirectAction()'],['../classn_r_f24.html#a3da63a447659f92153654d31a5d2854c',1,'nRF24::setDirectAction()'],['../class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28',1,'RF69::setDirectAction()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a',1,'SX126x::setDirectAction()'],['../class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238',1,'SX127x::setDirectAction()'],['../class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236',1,'SX128x::setDirectAction()'],['../class_physical_layer.html#ab76fe7d3e0f453a807b205161c980086',1,'PhysicalLayer::setDirectAction()']]], - ['setdirectsyncword_237',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], - ['setencoding_238',['setEncoding',['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()'],['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_physical_layer.html#a7d3419227d201d6912b77784636d437d',1,'PhysicalLayer::setEncoding()']]], - ['setfhsshoppingperiod_239',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]], - ['setfifoemptyaction_240',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()']]], - ['setfifofullaction_241',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]], - ['setfrequency_242',['setFrequency',['../class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e',1,'CC1101::setFrequency()'],['../classn_r_f24.html#abec5f9dba44a019e23c8bf516f104fad',1,'nRF24::setFrequency()'],['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87',1,'RFM95::setFrequency()'],['../class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84',1,'RFM96::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_s_x1262.html#a7e72da22fa1fc2d87186107a3285e846',1,'SX1262::setFrequency()'],['../class_s_x1268.html#a6ad998275281de5c6f24f8a64db88052',1,'SX1268::setFrequency()'],['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008',1,'SX1276::setFrequency()'],['../class_s_x1277.html#a42adde5eecccdca95214980848795e82',1,'SX1277::setFrequency()'],['../class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4',1,'SX1278::setFrequency()'],['../class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817',1,'SX1279::setFrequency()'],['../class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371',1,'SX128x::setFrequency()']]], - ['setfrequencydeviation_243',['setFrequencyDeviation',['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_physical_layer.html#ab9060e8ab7a2da192b3bf53b3501553b',1,'PhysicalLayer::setFrequencyDeviation()']]], - ['setgain_244',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], - ['setgaincontrol_245',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]], - ['setgdo0action_246',['setGdo0Action',['../class_c_c1101.html#ae60ea5cacfb1543fcecde5bfac16361a',1,'CC1101']]], - ['setgdo2action_247',['setGdo2Action',['../class_c_c1101.html#ac6338c2f5c937a12dac06069944ffb77',1,'CC1101']]], - ['sethighsensitivitymode_248',['setHighSensitivityMode',['../class_s_x128x.html#a73e3655e92bca9a06e2d0abbf1a4bed4',1,'SX128x']]], - ['setinversion_249',['setInversion',['../class_hell_client.html#a1779f13c8052c2392a1f2f0e1164343e',1,'HellClient']]], - ['setirqaction_250',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]], - ['setlnatestboost_251',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]], - ['setnodeaddress_252',['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_253',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK()']]], - ['setookfixedorfloorthreshold_254',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]], - ['setookfixedthreshold_255',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]], - ['setookpeakthresholddecrement_256',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement()']]], - ['setookpeakthresholdstep_257',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]], - ['setookthresholdtype_258',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]], - ['setoutputpower_259',['setOutputPower',['../class_c_c1101.html#ac3ff8051af5ca50c349e02257f1a3bda',1,'CC1101::setOutputPower()'],['../classn_r_f24.html#a824453d547c0b42ac1988acb42032ca4',1,'nRF24::setOutputPower()'],['../class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc',1,'RF69::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_s_x1261.html#aa541f927995a1756c651b93fd24edc65',1,'SX1261::setOutputPower()'],['../class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc',1,'SX1262::setOutputPower()'],['../class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45',1,'SX1268::setOutputPower()'],['../class_s_x1272.html#a6677a04aa0c2f3bbde2509786b6a66de',1,'SX1272::setOutputPower()'],['../class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88',1,'SX1278::setOutputPower()'],['../class_s_x128x.html#ad6e2b46c317a8d8512cf0380025147a9',1,'SX128x::setOutputPower()']]], - ['setpreamblelength_260',['setPreambleLength',['../class_c_c1101.html#acbfa80f431f335d5597500319f0affa8',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_261',['setPromiscuousMode',['../class_c_c1101.html#a2911d49d1c293542f7a374c9af60df0e',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#a6d90ad1d455de045c53c5758babd876c',1,'RF69::setPromiscuousMode()']]], - ['setreceivepipe_262',['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_263',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]], - ['setregulatordcdc_264',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x']]], - ['setregulatorldo_265',['setRegulatorLDO',['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x']]], - ['setrepeaters_266',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]], - ['setrfswitchpins_267',['setRfSwitchPins',['../class_module.html#a0ecbb4e1e98094c1296b1e823dc14703',1,'Module::setRfSwitchPins()'],['../class_c_c1101.html#a45ab4e3f4f9db367185333d36ba21ed2',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#aada7c48828b950cdfd260594d502b03d',1,'RF69::setRfSwitchPins()'],['../class_si443x.html#ae365087803b88b29932b5c793edff1d4',1,'Si443x::setRfSwitchPins()'],['../class_s_x126x.html#a288257242e483cb3eb6944333179dd26',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#ae9781180418c1ec9c365b74acbc98d8a',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5f11803b3430bc059321b443f407e78b',1,'SX128x::setRfSwitchPins()']]], - ['setrfswitchstate_268',['setRfSwitchState',['../class_module.html#a4a87d59ad2bf6bb1bb9de1856a81b824',1,'Module']]], - ['setrssiconfig_269',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], - ['setrssithreshold_270',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]], - ['setrxbandwidth_271',['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()']]], - ['setsendsequence_272',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], - ['setspreadingfactor_273',['setSpreadingFactor',['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67',1,'RFM97::setSpreadingFactor()'],['../class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d',1,'SX126x::setSpreadingFactor()'],['../class_s_x1272.html#a82084ac58502c83d2ada998410307490',1,'SX1272::setSpreadingFactor()'],['../class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f',1,'SX1273::setSpreadingFactor()'],['../class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf',1,'SX1277::setSpreadingFactor()'],['../class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08',1,'SX1278::setSpreadingFactor()'],['../class_s_x128x.html#ae435f57132f76f4283abb870176acf54',1,'SX128x::setSpreadingFactor()']]], - ['setsyncbits_274',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]], - ['setsyncword_275',['setSyncWord',['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord(uint8_t *syncWord, uint8_t len, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a',1,'Si443x::setSyncWord()'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf',1,'SX126x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len)'],['../class_s_x128x.html#a0efa595867624a54153d693d16f9f731',1,'SX128x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)']]], - ['settcxo_276',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]], - ['settransmitpipe_277',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]], - ['setwhitening_278',['setWhitening',['../class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]], - ['si4430_279',['Si4430',['../class_si4430.html',1,'Si4430'],['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430::Si4430()']]], - ['si4431_280',['Si4431',['../class_si4431.html',1,'Si4431'],['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431::Si4431()']]], - ['si4432_281',['Si4432',['../class_si4432.html',1,'Si4432'],['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432::Si4432()']]], - ['si443x_282',['Si443x',['../class_si443x.html',1,'Si443x'],['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x::Si443x()']]], - ['sleep_283',['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()']]], - ['spigetregvalue_284',['SPIgetRegValue',['../class_module.html#ad7ca9ae5a22cdacdf9437ca9cd37c9b4',1,'Module']]], - ['spireadcommand_285',['SPIreadCommand',['../class_module.html#a849ad85fc1bc3a7130e660c13973ab26',1,'Module']]], - ['spireadregister_286',['SPIreadRegister',['../class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3',1,'Module']]], - ['spireadregisterburst_287',['SPIreadRegisterBurst',['../class_module.html#a6fa5239d73379e4140f5c4f513b1b8d2',1,'Module']]], - ['spisetregvalue_288',['SPIsetRegValue',['../class_module.html#a1286d7fd9673cbfab945c26b2585a129',1,'Module']]], - ['spitransfer_289',['SPItransfer',['../class_module.html#aefd955f1cd6d588b2cc229db87cb2121',1,'Module']]], - ['spiwritecommand_290',['SPIwriteCommand',['../class_module.html#ae89764d15e8df5694a6aec0e18f72d3f',1,'Module']]], - ['spiwriteregister_291',['SPIwriteRegister',['../class_module.html#ab814614ddd34b57f5a612a20f5fe4c57',1,'Module']]], - ['spiwriteregisterburst_292',['SPIwriteRegisterBurst',['../class_module.html#a9d77a08070cbd48fd4ece62a739333e9',1,'Module']]], - ['srccallsign_293',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]], - ['srcssid_294',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]], - ['sstvclient_295',['SSTVClient',['../class_s_s_t_v_client.html',1,'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)']]], - ['sstvmode_5ft_296',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]], - ['standby_297',['standby',['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby()'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby()'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby()'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby()'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby() override'],['../class_s_x126x.html#ad7569396f09f3867dc1bd4d4a0613acd',1,'SX126x::standby(uint8_t mode)'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby()'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x128x.html#aa11ba80f0cebb3e6927c775ad5f96b4e',1,'SX128x::standby(uint8_t mode)'],['../class_physical_layer.html#a0e77da761a2cbb5c9535df0bdea993f9',1,'PhysicalLayer::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()']]], - ['startchannelscan_298',['startChannelScan',['../class_s_x126x.html#a37a716aab163aebbe36599dc7e530c92',1,'SX126x::startChannelScan()'],['../class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059',1,'SX127x::startChannelScan()']]], - ['startdirect_299',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], - ['startranging_300',['startRanging',['../class_s_x1280.html#af30ff497ca3bcc043dc4dc2e7587a795',1,'SX1280']]], - ['startreceive_301',['startReceive',['../class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3',1,'CC1101::startReceive()'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_s_x126x.html#aeb92dc9d2e2a2b3a3a5ff2856528d497',1,'SX126x::startReceive()'],['../class_s_x127x.html#adffb96b7f80dc43909bb4cebde68fe9d',1,'SX127x::startReceive()'],['../class_s_x128x.html#ad59ee052d8ab1f250245a14039fc8b66',1,'SX128x::startReceive()']]], - ['startreceivedutycycle_302',['startReceiveDutyCycle',['../class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136',1,'SX126x']]], - ['startreceivedutycycleauto_303',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f',1,'SX126x']]], - ['startsignal_304',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], - ['starttransmit_305',['startTransmit',['../class_c_c1101.html#a0df2938e2509a8f2746b20ae0558d4ea',1,'CC1101::startTransmit()'],['../classn_r_f24.html#a42fdc828b49f2b8e15457189bd57d917',1,'nRF24::startTransmit()'],['../class_r_f69.html#a855dc194947b095b821ec1524ba6814c',1,'RF69::startTransmit()'],['../class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314',1,'Si443x::startTransmit()'],['../class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1',1,'SX126x::startTransmit()'],['../class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083',1,'SX127x::startTransmit()'],['../class_s_x128x.html#aef221e7d463c5228ce00ed6934512848',1,'SX128x::startTransmit()'],['../class_physical_layer.html#af068e6e862c99e39d0261a7971dd56db',1,'PhysicalLayer::startTransmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'PhysicalLayer::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]], - ['status_20codes_306',['Status Codes',['../group__status__codes.html',1,'']]], - ['sx1231_307',['SX1231',['../class_s_x1231.html',1,'SX1231'],['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231::SX1231()']]], - ['sx1261_308',['SX1261',['../class_s_x1261.html',1,'SX1261'],['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261::SX1261()']]], - ['sx1262_309',['SX1262',['../class_s_x1262.html',1,'SX1262'],['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262::SX1262()']]], - ['sx1268_310',['SX1268',['../class_s_x1268.html',1,'SX1268'],['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268::SX1268()']]], - ['sx126x_311',['SX126x',['../class_s_x126x.html',1,'SX126x'],['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x::SX126x()']]], - ['sx1272_312',['SX1272',['../class_s_x1272.html',1,'SX1272'],['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272::SX1272()']]], - ['sx1273_313',['SX1273',['../class_s_x1273.html',1,'SX1273'],['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273::SX1273()']]], - ['sx1276_314',['SX1276',['../class_s_x1276.html',1,'SX1276'],['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276::SX1276()']]], - ['sx1277_315',['SX1277',['../class_s_x1277.html',1,'SX1277'],['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277::SX1277()']]], - ['sx1278_316',['SX1278',['../class_s_x1278.html',1,'SX1278'],['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278::SX1278()']]], - ['sx1279_317',['SX1279',['../class_s_x1279.html',1,'SX1279'],['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279::SX1279()']]], - ['sx127x_318',['SX127x',['../class_s_x127x.html',1,'SX127x'],['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x::SX127x()']]], - ['sx1280_319',['SX1280',['../class_s_x1280.html',1,'SX1280'],['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280::SX1280()']]], - ['sx1281_320',['SX1281',['../class_s_x1281.html',1,'SX1281'],['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281::SX1281()']]], - ['sx1282_321',['SX1282',['../class_s_x1282.html',1,'SX1282'],['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282::SX1282()']]], - ['sx128x_322',['SX128x',['../class_s_x128x.html',1,'SX128x'],['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x::SX128x()']]] + ['scanchannel_208',['scanChannel',['../class_s_x126x.html#ae9f24414bd684434c310df54b3558f21',1,'SX126x::scanChannel()'],['../class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5',1,'SX127x::scanChannel()'],['../class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb',1,'SX128x::scanChannel()']]], + ['scanpixellen_209',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]], + ['sendframe_210',['sendFrame',['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()'],['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()']]], + ['sendheader_211',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]], + ['sendline_212',['sendLine',['../class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0',1,'SSTVClient']]], + ['sendposition_213',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]], + ['sendseqnumber_214',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]], + ['sendtone_215',['sendTone',['../class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111',1,'PagerClient']]], + ['setaccessaddress_216',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]], + ['setaddresswidth_217',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]], + ['setaeskey_218',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]], + ['setafc_219',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]], + ['setafcagctrigger_220',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]], + ['setafcbandwidth_221',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], + ['setambienttemperature_222',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], + ['setautoack_223',['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_224',['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_225',['setBitRate',['../class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::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_x127x.html#a606d839b3a992c681ac9ad7ca6020022',1,'SX127x::setBitRate()'],['../class_s_x128x.html#a3bee00ec197ef9855c0079cb0a3009a6',1,'SX128x::setBitRate()'],['../class_physical_layer.html#a56e9cf39bc8847492f7f3cd67ebf1c46',1,'PhysicalLayer::setBitRate()']]], + ['setbroadcastaddress_226',['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_227',['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_228',['setCorrection',['../class_a_x25_client.html#aa6a10784d59428a4d5c13067ba6af69c',1,'AX25Client']]], + ['setcrc_229',['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_230',['setCrcFiltering',['../class_c_c1101.html#aafac40359c4a1bb01aae12da6b03be26',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#a9b3a76eb89cad60dcad92513e6848f5a',1,'SX127x::setCrcFiltering()']]], + ['setcurrentlimit_231',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]], + ['setdatarate_232',['setDataRate',['../classn_r_f24.html#a1f3ec2196733a2e2476f50690967f285',1,'nRF24']]], + ['setdatashaping_233',['setDataShaping',['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::setDataShaping()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::setDataShaping()'],['../class_si443x.html#ade08c79074c7e4414d34eefa25cee168',1,'Si443x::setDataShaping()'],['../class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676',1,'SX126x::setDataShaping()'],['../class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea',1,'SX1272::setDataShaping()'],['../class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563',1,'SX1278::setDataShaping()'],['../class_s_x128x.html#a99491c705e88dddc820f884b778f1660',1,'SX128x::setDataShaping()'],['../class_physical_layer.html#ab643a814dce48f71a13bf6ea23f44cbd',1,'PhysicalLayer::setDataShaping()']]], + ['setdatashapingook_234',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]], + ['setdio0action_235',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ada53419d65f207f352124da7747c5960',1,'SX127x::setDio0Action()']]], + ['setdio1action_236',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#afc844f7f3530f4076c8ea5f684c1b123',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()']]], + ['setdio2asrfswitch_237',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], + ['setdiomapping_238',['setDIOMapping',['../class_c_c1101.html#a1acad996e9452c504cf0f89806c46c8a',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a4b879c689b19036411d884f6657f95db',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#adbea7515add3d81c3024ceb0d570266b',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a47c1d94d2ad2fd7eb5d11480b44cc368',1,'PhysicalLayer::setDIOMapping()']]], + ['setdiopreambledetect_239',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]], + ['setdirectaction_240',['setDirectAction',['../class_c_c1101.html#a5161fa10b19d857840579601ef565363',1,'CC1101::setDirectAction()'],['../classn_r_f24.html#a3da63a447659f92153654d31a5d2854c',1,'nRF24::setDirectAction()'],['../class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28',1,'RF69::setDirectAction()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a',1,'SX126x::setDirectAction()'],['../class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238',1,'SX127x::setDirectAction()'],['../class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236',1,'SX128x::setDirectAction()'],['../class_physical_layer.html#ab76fe7d3e0f453a807b205161c980086',1,'PhysicalLayer::setDirectAction()']]], + ['setdirectsyncword_241',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], + ['setencoding_242',['setEncoding',['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()'],['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_physical_layer.html#a7d3419227d201d6912b77784636d437d',1,'PhysicalLayer::setEncoding()']]], + ['setfhsshoppingperiod_243',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]], + ['setfifoemptyaction_244',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()']]], + ['setfifofullaction_245',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]], + ['setfrequency_246',['setFrequency',['../class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e',1,'CC1101::setFrequency()'],['../classn_r_f24.html#abec5f9dba44a019e23c8bf516f104fad',1,'nRF24::setFrequency()'],['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87',1,'RFM95::setFrequency()'],['../class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84',1,'RFM96::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_s_x1262.html#a7e72da22fa1fc2d87186107a3285e846',1,'SX1262::setFrequency()'],['../class_s_x1268.html#a6ad998275281de5c6f24f8a64db88052',1,'SX1268::setFrequency()'],['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008',1,'SX1276::setFrequency()'],['../class_s_x1277.html#a42adde5eecccdca95214980848795e82',1,'SX1277::setFrequency()'],['../class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4',1,'SX1278::setFrequency()'],['../class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817',1,'SX1279::setFrequency()'],['../class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371',1,'SX128x::setFrequency()'],['../class_physical_layer.html#a4928642e647f2dd5b614b87b681cb0a6',1,'PhysicalLayer::setFrequency()']]], + ['setfrequencydeviation_247',['setFrequencyDeviation',['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_physical_layer.html#ab9060e8ab7a2da192b3bf53b3501553b',1,'PhysicalLayer::setFrequencyDeviation()']]], + ['setgain_248',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], + ['setgaincontrol_249',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]], + ['setgdo0action_250',['setGdo0Action',['../class_c_c1101.html#ae60ea5cacfb1543fcecde5bfac16361a',1,'CC1101']]], + ['setgdo2action_251',['setGdo2Action',['../class_c_c1101.html#ac6338c2f5c937a12dac06069944ffb77',1,'CC1101']]], + ['sethighsensitivitymode_252',['setHighSensitivityMode',['../class_s_x128x.html#a73e3655e92bca9a06e2d0abbf1a4bed4',1,'SX128x']]], + ['setinversion_253',['setInversion',['../class_hell_client.html#a1779f13c8052c2392a1f2f0e1164343e',1,'HellClient']]], + ['setirqaction_254',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]], + ['setlnatestboost_255',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]], + ['setnodeaddress_256',['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_257',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK()']]], + ['setookfixedorfloorthreshold_258',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]], + ['setookfixedthreshold_259',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]], + ['setookpeakthresholddecrement_260',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement()']]], + ['setookpeakthresholdstep_261',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]], + ['setookthresholdtype_262',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]], + ['setoutputpower_263',['setOutputPower',['../class_c_c1101.html#ac3ff8051af5ca50c349e02257f1a3bda',1,'CC1101::setOutputPower()'],['../classn_r_f24.html#a824453d547c0b42ac1988acb42032ca4',1,'nRF24::setOutputPower()'],['../class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc',1,'RF69::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_s_x1261.html#aa541f927995a1756c651b93fd24edc65',1,'SX1261::setOutputPower()'],['../class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc',1,'SX1262::setOutputPower()'],['../class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45',1,'SX1268::setOutputPower()'],['../class_s_x1272.html#a6677a04aa0c2f3bbde2509786b6a66de',1,'SX1272::setOutputPower()'],['../class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88',1,'SX1278::setOutputPower()'],['../class_s_x128x.html#ad6e2b46c317a8d8512cf0380025147a9',1,'SX128x::setOutputPower()']]], + ['setpreamblelength_264',['setPreambleLength',['../class_c_c1101.html#acbfa80f431f335d5597500319f0affa8',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_265',['setPromiscuousMode',['../class_c_c1101.html#a2911d49d1c293542f7a374c9af60df0e',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#a6d90ad1d455de045c53c5758babd876c',1,'RF69::setPromiscuousMode()']]], + ['setreceivepipe_266',['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_267',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]], + ['setregulatordcdc_268',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x']]], + ['setregulatorldo_269',['setRegulatorLDO',['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x']]], + ['setrepeaters_270',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]], + ['setrfswitchpins_271',['setRfSwitchPins',['../class_module.html#a0ecbb4e1e98094c1296b1e823dc14703',1,'Module::setRfSwitchPins()'],['../class_c_c1101.html#a45ab4e3f4f9db367185333d36ba21ed2',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#aada7c48828b950cdfd260594d502b03d',1,'RF69::setRfSwitchPins()'],['../class_si443x.html#ae365087803b88b29932b5c793edff1d4',1,'Si443x::setRfSwitchPins()'],['../class_s_x126x.html#a288257242e483cb3eb6944333179dd26',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#ae9781180418c1ec9c365b74acbc98d8a',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5f11803b3430bc059321b443f407e78b',1,'SX128x::setRfSwitchPins()']]], + ['setrfswitchstate_272',['setRfSwitchState',['../class_module.html#a4a87d59ad2bf6bb1bb9de1856a81b824',1,'Module']]], + ['setrssiconfig_273',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], + ['setrssithreshold_274',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]], + ['setrxbandwidth_275',['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()']]], + ['setsendsequence_276',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], + ['setspreadingfactor_277',['setSpreadingFactor',['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67',1,'RFM97::setSpreadingFactor()'],['../class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d',1,'SX126x::setSpreadingFactor()'],['../class_s_x1272.html#a82084ac58502c83d2ada998410307490',1,'SX1272::setSpreadingFactor()'],['../class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f',1,'SX1273::setSpreadingFactor()'],['../class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf',1,'SX1277::setSpreadingFactor()'],['../class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08',1,'SX1278::setSpreadingFactor()'],['../class_s_x128x.html#ae435f57132f76f4283abb870176acf54',1,'SX128x::setSpreadingFactor()']]], + ['setsyncbits_278',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]], + ['setsyncword_279',['setSyncWord',['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord(uint8_t *syncWord, uint8_t len, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a',1,'Si443x::setSyncWord()'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf',1,'SX126x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len)'],['../class_s_x128x.html#a0efa595867624a54153d693d16f9f731',1,'SX128x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)']]], + ['settcxo_280',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]], + ['settransmitpipe_281',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]], + ['setwhitening_282',['setWhitening',['../class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]], + ['si4430_283',['Si4430',['../class_si4430.html',1,'Si4430'],['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430::Si4430()']]], + ['si4431_284',['Si4431',['../class_si4431.html',1,'Si4431'],['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431::Si4431()']]], + ['si4432_285',['Si4432',['../class_si4432.html',1,'Si4432'],['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432::Si4432()']]], + ['si443x_286',['Si443x',['../class_si443x.html',1,'Si443x'],['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x::Si443x()']]], + ['sleep_287',['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()']]], + ['spigetregvalue_288',['SPIgetRegValue',['../class_module.html#ad7ca9ae5a22cdacdf9437ca9cd37c9b4',1,'Module']]], + ['spireadcommand_289',['SPIreadCommand',['../class_module.html#a849ad85fc1bc3a7130e660c13973ab26',1,'Module']]], + ['spireadregister_290',['SPIreadRegister',['../class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3',1,'Module']]], + ['spireadregisterburst_291',['SPIreadRegisterBurst',['../class_module.html#a6fa5239d73379e4140f5c4f513b1b8d2',1,'Module']]], + ['spisetregvalue_292',['SPIsetRegValue',['../class_module.html#a1286d7fd9673cbfab945c26b2585a129',1,'Module']]], + ['spitransfer_293',['SPItransfer',['../class_module.html#aefd955f1cd6d588b2cc229db87cb2121',1,'Module']]], + ['spiwritecommand_294',['SPIwriteCommand',['../class_module.html#ae89764d15e8df5694a6aec0e18f72d3f',1,'Module']]], + ['spiwriteregister_295',['SPIwriteRegister',['../class_module.html#ab814614ddd34b57f5a612a20f5fe4c57',1,'Module']]], + ['spiwriteregisterburst_296',['SPIwriteRegisterBurst',['../class_module.html#a9d77a08070cbd48fd4ece62a739333e9',1,'Module']]], + ['srccallsign_297',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]], + ['srcssid_298',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]], + ['sstvclient_299',['SSTVClient',['../class_s_s_t_v_client.html',1,'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)']]], + ['sstvmode_5ft_300',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]], + ['standby_301',['standby',['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby()'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby()'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby()'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby()'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby() override'],['../class_s_x126x.html#ad7569396f09f3867dc1bd4d4a0613acd',1,'SX126x::standby(uint8_t mode)'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby()'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x128x.html#aa11ba80f0cebb3e6927c775ad5f96b4e',1,'SX128x::standby(uint8_t mode)'],['../class_physical_layer.html#a0e77da761a2cbb5c9535df0bdea993f9',1,'PhysicalLayer::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()']]], + ['startchannelscan_302',['startChannelScan',['../class_s_x126x.html#a37a716aab163aebbe36599dc7e530c92',1,'SX126x::startChannelScan()'],['../class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059',1,'SX127x::startChannelScan()']]], + ['startdirect_303',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], + ['startranging_304',['startRanging',['../class_s_x1280.html#af30ff497ca3bcc043dc4dc2e7587a795',1,'SX1280']]], + ['startreceive_305',['startReceive',['../class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3',1,'CC1101::startReceive()'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_s_x126x.html#aeb92dc9d2e2a2b3a3a5ff2856528d497',1,'SX126x::startReceive()'],['../class_s_x127x.html#adffb96b7f80dc43909bb4cebde68fe9d',1,'SX127x::startReceive()'],['../class_s_x128x.html#ad59ee052d8ab1f250245a14039fc8b66',1,'SX128x::startReceive()'],['../class_pager_client.html#ad6f4f034b71311144f76b629a8ef8f8d',1,'PagerClient::startReceive()']]], + ['startreceivedutycycle_306',['startReceiveDutyCycle',['../class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136',1,'SX126x']]], + ['startreceivedutycycleauto_307',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f',1,'SX126x']]], + ['startsignal_308',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], + ['starttransmit_309',['startTransmit',['../class_c_c1101.html#a0df2938e2509a8f2746b20ae0558d4ea',1,'CC1101::startTransmit()'],['../classn_r_f24.html#a42fdc828b49f2b8e15457189bd57d917',1,'nRF24::startTransmit()'],['../class_r_f69.html#a855dc194947b095b821ec1524ba6814c',1,'RF69::startTransmit()'],['../class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314',1,'Si443x::startTransmit()'],['../class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1',1,'SX126x::startTransmit()'],['../class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083',1,'SX127x::startTransmit()'],['../class_s_x128x.html#aef221e7d463c5228ce00ed6934512848',1,'SX128x::startTransmit()'],['../class_physical_layer.html#af068e6e862c99e39d0261a7971dd56db',1,'PhysicalLayer::startTransmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'PhysicalLayer::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]], + ['status_20codes_310',['Status Codes',['../group__status__codes.html',1,'']]], + ['sx1231_311',['SX1231',['../class_s_x1231.html',1,'SX1231'],['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231::SX1231()']]], + ['sx1261_312',['SX1261',['../class_s_x1261.html',1,'SX1261'],['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261::SX1261()']]], + ['sx1262_313',['SX1262',['../class_s_x1262.html',1,'SX1262'],['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262::SX1262()']]], + ['sx1268_314',['SX1268',['../class_s_x1268.html',1,'SX1268'],['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268::SX1268()']]], + ['sx126x_315',['SX126x',['../class_s_x126x.html',1,'SX126x'],['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x::SX126x()']]], + ['sx1272_316',['SX1272',['../class_s_x1272.html',1,'SX1272'],['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272::SX1272()']]], + ['sx1273_317',['SX1273',['../class_s_x1273.html',1,'SX1273'],['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273::SX1273()']]], + ['sx1276_318',['SX1276',['../class_s_x1276.html',1,'SX1276'],['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276::SX1276()']]], + ['sx1277_319',['SX1277',['../class_s_x1277.html',1,'SX1277'],['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277::SX1277()']]], + ['sx1278_320',['SX1278',['../class_s_x1278.html',1,'SX1278'],['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278::SX1278()']]], + ['sx1279_321',['SX1279',['../class_s_x1279.html',1,'SX1279'],['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279::SX1279()']]], + ['sx127x_322',['SX127x',['../class_s_x127x.html',1,'SX127x'],['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x::SX127x()']]], + ['sx1280_323',['SX1280',['../class_s_x1280.html',1,'SX1280'],['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280::SX1280()']]], + ['sx1281_324',['SX1281',['../class_s_x1281.html',1,'SX1281'],['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281::SX1281()']]], + ['sx1282_325',['SX1282',['../class_s_x1282.html',1,'SX1282'],['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282::SX1282()']]], + ['sx128x_326',['SX128x',['../class_s_x128x.html',1,'SX128x'],['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x::SX128x()']]] ]; diff --git a/search/classes_0.js b/search/classes_0.js index 86508ece..f88b5e34 100644 --- a/search/classes_0.js +++ b/search/classes_0.js @@ -1,7 +1,7 @@ var searchData= [ - ['afskclient_339',['AFSKClient',['../class_a_f_s_k_client.html',1,'']]], - ['aprsclient_340',['APRSClient',['../class_a_p_r_s_client.html',1,'']]], - ['ax25client_341',['AX25Client',['../class_a_x25_client.html',1,'']]], - ['ax25frame_342',['AX25Frame',['../class_a_x25_frame.html',1,'']]] + ['afskclient_343',['AFSKClient',['../class_a_f_s_k_client.html',1,'']]], + ['aprsclient_344',['APRSClient',['../class_a_p_r_s_client.html',1,'']]], + ['ax25client_345',['AX25Client',['../class_a_x25_client.html',1,'']]], + ['ax25frame_346',['AX25Frame',['../class_a_x25_frame.html',1,'']]] ]; diff --git a/search/classes_1.js b/search/classes_1.js index b4f3876d..9887a398 100644 --- a/search/classes_1.js +++ b/search/classes_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['cc1101_343',['CC1101',['../class_c_c1101.html',1,'']]] + ['cc1101_347',['CC1101',['../class_c_c1101.html',1,'']]] ]; diff --git a/search/classes_2.js b/search/classes_2.js index d9db1ea8..0f74fcbe 100644 --- a/search/classes_2.js +++ b/search/classes_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['fsk4client_344',['FSK4Client',['../class_f_s_k4_client.html',1,'']]] + ['fsk4client_348',['FSK4Client',['../class_f_s_k4_client.html',1,'']]] ]; diff --git a/search/classes_3.js b/search/classes_3.js index 258c2a46..93ed9be2 100644 --- a/search/classes_3.js +++ b/search/classes_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['hellclient_345',['HellClient',['../class_hell_client.html',1,'']]] + ['hellclient_349',['HellClient',['../class_hell_client.html',1,'']]] ]; diff --git a/search/classes_4.js b/search/classes_4.js index 2128842c..43bcb655 100644 --- a/search/classes_4.js +++ b/search/classes_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['ita2string_346',['ITA2String',['../class_i_t_a2_string.html',1,'']]] + ['ita2string_350',['ITA2String',['../class_i_t_a2_string.html',1,'']]] ]; diff --git a/search/classes_5.js b/search/classes_5.js index c222e6ba..69c13ee3 100644 --- a/search/classes_5.js +++ b/search/classes_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['llcc68_347',['LLCC68',['../class_l_l_c_c68.html',1,'']]] + ['llcc68_351',['LLCC68',['../class_l_l_c_c68.html',1,'']]] ]; diff --git a/search/classes_6.js b/search/classes_6.js index d95f5501..7f1edbcf 100644 --- a/search/classes_6.js +++ b/search/classes_6.js @@ -1,5 +1,5 @@ var searchData= [ - ['module_348',['Module',['../class_module.html',1,'']]], - ['morseclient_349',['MorseClient',['../class_morse_client.html',1,'']]] + ['module_352',['Module',['../class_module.html',1,'']]], + ['morseclient_353',['MorseClient',['../class_morse_client.html',1,'']]] ]; diff --git a/search/classes_7.js b/search/classes_7.js index dec98724..34a519bf 100644 --- a/search/classes_7.js +++ b/search/classes_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['nrf24_350',['nRF24',['../classn_r_f24.html',1,'']]] + ['nrf24_354',['nRF24',['../classn_r_f24.html',1,'']]] ]; diff --git a/search/classes_8.js b/search/classes_8.js index 6750713e..ffe835b7 100644 --- a/search/classes_8.js +++ b/search/classes_8.js @@ -1,4 +1,5 @@ var searchData= [ - ['physicallayer_351',['PhysicalLayer',['../class_physical_layer.html',1,'']]] + ['pagerclient_355',['PagerClient',['../class_pager_client.html',1,'']]], + ['physicallayer_356',['PhysicalLayer',['../class_physical_layer.html',1,'']]] ]; diff --git a/search/classes_9.js b/search/classes_9.js index d66aabfb..76b71efd 100644 --- a/search/classes_9.js +++ b/search/classes_9.js @@ -1,11 +1,11 @@ var searchData= [ - ['rf69_352',['RF69',['../class_r_f69.html',1,'']]], - ['rfm22_353',['RFM22',['../class_r_f_m22.html',1,'']]], - ['rfm23_354',['RFM23',['../class_r_f_m23.html',1,'']]], - ['rfm95_355',['RFM95',['../class_r_f_m95.html',1,'']]], - ['rfm96_356',['RFM96',['../class_r_f_m96.html',1,'']]], - ['rfm97_357',['RFM97',['../class_r_f_m97.html',1,'']]], - ['rfm98_358',['RFM98',['../class_r_f_m98.html',1,'']]], - ['rttyclient_359',['RTTYClient',['../class_r_t_t_y_client.html',1,'']]] + ['rf69_357',['RF69',['../class_r_f69.html',1,'']]], + ['rfm22_358',['RFM22',['../class_r_f_m22.html',1,'']]], + ['rfm23_359',['RFM23',['../class_r_f_m23.html',1,'']]], + ['rfm95_360',['RFM95',['../class_r_f_m95.html',1,'']]], + ['rfm96_361',['RFM96',['../class_r_f_m96.html',1,'']]], + ['rfm97_362',['RFM97',['../class_r_f_m97.html',1,'']]], + ['rfm98_363',['RFM98',['../class_r_f_m98.html',1,'']]], + ['rttyclient_364',['RTTYClient',['../class_r_t_t_y_client.html',1,'']]] ]; diff --git a/search/classes_a.js b/search/classes_a.js index 5455fe5f..5a69d45c 100644 --- a/search/classes_a.js +++ b/search/classes_a.js @@ -1,25 +1,25 @@ var searchData= [ - ['si4430_360',['Si4430',['../class_si4430.html',1,'']]], - ['si4431_361',['Si4431',['../class_si4431.html',1,'']]], - ['si4432_362',['Si4432',['../class_si4432.html',1,'']]], - ['si443x_363',['Si443x',['../class_si443x.html',1,'']]], - ['sstvclient_364',['SSTVClient',['../class_s_s_t_v_client.html',1,'']]], - ['sstvmode_5ft_365',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]], - ['sx1231_366',['SX1231',['../class_s_x1231.html',1,'']]], - ['sx1261_367',['SX1261',['../class_s_x1261.html',1,'']]], - ['sx1262_368',['SX1262',['../class_s_x1262.html',1,'']]], - ['sx1268_369',['SX1268',['../class_s_x1268.html',1,'']]], - ['sx126x_370',['SX126x',['../class_s_x126x.html',1,'']]], - ['sx1272_371',['SX1272',['../class_s_x1272.html',1,'']]], - ['sx1273_372',['SX1273',['../class_s_x1273.html',1,'']]], - ['sx1276_373',['SX1276',['../class_s_x1276.html',1,'']]], - ['sx1277_374',['SX1277',['../class_s_x1277.html',1,'']]], - ['sx1278_375',['SX1278',['../class_s_x1278.html',1,'']]], - ['sx1279_376',['SX1279',['../class_s_x1279.html',1,'']]], - ['sx127x_377',['SX127x',['../class_s_x127x.html',1,'']]], - ['sx1280_378',['SX1280',['../class_s_x1280.html',1,'']]], - ['sx1281_379',['SX1281',['../class_s_x1281.html',1,'']]], - ['sx1282_380',['SX1282',['../class_s_x1282.html',1,'']]], - ['sx128x_381',['SX128x',['../class_s_x128x.html',1,'']]] + ['si4430_365',['Si4430',['../class_si4430.html',1,'']]], + ['si4431_366',['Si4431',['../class_si4431.html',1,'']]], + ['si4432_367',['Si4432',['../class_si4432.html',1,'']]], + ['si443x_368',['Si443x',['../class_si443x.html',1,'']]], + ['sstvclient_369',['SSTVClient',['../class_s_s_t_v_client.html',1,'']]], + ['sstvmode_5ft_370',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]], + ['sx1231_371',['SX1231',['../class_s_x1231.html',1,'']]], + ['sx1261_372',['SX1261',['../class_s_x1261.html',1,'']]], + ['sx1262_373',['SX1262',['../class_s_x1262.html',1,'']]], + ['sx1268_374',['SX1268',['../class_s_x1268.html',1,'']]], + ['sx126x_375',['SX126x',['../class_s_x126x.html',1,'']]], + ['sx1272_376',['SX1272',['../class_s_x1272.html',1,'']]], + ['sx1273_377',['SX1273',['../class_s_x1273.html',1,'']]], + ['sx1276_378',['SX1276',['../class_s_x1276.html',1,'']]], + ['sx1277_379',['SX1277',['../class_s_x1277.html',1,'']]], + ['sx1278_380',['SX1278',['../class_s_x1278.html',1,'']]], + ['sx1279_381',['SX1279',['../class_s_x1279.html',1,'']]], + ['sx127x_382',['SX127x',['../class_s_x127x.html',1,'']]], + ['sx1280_383',['SX1280',['../class_s_x1280.html',1,'']]], + ['sx1281_384',['SX1281',['../class_s_x1281.html',1,'']]], + ['sx1282_385',['SX1282',['../class_s_x1282.html',1,'']]], + ['sx128x_386',['SX128x',['../class_s_x128x.html',1,'']]] ]; diff --git a/search/classes_b.js b/search/classes_b.js index 95e8e092..61ba8350 100644 --- a/search/classes_b.js +++ b/search/classes_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['tone_5ft_382',['tone_t',['../structtone__t.html',1,'']]] + ['tone_5ft_387',['tone_t',['../structtone__t.html',1,'']]] ]; diff --git a/search/functions_0.js b/search/functions_0.js index 1c3938e5..d4285cbe 100644 --- a/search/functions_0.js +++ b/search/functions_0.js @@ -1,10 +1,10 @@ var searchData= [ - ['afskclient_383',['AFSKClient',['../class_a_f_s_k_client.html#acfe53917bcba7f79611e01865c42fefd',1,'AFSKClient']]], - ['aprsclient_384',['APRSClient',['../class_a_p_r_s_client.html#a08e166ed706d79c66c1d5b48f195724c',1,'APRSClient']]], - ['attachinterrupt_385',['attachInterrupt',['../class_module.html#a91aaa34aecdfeaf24948551b037033be',1,'Module']]], - ['autoldro_386',['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_387',['available',['../class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26',1,'PhysicalLayer']]], - ['ax25client_388',['AX25Client',['../class_a_x25_client.html#ab074563d4d22a42d5ea9ad1693d6f373',1,'AX25Client::AX25Client(PhysicalLayer *phy)'],['../class_a_x25_client.html#a6e81e629817cdf1b377e4b4f7e4d6520',1,'AX25Client::AX25Client(AFSKClient *audio)']]], - ['ax25frame_389',['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_388',['AFSKClient',['../class_a_f_s_k_client.html#acfe53917bcba7f79611e01865c42fefd',1,'AFSKClient']]], + ['aprsclient_389',['APRSClient',['../class_a_p_r_s_client.html#a08e166ed706d79c66c1d5b48f195724c',1,'APRSClient']]], + ['attachinterrupt_390',['attachInterrupt',['../class_module.html#a91aaa34aecdfeaf24948551b037033be',1,'Module']]], + ['autoldro_391',['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_392',['available',['../class_pager_client.html#aec073fa9e5adcff9730482d9583715e9',1,'PagerClient::available()'],['../class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26',1,'PhysicalLayer::available()']]], + ['ax25client_393',['AX25Client',['../class_a_x25_client.html#ab074563d4d22a42d5ea9ad1693d6f373',1,'AX25Client::AX25Client(PhysicalLayer *phy)'],['../class_a_x25_client.html#a6e81e629817cdf1b377e4b4f7e4d6520',1,'AX25Client::AX25Client(AFSKClient *audio)']]], + ['ax25frame_394',['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 e10c105e..e361003d 100644 --- a/search/functions_1.js +++ b/search/functions_1.js @@ -1,10 +1,10 @@ var searchData= [ - ['begin_390',['begin',['../class_module.html#af6bfd022681d360082e3dd31a984e1f7',1,'Module::begin()'],['../class_c_c1101.html#a3b40fd5505fec6bad5986f67a5062593',1,'CC1101::begin()'],['../class_l_l_c_c68.html#a039fc3259e4f208d96eaa310720b161d',1,'LLCC68::begin()'],['../classn_r_f24.html#a60eb59262c5004b587b1d8177706ff28',1,'nRF24::begin()'],['../class_r_f69.html#a35944b24d27a1ac98c1034cfcdb816cd',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_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_s_x126x.html#a936a40038e05740a528f2b53f8e17010',1,'SX126x::begin()'],['../class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9',1,'SX1272::begin()'],['../class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()'],['../class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3',1,'SX1277::begin()'],['../class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf',1,'SX1278::begin()'],['../class_s_x1279.html#a324a37dee0522f43692cd414141becc2',1,'SX1279::begin()'],['../class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430',1,'SX127x::begin()'],['../class_s_x128x.html#acbd0d1a48051ccd35f4a89c9b8d05bdf',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a4befd17d1f753049f7ec08c48d8b8496',1,'APRSClient::begin()'],['../class_a_x25_client.html#a38be2b9385e4804339b3e4b57b90c2ca',1,'AX25Client::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_r_t_t_y_client.html#ac4ae2458f8005c87161c74cf827d35b9',1,'RTTYClient::begin()'],['../class_s_s_t_v_client.html#a3d85be3941250366eec2cd9a147a4f5c',1,'SSTVClient::begin(float base, const SSTVMode_t &mode, float correction=1.0)'],['../class_s_s_t_v_client.html#a8606cf73f86f6f1b29cea9ae9b46c81e',1,'SSTVClient::begin(const SSTVMode_t &mode, float correction=1.0)']]], - ['beginble_391',['beginBLE',['../class_s_x128x.html#a316340d7ba2a6e7cb5742e3ff21e728c',1,'SX128x']]], - ['beginflrc_392',['beginFLRC',['../class_s_x128x.html#ac7df67afbb0b1a88daf5ec50f3d65660',1,'SX128x']]], - ['beginfsk_393',['beginFSK',['../class_r_f_m95.html#a7e0f8fa59ddd48f7b026b0f996202b30',1,'RFM95::beginFSK()'],['../class_r_f_m96.html#a82ef1b7354238637eee6f4d65b9be6e5',1,'RFM96::beginFSK()'],['../class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1',1,'SX1262::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840',1,'SX1276::beginFSK()'],['../class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44',1,'SX1277::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b',1,'SX1279::beginFSK()'],['../class_s_x127x.html#add78edb65673d9e88931a55b0672a9f3',1,'SX127x::beginFSK()']]], - ['begingfsk_394',['beginGFSK',['../class_s_x128x.html#a8dd8ce38bc9d0d8dbd711b373e864e93',1,'SX128x']]], - ['begintransaction_395',['beginTransaction',['../class_module.html#a3d0caa9f5e38cfa2c609570a89a4a703',1,'Module']]], - ['bytearr_396',['byteArr',['../class_i_t_a2_string.html#a3f42f7ad98473dbe36515e676622ed3d',1,'ITA2String']]] + ['begin_395',['begin',['../class_module.html#af6bfd022681d360082e3dd31a984e1f7',1,'Module::begin()'],['../class_c_c1101.html#a3b40fd5505fec6bad5986f67a5062593',1,'CC1101::begin()'],['../class_l_l_c_c68.html#a039fc3259e4f208d96eaa310720b161d',1,'LLCC68::begin()'],['../classn_r_f24.html#a60eb59262c5004b587b1d8177706ff28',1,'nRF24::begin()'],['../class_r_f69.html#a35944b24d27a1ac98c1034cfcdb816cd',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_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_s_x126x.html#a936a40038e05740a528f2b53f8e17010',1,'SX126x::begin()'],['../class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9',1,'SX1272::begin()'],['../class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()'],['../class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3',1,'SX1277::begin()'],['../class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf',1,'SX1278::begin()'],['../class_s_x1279.html#a324a37dee0522f43692cd414141becc2',1,'SX1279::begin()'],['../class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430',1,'SX127x::begin()'],['../class_s_x128x.html#acbd0d1a48051ccd35f4a89c9b8d05bdf',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a4befd17d1f753049f7ec08c48d8b8496',1,'APRSClient::begin()'],['../class_a_x25_client.html#a38be2b9385e4804339b3e4b57b90c2ca',1,'AX25Client::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#afe4c4806471001c01b35bce0f1fe4e58',1,'PagerClient::begin()'],['../class_r_t_t_y_client.html#ac4ae2458f8005c87161c74cf827d35b9',1,'RTTYClient::begin()'],['../class_s_s_t_v_client.html#a3d85be3941250366eec2cd9a147a4f5c',1,'SSTVClient::begin(float base, const SSTVMode_t &mode, float correction=1.0)'],['../class_s_s_t_v_client.html#a8606cf73f86f6f1b29cea9ae9b46c81e',1,'SSTVClient::begin(const SSTVMode_t &mode, float correction=1.0)']]], + ['beginble_396',['beginBLE',['../class_s_x128x.html#a316340d7ba2a6e7cb5742e3ff21e728c',1,'SX128x']]], + ['beginflrc_397',['beginFLRC',['../class_s_x128x.html#ac7df67afbb0b1a88daf5ec50f3d65660',1,'SX128x']]], + ['beginfsk_398',['beginFSK',['../class_r_f_m95.html#a7e0f8fa59ddd48f7b026b0f996202b30',1,'RFM95::beginFSK()'],['../class_r_f_m96.html#a82ef1b7354238637eee6f4d65b9be6e5',1,'RFM96::beginFSK()'],['../class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1',1,'SX1262::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840',1,'SX1276::beginFSK()'],['../class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44',1,'SX1277::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b',1,'SX1279::beginFSK()'],['../class_s_x127x.html#add78edb65673d9e88931a55b0672a9f3',1,'SX127x::beginFSK()']]], + ['begingfsk_399',['beginGFSK',['../class_s_x128x.html#a8dd8ce38bc9d0d8dbd711b373e864e93',1,'SX128x']]], + ['begintransaction_400',['beginTransaction',['../class_module.html#a3d0caa9f5e38cfa2c609570a89a4a703',1,'Module']]], + ['bytearr_401',['byteArr',['../class_i_t_a2_string.html#a3f42f7ad98473dbe36515e676622ed3d',1,'ITA2String']]] ]; diff --git a/search/functions_10.js b/search/functions_10.js index 8b939832..1ce5aa7f 100644 --- a/search/functions_10.js +++ b/search/functions_10.js @@ -1,9 +1,9 @@ var searchData= [ - ['term_609',['term',['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module']]], - ['tone_610',['tone',['../class_module.html#a33e33df69d58660b8cd0e2dafe5e9189',1,'Module::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]], - ['transfer_611',['transfer',['../class_module.html#a45e7823c44ac0aa8a10bd4f365890c98',1,'Module']]], - ['transmit_612',['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_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f',1,'PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b',1,'PhysicalLayer::transmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'PhysicalLayer::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]], - ['transmitdirect_613',['transmitDirect',['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect()'],['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_physical_layer.html#a4b04eb6155b06d8ef400131c647d54e7',1,'PhysicalLayer::transmitDirect()']]], - ['transmitdirectasync_614',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]] + ['term_616',['term',['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module']]], + ['tone_617',['tone',['../class_module.html#a33e33df69d58660b8cd0e2dafe5e9189',1,'Module::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]], + ['transfer_618',['transfer',['../class_module.html#a45e7823c44ac0aa8a10bd4f365890c98',1,'Module']]], + ['transmit_619',['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#a897f990002a4a2196fcdb31c547e0648',1,'PagerClient::transmit(String &str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_pager_client.html#aab6a8977f89d43620b98bcedf5a47dbd',1,'PagerClient::transmit(const char *str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_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#ab139a34e03a6fd5a781cd54da21d308f',1,'PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b',1,'PhysicalLayer::transmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'PhysicalLayer::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]], + ['transmitdirect_620',['transmitDirect',['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect()'],['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_physical_layer.html#a4b04eb6155b06d8ef400131c647d54e7',1,'PhysicalLayer::transmitDirect()']]], + ['transmitdirectasync_621',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]] ]; diff --git a/search/functions_11.js b/search/functions_11.js index d1abb366..1a355e04 100644 --- a/search/functions_11.js +++ b/search/functions_11.js @@ -1,4 +1,4 @@ var searchData= [ - ['variablepacketlengthmode_615',['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_622',['variablePacketLengthMode',['../class_c_c1101.html#a50b9e73d2d82a4cd03841f465825b73f',1,'CC1101::variablePacketLengthMode()'],['../class_r_f69.html#af434c67aabe02258ee6696a59973617b',1,'RF69::variablePacketLengthMode()'],['../class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a',1,'Si443x::variablePacketLengthMode()'],['../class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c',1,'SX127x::variablePacketLengthMode()']]] ]; diff --git a/search/functions_12.js b/search/functions_12.js index 3ac5169a..61a17926 100644 --- a/search/functions_12.js +++ b/search/functions_12.js @@ -1,4 +1,4 @@ var searchData= [ - ['yield_616',['yield',['../class_module.html#a227d2d38e4747d0f49bb4df1c80b45d7',1,'Module']]] + ['yield_623',['yield',['../class_module.html#a227d2d38e4747d0f49bb4df1c80b45d7',1,'Module']]] ]; diff --git a/search/functions_13.js b/search/functions_13.js index 81abdfbc..c1d7ebfa 100644 --- a/search/functions_13.js +++ b/search/functions_13.js @@ -1,5 +1,5 @@ var searchData= [ - ['_7eax25frame_617',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]], - ['_7eita2string_618',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]] + ['_7eax25frame_624',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]], + ['_7eita2string_625',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]] ]; diff --git a/search/functions_2.js b/search/functions_2.js index ac441c91..6470334e 100644 --- a/search/functions_2.js +++ b/search/functions_2.js @@ -1,12 +1,12 @@ var searchData= [ - ['cc1101_397',['CC1101',['../class_c_c1101.html#a6807e4254c4b55fa8d393b2bf8f2db3e',1,'CC1101']]], - ['cleardio0action_398',['clearDio0Action',['../class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942',1,'RF69::clearDio0Action()'],['../class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823',1,'SX127x::clearDio0Action()']]], - ['cleardio1action_399',['clearDio1Action',['../class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51',1,'RF69::clearDio1Action()'],['../class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd',1,'SX126x::clearDio1Action()'],['../class_s_x127x.html#a9b6532a25e1730973ac08146008adca5',1,'SX127x::clearDio1Action()'],['../class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f',1,'SX128x::clearDio1Action()']]], - ['clearfhssint_400',['clearFHSSInt',['../class_s_x127x.html#a41089d9e5b45217d3e31ac22b5326b66',1,'SX127x']]], - ['clearfifoemptyaction_401',['clearFifoEmptyAction',['../class_r_f69.html#a0d7b67499462777f7909860405ca6b62',1,'RF69::clearFifoEmptyAction()'],['../class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1',1,'SX127x::clearFifoEmptyAction()']]], - ['clearfifofullaction_402',['clearFifoFullAction',['../class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3',1,'RF69::clearFifoFullAction()'],['../class_s_x127x.html#a0f041e91ab2fbb6f05eef56b5addac71',1,'SX127x::clearFifoFullAction()']]], - ['cleargdo0action_403',['clearGdo0Action',['../class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8',1,'CC1101']]], - ['cleargdo2action_404',['clearGdo2Action',['../class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4',1,'CC1101']]], - ['clearirqaction_405',['clearIrqAction',['../class_si443x.html#a8d019f58551346c3f3bd8b72d2486109',1,'Si443x']]] + ['cc1101_402',['CC1101',['../class_c_c1101.html#a6807e4254c4b55fa8d393b2bf8f2db3e',1,'CC1101']]], + ['cleardio0action_403',['clearDio0Action',['../class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942',1,'RF69::clearDio0Action()'],['../class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823',1,'SX127x::clearDio0Action()']]], + ['cleardio1action_404',['clearDio1Action',['../class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51',1,'RF69::clearDio1Action()'],['../class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd',1,'SX126x::clearDio1Action()'],['../class_s_x127x.html#a9b6532a25e1730973ac08146008adca5',1,'SX127x::clearDio1Action()'],['../class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f',1,'SX128x::clearDio1Action()']]], + ['clearfhssint_405',['clearFHSSInt',['../class_s_x127x.html#a41089d9e5b45217d3e31ac22b5326b66',1,'SX127x']]], + ['clearfifoemptyaction_406',['clearFifoEmptyAction',['../class_r_f69.html#a0d7b67499462777f7909860405ca6b62',1,'RF69::clearFifoEmptyAction()'],['../class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1',1,'SX127x::clearFifoEmptyAction()']]], + ['clearfifofullaction_407',['clearFifoFullAction',['../class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3',1,'RF69::clearFifoFullAction()'],['../class_s_x127x.html#a0f041e91ab2fbb6f05eef56b5addac71',1,'SX127x::clearFifoFullAction()']]], + ['cleargdo0action_408',['clearGdo0Action',['../class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8',1,'CC1101']]], + ['cleargdo2action_409',['clearGdo2Action',['../class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4',1,'CC1101']]], + ['clearirqaction_410',['clearIrqAction',['../class_si443x.html#a8d019f58551346c3f3bd8b72d2486109',1,'Si443x']]] ]; diff --git a/search/functions_3.js b/search/functions_3.js index 9761f63e..cf6ecb54 100644 --- a/search/functions_3.js +++ b/search/functions_3.js @@ -1,15 +1,15 @@ var searchData= [ - ['decode_406',['decode',['../class_morse_client.html#abd1515c8e6c3ddade280be53f612ece7',1,'MorseClient']]], - ['delay_407',['delay',['../class_module.html#af0f870b09b9dd9636f1587d708f07d38',1,'Module']]], - ['delaymicroseconds_408',['delayMicroseconds',['../class_module.html#a14d7cd8220bfa4440bda055ce5be748c',1,'Module']]], - ['detachinterrupt_409',['detachInterrupt',['../class_module.html#a656738f2fe41fb236d27aed02efa8ad4',1,'Module']]], - ['digitalread_410',['digitalRead',['../class_module.html#a7495c81640aac8f4686221dad34a274f',1,'Module']]], - ['digitalwrite_411',['digitalWrite',['../class_module.html#a46ad10b113df7c7e0a932be19eff63cd',1,'Module']]], - ['disableaddressfiltering_412',['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_413',['disableAES',['../class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa',1,'RF69']]], - ['disablebitsync_414',['disableBitSync',['../class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd',1,'SX127x']]], - ['disablecontinuousmodebitsync_415',['disableContinuousModeBitSync',['../class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad',1,'RF69']]], - ['disablepipe_416',['disablePipe',['../classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a',1,'nRF24']]], - ['disablesyncwordfiltering_417',['disableSyncWordFiltering',['../class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b',1,'CC1101::disableSyncWordFiltering()'],['../class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80',1,'RF69::disableSyncWordFiltering()']]] + ['decode_411',['decode',['../class_morse_client.html#abd1515c8e6c3ddade280be53f612ece7',1,'MorseClient']]], + ['delay_412',['delay',['../class_module.html#af0f870b09b9dd9636f1587d708f07d38',1,'Module']]], + ['delaymicroseconds_413',['delayMicroseconds',['../class_module.html#a14d7cd8220bfa4440bda055ce5be748c',1,'Module']]], + ['detachinterrupt_414',['detachInterrupt',['../class_module.html#a656738f2fe41fb236d27aed02efa8ad4',1,'Module']]], + ['digitalread_415',['digitalRead',['../class_module.html#a7495c81640aac8f4686221dad34a274f',1,'Module']]], + ['digitalwrite_416',['digitalWrite',['../class_module.html#a46ad10b113df7c7e0a932be19eff63cd',1,'Module']]], + ['disableaddressfiltering_417',['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_418',['disableAES',['../class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa',1,'RF69']]], + ['disablebitsync_419',['disableBitSync',['../class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd',1,'SX127x']]], + ['disablecontinuousmodebitsync_420',['disableContinuousModeBitSync',['../class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad',1,'RF69']]], + ['disablepipe_421',['disablePipe',['../classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a',1,'nRF24']]], + ['disablesyncwordfiltering_422',['disableSyncWordFiltering',['../class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b',1,'CC1101::disableSyncWordFiltering()'],['../class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80',1,'RF69::disableSyncWordFiltering()']]] ]; diff --git a/search/functions_4.js b/search/functions_4.js index 60c5cfd7..95d7943c 100644 --- a/search/functions_4.js +++ b/search/functions_4.js @@ -1,10 +1,10 @@ var searchData= [ - ['enableaes_418',['enableAES',['../class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69',1,'RF69']]], - ['enablebitsync_419',['enableBitSync',['../class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa',1,'SX127x']]], - ['enablecontinuousmodebitsync_420',['enableContinuousModeBitSync',['../class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0',1,'RF69']]], - ['enablesyncwordfiltering_421',['enableSyncWordFiltering',['../class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4',1,'CC1101::enableSyncWordFiltering()'],['../class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417',1,'RF69::enableSyncWordFiltering()']]], - ['end_422',['end',['../class_module.html#aa7fc017ee35f40c90e5badc5bc568c3d',1,'Module']]], - ['endtransaction_423',['endTransaction',['../class_module.html#a015226566efc5131c8a39a184b6c4e6b',1,'Module']]], - ['explicitheader_424',['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_423',['enableAES',['../class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69',1,'RF69']]], + ['enablebitsync_424',['enableBitSync',['../class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa',1,'SX127x']]], + ['enablecontinuousmodebitsync_425',['enableContinuousModeBitSync',['../class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0',1,'RF69']]], + ['enablesyncwordfiltering_426',['enableSyncWordFiltering',['../class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4',1,'CC1101::enableSyncWordFiltering()'],['../class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417',1,'RF69::enableSyncWordFiltering()']]], + ['end_427',['end',['../class_module.html#aa7fc017ee35f40c90e5badc5bc568c3d',1,'Module']]], + ['endtransaction_428',['endTransaction',['../class_module.html#a015226566efc5131c8a39a184b6c4e6b',1,'Module']]], + ['explicitheader_429',['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 87176e8b..1b54462a 100644 --- a/search/functions_5.js +++ b/search/functions_5.js @@ -1,11 +1,11 @@ var searchData= [ - ['fifoadd_425',['fifoAdd',['../class_r_f69.html#a13ed34d82f3e08131b496196ba05a66d',1,'RF69::fifoAdd()'],['../class_s_x127x.html#a2f993bc663b8937f3683047f5e3b2509',1,'SX127x::fifoAdd()']]], - ['fifoget_426',['fifoGet',['../class_r_f69.html#aa6886410230c654400c76ec7710d623c',1,'RF69::fifoGet()'],['../class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a',1,'SX127x::fifoGet()']]], - ['finishtransmit_427',['finishTransmit',['../class_c_c1101.html#af70ea860154cd6d2b2e2a6962e161c8f',1,'CC1101::finishTransmit()'],['../classn_r_f24.html#af0c21ff66c011dfdc1ad12bc7dd11c2f',1,'nRF24::finishTransmit()'],['../class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b',1,'RF69::finishTransmit()'],['../class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3',1,'Si443x::finishTransmit()'],['../class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e',1,'SX126x::finishTransmit()'],['../class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f',1,'SX127x::finishTransmit()'],['../class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4',1,'SX128x::finishTransmit()'],['../class_physical_layer.html#aeba51a21ad3c6d56b61a55061de7fc92',1,'PhysicalLayer::finishTransmit()']]], - ['fixedpacketlengthmode_428',['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()']]], - ['flipbits_429',['flipBits',['../class_module.html#a7f5fd7409f21d33a16ea1de589962ae6',1,'Module']]], - ['flipbits16_430',['flipBits16',['../class_module.html#a160006371be8e121a8a54cc4462b3a72',1,'Module']]], - ['forceldro_431',['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_432',['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_430',['fifoAdd',['../class_r_f69.html#a13ed34d82f3e08131b496196ba05a66d',1,'RF69::fifoAdd()'],['../class_s_x127x.html#a2f993bc663b8937f3683047f5e3b2509',1,'SX127x::fifoAdd()']]], + ['fifoget_431',['fifoGet',['../class_r_f69.html#aa6886410230c654400c76ec7710d623c',1,'RF69::fifoGet()'],['../class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a',1,'SX127x::fifoGet()']]], + ['finishtransmit_432',['finishTransmit',['../class_c_c1101.html#af70ea860154cd6d2b2e2a6962e161c8f',1,'CC1101::finishTransmit()'],['../classn_r_f24.html#af0c21ff66c011dfdc1ad12bc7dd11c2f',1,'nRF24::finishTransmit()'],['../class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b',1,'RF69::finishTransmit()'],['../class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3',1,'Si443x::finishTransmit()'],['../class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e',1,'SX126x::finishTransmit()'],['../class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f',1,'SX127x::finishTransmit()'],['../class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4',1,'SX128x::finishTransmit()'],['../class_physical_layer.html#aeba51a21ad3c6d56b61a55061de7fc92',1,'PhysicalLayer::finishTransmit()']]], + ['fixedpacketlengthmode_433',['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()']]], + ['flipbits_434',['flipBits',['../class_module.html#a7f5fd7409f21d33a16ea1de589962ae6',1,'Module']]], + ['flipbits16_435',['flipBits16',['../class_module.html#a160006371be8e121a8a54cc4462b3a72',1,'Module']]], + ['forceldro_436',['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_437',['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 c410460b..cb611fb6 100644 --- a/search/functions_6.js +++ b/search/functions_6.js @@ -1,31 +1,31 @@ var searchData= [ - ['getafcerror_433',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]], - ['getchannelscanresult_434',['getChannelScanResult',['../class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f',1,'SX126x']]], - ['getchipversion_435',['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_436',['getCs',['../class_module.html#ae53e355a77f2b7ce6473c62ac5f37334',1,'Module']]], - ['getcurrentlimit_437',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]], - ['getdatarate_438',['getDataRate',['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate()']]], - ['getfhsschannel_439',['getFHSSChannel',['../class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c',1,'SX127x']]], - ['getfhsshoppingperiod_440',['getFHSSHoppingPeriod',['../class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617',1,'SX127x']]], - ['getfreqstep_441',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]], - ['getfrequencyerror_442',['getFrequencyError',['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x::getFrequencyError()'],['../class_s_x128x.html#a2b424000856a9dc212f571d0e8890635',1,'SX128x::getFrequencyError()']]], - ['getgpio_443',['getGpio',['../class_module.html#aeb4c7447372d56a7cae6db91994aacfc',1,'Module']]], - ['getirq_444',['getIrq',['../class_module.html#a8c7f17a63b67117d953f1ba990b17f80',1,'Module']]], - ['getirqflags_445',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]], - ['getirqstatus_446',['getIrqStatus',['../class_s_x126x.html#a9a9b090eddcb811ee19b595debfab1df',1,'SX126x']]], - ['getlqi_447',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]], - ['getmodemstatus_448',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]], - ['getpacketlength_449',['getPacketLength',['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength()'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_physical_layer.html#a0bd6046e068ef63e3f2b6bead48e02a7',1,'PhysicalLayer::getPacketLength()']]], - ['getpictureheight_450',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], - ['getpromiscuousmode_451',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], - ['getrangingresult_452',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], - ['getrssi_453',['getRSSI',['../class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc',1,'CC1101::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925',1,'SX126x::getRSSI()'],['../class_s_x1272.html#a0d8e68cf913422535dc43cbdf73a3f10',1,'SX1272::getRSSI()'],['../class_s_x1278.html#ae52d84fa301309a4a4294312571fc3b8',1,'SX1278::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()']]], - ['getrssiinst_454',['getRSSIInst',['../class_s_x126x.html#ae36664f9c605a8fe74b2f357e0ec3323',1,'SX126x']]], - ['getrst_455',['getRst',['../class_module.html#ae352c7a7b997fc1b17189c1312a8347f',1,'Module']]], - ['getsnr_456',['getSNR',['../class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca',1,'SX126x::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()']]], - ['getstatus_457',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]], - ['gettemperature_458',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]], - ['gettempraw_459',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]], - ['gettimeonair_460',['getTimeOnAir',['../class_s_x126x.html#a7e342ddbef84cf845bef8f4448b8da10',1,'SX126x::getTimeOnAir()'],['../class_s_x127x.html#ad532e1a62c6ee2c58f9517e6e62728ac',1,'SX127x::getTimeOnAir()'],['../class_s_x128x.html#a2361a94f2e12ebc93e750a027d633232',1,'SX128x::getTimeOnAir()']]] + ['getafcerror_438',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]], + ['getchannelscanresult_439',['getChannelScanResult',['../class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f',1,'SX126x']]], + ['getchipversion_440',['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_441',['getCs',['../class_module.html#ae53e355a77f2b7ce6473c62ac5f37334',1,'Module']]], + ['getcurrentlimit_442',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]], + ['getdatarate_443',['getDataRate',['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate()']]], + ['getfhsschannel_444',['getFHSSChannel',['../class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c',1,'SX127x']]], + ['getfhsshoppingperiod_445',['getFHSSHoppingPeriod',['../class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617',1,'SX127x']]], + ['getfreqstep_446',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]], + ['getfrequencyerror_447',['getFrequencyError',['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x::getFrequencyError()'],['../class_s_x128x.html#a2b424000856a9dc212f571d0e8890635',1,'SX128x::getFrequencyError()']]], + ['getgpio_448',['getGpio',['../class_module.html#aeb4c7447372d56a7cae6db91994aacfc',1,'Module']]], + ['getirq_449',['getIrq',['../class_module.html#a8c7f17a63b67117d953f1ba990b17f80',1,'Module']]], + ['getirqflags_450',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]], + ['getirqstatus_451',['getIrqStatus',['../class_s_x126x.html#a9a9b090eddcb811ee19b595debfab1df',1,'SX126x']]], + ['getlqi_452',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]], + ['getmodemstatus_453',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]], + ['getpacketlength_454',['getPacketLength',['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength()'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_physical_layer.html#a0bd6046e068ef63e3f2b6bead48e02a7',1,'PhysicalLayer::getPacketLength()']]], + ['getpictureheight_455',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], + ['getpromiscuousmode_456',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], + ['getrangingresult_457',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], + ['getrssi_458',['getRSSI',['../class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc',1,'CC1101::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925',1,'SX126x::getRSSI()'],['../class_s_x1272.html#a0d8e68cf913422535dc43cbdf73a3f10',1,'SX1272::getRSSI()'],['../class_s_x1278.html#ae52d84fa301309a4a4294312571fc3b8',1,'SX1278::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()']]], + ['getrssiinst_459',['getRSSIInst',['../class_s_x126x.html#ae36664f9c605a8fe74b2f357e0ec3323',1,'SX126x']]], + ['getrst_460',['getRst',['../class_module.html#ae352c7a7b997fc1b17189c1312a8347f',1,'Module']]], + ['getsnr_461',['getSNR',['../class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca',1,'SX126x::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()']]], + ['getstatus_462',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]], + ['gettemperature_463',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]], + ['gettempraw_464',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]], + ['gettimeonair_465',['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 2a4d79b0..136d3ceb 100644 --- a/search/functions_7.js +++ b/search/functions_7.js @@ -1,5 +1,5 @@ var searchData= [ - ['hellclient_461',['HellClient',['../class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0',1,'HellClient::HellClient(PhysicalLayer *phy)'],['../class_hell_client.html#afeb347f04148700427ad40614fd057c3',1,'HellClient::HellClient(AFSKClient *audio)']]], - ['hexdump_462',['hexdump',['../class_module.html#ac2dc188128f32f9360a178f31659291a',1,'Module']]] + ['hellclient_466',['HellClient',['../class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0',1,'HellClient::HellClient(PhysicalLayer *phy)'],['../class_hell_client.html#afeb347f04148700427ad40614fd057c3',1,'HellClient::HellClient(AFSKClient *audio)']]], + ['hexdump_467',['hexdump',['../class_module.html#ac2dc188128f32f9360a178f31659291a',1,'Module']]] ]; diff --git a/search/functions_8.js b/search/functions_8.js index 5b010cfc..c39127a1 100644 --- a/search/functions_8.js +++ b/search/functions_8.js @@ -1,9 +1,9 @@ var searchData= [ - ['idle_463',['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_464',['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_465',['init',['../class_module.html#ad1956ac81429ec1f61f83dbc081cf18c',1,'Module']]], - ['invertiq_466',['invertIQ',['../class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04',1,'SX127x']]], - ['iscarrierdetected_467',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]], - ['ita2string_468',['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_468',['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_469',['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_470',['init',['../class_module.html#ad1956ac81429ec1f61f83dbc081cf18c',1,'Module']]], + ['invertiq_471',['invertIQ',['../class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04',1,'SX127x']]], + ['iscarrierdetected_472',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]], + ['ita2string_473',['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 8d4c843d..ea7e3643 100644 --- a/search/functions_9.js +++ b/search/functions_9.js @@ -1,5 +1,5 @@ var searchData= [ - ['length_469',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]], - ['llcc68_470',['LLCC68',['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68']]] + ['length_474',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]], + ['llcc68_475',['LLCC68',['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68']]] ]; diff --git a/search/functions_a.js b/search/functions_a.js index 61642c49..c03f6b2b 100644 --- a/search/functions_a.js +++ b/search/functions_a.js @@ -1,7 +1,7 @@ var searchData= [ - ['micros_471',['micros',['../class_module.html#af3f51e517a825949891ad29e30fd3f59',1,'Module']]], - ['millis_472',['millis',['../class_module.html#a216dd0c6ce140857f2b003ab8d89fbac',1,'Module']]], - ['module_473',['Module',['../class_module.html#a1101d49f597f756141fc9de88a504f21',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE gpio=RADIOLIB_NC)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]], - ['morseclient_474',['MorseClient',['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)']]] + ['micros_476',['micros',['../class_module.html#af3f51e517a825949891ad29e30fd3f59',1,'Module']]], + ['millis_477',['millis',['../class_module.html#a216dd0c6ce140857f2b003ab8d89fbac',1,'Module']]], + ['module_478',['Module',['../class_module.html#a1101d49f597f756141fc9de88a504f21',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE gpio=RADIOLIB_NC)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]], + ['morseclient_479',['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 fee5e219..11cbbf24 100644 --- a/search/functions_b.js +++ b/search/functions_b.js @@ -1,5 +1,5 @@ var searchData= [ - ['notone_475',['noTone',['../class_module.html#af998b86ce1243f616f6fcb6df5336207',1,'Module::noTone()'],['../class_a_f_s_k_client.html#a664c1de9b5cd792826a5a77ac5457bae',1,'AFSKClient::noTone()']]], - ['nrf24_476',['nRF24',['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24']]] + ['notone_480',['noTone',['../class_module.html#af998b86ce1243f616f6fcb6df5336207',1,'Module::noTone()'],['../class_a_f_s_k_client.html#a664c1de9b5cd792826a5a77ac5457bae',1,'AFSKClient::noTone()']]], + ['nrf24_481',['nRF24',['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24']]] ]; diff --git a/search/functions_c.js b/search/functions_c.js index 58737d2a..2de2e537 100644 --- a/search/functions_c.js +++ b/search/functions_c.js @@ -1,4 +1,4 @@ var searchData= [ - ['operator_3d_477',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()']]] + ['operator_3d_482',['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 ce3994c6..b322c641 100644 --- a/search/functions_d.js +++ b/search/functions_d.js @@ -1,8 +1,9 @@ var searchData= [ - ['packetmode_478',['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()']]], - ['physicallayer_479',['PhysicalLayer',['../class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62',1,'PhysicalLayer']]], - ['pinmode_480',['pinMode',['../class_module.html#af7e4872dad3d19b6f75f532c88683168',1,'Module']]], - ['printglyph_481',['printGlyph',['../class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9',1,'HellClient']]], - ['pulsein_482',['pulseIn',['../class_module.html#a1310b9594f86fb1dc6646479922a1fdc',1,'Module']]] + ['packetmode_483',['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_484',['PagerClient',['../class_pager_client.html#a9f978120467b13104fb356e9b7d855ec',1,'PagerClient']]], + ['physicallayer_485',['PhysicalLayer',['../class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62',1,'PhysicalLayer']]], + ['pinmode_486',['pinMode',['../class_module.html#af7e4872dad3d19b6f75f532c88683168',1,'Module']]], + ['printglyph_487',['printGlyph',['../class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9',1,'HellClient']]], + ['pulsein_488',['pulseIn',['../class_module.html#a1310b9594f86fb1dc6646479922a1fdc',1,'Module']]] ]; diff --git a/search/functions_e.js b/search/functions_e.js index 83fb971a..dd424b36 100644 --- a/search/functions_e.js +++ b/search/functions_e.js @@ -1,19 +1,19 @@ var searchData= [ - ['random_483',['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_484',['randomByte',['../class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833',1,'CC1101::randomByte()'],['../classn_r_f24.html#a5cc7cd54db2a6af1c9183a2d0653fe2e',1,'nRF24::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',1,'SX126x::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_physical_layer.html#a34543b885aa57ade08a4c659991e523e',1,'PhysicalLayer::randomByte()']]], - ['range_485',['range',['../class_s_x1280.html#a812e289084b2f78977b254c28f0fff7c',1,'SX1280']]], - ['read_486',['read',['../class_morse_client.html#a709093c92d69f29f1520f0b290af374b',1,'MorseClient::read()'],['../class_physical_layer.html#a929662904e9af2611e098dc13b91c977',1,'PhysicalLayer::read()']]], - ['readbit_487',['readBit',['../class_c_c1101.html#a5cebec89fc0fa0f5ccbce28c6ce7d2dc',1,'CC1101::readBit()'],['../classn_r_f24.html#a2db0cd487b03f937afc0bc2e3eccb6f6',1,'nRF24::readBit()'],['../class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa',1,'RF69::readBit()'],['../class_si443x.html#a45d3ffcb312c34a2f6391be6d609d7b7',1,'Si443x::readBit()'],['../class_s_x126x.html#aff80db65e546934980feac7e6c81dd80',1,'SX126x::readBit()'],['../class_s_x127x.html#a071442611a32154e8b3db7981f242a53',1,'SX127x::readBit()'],['../class_s_x128x.html#a2dd0ecae9f54cf6943cf702ae15f5039',1,'SX128x::readBit()'],['../class_physical_layer.html#a9b720e7776ad7ea805932578907b0058',1,'PhysicalLayer::readBit()']]], - ['readdata_488',['readData',['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData()'],['../classn_r_f24.html#a410fb78acb4ed358818c132687b8857a',1,'nRF24::readData()'],['../class_r_f69.html#a3983b66c83818b4082805bcafc712f00',1,'RF69::readData()'],['../class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e',1,'Si443x::readData()'],['../class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2',1,'SX126x::readData()'],['../class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745',1,'SX127x::readData()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_physical_layer.html#ae8eed0e888a7c8742e89d2b850977de2',1,'PhysicalLayer::readData(String &str, size_t len=0)'],['../class_physical_layer.html#ae8b6c756eb4b92855433ca389d73c632',1,'PhysicalLayer::readData(uint8_t *data, size_t len)=0']]], - ['receive_489',['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_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'PhysicalLayer::receive(String &str, size_t len=0)'],['../class_physical_layer.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'PhysicalLayer::receive(uint8_t *data, size_t len)=0']]], - ['receivedirect_490',['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#a46b22145b33e97cf6065ed826799b6b4',1,'PhysicalLayer::receiveDirect()']]], - ['receivedirectasync_491',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]], - ['regdump_492',['regdump',['../class_module.html#a7216d32fc55130d111409c6f2050d9c0',1,'Module']]], - ['reset_493',['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_494',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69']]], - ['rfm95_495',['RFM95',['../class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326',1,'RFM95']]], - ['rfm96_496',['RFM96',['../class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a',1,'RFM96']]], - ['rfm97_497',['RFM97',['../class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be',1,'RFM97']]], - ['rttyclient_498',['RTTYClient',['../class_r_t_t_y_client.html#ae6bc08fa88457ee00a992448be1d63ea',1,'RTTYClient::RTTYClient(PhysicalLayer *phy)'],['../class_r_t_t_y_client.html#ab0e11944c2f1e2c60fc45bcd2db18570',1,'RTTYClient::RTTYClient(AFSKClient *audio)']]] + ['random_489',['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_490',['randomByte',['../class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833',1,'CC1101::randomByte()'],['../classn_r_f24.html#a5cc7cd54db2a6af1c9183a2d0653fe2e',1,'nRF24::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',1,'SX126x::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_physical_layer.html#a34543b885aa57ade08a4c659991e523e',1,'PhysicalLayer::randomByte()']]], + ['range_491',['range',['../class_s_x1280.html#a812e289084b2f78977b254c28f0fff7c',1,'SX1280']]], + ['read_492',['read',['../class_morse_client.html#a709093c92d69f29f1520f0b290af374b',1,'MorseClient::read()'],['../class_physical_layer.html#a929662904e9af2611e098dc13b91c977',1,'PhysicalLayer::read()']]], + ['readbit_493',['readBit',['../class_c_c1101.html#a5cebec89fc0fa0f5ccbce28c6ce7d2dc',1,'CC1101::readBit()'],['../classn_r_f24.html#a2db0cd487b03f937afc0bc2e3eccb6f6',1,'nRF24::readBit()'],['../class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa',1,'RF69::readBit()'],['../class_si443x.html#a45d3ffcb312c34a2f6391be6d609d7b7',1,'Si443x::readBit()'],['../class_s_x126x.html#aff80db65e546934980feac7e6c81dd80',1,'SX126x::readBit()'],['../class_s_x127x.html#a071442611a32154e8b3db7981f242a53',1,'SX127x::readBit()'],['../class_s_x128x.html#a2dd0ecae9f54cf6943cf702ae15f5039',1,'SX128x::readBit()'],['../class_physical_layer.html#a9b720e7776ad7ea805932578907b0058',1,'PhysicalLayer::readBit()']]], + ['readdata_494',['readData',['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData()'],['../classn_r_f24.html#a410fb78acb4ed358818c132687b8857a',1,'nRF24::readData()'],['../class_r_f69.html#a3983b66c83818b4082805bcafc712f00',1,'RF69::readData()'],['../class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e',1,'Si443x::readData()'],['../class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2',1,'SX126x::readData()'],['../class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745',1,'SX127x::readData()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_pager_client.html#a947e37884f59c9e1a6b7d5dd817316fe',1,'PagerClient::readData(String &str, size_t len=0)'],['../class_pager_client.html#a158d97e372ade18db408484c8cb35428',1,'PagerClient::readData(uint8_t *data, size_t *len)'],['../class_physical_layer.html#ae8eed0e888a7c8742e89d2b850977de2',1,'PhysicalLayer::readData(String &str, size_t len=0)'],['../class_physical_layer.html#ae8b6c756eb4b92855433ca389d73c632',1,'PhysicalLayer::readData(uint8_t *data, size_t len)=0']]], + ['receive_495',['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_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'PhysicalLayer::receive(String &str, size_t len=0)'],['../class_physical_layer.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'PhysicalLayer::receive(uint8_t *data, size_t len)=0']]], + ['receivedirect_496',['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#a46b22145b33e97cf6065ed826799b6b4',1,'PhysicalLayer::receiveDirect()']]], + ['receivedirectasync_497',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]], + ['regdump_498',['regdump',['../class_module.html#a7216d32fc55130d111409c6f2050d9c0',1,'Module']]], + ['reset_499',['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_500',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69']]], + ['rfm95_501',['RFM95',['../class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326',1,'RFM95']]], + ['rfm96_502',['RFM96',['../class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a',1,'RFM96']]], + ['rfm97_503',['RFM97',['../class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be',1,'RFM97']]], + ['rttyclient_504',['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 72768030..1052dc4f 100644 --- a/search/functions_f.js +++ b/search/functions_f.js @@ -1,113 +1,114 @@ var searchData= [ - ['scanchannel_499',['scanChannel',['../class_s_x126x.html#ae9f24414bd684434c310df54b3558f21',1,'SX126x::scanChannel()'],['../class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5',1,'SX127x::scanChannel()'],['../class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb',1,'SX128x::scanChannel()']]], - ['sendframe_500',['sendFrame',['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()'],['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()']]], - ['sendheader_501',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]], - ['sendline_502',['sendLine',['../class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0',1,'SSTVClient']]], - ['sendposition_503',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]], - ['setaccessaddress_504',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]], - ['setaddresswidth_505',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]], - ['setaeskey_506',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]], - ['setafc_507',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]], - ['setafcagctrigger_508',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]], - ['setafcbandwidth_509',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], - ['setambienttemperature_510',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], - ['setautoack_511',['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_512',['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_513',['setBitRate',['../class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::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_x127x.html#a606d839b3a992c681ac9ad7ca6020022',1,'SX127x::setBitRate()'],['../class_s_x128x.html#a3bee00ec197ef9855c0079cb0a3009a6',1,'SX128x::setBitRate()']]], - ['setbroadcastaddress_514',['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_515',['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_516',['setCorrection',['../class_a_x25_client.html#aa6a10784d59428a4d5c13067ba6af69c',1,'AX25Client']]], - ['setcrc_517',['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_518',['setCrcFiltering',['../class_c_c1101.html#aafac40359c4a1bb01aae12da6b03be26',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#a9b3a76eb89cad60dcad92513e6848f5a',1,'SX127x::setCrcFiltering()']]], - ['setcurrentlimit_519',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]], - ['setdatarate_520',['setDataRate',['../classn_r_f24.html#a1f3ec2196733a2e2476f50690967f285',1,'nRF24']]], - ['setdatashaping_521',['setDataShaping',['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::setDataShaping()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::setDataShaping()'],['../class_si443x.html#ade08c79074c7e4414d34eefa25cee168',1,'Si443x::setDataShaping()'],['../class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676',1,'SX126x::setDataShaping()'],['../class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea',1,'SX1272::setDataShaping()'],['../class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563',1,'SX1278::setDataShaping()'],['../class_s_x128x.html#a99491c705e88dddc820f884b778f1660',1,'SX128x::setDataShaping()'],['../class_physical_layer.html#ab643a814dce48f71a13bf6ea23f44cbd',1,'PhysicalLayer::setDataShaping()']]], - ['setdatashapingook_522',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]], - ['setdio0action_523',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ada53419d65f207f352124da7747c5960',1,'SX127x::setDio0Action()']]], - ['setdio1action_524',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#afc844f7f3530f4076c8ea5f684c1b123',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()']]], - ['setdio2asrfswitch_525',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], - ['setdiomapping_526',['setDIOMapping',['../class_c_c1101.html#a1acad996e9452c504cf0f89806c46c8a',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a4b879c689b19036411d884f6657f95db',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#adbea7515add3d81c3024ceb0d570266b',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a47c1d94d2ad2fd7eb5d11480b44cc368',1,'PhysicalLayer::setDIOMapping()']]], - ['setdiopreambledetect_527',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]], - ['setdirectaction_528',['setDirectAction',['../class_c_c1101.html#a5161fa10b19d857840579601ef565363',1,'CC1101::setDirectAction()'],['../classn_r_f24.html#a3da63a447659f92153654d31a5d2854c',1,'nRF24::setDirectAction()'],['../class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28',1,'RF69::setDirectAction()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a',1,'SX126x::setDirectAction()'],['../class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238',1,'SX127x::setDirectAction()'],['../class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236',1,'SX128x::setDirectAction()'],['../class_physical_layer.html#ab76fe7d3e0f453a807b205161c980086',1,'PhysicalLayer::setDirectAction()']]], - ['setdirectsyncword_529',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], - ['setencoding_530',['setEncoding',['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()'],['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_physical_layer.html#a7d3419227d201d6912b77784636d437d',1,'PhysicalLayer::setEncoding()']]], - ['setfhsshoppingperiod_531',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]], - ['setfifoemptyaction_532',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()']]], - ['setfifofullaction_533',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]], - ['setfrequency_534',['setFrequency',['../class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e',1,'CC1101::setFrequency()'],['../classn_r_f24.html#abec5f9dba44a019e23c8bf516f104fad',1,'nRF24::setFrequency()'],['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87',1,'RFM95::setFrequency()'],['../class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84',1,'RFM96::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_s_x1262.html#a7e72da22fa1fc2d87186107a3285e846',1,'SX1262::setFrequency()'],['../class_s_x1268.html#a6ad998275281de5c6f24f8a64db88052',1,'SX1268::setFrequency()'],['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008',1,'SX1276::setFrequency()'],['../class_s_x1277.html#a42adde5eecccdca95214980848795e82',1,'SX1277::setFrequency()'],['../class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4',1,'SX1278::setFrequency()'],['../class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817',1,'SX1279::setFrequency()'],['../class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371',1,'SX128x::setFrequency()']]], - ['setfrequencydeviation_535',['setFrequencyDeviation',['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_physical_layer.html#ab9060e8ab7a2da192b3bf53b3501553b',1,'PhysicalLayer::setFrequencyDeviation()']]], - ['setgain_536',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], - ['setgaincontrol_537',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]], - ['setgdo0action_538',['setGdo0Action',['../class_c_c1101.html#ae60ea5cacfb1543fcecde5bfac16361a',1,'CC1101']]], - ['setgdo2action_539',['setGdo2Action',['../class_c_c1101.html#ac6338c2f5c937a12dac06069944ffb77',1,'CC1101']]], - ['sethighsensitivitymode_540',['setHighSensitivityMode',['../class_s_x128x.html#a73e3655e92bca9a06e2d0abbf1a4bed4',1,'SX128x']]], - ['setinversion_541',['setInversion',['../class_hell_client.html#a1779f13c8052c2392a1f2f0e1164343e',1,'HellClient']]], - ['setirqaction_542',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]], - ['setlnatestboost_543',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]], - ['setnodeaddress_544',['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_545',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK()']]], - ['setookfixedorfloorthreshold_546',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]], - ['setookfixedthreshold_547',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]], - ['setookpeakthresholddecrement_548',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement()']]], - ['setookpeakthresholdstep_549',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]], - ['setookthresholdtype_550',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]], - ['setoutputpower_551',['setOutputPower',['../class_c_c1101.html#ac3ff8051af5ca50c349e02257f1a3bda',1,'CC1101::setOutputPower()'],['../classn_r_f24.html#a824453d547c0b42ac1988acb42032ca4',1,'nRF24::setOutputPower()'],['../class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc',1,'RF69::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_s_x1261.html#aa541f927995a1756c651b93fd24edc65',1,'SX1261::setOutputPower()'],['../class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc',1,'SX1262::setOutputPower()'],['../class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45',1,'SX1268::setOutputPower()'],['../class_s_x1272.html#a6677a04aa0c2f3bbde2509786b6a66de',1,'SX1272::setOutputPower()'],['../class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88',1,'SX1278::setOutputPower()'],['../class_s_x128x.html#ad6e2b46c317a8d8512cf0380025147a9',1,'SX128x::setOutputPower()']]], - ['setpreamblelength_552',['setPreambleLength',['../class_c_c1101.html#acbfa80f431f335d5597500319f0affa8',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_553',['setPromiscuousMode',['../class_c_c1101.html#a2911d49d1c293542f7a374c9af60df0e',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#a6d90ad1d455de045c53c5758babd876c',1,'RF69::setPromiscuousMode()']]], - ['setreceivepipe_554',['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_555',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]], - ['setregulatordcdc_556',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x']]], - ['setregulatorldo_557',['setRegulatorLDO',['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x']]], - ['setrepeaters_558',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]], - ['setrfswitchpins_559',['setRfSwitchPins',['../class_module.html#a0ecbb4e1e98094c1296b1e823dc14703',1,'Module::setRfSwitchPins()'],['../class_c_c1101.html#a45ab4e3f4f9db367185333d36ba21ed2',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#aada7c48828b950cdfd260594d502b03d',1,'RF69::setRfSwitchPins()'],['../class_si443x.html#ae365087803b88b29932b5c793edff1d4',1,'Si443x::setRfSwitchPins()'],['../class_s_x126x.html#a288257242e483cb3eb6944333179dd26',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#ae9781180418c1ec9c365b74acbc98d8a',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5f11803b3430bc059321b443f407e78b',1,'SX128x::setRfSwitchPins()']]], - ['setrfswitchstate_560',['setRfSwitchState',['../class_module.html#a4a87d59ad2bf6bb1bb9de1856a81b824',1,'Module']]], - ['setrssiconfig_561',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], - ['setrssithreshold_562',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]], - ['setrxbandwidth_563',['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()']]], - ['setsendsequence_564',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], - ['setspreadingfactor_565',['setSpreadingFactor',['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67',1,'RFM97::setSpreadingFactor()'],['../class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d',1,'SX126x::setSpreadingFactor()'],['../class_s_x1272.html#a82084ac58502c83d2ada998410307490',1,'SX1272::setSpreadingFactor()'],['../class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f',1,'SX1273::setSpreadingFactor()'],['../class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf',1,'SX1277::setSpreadingFactor()'],['../class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08',1,'SX1278::setSpreadingFactor()'],['../class_s_x128x.html#ae435f57132f76f4283abb870176acf54',1,'SX128x::setSpreadingFactor()']]], - ['setsyncbits_566',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]], - ['setsyncword_567',['setSyncWord',['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord(uint8_t *syncWord, uint8_t len, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a',1,'Si443x::setSyncWord()'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf',1,'SX126x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len)'],['../class_s_x128x.html#a0efa595867624a54153d693d16f9f731',1,'SX128x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)']]], - ['settcxo_568',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]], - ['settransmitpipe_569',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]], - ['setwhitening_570',['setWhitening',['../class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]], - ['si4430_571',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430']]], - ['si4431_572',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431']]], - ['si4432_573',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432']]], - ['si443x_574',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x']]], - ['sleep_575',['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()']]], - ['spigetregvalue_576',['SPIgetRegValue',['../class_module.html#ad7ca9ae5a22cdacdf9437ca9cd37c9b4',1,'Module']]], - ['spireadregister_577',['SPIreadRegister',['../class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3',1,'Module']]], - ['spireadregisterburst_578',['SPIreadRegisterBurst',['../class_module.html#a6fa5239d73379e4140f5c4f513b1b8d2',1,'Module']]], - ['spisetregvalue_579',['SPIsetRegValue',['../class_module.html#a1286d7fd9673cbfab945c26b2585a129',1,'Module']]], - ['spitransfer_580',['SPItransfer',['../class_module.html#aefd955f1cd6d588b2cc229db87cb2121',1,'Module']]], - ['spiwriteregister_581',['SPIwriteRegister',['../class_module.html#ab814614ddd34b57f5a612a20f5fe4c57',1,'Module']]], - ['spiwriteregisterburst_582',['SPIwriteRegisterBurst',['../class_module.html#a9d77a08070cbd48fd4ece62a739333e9',1,'Module']]], - ['sstvclient_583',['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_584',['standby',['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby()'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby()'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby()'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby()'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby() override'],['../class_s_x126x.html#ad7569396f09f3867dc1bd4d4a0613acd',1,'SX126x::standby(uint8_t mode)'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby()'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x128x.html#aa11ba80f0cebb3e6927c775ad5f96b4e',1,'SX128x::standby(uint8_t mode)'],['../class_physical_layer.html#a0e77da761a2cbb5c9535df0bdea993f9',1,'PhysicalLayer::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()']]], - ['startchannelscan_585',['startChannelScan',['../class_s_x126x.html#a37a716aab163aebbe36599dc7e530c92',1,'SX126x::startChannelScan()'],['../class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059',1,'SX127x::startChannelScan()']]], - ['startdirect_586',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], - ['startranging_587',['startRanging',['../class_s_x1280.html#af30ff497ca3bcc043dc4dc2e7587a795',1,'SX1280']]], - ['startreceive_588',['startReceive',['../class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3',1,'CC1101::startReceive()'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_s_x126x.html#aeb92dc9d2e2a2b3a3a5ff2856528d497',1,'SX126x::startReceive()'],['../class_s_x127x.html#adffb96b7f80dc43909bb4cebde68fe9d',1,'SX127x::startReceive()'],['../class_s_x128x.html#ad59ee052d8ab1f250245a14039fc8b66',1,'SX128x::startReceive()']]], - ['startreceivedutycycle_589',['startReceiveDutyCycle',['../class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136',1,'SX126x']]], - ['startreceivedutycycleauto_590',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f',1,'SX126x']]], - ['startsignal_591',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], - ['starttransmit_592',['startTransmit',['../class_c_c1101.html#a0df2938e2509a8f2746b20ae0558d4ea',1,'CC1101::startTransmit()'],['../classn_r_f24.html#a42fdc828b49f2b8e15457189bd57d917',1,'nRF24::startTransmit()'],['../class_r_f69.html#a855dc194947b095b821ec1524ba6814c',1,'RF69::startTransmit()'],['../class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314',1,'Si443x::startTransmit()'],['../class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1',1,'SX126x::startTransmit()'],['../class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083',1,'SX127x::startTransmit()'],['../class_s_x128x.html#aef221e7d463c5228ce00ed6934512848',1,'SX128x::startTransmit()'],['../class_physical_layer.html#af068e6e862c99e39d0261a7971dd56db',1,'PhysicalLayer::startTransmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'PhysicalLayer::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]], - ['sx1231_593',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231']]], - ['sx1261_594',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261']]], - ['sx1262_595',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262']]], - ['sx1268_596',['SX1268',['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268']]], - ['sx126x_597',['SX126x',['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x']]], - ['sx1272_598',['SX1272',['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272']]], - ['sx1273_599',['SX1273',['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273']]], - ['sx1276_600',['SX1276',['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276']]], - ['sx1277_601',['SX1277',['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277']]], - ['sx1278_602',['SX1278',['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278']]], - ['sx1279_603',['SX1279',['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279']]], - ['sx127x_604',['SX127x',['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x']]], - ['sx1280_605',['SX1280',['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280']]], - ['sx1281_606',['SX1281',['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281']]], - ['sx1282_607',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282']]], - ['sx128x_608',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x']]] + ['scanchannel_505',['scanChannel',['../class_s_x126x.html#ae9f24414bd684434c310df54b3558f21',1,'SX126x::scanChannel()'],['../class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5',1,'SX127x::scanChannel()'],['../class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb',1,'SX128x::scanChannel()']]], + ['sendframe_506',['sendFrame',['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()'],['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()']]], + ['sendheader_507',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]], + ['sendline_508',['sendLine',['../class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0',1,'SSTVClient']]], + ['sendposition_509',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]], + ['sendtone_510',['sendTone',['../class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111',1,'PagerClient']]], + ['setaccessaddress_511',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]], + ['setaddresswidth_512',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]], + ['setaeskey_513',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]], + ['setafc_514',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]], + ['setafcagctrigger_515',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]], + ['setafcbandwidth_516',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], + ['setambienttemperature_517',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], + ['setautoack_518',['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_519',['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_520',['setBitRate',['../class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::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_x127x.html#a606d839b3a992c681ac9ad7ca6020022',1,'SX127x::setBitRate()'],['../class_s_x128x.html#a3bee00ec197ef9855c0079cb0a3009a6',1,'SX128x::setBitRate()'],['../class_physical_layer.html#a56e9cf39bc8847492f7f3cd67ebf1c46',1,'PhysicalLayer::setBitRate()']]], + ['setbroadcastaddress_521',['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_522',['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_523',['setCorrection',['../class_a_x25_client.html#aa6a10784d59428a4d5c13067ba6af69c',1,'AX25Client']]], + ['setcrc_524',['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_525',['setCrcFiltering',['../class_c_c1101.html#aafac40359c4a1bb01aae12da6b03be26',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#a9b3a76eb89cad60dcad92513e6848f5a',1,'SX127x::setCrcFiltering()']]], + ['setcurrentlimit_526',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]], + ['setdatarate_527',['setDataRate',['../classn_r_f24.html#a1f3ec2196733a2e2476f50690967f285',1,'nRF24']]], + ['setdatashaping_528',['setDataShaping',['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::setDataShaping()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::setDataShaping()'],['../class_si443x.html#ade08c79074c7e4414d34eefa25cee168',1,'Si443x::setDataShaping()'],['../class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676',1,'SX126x::setDataShaping()'],['../class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea',1,'SX1272::setDataShaping()'],['../class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563',1,'SX1278::setDataShaping()'],['../class_s_x128x.html#a99491c705e88dddc820f884b778f1660',1,'SX128x::setDataShaping()'],['../class_physical_layer.html#ab643a814dce48f71a13bf6ea23f44cbd',1,'PhysicalLayer::setDataShaping()']]], + ['setdatashapingook_529',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]], + ['setdio0action_530',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ada53419d65f207f352124da7747c5960',1,'SX127x::setDio0Action()']]], + ['setdio1action_531',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#afc844f7f3530f4076c8ea5f684c1b123',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()']]], + ['setdio2asrfswitch_532',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], + ['setdiomapping_533',['setDIOMapping',['../class_c_c1101.html#a1acad996e9452c504cf0f89806c46c8a',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a4b879c689b19036411d884f6657f95db',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#adbea7515add3d81c3024ceb0d570266b',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a47c1d94d2ad2fd7eb5d11480b44cc368',1,'PhysicalLayer::setDIOMapping()']]], + ['setdiopreambledetect_534',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]], + ['setdirectaction_535',['setDirectAction',['../class_c_c1101.html#a5161fa10b19d857840579601ef565363',1,'CC1101::setDirectAction()'],['../classn_r_f24.html#a3da63a447659f92153654d31a5d2854c',1,'nRF24::setDirectAction()'],['../class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28',1,'RF69::setDirectAction()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a',1,'SX126x::setDirectAction()'],['../class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238',1,'SX127x::setDirectAction()'],['../class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236',1,'SX128x::setDirectAction()'],['../class_physical_layer.html#ab76fe7d3e0f453a807b205161c980086',1,'PhysicalLayer::setDirectAction()']]], + ['setdirectsyncword_536',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], + ['setencoding_537',['setEncoding',['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()'],['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_physical_layer.html#a7d3419227d201d6912b77784636d437d',1,'PhysicalLayer::setEncoding()']]], + ['setfhsshoppingperiod_538',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]], + ['setfifoemptyaction_539',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()']]], + ['setfifofullaction_540',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]], + ['setfrequency_541',['setFrequency',['../class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e',1,'CC1101::setFrequency()'],['../classn_r_f24.html#abec5f9dba44a019e23c8bf516f104fad',1,'nRF24::setFrequency()'],['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87',1,'RFM95::setFrequency()'],['../class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84',1,'RFM96::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_s_x1262.html#a7e72da22fa1fc2d87186107a3285e846',1,'SX1262::setFrequency()'],['../class_s_x1268.html#a6ad998275281de5c6f24f8a64db88052',1,'SX1268::setFrequency()'],['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008',1,'SX1276::setFrequency()'],['../class_s_x1277.html#a42adde5eecccdca95214980848795e82',1,'SX1277::setFrequency()'],['../class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4',1,'SX1278::setFrequency()'],['../class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817',1,'SX1279::setFrequency()'],['../class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371',1,'SX128x::setFrequency()'],['../class_physical_layer.html#a4928642e647f2dd5b614b87b681cb0a6',1,'PhysicalLayer::setFrequency()']]], + ['setfrequencydeviation_542',['setFrequencyDeviation',['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_physical_layer.html#ab9060e8ab7a2da192b3bf53b3501553b',1,'PhysicalLayer::setFrequencyDeviation()']]], + ['setgain_543',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], + ['setgaincontrol_544',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]], + ['setgdo0action_545',['setGdo0Action',['../class_c_c1101.html#ae60ea5cacfb1543fcecde5bfac16361a',1,'CC1101']]], + ['setgdo2action_546',['setGdo2Action',['../class_c_c1101.html#ac6338c2f5c937a12dac06069944ffb77',1,'CC1101']]], + ['sethighsensitivitymode_547',['setHighSensitivityMode',['../class_s_x128x.html#a73e3655e92bca9a06e2d0abbf1a4bed4',1,'SX128x']]], + ['setinversion_548',['setInversion',['../class_hell_client.html#a1779f13c8052c2392a1f2f0e1164343e',1,'HellClient']]], + ['setirqaction_549',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]], + ['setlnatestboost_550',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]], + ['setnodeaddress_551',['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_552',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK()']]], + ['setookfixedorfloorthreshold_553',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]], + ['setookfixedthreshold_554',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]], + ['setookpeakthresholddecrement_555',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement()']]], + ['setookpeakthresholdstep_556',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]], + ['setookthresholdtype_557',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]], + ['setoutputpower_558',['setOutputPower',['../class_c_c1101.html#ac3ff8051af5ca50c349e02257f1a3bda',1,'CC1101::setOutputPower()'],['../classn_r_f24.html#a824453d547c0b42ac1988acb42032ca4',1,'nRF24::setOutputPower()'],['../class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc',1,'RF69::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_s_x1261.html#aa541f927995a1756c651b93fd24edc65',1,'SX1261::setOutputPower()'],['../class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc',1,'SX1262::setOutputPower()'],['../class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45',1,'SX1268::setOutputPower()'],['../class_s_x1272.html#a6677a04aa0c2f3bbde2509786b6a66de',1,'SX1272::setOutputPower()'],['../class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88',1,'SX1278::setOutputPower()'],['../class_s_x128x.html#ad6e2b46c317a8d8512cf0380025147a9',1,'SX128x::setOutputPower()']]], + ['setpreamblelength_559',['setPreambleLength',['../class_c_c1101.html#acbfa80f431f335d5597500319f0affa8',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_560',['setPromiscuousMode',['../class_c_c1101.html#a2911d49d1c293542f7a374c9af60df0e',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#a6d90ad1d455de045c53c5758babd876c',1,'RF69::setPromiscuousMode()']]], + ['setreceivepipe_561',['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_562',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]], + ['setregulatordcdc_563',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x']]], + ['setregulatorldo_564',['setRegulatorLDO',['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x']]], + ['setrepeaters_565',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]], + ['setrfswitchpins_566',['setRfSwitchPins',['../class_module.html#a0ecbb4e1e98094c1296b1e823dc14703',1,'Module::setRfSwitchPins()'],['../class_c_c1101.html#a45ab4e3f4f9db367185333d36ba21ed2',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#aada7c48828b950cdfd260594d502b03d',1,'RF69::setRfSwitchPins()'],['../class_si443x.html#ae365087803b88b29932b5c793edff1d4',1,'Si443x::setRfSwitchPins()'],['../class_s_x126x.html#a288257242e483cb3eb6944333179dd26',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#ae9781180418c1ec9c365b74acbc98d8a',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5f11803b3430bc059321b443f407e78b',1,'SX128x::setRfSwitchPins()']]], + ['setrfswitchstate_567',['setRfSwitchState',['../class_module.html#a4a87d59ad2bf6bb1bb9de1856a81b824',1,'Module']]], + ['setrssiconfig_568',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], + ['setrssithreshold_569',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]], + ['setrxbandwidth_570',['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()']]], + ['setsendsequence_571',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], + ['setspreadingfactor_572',['setSpreadingFactor',['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67',1,'RFM97::setSpreadingFactor()'],['../class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d',1,'SX126x::setSpreadingFactor()'],['../class_s_x1272.html#a82084ac58502c83d2ada998410307490',1,'SX1272::setSpreadingFactor()'],['../class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f',1,'SX1273::setSpreadingFactor()'],['../class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf',1,'SX1277::setSpreadingFactor()'],['../class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08',1,'SX1278::setSpreadingFactor()'],['../class_s_x128x.html#ae435f57132f76f4283abb870176acf54',1,'SX128x::setSpreadingFactor()']]], + ['setsyncbits_573',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]], + ['setsyncword_574',['setSyncWord',['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord(uint8_t *syncWord, uint8_t len, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a',1,'Si443x::setSyncWord()'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf',1,'SX126x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len)'],['../class_s_x128x.html#a0efa595867624a54153d693d16f9f731',1,'SX128x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)']]], + ['settcxo_575',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]], + ['settransmitpipe_576',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]], + ['setwhitening_577',['setWhitening',['../class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]], + ['si4430_578',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430']]], + ['si4431_579',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431']]], + ['si4432_580',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432']]], + ['si443x_581',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x']]], + ['sleep_582',['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()']]], + ['spigetregvalue_583',['SPIgetRegValue',['../class_module.html#ad7ca9ae5a22cdacdf9437ca9cd37c9b4',1,'Module']]], + ['spireadregister_584',['SPIreadRegister',['../class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3',1,'Module']]], + ['spireadregisterburst_585',['SPIreadRegisterBurst',['../class_module.html#a6fa5239d73379e4140f5c4f513b1b8d2',1,'Module']]], + ['spisetregvalue_586',['SPIsetRegValue',['../class_module.html#a1286d7fd9673cbfab945c26b2585a129',1,'Module']]], + ['spitransfer_587',['SPItransfer',['../class_module.html#aefd955f1cd6d588b2cc229db87cb2121',1,'Module']]], + ['spiwriteregister_588',['SPIwriteRegister',['../class_module.html#ab814614ddd34b57f5a612a20f5fe4c57',1,'Module']]], + ['spiwriteregisterburst_589',['SPIwriteRegisterBurst',['../class_module.html#a9d77a08070cbd48fd4ece62a739333e9',1,'Module']]], + ['sstvclient_590',['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_591',['standby',['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby()'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby()'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby()'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby()'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby() override'],['../class_s_x126x.html#ad7569396f09f3867dc1bd4d4a0613acd',1,'SX126x::standby(uint8_t mode)'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby()'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x128x.html#aa11ba80f0cebb3e6927c775ad5f96b4e',1,'SX128x::standby(uint8_t mode)'],['../class_physical_layer.html#a0e77da761a2cbb5c9535df0bdea993f9',1,'PhysicalLayer::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()']]], + ['startchannelscan_592',['startChannelScan',['../class_s_x126x.html#a37a716aab163aebbe36599dc7e530c92',1,'SX126x::startChannelScan()'],['../class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059',1,'SX127x::startChannelScan()']]], + ['startdirect_593',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], + ['startranging_594',['startRanging',['../class_s_x1280.html#af30ff497ca3bcc043dc4dc2e7587a795',1,'SX1280']]], + ['startreceive_595',['startReceive',['../class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3',1,'CC1101::startReceive()'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_s_x126x.html#aeb92dc9d2e2a2b3a3a5ff2856528d497',1,'SX126x::startReceive()'],['../class_s_x127x.html#adffb96b7f80dc43909bb4cebde68fe9d',1,'SX127x::startReceive()'],['../class_s_x128x.html#ad59ee052d8ab1f250245a14039fc8b66',1,'SX128x::startReceive()'],['../class_pager_client.html#ad6f4f034b71311144f76b629a8ef8f8d',1,'PagerClient::startReceive()']]], + ['startreceivedutycycle_596',['startReceiveDutyCycle',['../class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136',1,'SX126x']]], + ['startreceivedutycycleauto_597',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f',1,'SX126x']]], + ['startsignal_598',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], + ['starttransmit_599',['startTransmit',['../class_c_c1101.html#a0df2938e2509a8f2746b20ae0558d4ea',1,'CC1101::startTransmit()'],['../classn_r_f24.html#a42fdc828b49f2b8e15457189bd57d917',1,'nRF24::startTransmit()'],['../class_r_f69.html#a855dc194947b095b821ec1524ba6814c',1,'RF69::startTransmit()'],['../class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314',1,'Si443x::startTransmit()'],['../class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1',1,'SX126x::startTransmit()'],['../class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083',1,'SX127x::startTransmit()'],['../class_s_x128x.html#aef221e7d463c5228ce00ed6934512848',1,'SX128x::startTransmit()'],['../class_physical_layer.html#af068e6e862c99e39d0261a7971dd56db',1,'PhysicalLayer::startTransmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'PhysicalLayer::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]], + ['sx1231_600',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231']]], + ['sx1261_601',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261']]], + ['sx1262_602',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262']]], + ['sx1268_603',['SX1268',['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268']]], + ['sx126x_604',['SX126x',['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x']]], + ['sx1272_605',['SX1272',['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272']]], + ['sx1273_606',['SX1273',['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273']]], + ['sx1276_607',['SX1276',['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276']]], + ['sx1277_608',['SX1277',['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277']]], + ['sx1278_609',['SX1278',['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278']]], + ['sx1279_610',['SX1279',['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279']]], + ['sx127x_611',['SX127x',['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x']]], + ['sx1280_612',['SX1280',['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280']]], + ['sx1281_613',['SX1281',['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281']]], + ['sx1282_614',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282']]], + ['sx128x_615',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x']]] ]; diff --git a/search/groups_0.js b/search/groups_0.js index 5f89c580..78522838 100644 --- a/search/groups_0.js +++ b/search/groups_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['data_20shaping_20filter_20values_20aliases_2e_643',['Data shaping filter values aliases.',['../group__config__shaping.html',1,'']]] + ['data_20shaping_20filter_20values_20aliases_2e_650',['Data shaping filter values aliases.',['../group__config__shaping.html',1,'']]] ]; diff --git a/search/groups_1.js b/search/groups_1.js index 20891805..2982baa3 100644 --- a/search/groups_1.js +++ b/search/groups_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['encoding_20type_20aliases_2e_644',['Encoding type aliases.',['../group__config__encoding.html',1,'']]] + ['encoding_20type_20aliases_2e_651',['Encoding type aliases.',['../group__config__encoding.html',1,'']]] ]; diff --git a/search/groups_2.js b/search/groups_2.js index 7b51ba4a..63019401 100644 --- a/search/groups_2.js +++ b/search/groups_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['mic_2de_20message_20types_2e_645',['Mic-E message types.',['../group__mic__e__message__types.html',1,'']]] + ['mic_2de_20message_20types_2e_652',['Mic-E message types.',['../group__mic__e__message__types.html',1,'']]] ]; diff --git a/search/groups_3.js b/search/groups_3.js index ab8e7e43..e7ffaede 100644 --- a/search/groups_3.js +++ b/search/groups_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['status_20codes_646',['Status Codes',['../group__status__codes.html',1,'']]] + ['status_20codes_653',['Status Codes',['../group__status__codes.html',1,'']]] ]; diff --git a/search/pages_0.js b/search/pages_0.js index 58e121df..84120cc7 100644 --- a/search/pages_0.js +++ b/search/pages_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['radiolib_20documentation_647',['RadioLib Documentation',['../index.html',1,'']]] + ['radiolib_20documentation_654',['RadioLib Documentation',['../index.html',1,'']]] ]; diff --git a/search/pages_1.js b/search/pages_1.js index 9799b5fa..5e39f0e0 100644 --- a/search/pages_1.js +++ b/search/pages_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['todo_20list_648',['Todo List',['../todo.html',1,'']]] + ['todo_20list_655',['Todo List',['../todo.html',1,'']]] ]; diff --git a/search/variables_0.js b/search/variables_0.js index 3a8d54f1..8659188d 100644 --- a/search/variables_0.js +++ b/search/variables_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['control_619',['control',['../class_a_x25_frame.html#a5b196079b539dc417ca65dd4ad622f8f',1,'AX25Frame']]] + ['control_626',['control',['../class_a_x25_frame.html#a5b196079b539dc417ca65dd4ad622f8f',1,'AX25Frame']]] ]; diff --git a/search/variables_1.js b/search/variables_1.js index e125c8ca..0d17a351 100644 --- a/search/variables_1.js +++ b/search/variables_1.js @@ -1,5 +1,5 @@ var searchData= [ - ['destcallsign_620',['destCallsign',['../class_a_x25_frame.html#a7fe9805148e2dd46d163cd989473dbff',1,'AX25Frame']]], - ['destssid_621',['destSSID',['../class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8',1,'AX25Frame']]] + ['destcallsign_627',['destCallsign',['../class_a_x25_frame.html#a7fe9805148e2dd46d163cd989473dbff',1,'AX25Frame']]], + ['destssid_628',['destSSID',['../class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8',1,'AX25Frame']]] ]; diff --git a/search/variables_2.js b/search/variables_2.js index 57b92818..2c67647e 100644 --- a/search/variables_2.js +++ b/search/variables_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['freq_622',['freq',['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t']]] + ['freq_629',['freq',['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t']]] ]; diff --git a/search/variables_3.js b/search/variables_3.js index 150059ad..9e8f1be3 100644 --- a/search/variables_3.js +++ b/search/variables_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['height_623',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]] + ['height_630',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]] ]; diff --git a/search/variables_4.js b/search/variables_4.js index d75cc455..5c44c0f1 100644 --- a/search/variables_4.js +++ b/search/variables_4.js @@ -1,5 +1,5 @@ var searchData= [ - ['info_624',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]], - ['infolen_625',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]] + ['info_631',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]], + ['infolen_632',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]] ]; diff --git a/search/variables_5.js b/search/variables_5.js index 99ec553c..097972d6 100644 --- a/search/variables_5.js +++ b/search/variables_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['len_626',['len',['../structtone__t.html#a3b0421dd255c7c59552741957a6224ed',1,'tone_t']]] + ['len_633',['len',['../structtone__t.html#a3b0421dd255c7c59552741957a6224ed',1,'tone_t']]] ]; diff --git a/search/variables_6.js b/search/variables_6.js index 4af16f2b..aaca043b 100644 --- a/search/variables_6.js +++ b/search/variables_6.js @@ -1,5 +1,5 @@ var searchData= [ - ['numrepeaters_627',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]], - ['numtones_628',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]] + ['numrepeaters_634',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]], + ['numtones_635',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]] ]; diff --git a/search/variables_7.js b/search/variables_7.js index 3bef513e..1120fec5 100644 --- a/search/variables_7.js +++ b/search/variables_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['protocolid_629',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]] + ['protocolid_636',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]] ]; diff --git a/search/variables_8.js b/search/variables_8.js index 82ecc8a4..16d51b4f 100644 --- a/search/variables_8.js +++ b/search/variables_8.js @@ -1,6 +1,6 @@ var searchData= [ - ['rcvseqnumber_630',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], - ['repeatercallsigns_631',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]], - ['repeaterssids_632',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]] + ['rcvseqnumber_637',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], + ['repeatercallsigns_638',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]], + ['repeaterssids_639',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]] ]; diff --git a/search/variables_9.js b/search/variables_9.js index 0a2e5561..3bcd7620 100644 --- a/search/variables_9.js +++ b/search/variables_9.js @@ -1,9 +1,9 @@ var searchData= [ - ['scanpixellen_633',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]], - ['sendseqnumber_634',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]], - ['spireadcommand_635',['SPIreadCommand',['../class_module.html#a849ad85fc1bc3a7130e660c13973ab26',1,'Module']]], - ['spiwritecommand_636',['SPIwriteCommand',['../class_module.html#ae89764d15e8df5694a6aec0e18f72d3f',1,'Module']]], - ['srccallsign_637',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]], - ['srcssid_638',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]] + ['scanpixellen_640',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]], + ['sendseqnumber_641',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]], + ['spireadcommand_642',['SPIreadCommand',['../class_module.html#a849ad85fc1bc3a7130e660c13973ab26',1,'Module']]], + ['spiwritecommand_643',['SPIwriteCommand',['../class_module.html#ae89764d15e8df5694a6aec0e18f72d3f',1,'Module']]], + ['srccallsign_644',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]], + ['srcssid_645',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]] ]; diff --git a/search/variables_a.js b/search/variables_a.js index dc02d479..1a44a9f7 100644 --- a/search/variables_a.js +++ b/search/variables_a.js @@ -1,5 +1,5 @@ var searchData= [ - ['tones_639',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]], - ['type_640',['type',['../structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40',1,'tone_t']]] + ['tones_646',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]], + ['type_647',['type',['../structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40',1,'tone_t']]] ]; diff --git a/search/variables_b.js b/search/variables_b.js index dd7e1cd9..8b260043 100644 --- a/search/variables_b.js +++ b/search/variables_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['viscode_641',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]] + ['viscode_648',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]] ]; diff --git a/search/variables_c.js b/search/variables_c.js index 5ac53089..775f6475 100644 --- a/search/variables_c.js +++ b/search/variables_c.js @@ -1,4 +1,4 @@ var searchData= [ - ['width_642',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]] + ['width_649',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]] ];