From 815abf667a3b51ae4f0594d9a94de744992c9cee Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 20 Jun 2021 14:08:56 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20=20@=206b0c5?= =?UTF-8?q?c2c92bc550ec0119a01b6efcf52a0bd7cb6=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _l_l_c_c68_8h_source.html | 136 ++++++++ _radio_lib_8h_source.html | 147 ++++---- _s_x1268_8h_source.html | 9 +- annotated.html | 2 +- annotated_dup.js | 2 +- class_l_l_c_c68-members.html | 193 +++++++++++ class_l_l_c_c68.html | 391 +++++++++++++++++++++- class_l_l_c_c68.js | 6 + class_l_l_c_c68.png | Bin 0 -> 764 bytes class_physical_layer.html | 3 +- class_physical_layer.png | Bin 6207 -> 6325 bytes class_s_x1262.html | 7 +- class_s_x1262.png | Bin 798 -> 1055 bytes class_s_x126x.html | 9 +- class_s_x126x.png | Bin 1060 -> 1148 bytes dir_17a0c4358d096e2caf9f04fe2ab66c1d.html | 101 ++++++ dir_17a0c4358d096e2caf9f04fe2ab66c1d.js | 4 + dir_ddb4d7e95cc2d6c8e1ade10a20d7247d.js | 1 + files.html | 78 ++--- functions_func_l.html | 3 + functions_func_s.html | 12 +- functions_l.html | 3 + functions_s.html | 16 +- hierarchy.html | 82 ++--- hierarchy.js | 2 +- navtreedata.js | 8 +- navtreeindex0.js | 64 ++-- navtreeindex1.js | 10 +- navtreeindex2.js | 10 +- navtreeindex3.js | 34 +- navtreeindex4.js | 9 +- search/all_10.js | 4 +- search/all_a.js | 2 +- search/functions_10.js | 200 +++++------ search/functions_11.js | 8 +- search/functions_12.js | 2 +- search/functions_13.js | 2 +- search/functions_14.js | 4 +- search/functions_15.js | 2 +- search/functions_16.js | 4 +- search/functions_a.js | 3 +- search/functions_b.js | 10 +- search/functions_c.js | 4 +- search/functions_d.js | 4 +- search/functions_e.js | 14 +- search/functions_f.js | 26 +- search/groups_0.js | 2 +- search/groups_1.js | 2 +- search/groups_2.js | 4 +- search/groups_3.js | 2 +- search/pages_0.js | 2 +- search/pages_1.js | 2 +- search/variables_0.js | 2 +- search/variables_1.js | 2 +- search/variables_2.js | 2 +- search/variables_3.js | 4 +- search/variables_4.js | 2 +- search/variables_5.js | 2 +- search/variables_6.js | 4 +- search/variables_7.js | 2 +- search/variables_8.js | 2 +- search/variables_9.js | 4 +- search/variables_a.js | 2 +- search/variables_b.js | 6 +- search/variables_c.js | 12 +- search/variables_d.js | 4 +- search/variables_e.js | 2 +- search/variables_f.js | 2 +- 68 files changed, 1270 insertions(+), 429 deletions(-) create mode 100644 _l_l_c_c68_8h_source.html create mode 100644 class_l_l_c_c68-members.html create mode 100644 class_l_l_c_c68.js create mode 100644 class_l_l_c_c68.png create mode 100644 dir_17a0c4358d096e2caf9f04fe2ab66c1d.html create mode 100644 dir_17a0c4358d096e2caf9f04fe2ab66c1d.js diff --git a/_l_l_c_c68_8h_source.html b/_l_l_c_c68_8h_source.html new file mode 100644 index 00000000..20e6cff0 --- /dev/null +++ b/_l_l_c_c68_8h_source.html @@ -0,0 +1,136 @@ + + + + + + + +RadioLib: src/modules/LLCC68/LLCC68.h Source File + + + + + + + + + + + + + +
+
+ + + + + + +
+
RadioLib +
+
Universal wireless communication library for Arduino
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
LLCC68.h
+
+
+
1 #if !defined(_RADIOLIB_LLCC68_H)
+
2 #define _RADIOLIB_LLCC68_H
+
3 
+
4 #include "../../TypeDef.h"
+
5 
+
6 #if !defined(RADIOLIB_EXCLUDE_SX126X)
+
7 
+
8 #include "../../Module.h"
+
9 #include "../SX126x/SX1262.h"
+
10 
+
16 class LLCC68: public SX1262 {
+
17  public:
+
23  LLCC68(Module* mod);
+
24 
+
25  // configuration methods
+
26 
+
34  int16_t setBandwidth(float bw);
+
35 
+
43  int16_t setSpreadingFactor(uint8_t sf);
+
44 
+
45 #if !defined(RADIOLIB_GODMODE)
+
46  private:
+
47 #endif
+
48 
+
49 };
+
50 
+
51 #endif
+
52 
+
53 #endif
+
+
+
int16_t setSpreadingFactor(uint8_t sf)
Sets LoRa spreading factor. Allowed values range from 5 to 11, depending on currently set spreading f...
Definition: LLCC68.cpp:13
+
Derived class for LLCC68 modules.
Definition: LLCC68.h:16
+
int16_t setBandwidth(float bw)
Sets LoRa bandwidth. Allowed values are 125.0, 250.0 and 500.0 kHz.
Definition: LLCC68.cpp:8
+
Implements all common low-level SPI/UART/I2C methods to control the wireless module....
Definition: Module.h:17
+
Derived class for SX1262 modules.
Definition: SX1262.h:19
+
LLCC68(Module *mod)
Default constructor.
Definition: LLCC68.cpp:4
+ + + + diff --git a/_radio_lib_8h_source.html b/_radio_lib_8h_source.html index 6b46887c..1db409e9 100644 --- a/_radio_lib_8h_source.html +++ b/_radio_lib_8h_source.html @@ -113,79 +113,80 @@ $(document).ready(function(){initNavTree('_radio_lib_8h_source.html',''); initRe
64 #include "modules/ESP8266/ESP8266.h"
65 #include "modules/HC05/HC05.h"
66 #include "modules/JDY08/JDY08.h"
-
67 #include "modules/nRF24/nRF24.h"
-
68 #include "modules/RF69/RF69.h"
-
69 #include "modules/RFM2x/RFM22.h"
-
70 #include "modules/RFM2x/RFM23.h"
-
71 #include "modules/RFM9x/RFM95.h"
-
72 #include "modules/RFM9x/RFM96.h"
-
73 #include "modules/RFM9x/RFM97.h"
-
74 #include "modules/Si443x/Si4430.h"
-
75 #include "modules/Si443x/Si4431.h"
-
76 #include "modules/Si443x/Si4432.h"
-
77 #include "modules/SX1231/SX1231.h"
-
78 #include "modules/SX126x/SX1261.h"
-
79 #include "modules/SX126x/SX1262.h"
-
80 #include "modules/SX126x/SX1268.h"
-
81 #include "modules/SX127x/SX1272.h"
-
82 #include "modules/SX127x/SX1273.h"
-
83 #include "modules/SX127x/SX1276.h"
-
84 #include "modules/SX127x/SX1277.h"
-
85 #include "modules/SX127x/SX1278.h"
-
86 #include "modules/SX127x/SX1279.h"
-
87 #include "modules/SX128x/SX1280.h"
-
88 #include "modules/SX128x/SX1281.h"
-
89 #include "modules/SX128x/SX1282.h"
-
90 #include "modules/XBee/XBee.h"
-
91 
-
92 // physical layer protocols
-
93 #include "protocols/PhysicalLayer/PhysicalLayer.h"
-
94 #include "protocols/AFSK/AFSK.h"
-
95 #include "protocols/AX25/AX25.h"
-
96 #include "protocols/Hellschreiber/Hellschreiber.h"
-
97 #include "protocols/Morse/Morse.h"
-
98 #include "protocols/RTTY/RTTY.h"
-
99 #include "protocols/SSTV/SSTV.h"
-
100 
-
101 // transport layer protocols
-
102 #include "protocols/TransportLayer/TransportLayer.h"
-
103 #include "protocols/HTTP/HTTP.h"
-
104 #include "protocols/MQTT/MQTT.h"
-
105 
-
106 // only create Radio class when using RadioShield
-
107 #ifdef RADIOLIB_RADIOSHIELD
-
108 
-
109 // RadioShield pin definitions
-
110 #define RADIOSHIELD_CS_A 10
-
111 #define RADIOSHIELD_RX_A 9
-
112 #define RADIOSHIELD_TX_A 8
-
113 #define RADIOSHIELD_CS_B 5
-
114 #define RADIOSHIELD_RX_B 7
-
115 #define RADIOSHIELD_TX_B 6
-
116 #define RADIOSHIELD_INT_0 2
-
117 #define RADIOSHIELD_INT_1 3
-
118 
-
125 class Radio {
-
126  public:
-
127 
-
128  Module* ModuleA;
-
129  Module* ModuleB;
-
130 
-
134  Radio() {
-
135  ModuleA = new Module(RADIOSHIELD_CS_A, RADIOSHIELD_INT_0, RADIOSHIELD_INT_1, RADIOSHIELD_RX_A, RADIOSHIELD_TX_A, SPI, SPISettings(2000000, MSBFIRST, SPI_MODE0), nullptr);
-
136  ModuleB = new Module(RADIOSHIELD_CS_B, RADIOSHIELD_INT_0, RADIOSHIELD_INT_1, RADIOSHIELD_RX_B, RADIOSHIELD_TX_B, SPI, SPISettings(2000000, MSBFIRST, SPI_MODE0), nullptr);
-
137  }
-
138 
-
139 #ifndef RADIOLIB_GODMODE
-
140  private:
-
141 #endif
-
142 
-
143 };
-
144 
-
145 Radio RadioShield;
-
146 #endif
-
147 
-
148 #endif
+
67 #include "modules/LLCC68/LLCC68.h"
+
68 #include "modules/nRF24/nRF24.h"
+
69 #include "modules/RF69/RF69.h"
+
70 #include "modules/RFM2x/RFM22.h"
+
71 #include "modules/RFM2x/RFM23.h"
+
72 #include "modules/RFM9x/RFM95.h"
+
73 #include "modules/RFM9x/RFM96.h"
+
74 #include "modules/RFM9x/RFM97.h"
+
75 #include "modules/Si443x/Si4430.h"
+
76 #include "modules/Si443x/Si4431.h"
+
77 #include "modules/Si443x/Si4432.h"
+
78 #include "modules/SX1231/SX1231.h"
+
79 #include "modules/SX126x/SX1261.h"
+
80 #include "modules/SX126x/SX1262.h"
+
81 #include "modules/SX126x/SX1268.h"
+
82 #include "modules/SX127x/SX1272.h"
+
83 #include "modules/SX127x/SX1273.h"
+
84 #include "modules/SX127x/SX1276.h"
+
85 #include "modules/SX127x/SX1277.h"
+
86 #include "modules/SX127x/SX1278.h"
+
87 #include "modules/SX127x/SX1279.h"
+
88 #include "modules/SX128x/SX1280.h"
+
89 #include "modules/SX128x/SX1281.h"
+
90 #include "modules/SX128x/SX1282.h"
+
91 #include "modules/XBee/XBee.h"
+
92 
+
93 // physical layer protocols
+
94 #include "protocols/PhysicalLayer/PhysicalLayer.h"
+
95 #include "protocols/AFSK/AFSK.h"
+
96 #include "protocols/AX25/AX25.h"
+
97 #include "protocols/Hellschreiber/Hellschreiber.h"
+
98 #include "protocols/Morse/Morse.h"
+
99 #include "protocols/RTTY/RTTY.h"
+
100 #include "protocols/SSTV/SSTV.h"
+
101 
+
102 // transport layer protocols
+
103 #include "protocols/TransportLayer/TransportLayer.h"
+
104 #include "protocols/HTTP/HTTP.h"
+
105 #include "protocols/MQTT/MQTT.h"
+
106 
+
107 // only create Radio class when using RadioShield
+
108 #ifdef RADIOLIB_RADIOSHIELD
+
109 
+
110 // RadioShield pin definitions
+
111 #define RADIOSHIELD_CS_A 10
+
112 #define RADIOSHIELD_RX_A 9
+
113 #define RADIOSHIELD_TX_A 8
+
114 #define RADIOSHIELD_CS_B 5
+
115 #define RADIOSHIELD_RX_B 7
+
116 #define RADIOSHIELD_TX_B 6
+
117 #define RADIOSHIELD_INT_0 2
+
118 #define RADIOSHIELD_INT_1 3
+
119 
+
126 class Radio {
+
127  public:
+
128 
+
129  Module* ModuleA;
+
130  Module* ModuleB;
+
131 
+
135  Radio() {
+
136  ModuleA = new Module(RADIOSHIELD_CS_A, RADIOSHIELD_INT_0, RADIOSHIELD_INT_1, RADIOSHIELD_RX_A, RADIOSHIELD_TX_A, SPI, SPISettings(2000000, MSBFIRST, SPI_MODE0), nullptr);
+
137  ModuleB = new Module(RADIOSHIELD_CS_B, RADIOSHIELD_INT_0, RADIOSHIELD_INT_1, RADIOSHIELD_RX_B, RADIOSHIELD_TX_B, SPI, SPISettings(2000000, MSBFIRST, SPI_MODE0), nullptr);
+
138  }
+
139 
+
140 #ifndef RADIOLIB_GODMODE
+
141  private:
+
142 #endif
+
143 
+
144 };
+
145 
+
146 Radio RadioShield;
+
147 #endif
+
148 
+
149 #endif
Implements all common low-level SPI/UART/I2C methods to control the wireless module....
Definition: Module.h:17
diff --git a/_s_x1268_8h_source.html b/_s_x1268_8h_source.html index b1255e68..fb9c8bcf 100644 --- a/_s_x1268_8h_source.html +++ b/_s_x1268_8h_source.html @@ -121,16 +121,13 @@ $(document).ready(function(){initNavTree('_s_x1268_8h_source.html',''); initResi
101 
102 };
103 
-
109 using LLCC68 = SX1268;
-
110 
-
111 #endif
-
112 
-
113 #endif
+
104 #endif
+
105 
+
106 #endif
int16_t setOutputPower(int8_t power)
Sets output power. Allowed values are in range from -9 to 22 dBm.
Definition: SX1268.cpp:69
int16_t begin(float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=SX126X_SYNC_WORD_PRIVATE, int8_t power=10, uint16_t preambleLength=8, float tcxoVoltage=1.6, bool useRegulatorLDO=false)
Initialization method for LoRa modem.
Definition: SX1268.cpp:8
-
Only exists as alias for SX1268, since there seems to be no difference between SX1268 and LLCC68 modu...
int16_t setFrequency(float freq, bool calibrate=true)
Sets carrier frequency. Allowed values are in range from 410.0 to 810.0 MHz.
Definition: SX1268.cpp:45
int16_t beginFSK(float freq=434.0, float br=48.0, float freqDev=50.0, float rxBw=156.2, int8_t power=10, uint16_t preambleLength=16, float tcxoVoltage=1.6, bool useRegulatorLDO=false)
Initialization method for FSK modem.
Definition: SX1268.cpp:26
Implements all common low-level SPI/UART/I2C methods to control the wireless module....
Definition: Module.h:17
diff --git a/annotated.html b/annotated.html index baf1ed06..c2909d81 100644 --- a/annotated.html +++ b/annotated.html @@ -99,7 +99,7 @@ $(document).ready(function(){initNavTree('annotated.html',''); initResizable();  CISerialInterface class for Arduino Serial. Only calls the appropriate methods for the active UART interface  CITA2StringITA2-encoded string  CJDY08Control class for JDY08 module. Most methods supported by this module are implemented in ISerial interface - CLLCC68Only exists as alias for SX1268, since there seems to be no difference between SX1268 and LLCC68 modules + CLLCC68Derived class for LLCC68 modules  CModuleImplements all common low-level SPI/UART/I2C 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  CMQTTClientClient for simple MQTT communication diff --git a/annotated_dup.js b/annotated_dup.js index a6fe8ec1..ba21efe8 100644 --- a/annotated_dup.js +++ b/annotated_dup.js @@ -11,7 +11,7 @@ var annotated_dup = [ "ISerial", "class_i_serial.html", "class_i_serial" ], [ "ITA2String", "class_i_t_a2_string.html", "class_i_t_a2_string" ], [ "JDY08", "class_j_d_y08.html", "class_j_d_y08" ], - [ "LLCC68", "class_l_l_c_c68.html", null ], + [ "LLCC68", "class_l_l_c_c68.html", "class_l_l_c_c68" ], [ "Module", "class_module.html", "class_module" ], [ "MorseClient", "class_morse_client.html", "class_morse_client" ], [ "MQTTClient", "class_m_q_t_t_client.html", "class_m_q_t_t_client" ], diff --git a/class_l_l_c_c68-members.html b/class_l_l_c_c68-members.html new file mode 100644 index 00000000..74a00014 --- /dev/null +++ b/class_l_l_c_c68-members.html @@ -0,0 +1,193 @@ + + + + + + + +RadioLib: Member List + + + + + + + + + + + + + +
+
+ + + + + + +
+
RadioLib +
+
Universal wireless communication library for Arduino
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
LLCC68 Member List
+
+
+ +

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

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
autoLDRO()SX126x
available()PhysicalLayer
begin(float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=SX126X_SYNC_WORD_PRIVATE, int8_t power=10, uint16_t preambleLength=8, float tcxoVoltage=1.6, bool useRegulatorLDO=false)SX1262
SX126x::begin(float bw, uint8_t sf, uint8_t cr, uint8_t syncWord, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO=false)SX126x
beginFSK(float freq=434.0, float br=48.0, float freqDev=50.0, float rxBw=156.2, int8_t power=10, uint16_t preambleLength=16, float tcxoVoltage=1.6, bool useRegulatorLDO=false)SX1262
SX126x::beginFSK(float br, float freqDev, float rxBw, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO=false)SX126x
clearDio1Action()SX126x
disableAddressFiltering()SX126x
explicitHeader()SX126x
fixedPacketLengthMode(uint8_t len=SX126X_MAX_PACKET_LENGTH)SX126x
forceLDRO(bool enable)SX126x
getCurrentLimit()SX126x
getDataRate() constSX126x
getFreqStep() constPhysicalLayer
getPacketLength(bool update=true) overrideSX126xvirtual
getRSSI()SX126x
getRSSIInst()SX126x
getSNR()SX126x
getTimeOnAir(size_t len)SX126x
implicitHeader(size_t len)SX126x
LLCC68(Module *mod)LLCC68
PhysicalLayer(float freqStep, size_t maxPacketLength)PhysicalLayer
random()SX126xvirtual
PhysicalLayer::random(int32_t max)PhysicalLayer
PhysicalLayer::random(int32_t min, int32_t max)PhysicalLayer
read()PhysicalLayer
readBit(RADIOLIB_PIN_TYPE pin)SX126xvirtual
readData(uint8_t *data, size_t len) overrideSX126xvirtual
readData(String &str, size_t len=0)SX126x
readData(uint8_t *data, size_t len)=0SX126x
PhysicalLayer::readData(String &str, size_t len=0)PhysicalLayer
receive(uint8_t *data, size_t len) overrideSX126xvirtual
receive(String &str, size_t len=0)SX126x
receive(uint8_t *data, size_t len)=0SX126x
PhysicalLayer::receive(String &str, size_t len=0)PhysicalLayer
receiveDirect() overrideSX126xvirtual
reset(bool verify=true)SX126x
scanChannel()SX126x
setBandwidth(float bw)LLCC68
setBitRate(float br)SX126x
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
setCurrentLimit(float currentLimit)SX126x
setDataShaping(uint8_t sh) overrideSX126xvirtual
setDio1Action(void(*func)(void))SX126x
setDio2AsRfSwitch(bool enable=true)SX126x
setDirectAction(void(*func)(void))SX126xvirtual
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
startDirect()PhysicalLayer
startReceive(uint32_t timeout=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=SX126X_MAX_PACKET_LENGTH)SX126x
+
+ + + + diff --git a/class_l_l_c_c68.html b/class_l_l_c_c68.html index 10ca8535..1da3bd1b 100644 --- a/class_l_l_c_c68.html +++ b/class_l_l_c_c68.html @@ -82,19 +82,400 @@ $(document).ready(function(){initNavTree('class_l_l_c_c68.html',''); initResizab
+
LLCC68 Class Reference
-

Only exists as alias for SX1268, since there seems to be no difference between SX1268 and LLCC68 modules. +

Derived class for LLCC68 modules. More...

-

#include <SX1268.h>

+

#include <LLCC68.h>

+
+Inheritance diagram for LLCC68:
+
+
+ + +SX1262 +SX126x +PhysicalLayer + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 LLCC68 (Module *mod)
 Default constructor. More...
 
int16_t setBandwidth (float bw)
 Sets LoRa bandwidth. Allowed values are 125.0, 250.0 and 500.0 kHz. More...
 
int16_t setSpreadingFactor (uint8_t sf)
 Sets LoRa spreading factor. Allowed values range from 5 to 11, depending on currently set spreading factor. More...
 
- Public Member Functions inherited from SX1262
 SX1262 (Module *mod)
 Default constructor. More...
 
int16_t begin (float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=SX126X_SYNC_WORD_PRIVATE, int8_t power=10, uint16_t preambleLength=8, float tcxoVoltage=1.6, bool useRegulatorLDO=false)
 Initialization method for LoRa modem. More...
 
int16_t beginFSK (float freq=434.0, float br=48.0, float freqDev=50.0, float rxBw=156.2, int8_t power=10, uint16_t preambleLength=16, float tcxoVoltage=1.6, bool useRegulatorLDO=false)
 Initialization method for FSK modem. More...
 
int16_t setFrequency (float freq, bool calibrate=true)
 Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. More...
 
int16_t setOutputPower (int8_t power)
 Sets output power. Allowed values are in range from -17 to 22 dBm. More...
 
- Public Member Functions inherited from SX126x
 SX126x (Module *mod)
 Default constructor. More...
 
int16_t begin (float bw, uint8_t sf, uint8_t cr, uint8_t syncWord, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO=false)
 Initialization method for LoRa modem. More...
 
int16_t beginFSK (float br, float freqDev, float rxBw, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO=false)
 Initialization method for FSK modem. More...
 
int16_t reset (bool verify=true)
 Reset method. Will reset the chip to the default state using RST pin. More...
 
int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0) override
 Blocking binary transmit method. Overloads for string-based transmissions are implemented in PhysicalLayer. More...
 
int16_t receive (uint8_t *data, size_t len) override
 Blocking binary receive method. Overloads for string-based transmissions are implemented in PhysicalLayer. More...
 
int16_t transmitDirect (uint32_t frf=0) override
 Starts direct mode transmission. More...
 
int16_t receiveDirect () override
 Starts direct mode reception. Only implemented for PhysicalLayer compatibility, as SX126x series does not support direct mode reception. Will always return ERR_UNKNOWN. More...
 
int16_t scanChannel ()
 Performs scan for LoRa transmission in the current channel. Detects both preamble and payload. More...
 
int16_t sleep (bool retainConfig=true)
 Sets the module to sleep mode. More...
 
int16_t standby () override
 Sets the module to standby mode (overload for PhysicalLayer compatibility, uses 13 MHz RC oscillator). More...
 
int16_t standby (uint8_t mode)
 Sets the module to standby mode. More...
 
void setDio1Action (void(*func)(void))
 Sets interrupt service routine to call when DIO1 activates. More...
 
+void clearDio1Action ()
 Clears interrupt service routine to call when DIO1 activates.
 
int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0) override
 Interrupt-driven binary transmit method. Overloads for string-based transmissions are implemented in PhysicalLayer. More...
 
int16_t startReceive (uint32_t timeout=SX126X_RX_TIMEOUT_INF)
 Interrupt-driven receive method. DIO1 will be activated when full packet is received. More...
 
int16_t startReceiveDutyCycle (uint32_t rxPeriod, uint32_t sleepPeriod)
 Interrupt-driven receive method where the device mostly sleeps and periodically wakes to listen. Note that this function assumes the unit will take 500us + TCXO_delay to change state. See datasheet section 13.1.7, version 1.2. More...
 
int16_t startReceiveDutyCycleAuto (uint16_t senderPreambleLength=0, uint16_t minSymbols=8)
 Calls startReceiveDutyCycle with rxPeriod and sleepPeriod set so the unit shouldn't miss any messages. More...
 
int16_t readData (uint8_t *data, size_t len) override
 Reads data received after calling startReceive method. More...
 
int16_t setBandwidth (float bw)
 Sets LoRa bandwidth. Allowed values are 7.8, 10.4, 15.6, 20.8, 31.25, 41.7, 62.5, 125.0, 250.0 and 500.0 kHz. More...
 
int16_t setSpreadingFactor (uint8_t sf)
 Sets LoRa spreading factor. Allowed values range from 5 to 12. More...
 
int16_t setCodingRate (uint8_t cr)
 Sets LoRa coding rate denominator. Allowed values range from 5 to 8. More...
 
int16_t setSyncWord (uint8_t syncWord, uint8_t controlBits=0x44)
 Sets LoRa sync word. More...
 
int16_t setCurrentLimit (float currentLimit)
 Sets current protection limit. Can be set in 0.25 mA steps. More...
 
float getCurrentLimit ()
 Reads current protection limit. More...
 
int16_t setPreambleLength (uint16_t preambleLength)
 Sets preamble length for LoRa or FSK modem. Allowed values range from 1 to 65535. More...
 
int16_t setFrequencyDeviation (float freqDev) override
 Sets FSK frequency deviation. Allowed values range from 0.0 to 200.0 kHz. More...
 
int16_t setBitRate (float br)
 Sets FSK bit rate. Allowed values range from 0.6 to 300.0 kbps. More...
 
int16_t setRxBandwidth (float rxBw)
 Sets FSK receiver bandwidth. Allowed values are 4.8, 5.8, 7.3, 9.7, 11.7, 14.6, 19.5, 23.4, 29.3, 39.0, 46.9, 58.6, 78.2, 93.8, 117.3, 156.2, 187.2, 234.3, 312.0, 373.6 and 467.0 kHz. More...
 
int16_t setDataShaping (uint8_t sh) override
 Sets time-bandwidth product of Gaussian filter applied for shaping. Allowed values are RADIOLIB_SHAPING_0_3, RADIOLIB_SHAPING_0_5, RADIOLIB_SHAPING_0_7 or RADIOLIB_SHAPING_1_0. Set to RADIOLIB_SHAPING_NONE to disable data shaping. More...
 
int16_t setSyncWord (uint8_t *syncWord, uint8_t len)
 Sets FSK sync word in the form of array of up to 8 bytes. More...
 
int16_t setSyncBits (uint8_t *syncWord, uint8_t bitsLen)
 Sets FSK sync word in the form of array of up to 8 bytes. More...
 
int16_t setNodeAddress (uint8_t nodeAddr)
 Sets node address. Calling this method will also enable address filtering for node address only. More...
 
int16_t setBroadcastAddress (uint8_t broadAddr)
 Sets broadcast address. Calling this method will also enable address filtering for node and broadcast address. More...
 
int16_t disableAddressFiltering ()
 Disables address filtering. Calling this method will also erase previously set addresses. More...
 
int16_t setCRC (uint8_t len, uint16_t initial=0x1D0F, uint16_t polynomial=0x1021, bool inverted=true)
 Sets CRC configuration. More...
 
int16_t setWhitening (bool enabled, uint16_t initial=0x0100)
 Sets FSK whitening parameters. More...
 
int16_t setTCXO (float voltage, uint32_t delay=5000)
 Sets TCXO (Temperature Compensated Crystal Oscillator) configuration. More...
 
int16_t setDio2AsRfSwitch (bool enable=true)
 Set DIO2 to function as RF switch (default in Semtech example designs). More...
 
float getDataRate () const
 Gets effective data rate for the last transmitted packet. The value is calculated only for payload bytes. More...
 
float getRSSI ()
 Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. More...
 
float getSNR ()
 Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem. More...
 
size_t getPacketLength (bool update=true) override
 Query modem for the packet length of received payload. More...
 
int16_t fixedPacketLengthMode (uint8_t len=SX126X_MAX_PACKET_LENGTH)
 Set modem in fixed packet length mode. Available in FSK mode only. More...
 
int16_t variablePacketLengthMode (uint8_t maxLen=SX126X_MAX_PACKET_LENGTH)
 Set modem in variable packet length mode. Available in FSK mode only. More...
 
uint32_t getTimeOnAir (size_t len)
 Get expected time-on-air for a given size of payload. More...
 
float getRSSIInst ()
 Get instantaneous RSSI value during recption of the packet. Should switch to FSK receive mode for LBT implementation. More...
 
int16_t implicitHeader (size_t len)
 Set implicit header mode for future reception/transmission. More...
 
int16_t explicitHeader ()
 Set explicit header mode for future reception/transmission. More...
 
int16_t setRegulatorLDO ()
 Set regulator mode to LDO. More...
 
int16_t setRegulatorDCDC ()
 Set regulator mode to DC-DC. More...
 
int16_t setEncoding (uint8_t encoding) override
 Sets transmission encoding. Available in FSK mode only. Serves only as alias for PhysicalLayer compatibility. More...
 
void setRfSwitchPins (RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)
 Some modules contain external RF switch controlled by two pins. This function gives RadioLib control over those two pins to automatically switch Rx and Tx state. When using automatic RF switch control, DO NOT change the pin mode of rxEn or txEn from Arduino sketch! More...
 
int16_t forceLDRO (bool enable)
 Forces LoRa low data rate optimization. Only available in LoRa mode. After calling this method, LDRO will always be set to the provided value, regardless of symbol length. To re-enable automatic LDRO configuration, call SX126x::autoLDRO() More...
 
int16_t autoLDRO ()
 Re-enables automatic LDRO configuration. Only available in LoRa mode. After calling this method, LDRO will be enabled automatically when symbol length exceeds 16 ms. More...
 
uint8_t random ()
 Get one truly random byte from RSSI noise. More...
 
void setDirectAction (void(*func)(void))
 Dummy method, to ensure PhysicalLayer compatibility. More...
 
void readBit (RADIOLIB_PIN_TYPE pin)
 Dummy method, to ensure PhysicalLayer compatibility. More...
 
int16_t transmit (__FlashStringHelper *fstr, uint8_t addr=0)
 Arduino Flash String transmit method. More...
 
int16_t transmit (String &str, uint8_t addr=0)
 Arduino String transmit method. More...
 
int16_t transmit (const char *str, uint8_t addr=0)
 C-string transmit method. More...
 
virtual int16_t transmit (uint8_t *data, size_t len, uint8_t addr=0)=0
 Binary transmit method. Must be implemented in module class. More...
 
int16_t receive (String &str, size_t len=0)
 Arduino String receive method. More...
 
virtual int16_t receive (uint8_t *data, size_t len)=0
 Binary receive method. Must be implemented in module class. More...
 
int16_t startTransmit (String &str, uint8_t addr=0)
 Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
 
int16_t startTransmit (const char *str, uint8_t addr=0)
 Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
 
virtual int16_t startTransmit (uint8_t *data, size_t len, uint8_t addr=0)=0
 Interrupt-driven binary transmit method. More...
 
int16_t readData (String &str, size_t len=0)
 Reads data that was received after calling startReceive method. More...
 
virtual int16_t readData (uint8_t *data, size_t len)=0
 Reads data that was received after calling startReceive method. More...
 
- Public Member Functions inherited from PhysicalLayer
 PhysicalLayer (float freqStep, size_t maxPacketLength)
 Default constructor. More...
 
int16_t transmit (__FlashStringHelper *fstr, uint8_t addr=0)
 Arduino Flash String transmit method. More...
 
int16_t transmit (String &str, uint8_t addr=0)
 Arduino String transmit method. More...
 
int16_t transmit (const char *str, uint8_t addr=0)
 C-string transmit method. More...
 
int16_t receive (String &str, size_t len=0)
 Arduino String receive method. More...
 
int16_t startTransmit (String &str, uint8_t addr=0)
 Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
 
int16_t startTransmit (const char *str, uint8_t addr=0)
 Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
 
int16_t readData (String &str, size_t len=0)
 Reads data that was received after calling startReceive method. More...
 
float getFreqStep () const
 Gets the module frequency step size that was set in constructor. More...
 
int32_t random (int32_t max)
 Get truly random number in range 0 - max. More...
 
int32_t random (int32_t min, int32_t max)
 Get truly random number in range min - max. More...
 
int16_t startDirect ()
 Configure module parameters for direct modes. Must be called prior to "ham" modes like RTTY or AX.25. Only available in FSK mode. More...
 
int16_t setDirectSyncWord (uint32_t syncWord, uint8_t len)
 Set sync word to be used to determine start of packet in direct reception mode. More...
 
int16_t available ()
 Get the number of direct mode bytes currently available in buffer. More...
 
uint8_t read ()
 Get data from direct mode buffer. More...
 

Detailed Description

-

Only exists as alias for SX1268, since there seems to be no difference between SX1268 and LLCC68 modules.

-

The documentation for this class was generated from the following file:
diff --git a/class_l_l_c_c68.js b/class_l_l_c_c68.js new file mode 100644 index 00000000..71b73f2c --- /dev/null +++ b/class_l_l_c_c68.js @@ -0,0 +1,6 @@ +var class_l_l_c_c68 = +[ + [ "LLCC68", "class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261", null ], + [ "setBandwidth", "class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf", null ], + [ "setSpreadingFactor", "class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4", null ] +]; \ No newline at end of file diff --git a/class_l_l_c_c68.png b/class_l_l_c_c68.png new file mode 100644 index 0000000000000000000000000000000000000000..e8dbbd273382cae6c42595143140e8696da71ceb GIT binary patch literal 764 zcmeAS@N?(olHy`uVBq!ia0vp^u|Rx)gBeH$hR@FdQW60^A+G=b{|7Q(y!l$%e`o@b z1;z&s9ANFdBM;3gGE>fZT+`Sq8uqJwp&?|c7V+I~Oy-IX(ELnak)UwL`<*5>=KmNwNH z{Jrpx@8`n5x}W~APg9w$zkT*hSH=%4$_^3>zZLdeX}_gjxxnt)zpJK`%NV9_VXjyr zdqDXugIp&22M_B8_gjoMbtm)E#Msn49hbyTvaw5-UzVLWt-WaWV_#)Y_c=GZ*Kddt zf7Pve^7+KQwa)Ulay=)R%}HOj<60c=ou;#TDw*ehuDthm?bezPw$|z|D?^N5pWD6t z%5Uy(cUOLkT$lMXI8ELF@*R!-r zjqR5E@>MdAckcbcwK{Jhka=FY`gfb%6^;K%^Y?9C6IX3oz@4{f(v{-6Rky#seQa}0 zrcLE-1<;+p-syg=oApKAf9wBi&q7pBK283%xN834tq$+~Cv8#wpRRIJ`R$}9AD@;P zZ`NR#m%zfIe8sMB;;(?;D*RWD-`c+`4d}Q@aK|CS^tk@b_C$$82@D)cz;K?wY5hl| z8tukym(3Zh^=^v?Uyl5(%Ch0r6 literal 0 HcmV?d00001 diff --git a/class_physical_layer.html b/class_physical_layer.html index ba48c0bd..cfa8ad3f 100644 --- a/class_physical_layer.html +++ b/class_physical_layer.html @@ -116,7 +116,8 @@ Inheritance diagram for PhysicalLayer: SX1281 Si4430 Si4431 -SX1261 +LLCC68 +SX1261 SX1273 RFM95 RFM96 diff --git a/class_physical_layer.png b/class_physical_layer.png index 82d2620c48fca085bf94bac8111aba370556b9dc..d7369f5487a6ae5b5b1da3923ab6a17fd838b9df 100644 GIT binary patch literal 6325 zcmeHMdsLHGwnw?dmY371B2AFot_G!oKvV)LFBOqSdHF)#4?pD{BA`6v5z(r$QuG7C=f(I9swfcb#No}Z8I0I%&M?AvoRdCiP)F#eUThD*nd z(QQgqZfVy`V`_h8A@=kGUp?$68(KQW8?|pHr>3U*>uuPup}x@C?ge-Ep2p}XsHmtY z;QR${F@QJPcH&`8Svg{FC6X5_7smBg-H?vk@K zG7?b@x{>ThmYiMgU1^@lu#t*&4tpSryhV9uX?YWd^|Xqc=1{=E6C-dH-3>$S^yS6J-#a&MaDe9I`PB{GJAq!>Ks>Ixt5ghc47;X zq1q`zqsh_%ykg$VB8u1Z2U)E`fhVwcl4*>y4YitCSg^45!?Z4WY$2DiBnWzcPn-G_VI$u4qtepJZDdy~i;+oOjbCHYAhfUy9GWce z3vs5bgyQJZBh-L%b6i~(UE-+dTBizvG8|Q^VH%?w(?ZNfNmhc4*t%@glonE=K-zmj zj+-eM)}l6LB~pv+Xn_{7H(ByM8oiv-q6{K0 zaEEA$(6{J5a?nLRYjN{{eLD0N*ldqe)S>9cm!8yAhZ(C1_g{idiOIjG_Q`y;Po}7S z@}}A+^GpB755%5ON#w2Gc-&N@S({ zJD=BZJ8%sRAj(n|cFw+btyOER)GT}HU=s)D(6_c;J~OS&aU<%Ml~Xb&IyRp7RhsvZ z%zG{MGzS+0bmkVA3^R?LRoDtP4splzxQ2N3{*7}hsD%KX7m}Wh=TiiRKEWu>_IqX; zlFDC%BB79UqOSe5#~QpYE@xF>m~0Ge0KoSb8~%bmXS71@;1IoiT#n?mHpl)KGya?6 z7XaB52p^I9CmBi9h4t=juZj?^t?)u=O3qwt-0L8(@M3Dz-;K5Md60!Rcw=z>c()!x zXKAi!uW;?$mDHWD=5DHaHy6`lFAO0(^+M%hbim0RQ=3hu z@;bI(hX)8dJZ*g5%k3rV#`N?>FD*~ZD;MXR=IPR@a8Fq_VWDM6Z#m`Lrt^8uCM|mY zf)I(pOx=fVewFUJ66ISZo)EjL07l9?S(#bValg&SCn6g5qxC&Sn^pM~0A;i2l9PkcN+|N$I%T};j7TK~2-0~B z(kC}1T^{H}$U-}m0rI%L3Mx!19JjN*R;WF47qND&G$EPAf@NaB2c!JS@#3Hy}4f zC;An}Q3mLj8SH=z%dIVW)m4pb|H`J5?1C55F0we($cEu~y}y3rke`vGd&DQ8s7@ZEH~Vth7^Oe06});G!P*X&;}`GE3CYV62M z;`dk^#|FSwW~fNsbG?JqcCJ3~>ZX;|xduhbkWY!Um0Ye;B<+J@ubx3p#r%k2{Z*xJ zHg0w}jTz(o6<*m{%fKtWsY8pW{fmIMHDW-0%Ep^GAF8}S6kHj*#^*IFOmk{d?dZ8D zb7C_wz7K$4N^K+cWHAsnh=M{Ms>1_@EdT$62LO}C0xyK+E(r|#zgGtp;M&&)UxEP| zCchN8s#>lXhp7Hu9W9Rt@K>j?9B{gy-iEU9b)NSa znU`uKyeh85TJ@LU5U>FU6YIijx8Bw>?{>L(;TZ6E9B^$A+Wrd@Irbe6lQAL17RU`{ zcTu|40Lx&TXcM)c{=IxbrygRk8-N3F{R1|JF-K6EaFBcsg2bJu3!;Zp@{96+f8luP z_I!BThoC72Xxt*%0J=aA-OEO3J***LG-)}Y%o?R)%}a~-e}%@*zBxq;JGW2H&0?`U`w!h z^fT667cq5Akc|^hxkN)Dn%3E1bDm6+Z*{AOAKk%c`&%~n?>k#IG0X9giRZqR4Wu}yyp7EG#KG-a>6ev#y=q8>`HZH-2^KF_o zP32?q5axa;O;p9;Ok&c?^5A&oBS-d6%btu_nbYPxVJx$*StX=NEQci*anSs6%VMvTGzCk;+%{1;-UG596oC*bgBD3j-k!8f#pWX%E2Z8|jM)krnTs(?83xCC0IXeKeIOA~(TLqYZcW8h z03VW;UPCYUEt3j^4^mMe>u*0Y&>*L^T>bFb326BE%6~i(Ipd9}<2@rpnKpn(&)0)s}-YpL=C~b>z;)-Ol$^j>? zc}j?X1dDn=%dQg0H84GHb9FE^E%YD-e@uL0ZB~lWmR>FfuaGV)ZOM)@_DaneV8Tin z{Ej!IFFIDrwvT~w$O|sf9;#|AA%3#LBHTtXyL$WPoLq=ub#gfg{WFPmb!oCTvcMZ1 zd{S2G>$*TkGC(v--^Jsa8C8Q)H4F``j#|RJy8ZE#@B8|9GWFDfyFt)_PzzZ@MC$u;2?^^zEQJ z9uGs*F;V>q@Rtr;`xQ*f_udnBavaeOB!oZ;1ZjN@d>M`aoDR4;C;+6536)qlf7G;m z48-y9?HSYsHuV8V4;*qKO>aqRdWS12hlE17cwt)8 z`5SeRUlm3EWjaYVVQ|EFf$G$Qw%7g)I$8dlm5(;YKxm6D8fl{$Tf z3uGh36cX>rHdnMY{_KQeavEIe;c`)!XexhAU_5iI=#A+Y;_=&nlG$uk6?XZ=pR*m9Kv~6<~2iq6C*HEv@!QH7lHgEdChp zod+FKtBkj+X%Q6d_2EXVOg{2P7`C{(<6j7QzH)&~Irt9Y#XP^;%DErXvL zllrV#@+a^~Y^~Z0dE8j3-X6TQ1nxIiAApwEq}1_RW?o@hs^EH}u>jnKh2yQBct`P09ks9sM3@pB-)o1X zQhz4d?&#PVz-bpQY^s3IoYir2v}=&=3KN1FEAC@uIrV|Z#-G}TTT%n$edE+3AJjse7Pvf1O7yBrqtI5JDRmNuUC_XmR9-X6hQa}_4L-izqsFc h(y30iHp$l=I<@wG+c)!r;C~Dn1Q(BekN1XL_%AbV+6Vvu literal 6207 zcmeHLdsNcdzQ;&xmD=r|rW91xEU}s%8m6de+S4wTkLhJ&nigY*im3QXNwTIqoenzT zQ81s?s8d>6nuaOht?)RaSmYC5jfi1BP%=aW?*7r7n(k@NS?iuZ?m6pT)?&f_{l5FV z_x?UU-|zlh@%7$ovJ|-#27{U4|6}(-7;G^C1~VvH0tZiAocynXA2Z(rhxh1oI`H@P z_-tIpe|``C>AyT4&+tkg8Vr}j9`rs0147WJ?gB6oei3#TICq+=WMX*)~M$NubiK9)40BsPsQL9R#a3pG*aG^ibE`2dg2fYZfIy| z{SfQx>$~~juLmzUa56fB{6Id^txo+$b%p?@Ia(sCDlJLID_5@Uds~bpqdlzhQ|1=v zPf~ZeryJR(gzMrV6&12NY@x}I@-6?Xulx+_w6kw&s=+Sh z*Ha<{_t%!L<~mA`hC^qGql#FX)LH^gtCn#~bxAYYC!@(aOJ~h|k4_9NTQ+|WzDymZ z=n_Lpy#`~0cc0Sh|9aQh<~4`G$>obX$G7Wuew&_p;lhP$(Cc+(pA2LZ6B8syAnYr@ zYY7an()a~XzN2yb<3MZ3hQrYAd^fizpF)~LlS}lP?)(3>rcc!VodJ3x{&C>1zWpt! z9euJ5>=vFV@t#Sds)apc`c|5Dsn;wKNjiXnE2^=T92}xx??1ucrWcm165@5Tlb6UL zh^Z{EkT(v1Bp6wHZwaVU$aV%v4g+$0PYLTzXl!HTY~Ip_hfp zDWww$jBj&rC3HOF?B`xcOZoK;9`{nZxzWx^DVy>4Hq~$N=v2*B>k5<}c@->7?Z#u$ z$2RF3Y?_^2Bx|~AA)M?W9b4tasL|0l zq=OZsd?ZCvteYOCxiKWJ%TSbtr$hX_>~7si+V7n6NBXK#N%Qe=TW-JY^1uMulrnf1 zT{RNHX*Xi=4oE_d1UA~MyN1BMX2H}-8^O+?eT_8NyVzZ1^kSk&tu~V5rxES32MtqC~~4P z1kd@^Sp0(nC=nmi>;`f#6VpuCNcNk^qwu zKdKY)dGi2xtojXDrS#O_FiCWw((^ydeztx-iERBjXN7uCvT*~ z>TmwDJa$V1E>gvd9K00$=gc2nghn+SA~cR$Tp*7K-gXF}8ZXZR3nK(QadUG#k!a)~K1OsI5g{$n#O|cv zNT`-^T3@$)lu<$*dFYj<-jB(g|G7QR0w5WKZ?U?U_FC0w6fRKa#>cPHrTA&<1gu_nnam4!|d z!woxfafBT9-~tVuI>H%vemk_o^-o=8e`BSTVl zA3%dVio;b64xpWCWW#b=lTMwmn-EzZ>;ER=8HOFQ3yvd;QrvEQlZ%_`U8pAQ%68Gd zs0*bm+{LhEuRM!D-7}Daz|b~kBR1l-ts1Ah*05#Ux_Wp?e>+U>{39{;$>esC<7t3E zn-YQ$lfe)a1wz9wAC*BEwY@PZUha^DtMqj;S$g!j!9@~?U?@z#txYZoe^HfssgCGd z`3F<82+(qZV6L>8@{?S-hZiDNjg{n;ohVs(GEhg5Eow~xN7$?ZPs(N&D!yHl>P%z!`Z+U@57!{wl z;#i2NXei;0qcripvP&~QRLKt*xICI>JK)Vgy>E@ed@?0hSCa%n>vld**8^IQ^p{=y z1!dds`4*kdEnP=?@0Hl%ZAm|3xp}QJt9fl~O+QPt(IQf#+{>U6cuS}or^S^ZP#(k~ zDPhfBcJ~H3{!-I!;?u}}I%wYZ5(UCg%4~iuJqvu`=ht)P#x3JuT*6CW%wSlA6n}2XnK8OPkmSZq}hFtTKg;6=>h8Fi^O zrJkS*fTUF&>IPcIibnyzdeqv~KucTk$p2T5p3#)rdF!YKpy{2`09+OPTl$%)uHXvc zZ?dpwFKp@2=~07=7xs3oIDg>?*hq2Q;-cU$EH@_-Ee-TYaRPJJ%+P$5-9QupxMOz+XZ&=Fxsvse2XGploW}`z4+O`Y_6|Vr=1-Sc_VbXh1mJVQ^9X zO)*wYi!^RLiAd3w$RLRdY|{_pqZ125J|ZCCI$4-duG zV+X0jvL^oc2j!($bvD)eWyk8SlM4(93X(a3R7^Y5+|?YF+uK468yrG-@-E+kQ|5gR z^rIJ#5(PPmligen@(PCi0$M~o5l@>rL@+f!i!Kw|J6H3lR?cebgS+eNTe4X8ar00I|C z0D^x*Bm}CdzEMUrvH)uTA#USq4I5$=e4~nglb85A1j1*zjQ`C!+CJ!x(*aQ@x8{=p ze%L^Kl3O)IM=kXX12j`n@DHC1z?j9a9 z*48BIDZ{YeKR$jN%lw+{{C0nkp5{p$MrGFS@)$6+aj|p`7fg3CBzmT6Iq4EVZ$0JK zrnJ(GAQjI3{XUK$DX;$=5@7oW#Wc9d7#a$R;9{bci1`5+Nx5y)O+5)EiI=aYMG9n~ z!GI*FdeFVb%y<$SqM}~I1VMb7y#44I0HV3jS*-ja!O!w+pO9|93^WZ`P|?F7Dr)cS zC`2>uXw3S=CjZKVc?tnsYmY(($rzi0dK0}(+do6P{Sv50&j`fo;bEEL*>qvXusUI| zQ0ar8IRe>qIf+V0KjJd~$L8Cvem?jZ{fxAlg9O`KG10G;PxY$1`A%!dX^HiLU6Pp) zXqHbHH!V!Bg*;yW{~rHux%)m&|8b8ih4>gfSN#`%mji#JeL^cf}T zz;op1_K@=o$yI1otKK=jWTHL2cGn(nBRvinY;ces&Own}+#4D^7?SMwQtRnG36hCB z>zU77)L%9~qy2{OmvW{@`FW;#qTE@dBz-pHuXD(M$@ss)tbZ=!^#sr45Us^&JiOn+ SPYKw57=DlU?t43fFZ>r=pnUxR diff --git a/class_s_x1262.html b/class_s_x1262.html index 3f02370c..8e72fe06 100644 --- a/class_s_x1262.html +++ b/class_s_x1262.html @@ -100,9 +100,10 @@ Inheritance diagram for SX1262:
-SX126x -PhysicalLayer -SX1261 +SX126x +PhysicalLayer +LLCC68 +SX1261
diff --git a/class_s_x1262.png b/class_s_x1262.png index dee8ac37e6e91ceea170b541688f4d388630459d..a2429c8bba6c110e10b146f127ca6084f426ed3d 100644 GIT binary patch literal 1055 zcmeAS@N?(olHy`uVBq!ia0vp^M}YVM2Q!e&d1>Phq$C1-LR|m<{|{uoc=NTi|Ih>= z3ycpOIKbL@M;^%KC<*clW&kPzfvcxNj2IZ0*Lk`)hEy=Vo%{OSD+K}9aC6W5|0nj} zl8$)#!8P-E+Uzw=%F`lK7t}NU^YYRxWq!ahNu~6V5X0ICr%757Obez)Che$yw^qe= zWA|OA^~XGe4n7pB_te{WWS0W}wsR&)oH|0ce?49NY`*{G8A5l0YX8k+-S*~mT9AFE z|CC7EaDT;#f9H75iS%nd5@Wafm8NRffzK}sHXVt&_I}lJo->C(&pt9SbmnBmp zwjJ)i{Bq)lD9io>W;Va`8_dftcR#Q{e16)Gw!=4t;tMVI&rx|9tiyPrOI2lMlPW`$ zr{>Z;h9k)=KT6jr81{*8*wJ+4?8EQ6dWsJ(b1JY+W9Vp5Wl&1sY~YAsQeeWzUBIuo z^a^i-vd5$=oZbvuk~lqA0kwtQ^XA!pe(%hEYo=G*WUIWCeeS&`bN!i<{yBA%zRXe( z+UX&AOLu~bt>B_L*QPwbCsx6-*>vI(TSc>Pizce?xBItriI%D8lag7dmrl63?xSj% z^zJ*1(YmgB%hfvNZ`{zoFZ}&O)uXoQ6PBFcz~Z1iZNd_+X$%=hg(ig@1P1?-DM988 zj|`dqScOlJIL;jrn;CwzFxBEam;;Br8SK@g~qMTb#<5g+$Ld!j^J9)pbI z`A%@qF@R(ByYSiLr%fId&fR@^Ww058^||R0m*Zw`o~I$*VC$$-G|_0vU;Pb7-kx0V z{0!u=`HL7-f&MC<_4E4g{F`o!Hw1zHx~!A3ExXkD$ekNcC!aSnJKzm8|I~btx5^&r z-DfEK(aQ^rDzJT`-V7liPhOuO(U$mv)xpNCA^tg+(BlfmZf%b{GIjSK2?^QFWk^De ztbOM!`W_21lssN=Jd3kI3m7_wg&0DCwzR1-tOBM@UZANPSsbLNF{}^@QCd3XmSnKk z%DIb|c}}|08RIm`DiIiuz_`qM{7A_8;vK8){uec+J#Sr9F}$C@@2A=G%YW~mzofVE zUhT^>e{<_Rs}{K~+VQd3@@LVkQ;V~v-4J_n^!{&-sZkz5ql9xQ)vp)FIfy*yf3tj$cYkqvc z`m|2_Du0hl%jf(%Hf@Rj#uk;WFqa($#`aT-&M85!T-7E9dF}nd&VIyi;gN&?W&?9G NgQu&X%Q~loCIFJ3)G7b~ delta 754 zcmbQwF^^5LGr-TCmrII^fq{Y7)59eQNXG*40S;y$85ll4XQHB2J=0oG7srqa#e<#&o0o%3J6U3tx8a)YPZ!NT9t#+wZcJh_zKPI~gu`&;6!WpR_r zWRkWwnEOq#TJ?8kWd4oQ>SwOZPCX)a5 zR>`XR^RBJCXTE%st;W~+;%#g~eY{lqw@JG;yL@RZt?}FXS^6D!!&Whw)d0IU_ z6j#%FbytA+G?n?)-^yC;N`9z#-YT3s^HJ3MtOP!@ctub5b^fKFw_n@zP}f@g<<4;9 z*VD^aU-`!S`(em$o$FinOqtpK=KY*i(eHzIh`e}R=2_Lh#e0(bE!C6CckNenzv<_=jrYIpk`G}nE)ZvZvD5DA-#_09 ztFFti9cZjJ-F)tS*vhx5m*(4Cty_O~CDV?YGj(C_PtU&}w&1q#f%?Wj^BF$?Ej~W| zc6*}4B8G}4L4}@x-xhAKoZp&PF0i}y@2ctKGKT3WAqjQpze#t`yeV`u-hBL^ie?AU zx5uBqIsA6kuBQu4g7>_Gkr&pL)0bTL+^tf%BzBU`p|@#ifq$6w WgDqc)o|_6v&
-PhysicalLayer -SX1262 -SX1268 -SX1261 +PhysicalLayer +SX1262 +SX1268 +LLCC68 +SX1261
diff --git a/class_s_x126x.png b/class_s_x126x.png index 84c4e00dc8742f5aebb39e17ac1d3a9e47859d4a..b09d2fc6f1d9bbb36d0feb7c53e415b5ec439a64 100644 GIT binary patch literal 1148 zcmeAS@N?(olHy`uVBq!ia0vp^-+}l52Q!d-ugh8jq$C1-LR|m<{|{uoc=NTi|Ih>= z3ycpOIKbL@M;^%KC<*clW&kPzfvcxNj2IYLxIJAQLn;{G&dr^^Sb@iFJ^%9$|LZ?( z`^uYTeY)>Zljr%EtuJQW5jqs!Al4$_WXfQr>Jg-RM|y$&o#;vHj_zgrmGp7my!p=~ zC*8B?v1PNfRri!suK3@5UU%>I%=(S-XZ+VNul^pV`ZD$KI0v_49P0_RH%B{#AV1?_A*>Gs`e%Dj|>v+Cf>SQIVot?iLhC(Q)|Q8Z{Pm?Z`xlqPxf`vsxQAITnTim_~UyFtuwyzDYitJ@G}QAb0i2XzGrw##QfFY3uc;m zS8xBeYyc)_M`8Lus~f(^$DIJ0tS;5Fe(_oe*~Icl*FMp<+2TrgQVjmt%+6M z;2a|GecF=j!uN%HmcRM3qoQV0_a7Bc_O3nCzw7GXPu{opfAy4A_oAI%A1&IuT*oti zN=3SU-Nql!66=1HW>>wx{O{qv%J+YKUtTcWpz_q@+rBmDzMIQs=kQ+c|866>{JFK^ z`D<5pFiSKM0N7j^cC|+3vjAf;N3{h*7gIUd|9|IN@44$rjF6*2UngH=j BHEsX^ literal 1060 zcmeAS@N?(olHy`uVBq!ia0vp^M}YVM2Q!e&d1>Phq$C1-LR|m<{|{uoc=NTi|Ih>= z3ycpOIKbL@M;^%KC<*clW&kPzfvcxNj2IZ0H+#A`hEy=Vo%{CEY6Tv)>*~h${;ST9 z5?#1$&ll(3c_nGC%B^eI{&0WLOG}&0xPe{GQ(91nVQou`N+<_sLzr4;-VffjDz+QC z?lPVKlLp^G}u#jtQ#WbB@XTTdMIY`8{f< z*2t}1KH)^(b0PO>!HR}c&#$WT>Qwr$!&*jX;;CPuU#B##thVcr@4RL@(X*mT_;XRk zChNPxep8G2b?$EdZ}lU|yq4qNi@GgG^kw>{{pdXW@u`aEeIX>LojGI1d_dmzz|Eaa zF8AXPJmL~EZ~q(}GRh7S%N3>6A03^oEn400Tt4E(6l zH`>;{-gTDYMzgLu7tqg6ObeVm7`A+>T9jEWX?>^v^2;5sO>*pxdoS4{9Q;YSTmC@t z9FHeTsTp6J7~~29{Z^hX*~aqj;G4M&YYI1RNbj}z`Q^v+Nvn7sq?FG(wRA#c-#^tb z?%gqr-nx}~%hfuCb>1w$->EpKEatlq!+mgIvpBR)V8~EaVbE$}anO#vUOJocLBHIC zH!+Tj-s>k6vUbis{8Lv?QE<0#13#*-{><6;{+E#BWS{JukUE5t_6`P*Kq{)X8bmtsQ$@%762ot(eH? zTyxjsQkPn1ywB&NFD7wGQh7^qR5E?LkN7WJ*+1`mK-(t8{nLLG&+=Ez>sRTW%Da`v z^8Wu_bE200+%RX;$IpSmtY`XPetoc(dw1fj{`)Rr8;|Oo-e~p3diUk|mut4FoeKG^ zKEGGb)Bk5i;{G|$_D`+Y+Q|PfReR2QmCU2&_dAPb>5FYsscml72a@g{9zoJDCvtFl zuG%!eW#-MW6re|<89%U5CGy#fHNWjnz4hdDUHZ%(`4vJb#4&EV + + + + + + +RadioLib: src/modules/LLCC68 Directory Reference + + + + + + + + + + + + + +
+
+
+ + + + + +
+
RadioLib +
+
Universal wireless communication library for Arduino
+
+ + + + + + + + + +
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
LLCC68 Directory Reference
+
+
+
+
+ + + + diff --git a/dir_17a0c4358d096e2caf9f04fe2ab66c1d.js b/dir_17a0c4358d096e2caf9f04fe2ab66c1d.js new file mode 100644 index 00000000..7ab4a0a1 --- /dev/null +++ b/dir_17a0c4358d096e2caf9f04fe2ab66c1d.js @@ -0,0 +1,4 @@ +var dir_17a0c4358d096e2caf9f04fe2ab66c1d = +[ + [ "LLCC68.h", "_l_l_c_c68_8h_source.html", null ] +]; \ No newline at end of file diff --git a/dir_ddb4d7e95cc2d6c8e1ade10a20d7247d.js b/dir_ddb4d7e95cc2d6c8e1ade10a20d7247d.js index ba390e4a..046d58b7 100644 --- a/dir_ddb4d7e95cc2d6c8e1ade10a20d7247d.js +++ b/dir_ddb4d7e95cc2d6c8e1ade10a20d7247d.js @@ -4,6 +4,7 @@ var dir_ddb4d7e95cc2d6c8e1ade10a20d7247d = [ "ESP8266", "dir_ec8372b468150f98f42c73cf97f51298.html", "dir_ec8372b468150f98f42c73cf97f51298" ], [ "HC05", "dir_66baa0cb3ce3b01929266fe63d8714ed.html", "dir_66baa0cb3ce3b01929266fe63d8714ed" ], [ "JDY08", "dir_31c953e8b112b915d208fa745d66f12e.html", "dir_31c953e8b112b915d208fa745d66f12e" ], + [ "LLCC68", "dir_17a0c4358d096e2caf9f04fe2ab66c1d.html", "dir_17a0c4358d096e2caf9f04fe2ab66c1d" ], [ "nRF24", "dir_8d5439df06ea2679013aa8390703d116.html", "dir_8d5439df06ea2679013aa8390703d116" ], [ "RF69", "dir_3a277ada553fbb989028f9b071a02542.html", "dir_3a277ada553fbb989028f9b071a02542" ], [ "RFM2x", "dir_1496c164e9c77875dd570f4157f3157f.html", "dir_1496c164e9c77875dd570f4157f3157f" ], diff --git a/files.html b/files.html index 2aee46d9..19239c04 100644 --- a/files.html +++ b/files.html @@ -98,44 +98,46 @@ $(document).ready(function(){initNavTree('files.html',''); initResizable(); });  HC05.h   JDY08  JDY08.h -  nRF24 - nRF24.h -  RF69 - RF69.h -  RFM2x - RFM22.h - RFM23.h -  RFM9x - RFM95.h - RFM96.h - RFM97.h -  Si443x - Si4430.h - Si4431.h - Si4432.h - Si443x.h -  SX1231 - SX1231.h -  SX126x - SX1261.h - SX1262.h - SX1268.h - SX126x.h -  SX127x - SX1272.h - SX1273.h - SX1276.h - SX1277.h - SX1278.h - SX1279.h - SX127x.h -  SX128x - SX1280.h - SX1281.h - SX1282.h - SX128x.h -  XBee - XBee.h +  LLCC68 + LLCC68.h +  nRF24 + nRF24.h +  RF69 + RF69.h +  RFM2x + RFM22.h + RFM23.h +  RFM9x + RFM95.h + RFM96.h + RFM97.h +  Si443x + Si4430.h + Si4431.h + Si4432.h + Si443x.h +  SX1231 + SX1231.h +  SX126x + SX1261.h + SX1262.h + SX1268.h + SX126x.h +  SX127x + SX1272.h + SX1273.h + SX1276.h + SX1277.h + SX1278.h + SX1279.h + SX127x.h +  SX128x + SX1280.h + SX1281.h + SX1282.h + SX128x.h +  XBee + XBee.h   protocols   AFSK  AFSK.h diff --git a/functions_func_l.html b/functions_func_l.html index da749782..a561f65f 100644 --- a/functions_func_l.html +++ b/functions_func_l.html @@ -88,6 +88,9 @@ $(document).ready(function(){initNavTree('functions_func_l.html',''); initResiza
  • length() : ITA2String
  • +
  • LLCC68() +: LLCC68 +
  • diff --git a/functions_func_s.html b/functions_func_s.html index ad99ffc1..ea4f897f 100644 --- a/functions_func_s.html +++ b/functions_func_s.html @@ -128,7 +128,8 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza : nRF24
  • setBandwidth() -: SX126x +: LLCC68 +, SX126x , SX1272 , SX1278 , SX128x @@ -360,7 +361,8 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza : AX25Frame
  • setSpreadingFactor() -: RFM97 +: LLCC68 +, RFM97 , SX126x , SX1272 , SX1273 @@ -431,7 +433,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza : Module
  • SSTVClient() -: SSTVClient +: SSTVClient
  • standby() : CC1101 @@ -439,7 +441,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza , PhysicalLayer , RF69 , Si443x -, SX126x +, SX126x , SX127x , SX128x
  • @@ -470,7 +472,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
  • startTransmit() : CC1101 , nRF24 -, PhysicalLayer +, PhysicalLayer , RF69 , Si443x , SX126x diff --git a/functions_l.html b/functions_l.html index a238efa4..2cf59384 100644 --- a/functions_l.html +++ b/functions_l.html @@ -91,6 +91,9 @@ $(document).ready(function(){initNavTree('functions_l.html',''); initResizable()
  • length() : ITA2String
  • +
  • LLCC68() +: LLCC68 +
  • diff --git a/functions_s.html b/functions_s.html index f488a149..df6207a0 100644 --- a/functions_s.html +++ b/functions_s.html @@ -134,7 +134,8 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() : nRF24
  • setBandwidth() -: SX126x +: LLCC68 +, SX126x , SX1272 , SX1278 , SX128x @@ -366,7 +367,8 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() : AX25Frame
  • setSpreadingFactor() -: RFM97 +: LLCC68 +, RFM97 , SX126x , SX1272 , SX1273 @@ -381,9 +383,9 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() : CC1101 , RF69 , Si443x -, SX126x +, SX126x , SX127x -, SX128x +, SX128x
  • setTCXO() : SX126x @@ -449,7 +451,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() : AX25Frame
  • SSTVClient() -: SSTVClient +: SSTVClient
  • standby() : CC1101 @@ -459,7 +461,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() , Si443x , SX126x , SX127x -, SX128x +, SX128x
  • startDirect() : PhysicalLayer @@ -488,7 +490,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • startTransmit() : CC1101 , nRF24 -, PhysicalLayer +, PhysicalLayer , RF69 , Si443x , SX126x diff --git a/hierarchy.html b/hierarchy.html index 89de6d72..31e643c1 100644 --- a/hierarchy.html +++ b/hierarchy.html @@ -98,47 +98,47 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();  CJDY08Control class for JDY08 module. Most methods supported by this module are implemented in ISerial interface  CXBeeSerialXBee Serial interface. This class is used for XBees in transparent mode, i.e. when two XBees act as a "wireless UART"  CITA2StringITA2-encoded string - CLLCC68Only exists as alias for SX1268, since there seems to be no difference between SX1268 and LLCC68 modules - CModuleImplements all common low-level SPI/UART/I2C 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 - CMQTTClientClient for simple MQTT 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 - 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 - CTransportLayerProvides common interface for protocols that run on modules with Internet connectivity, such as HTTP or MQTT. Because this class is used mainly as interface, all of its virtual members must be implemented in the module class - CESP8266Control class for ESP8266 module. Implements TransportLayer methods - CXBeeControl class for XBee modules + CModuleImplements all common low-level SPI/UART/I2C 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 + CMQTTClientClient for simple MQTT 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 + CTransportLayerProvides common interface for protocols that run on modules with Internet connectivity, such as HTTP or MQTT. Because this class is used mainly as interface, all of its virtual members must be implemented in the module class + CESP8266Control class for ESP8266 module. Implements TransportLayer methods + CXBeeControl class for XBee modules diff --git a/hierarchy.js b/hierarchy.js index 0c3a3f71..63733d59 100644 --- a/hierarchy.js +++ b/hierarchy.js @@ -11,7 +11,6 @@ var hierarchy = [ "XBeeSerial", "class_x_bee_serial.html", null ] ] ], [ "ITA2String", "class_i_t_a2_string.html", null ], - [ "LLCC68", "class_l_l_c_c68.html", null ], [ "Module", "class_module.html", null ], [ "MorseClient", "class_morse_client.html", null ], [ "MQTTClient", "class_m_q_t_t_client.html", null ], @@ -29,6 +28,7 @@ var hierarchy = ] ], [ "SX126x", "class_s_x126x.html", [ [ "SX1262", "class_s_x1262.html", [ + [ "LLCC68", "class_l_l_c_c68.html", null ], [ "SX1261", "class_s_x1261.html", null ] ] ], [ "SX1268", "class_s_x1268.html", null ] diff --git a/navtreedata.js b/navtreedata.js index f94964ad..404f8270 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#a56456ade4eeffa2c566a6fc3fd098276", -"class_s_x126x.html#a7e342ddbef84cf845bef8f4448b8da10", -"class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314", -"group__status__codes.html#gaccd2c15a0a2372183a64c7796fa3207f" +"class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3", +"class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f", +"class_si443x.html#a1382fc3b68f447e381613e6670747128", +"group__status__codes.html#gabd7da172470aea37cd7b5d0300b89ad8" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/navtreeindex0.js b/navtreeindex0.js index 3af8c024..35e06b57 100644 --- a/navtreeindex0.js +++ b/navtreeindex0.js @@ -10,42 +10,43 @@ var NAVTREEINDEX0 = "_hellschreiber_8h_source.html":[4,0,0,1,2,0], "_i_serial_8h_source.html":[4,0,0,3], "_j_d_y08_8h_source.html":[4,0,0,0,3,0], +"_l_l_c_c68_8h_source.html":[4,0,0,0,4,0], "_m_q_t_t_8h_source.html":[4,0,0,1,5,0], "_module_8h_source.html":[4,0,0,4], "_morse_8h_source.html":[4,0,0,1,4,0], "_physical_layer_8h_source.html":[4,0,0,1,6,0], -"_r_f69_8h_source.html":[4,0,0,0,5,0], -"_r_f_m22_8h_source.html":[4,0,0,0,6,0], -"_r_f_m23_8h_source.html":[4,0,0,0,6,1], -"_r_f_m95_8h_source.html":[4,0,0,0,7,0], -"_r_f_m96_8h_source.html":[4,0,0,0,7,1], -"_r_f_m97_8h_source.html":[4,0,0,0,7,2], +"_r_f69_8h_source.html":[4,0,0,0,6,0], +"_r_f_m22_8h_source.html":[4,0,0,0,7,0], +"_r_f_m23_8h_source.html":[4,0,0,0,7,1], +"_r_f_m95_8h_source.html":[4,0,0,0,8,0], +"_r_f_m96_8h_source.html":[4,0,0,0,8,1], +"_r_f_m97_8h_source.html":[4,0,0,0,8,2], "_r_t_t_y_8h_source.html":[4,0,0,1,7,0], "_radio_lib_8h_source.html":[4,0,0,5], "_s_s_t_v_8h_source.html":[4,0,0,1,8,0], -"_s_x1231_8h_source.html":[4,0,0,0,9,0], -"_s_x1261_8h_source.html":[4,0,0,0,10,0], -"_s_x1262_8h_source.html":[4,0,0,0,10,1], -"_s_x1268_8h_source.html":[4,0,0,0,10,2], -"_s_x126x_8h_source.html":[4,0,0,0,10,3], -"_s_x1272_8h_source.html":[4,0,0,0,11,0], -"_s_x1273_8h_source.html":[4,0,0,0,11,1], -"_s_x1276_8h_source.html":[4,0,0,0,11,2], -"_s_x1277_8h_source.html":[4,0,0,0,11,3], -"_s_x1278_8h_source.html":[4,0,0,0,11,4], -"_s_x1279_8h_source.html":[4,0,0,0,11,5], -"_s_x127x_8h_source.html":[4,0,0,0,11,6], -"_s_x1280_8h_source.html":[4,0,0,0,12,0], -"_s_x1281_8h_source.html":[4,0,0,0,12,1], -"_s_x1282_8h_source.html":[4,0,0,0,12,2], -"_s_x128x_8h_source.html":[4,0,0,0,12,3], -"_si4430_8h_source.html":[4,0,0,0,8,0], -"_si4431_8h_source.html":[4,0,0,0,8,1], -"_si4432_8h_source.html":[4,0,0,0,8,2], -"_si443x_8h_source.html":[4,0,0,0,8,3], +"_s_x1231_8h_source.html":[4,0,0,0,10,0], +"_s_x1261_8h_source.html":[4,0,0,0,11,0], +"_s_x1262_8h_source.html":[4,0,0,0,11,1], +"_s_x1268_8h_source.html":[4,0,0,0,11,2], +"_s_x126x_8h_source.html":[4,0,0,0,11,3], +"_s_x1272_8h_source.html":[4,0,0,0,12,0], +"_s_x1273_8h_source.html":[4,0,0,0,12,1], +"_s_x1276_8h_source.html":[4,0,0,0,12,2], +"_s_x1277_8h_source.html":[4,0,0,0,12,3], +"_s_x1278_8h_source.html":[4,0,0,0,12,4], +"_s_x1279_8h_source.html":[4,0,0,0,12,5], +"_s_x127x_8h_source.html":[4,0,0,0,12,6], +"_s_x1280_8h_source.html":[4,0,0,0,13,0], +"_s_x1281_8h_source.html":[4,0,0,0,13,1], +"_s_x1282_8h_source.html":[4,0,0,0,13,2], +"_s_x128x_8h_source.html":[4,0,0,0,13,3], +"_si4430_8h_source.html":[4,0,0,0,9,0], +"_si4431_8h_source.html":[4,0,0,0,9,1], +"_si4432_8h_source.html":[4,0,0,0,9,2], +"_si443x_8h_source.html":[4,0,0,0,9,3], "_transport_layer_8h_source.html":[4,0,0,1,9,0], "_type_def_8h_source.html":[4,0,0,6], -"_x_bee_8h_source.html":[4,0,0,0,13,0], +"_x_bee_8h_source.html":[4,0,0,0,14,0], "annotated.html":[3,0], "class_a_f_s_k_client.html":[3,0,0], "class_a_f_s_k_client.html#a0012621c1414f4c7573e961b57884a5b":[3,0,0,4], @@ -231,6 +232,9 @@ var NAVTREEINDEX0 = "class_j_d_y08.html#a6fca03bb9f163c16d193904beac6b0b1":[3,0,10,1], "class_j_d_y08.html#a9e2895c29cbbb30bc49aa2b3b9d2c4d6":[3,0,10,0], "class_l_l_c_c68.html":[3,0,11], +"class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf":[3,0,11,1], +"class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261":[3,0,11,0], +"class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4":[3,0,11,2], "class_m_q_t_t_client.html":[3,0,14], "class_m_q_t_t_client.html#a49cb16ef730ad50ba5dc472ac10d933e":[3,0,14,1], "class_m_q_t_t_client.html#a6ecdbc80b76ae32b926e84af620dacb6":[3,0,14,0], @@ -245,9 +249,5 @@ var NAVTREEINDEX0 = "class_module.html#a06b2e1f1eb9e07a280e55f517f2fab38":[3,0,12,1], "class_module.html#a0ecbb4e1e98094c1296b1e823dc14703":[3,0,12,21], "class_module.html#a1286d7fd9673cbfab945c26b2585a129":[3,0,12,26], -"class_module.html#a128ead3f3198e3b06d39a128a5d6c777":[3,0,12,32], -"class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3":[3,0,12,24], -"class_module.html#a4a87d59ad2bf6bb1bb9de1856a81b824":[3,0,12,22], -"class_module.html#a4ea888758b4a7784082d513a1e7849a4":[3,0,12,20], -"class_module.html#a53d99944916b750dc1c69890f370680e":[3,0,12,4] +"class_module.html#a128ead3f3198e3b06d39a128a5d6c777":[3,0,12,32] }; diff --git a/navtreeindex1.js b/navtreeindex1.js index 9de529ae..c42ff9fe 100644 --- a/navtreeindex1.js +++ b/navtreeindex1.js @@ -1,5 +1,9 @@ var NAVTREEINDEX1 = { +"class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3":[3,0,12,24], +"class_module.html#a4a87d59ad2bf6bb1bb9de1856a81b824":[3,0,12,22], +"class_module.html#a4ea888758b4a7784082d513a1e7849a4":[3,0,12,20], +"class_module.html#a53d99944916b750dc1c69890f370680e":[3,0,12,4], "class_module.html#a56456ade4eeffa2c566a6fc3fd098276":[3,0,12,5], "class_module.html#a5c09c878b55f56990dd0c2972a3440c4":[3,0,12,9], "class_module.html#a5d66f76c11ac91a35a3a1d9647aa6f6d":[3,0,12,15], @@ -245,9 +249,5 @@ var NAVTREEINDEX1 = "class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22":[3,0,35,45], "class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8":[3,0,35,42], "class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376":[3,0,35,51], -"class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd":[3,0,35,4], -"class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f":[3,0,35,57], -"class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71":[3,0,35,53], -"class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3":[3,0,35,39], -"class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e":[3,0,35,29] +"class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd":[3,0,35,4] }; diff --git a/navtreeindex2.js b/navtreeindex2.js index 8053f6b9..23676cbb 100644 --- a/navtreeindex2.js +++ b/navtreeindex2.js @@ -1,5 +1,9 @@ var NAVTREEINDEX2 = { +"class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f":[3,0,35,57], +"class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71":[3,0,35,53], +"class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3":[3,0,35,39], +"class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e":[3,0,35,29], "class_s_x126x.html#a7e342ddbef84cf845bef8f4448b8da10":[3,0,35,15], "class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435":[3,0,35,25], "class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e":[3,0,35,33], @@ -245,9 +249,5 @@ var NAVTREEINDEX2 = "class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84":[3,0,27,2], "class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac":[3,0,27,0], "class_si443x.html":[3,0,28], -"class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2":[3,0,28,28], -"class_si443x.html#a1382fc3b68f447e381613e6670747128":[3,0,28,19], -"class_si443x.html#a178b471527813a608c04db7d3c9648d6":[3,0,28,14], -"class_si443x.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,28,13], -"class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10":[3,0,28,4] +"class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2":[3,0,28,28] }; diff --git a/navtreeindex3.js b/navtreeindex3.js index 14de4bd6..45bf94c4 100644 --- a/navtreeindex3.js +++ b/navtreeindex3.js @@ -1,5 +1,9 @@ var NAVTREEINDEX3 = { +"class_si443x.html#a1382fc3b68f447e381613e6670747128":[3,0,28,19], +"class_si443x.html#a178b471527813a608c04db7d3c9648d6":[3,0,28,14], +"class_si443x.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,28,13], +"class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10":[3,0,28,4], "class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314":[3,0,28,31], "class_si443x.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,28,32], "class_si443x.html#a453eda5436dc4dfe0dad676dc3977752":[3,0,28,1], @@ -103,32 +107,33 @@ var NAVTREEINDEX3 = "classn_r_f24.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,15,41], "classn_r_f24.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,15,11], "dir_022d1f7e87f0a3cd97fb9c4aa339f7b1.html":[4,0,0,1,9], -"dir_1496c164e9c77875dd570f4157f3157f.html":[4,0,0,0,6], +"dir_1496c164e9c77875dd570f4157f3157f.html":[4,0,0,0,7], +"dir_17a0c4358d096e2caf9f04fe2ab66c1d.html":[4,0,0,0,4], "dir_2cdd3c47e80335731aa10f67042c391a.html":[4,0,0,1,6], "dir_2d04440730a0443b949b3f3ffedccfc3.html":[4,0,0,1,1], "dir_31c953e8b112b915d208fa745d66f12e.html":[4,0,0,0,3], -"dir_3a277ada553fbb989028f9b071a02542.html":[4,0,0,0,5], +"dir_3a277ada553fbb989028f9b071a02542.html":[4,0,0,0,6], "dir_47c60a953c7c148861b9fe25d51850eb.html":[4,0,0,1,3], "dir_620e20826520c01cf981aa9c981ff885.html":[4,0,0,1,7], "dir_66baa0cb3ce3b01929266fe63d8714ed.html":[4,0,0,0,2], "dir_66ce0d8112a82c480b60d648cf9cb1ca.html":[4,0,0,1,8], "dir_68267d1309a1af8e8297ef4c3efbcdba.html":[4,0,0], -"dir_6baa7f88a31cf8c1ad1b651eaa1fd5b9.html":[4,0,0,0,7], +"dir_6baa7f88a31cf8c1ad1b651eaa1fd5b9.html":[4,0,0,0,8], "dir_70c194bd40717a4946dbd8bc35f09b17.html":[4,0,0,1,0], -"dir_747c20e84f9dfe1cc835713177129efc.html":[4,0,0,0,10], +"dir_747c20e84f9dfe1cc835713177129efc.html":[4,0,0,0,11], "dir_79690749eba542503bb1a9a3dbb495e1.html":[4,0,0,1], -"dir_7b8feacc70eb38d5fd56f060c649a59c.html":[4,0,0,0,13], -"dir_8d5439df06ea2679013aa8390703d116.html":[4,0,0,0,4], +"dir_7b8feacc70eb38d5fd56f060c649a59c.html":[4,0,0,0,14], +"dir_8d5439df06ea2679013aa8390703d116.html":[4,0,0,0,5], "dir_a6b6d785787649e9a3efd5036a39108c.html":[4,0,0,1,5], -"dir_a758e8e29d8436beff5e1f16d5ed2d65.html":[4,0,0,0,9], +"dir_a758e8e29d8436beff5e1f16d5ed2d65.html":[4,0,0,0,10], "dir_c14921ab4918e015c91d11c846a1924a.html":[4,0,0,1,2], "dir_d916eb25599dc82f14db514c97a6ae6d.html":[4,0,0,1,4], "dir_ddb4d7e95cc2d6c8e1ade10a20d7247d.html":[4,0,0,0], -"dir_e2961291c878e1b3ab9447d79b865c81.html":[4,0,0,0,8], +"dir_e2961291c878e1b3ab9447d79b865c81.html":[4,0,0,0,9], "dir_e824c1032eaf58988755f8ba9735594b.html":[4,0,0,0,0], "dir_ec8372b468150f98f42c73cf97f51298.html":[4,0,0,0,1], -"dir_ed12d23d857ca7061030f8751e72e77c.html":[4,0,0,0,12], -"dir_f980efad9544c0545d0fa50a84ff12f2.html":[4,0,0,0,11], +"dir_ed12d23d857ca7061030f8751e72e77c.html":[4,0,0,0,13], +"dir_f980efad9544c0545d0fa50a84ff12f2.html":[4,0,0,0,12], "files.html":[4,0], "functions.html":[3,3,0], "functions.html":[3,3,0,0], @@ -137,8 +142,8 @@ var NAVTREEINDEX3 = "functions_d.html":[3,3,0,3], "functions_e.html":[3,3,0,4], "functions_f.html":[3,3,0,5], -"functions_func.html":[3,3,1,0], "functions_func.html":[3,3,1], +"functions_func.html":[3,3,1,0], "functions_func_b.html":[3,3,1,1], "functions_func_c.html":[3,3,1,2], "functions_func_d.html":[3,3,1,3], @@ -244,10 +249,5 @@ var NAVTREEINDEX3 = "group__status__codes.html#gab0af68b1c852a4c124550baabf71a0f0":[2,4,57], "group__status__codes.html#gab18e3c068ca8d9e7c07e6b9473c5e0df":[2,4,12], "group__status__codes.html#gabb4c168ec8dd99c2b853d589af455884":[2,4,29], -"group__status__codes.html#gabbd93b7bffc697e5eb394ba7e601b648":[2,4,59], -"group__status__codes.html#gabd7da172470aea37cd7b5d0300b89ad8":[2,4,45], -"group__status__codes.html#gac1fec2f7cf44d57a670a90d49de224dd":[2,4,6], -"group__status__codes.html#gac4980128c06104656146109af0a944e4":[2,4,66], -"group__status__codes.html#gac852eedc5c168b511bbc83abce3123e7":[2,4,39], -"group__status__codes.html#gac9ca6ac94f8a11579c418e63943c056d":[2,4,36] +"group__status__codes.html#gabbd93b7bffc697e5eb394ba7e601b648":[2,4,59] }; diff --git a/navtreeindex4.js b/navtreeindex4.js index 1fd725cb..e93657f9 100644 --- a/navtreeindex4.js +++ b/navtreeindex4.js @@ -1,5 +1,10 @@ var NAVTREEINDEX4 = { +"group__status__codes.html#gabd7da172470aea37cd7b5d0300b89ad8":[2,4,45], +"group__status__codes.html#gac1fec2f7cf44d57a670a90d49de224dd":[2,4,6], +"group__status__codes.html#gac4980128c06104656146109af0a944e4":[2,4,66], +"group__status__codes.html#gac852eedc5c168b511bbc83abce3123e7":[2,4,39], +"group__status__codes.html#gac9ca6ac94f8a11579c418e63943c056d":[2,4,36], "group__status__codes.html#gaccd2c15a0a2372183a64c7796fa3207f":[2,4,48], "group__status__codes.html#gacd4ead53ff1363d12e2f2c3ebdf2caae":[2,4,30], "group__status__codes.html#gacfda389267c561c2ab2ac5c368954d0c":[2,4,68], @@ -30,10 +35,10 @@ var NAVTREEINDEX4 = "group__uart__config.html#gad418f0922126e27279d1a374fc63e036":[2,1,8], "group__uart__config.html#gae077d53c5c120a989b1f285f183f1b78":[2,1,3], "hierarchy.html":[3,2], -"index.html":[], "index.html":[0], +"index.html":[], "modules.html":[2], -"n_r_f24_8h_source.html":[4,0,0,0,4,0], +"n_r_f24_8h_source.html":[4,0,0,0,5,0], "pages.html":[], "struct_s_s_t_v_mode__t.html":[3,0,30], "struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad":[3,0,30,3], diff --git a/search/all_10.js b/search/all_10.js index c9537438..656f8888 100644 --- a/search/all_10.js +++ b/search/all_10.js @@ -15,7 +15,7 @@ var searchData= ['setafcbandwidth_247',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], ['setambienttemperature_248',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], ['setautoack_249',['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_250',['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()']]], + ['setbandwidth_250',['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_251',['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_252',['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_253',['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()']]], @@ -58,7 +58,7 @@ var searchData= ['setrssiconfig_290',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], ['setrxbandwidth_291',['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_292',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], - ['setspreadingfactor_293',['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()']]], + ['setspreadingfactor_293',['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_294',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]], ['setsyncword_295',['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_296',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]], diff --git a/search/all_a.js b/search/all_a.js index adfb7299..1d35fbf3 100644 --- a/search/all_a.js +++ b/search/all_a.js @@ -2,6 +2,6 @@ var searchData= [ ['len_166',['len',['../structtone__t.html#a3b0421dd255c7c59552741957a6224ed',1,'tone_t']]], ['length_167',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]], - ['llcc68_168',['LLCC68',['../class_l_l_c_c68.html',1,'']]], + ['llcc68_168',['LLCC68',['../class_l_l_c_c68.html',1,'LLCC68'],['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68::LLCC68()']]], ['lora_5fdetected_169',['LORA_DETECTED',['../group__status__codes.html#gacfda389267c561c2ab2ac5c368954d0c',1,'TypeDef.h']]] ]; diff --git a/search/functions_10.js b/search/functions_10.js index 78831fe7..45feae23 100644 --- a/search/functions_10.js +++ b/search/functions_10.js @@ -1,103 +1,103 @@ var searchData= [ - ['scanchannel_530',['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()']]], - ['send_531',['send',['../class_e_s_p8266.html#a1caaa537edd52d1c2b7a0a25ef69c1c9',1,'ESP8266::send(const char *data) override'],['../class_e_s_p8266.html#a2f34474953b7dbe4d057c8e3f65e0dc4',1,'ESP8266::send(uint8_t *data, size_t len) override'],['../class_transport_layer.html#a1d9cb76640868aa0338b52808e4f022d',1,'TransportLayer::send(const char *data)=0'],['../class_transport_layer.html#afb001c6348bc19694090532cc5f00e52',1,'TransportLayer::send(uint8_t *data, size_t len)=0']]], - ['sendframe_532',['sendFrame',['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client']]], - ['sendheader_533',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]], - ['sendline_534',['sendLine',['../class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0',1,'SSTVClient']]], - ['setaccessaddress_535',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]], - ['setaddresswidth_536',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]], - ['setaeskey_537',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]], - ['setafc_538',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]], - ['setafcagctrigger_539',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]], - ['setafcbandwidth_540',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], - ['setambienttemperature_541',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], - ['setautoack_542',['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_543',['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_544',['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_545',['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_546',['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()']]], - ['setcrc_547',['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_548',['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()']]], - ['setcurrentlimit_549',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]], - ['setdatarate_550',['setDataRate',['../classn_r_f24.html#a1f3ec2196733a2e2476f50690967f285',1,'nRF24']]], - ['setdatashaping_551',['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_552',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]], - ['setdestinationaddress_553',['setDestinationAddress',['../class_x_bee_serial.html#ae485a8ebeaf574ffe0c2c56a61583f13',1,'XBeeSerial']]], - ['setdio0action_554',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ada53419d65f207f352124da7747c5960',1,'SX127x::setDio0Action()']]], - ['setdio1action_555',['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_556',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], - ['setdirectaction_557',['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_558',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], - ['setencoding_559',['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()']]], - ['setfrequency_560',['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_561',['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_562',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], - ['setgdo0action_563',['setGdo0Action',['../class_c_c1101.html#ae60ea5cacfb1543fcecde5bfac16361a',1,'CC1101']]], - ['setgdo2action_564',['setGdo2Action',['../class_c_c1101.html#ac6338c2f5c937a12dac06069944ffb77',1,'CC1101']]], - ['setirqaction_565',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]], - ['setlnatestboost_566',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]], - ['setnodeaddress_567',['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_568',['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_569',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]], - ['setookpeakthresholddecrement_570',['setOokPeakThresholdDecrement',['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x']]], - ['setookthresholdtype_571',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]], - ['setoutputpower_572',['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#ae3596f303714509f552d98321bdfce5c',1,'SX1272::setOutputPower()'],['../class_s_x1278.html#a8eeac64472fa70ed5e51f35d581f37ea',1,'SX1278::setOutputPower()'],['../class_s_x128x.html#ad6e2b46c317a8d8512cf0380025147a9',1,'SX128x::setOutputPower()']]], - ['setpanid_573',['setPanId',['../class_x_bee_serial.html#ad429a47dc445765d2dec7ff64b922306',1,'XBeeSerial::setPanId()'],['../class_x_bee.html#a88745c61a1dc2d1139c34d6cc385d35b',1,'XBee::setPanId()']]], - ['setpreamblelength_574',['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_575',['setPromiscuousMode',['../class_c_c1101.html#a2911d49d1c293542f7a374c9af60df0e',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#a6d90ad1d455de045c53c5758babd876c',1,'RF69::setPromiscuousMode()']]], - ['setreceivepipe_576',['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_577',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]], - ['setregulatordcdc_578',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x']]], - ['setregulatorldo_579',['setRegulatorLDO',['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x']]], - ['setrepeaters_580',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]], - ['setrfswitchpins_581',['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_582',['setRfSwitchState',['../class_module.html#a4a87d59ad2bf6bb1bb9de1856a81b824',1,'Module']]], - ['setrssiconfig_583',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], - ['setrxbandwidth_584',['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_585',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], - ['setspreadingfactor_586',['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_587',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]], - ['setsyncword_588',['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_589',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]], - ['settransmitpipe_590',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]], - ['setwhitening_591',['setWhitening',['../class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]], - ['si4430_592',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430']]], - ['si4431_593',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431']]], - ['si4432_594',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432']]], - ['si443x_595',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x']]], - ['sleep_596',['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_597',['SPIgetRegValue',['../class_module.html#ad7ca9ae5a22cdacdf9437ca9cd37c9b4',1,'Module']]], - ['spireadregister_598',['SPIreadRegister',['../class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3',1,'Module']]], - ['spireadregisterburst_599',['SPIreadRegisterBurst',['../class_module.html#a6fa5239d73379e4140f5c4f513b1b8d2',1,'Module']]], - ['spisetregvalue_600',['SPIsetRegValue',['../class_module.html#a1286d7fd9673cbfab945c26b2585a129',1,'Module']]], - ['spitransfer_601',['SPItransfer',['../class_module.html#aefd955f1cd6d588b2cc229db87cb2121',1,'Module']]], - ['spiwriteregister_602',['SPIwriteRegister',['../class_module.html#ab814614ddd34b57f5a612a20f5fe4c57',1,'Module']]], - ['spiwriteregisterburst_603',['SPIwriteRegisterBurst',['../class_module.html#a9d77a08070cbd48fd4ece62a739333e9',1,'Module']]], - ['sstvclient_604',['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_605',['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()']]], - ['startdirect_606',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], - ['startranging_607',['startRanging',['../class_s_x1280.html#af30ff497ca3bcc043dc4dc2e7587a795',1,'SX1280']]], - ['startreceive_608',['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#a5052dc09f4b10ee22e169129f368685f',1,'SX126x::startReceive()'],['../class_s_x127x.html#afe8456d0f9abbce4d743f256f3e1e6c6',1,'SX127x::startReceive()'],['../class_s_x128x.html#a8171d2f3de53156526580ca4fe4d647d',1,'SX128x::startReceive()']]], - ['startreceivedutycycle_609',['startReceiveDutyCycle',['../class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136',1,'SX126x']]], - ['startreceivedutycycleauto_610',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f',1,'SX126x']]], - ['startsignal_611',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], - ['starttransmit_612',['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']]], - ['subscribe_613',['subscribe',['../class_m_q_t_t_client.html#a9488df90534953c33d76e9183965a300',1,'MQTTClient']]], - ['sx1231_614',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231']]], - ['sx1261_615',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261']]], - ['sx1262_616',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262']]], - ['sx1268_617',['SX1268',['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268']]], - ['sx126x_618',['SX126x',['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x']]], - ['sx1272_619',['SX1272',['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272']]], - ['sx1273_620',['SX1273',['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273']]], - ['sx1276_621',['SX1276',['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276']]], - ['sx1277_622',['SX1277',['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277']]], - ['sx1278_623',['SX1278',['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278']]], - ['sx1279_624',['SX1279',['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279']]], - ['sx127x_625',['SX127x',['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x']]], - ['sx1280_626',['SX1280',['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280']]], - ['sx1281_627',['SX1281',['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281']]], - ['sx1282_628',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282']]], - ['sx128x_629',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x']]] + ['scanchannel_531',['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()']]], + ['send_532',['send',['../class_e_s_p8266.html#a1caaa537edd52d1c2b7a0a25ef69c1c9',1,'ESP8266::send(const char *data) override'],['../class_e_s_p8266.html#a2f34474953b7dbe4d057c8e3f65e0dc4',1,'ESP8266::send(uint8_t *data, size_t len) override'],['../class_transport_layer.html#a1d9cb76640868aa0338b52808e4f022d',1,'TransportLayer::send(const char *data)=0'],['../class_transport_layer.html#afb001c6348bc19694090532cc5f00e52',1,'TransportLayer::send(uint8_t *data, size_t len)=0']]], + ['sendframe_533',['sendFrame',['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client']]], + ['sendheader_534',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]], + ['sendline_535',['sendLine',['../class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0',1,'SSTVClient']]], + ['setaccessaddress_536',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]], + ['setaddresswidth_537',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]], + ['setaeskey_538',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]], + ['setafc_539',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]], + ['setafcagctrigger_540',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]], + ['setafcbandwidth_541',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], + ['setambienttemperature_542',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], + ['setautoack_543',['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_544',['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_545',['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_546',['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_547',['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()']]], + ['setcrc_548',['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_549',['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()']]], + ['setcurrentlimit_550',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]], + ['setdatarate_551',['setDataRate',['../classn_r_f24.html#a1f3ec2196733a2e2476f50690967f285',1,'nRF24']]], + ['setdatashaping_552',['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_553',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]], + ['setdestinationaddress_554',['setDestinationAddress',['../class_x_bee_serial.html#ae485a8ebeaf574ffe0c2c56a61583f13',1,'XBeeSerial']]], + ['setdio0action_555',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ada53419d65f207f352124da7747c5960',1,'SX127x::setDio0Action()']]], + ['setdio1action_556',['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_557',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], + ['setdirectaction_558',['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_559',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], + ['setencoding_560',['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()']]], + ['setfrequency_561',['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_562',['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_563',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], + ['setgdo0action_564',['setGdo0Action',['../class_c_c1101.html#ae60ea5cacfb1543fcecde5bfac16361a',1,'CC1101']]], + ['setgdo2action_565',['setGdo2Action',['../class_c_c1101.html#ac6338c2f5c937a12dac06069944ffb77',1,'CC1101']]], + ['setirqaction_566',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]], + ['setlnatestboost_567',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]], + ['setnodeaddress_568',['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_569',['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_570',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]], + ['setookpeakthresholddecrement_571',['setOokPeakThresholdDecrement',['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x']]], + ['setookthresholdtype_572',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]], + ['setoutputpower_573',['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#ae3596f303714509f552d98321bdfce5c',1,'SX1272::setOutputPower()'],['../class_s_x1278.html#a8eeac64472fa70ed5e51f35d581f37ea',1,'SX1278::setOutputPower()'],['../class_s_x128x.html#ad6e2b46c317a8d8512cf0380025147a9',1,'SX128x::setOutputPower()']]], + ['setpanid_574',['setPanId',['../class_x_bee_serial.html#ad429a47dc445765d2dec7ff64b922306',1,'XBeeSerial::setPanId()'],['../class_x_bee.html#a88745c61a1dc2d1139c34d6cc385d35b',1,'XBee::setPanId()']]], + ['setpreamblelength_575',['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_576',['setPromiscuousMode',['../class_c_c1101.html#a2911d49d1c293542f7a374c9af60df0e',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#a6d90ad1d455de045c53c5758babd876c',1,'RF69::setPromiscuousMode()']]], + ['setreceivepipe_577',['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_578',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]], + ['setregulatordcdc_579',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x']]], + ['setregulatorldo_580',['setRegulatorLDO',['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x']]], + ['setrepeaters_581',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]], + ['setrfswitchpins_582',['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_583',['setRfSwitchState',['../class_module.html#a4a87d59ad2bf6bb1bb9de1856a81b824',1,'Module']]], + ['setrssiconfig_584',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], + ['setrxbandwidth_585',['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_586',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], + ['setspreadingfactor_587',['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_588',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]], + ['setsyncword_589',['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_590',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]], + ['settransmitpipe_591',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]], + ['setwhitening_592',['setWhitening',['../class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]], + ['si4430_593',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430']]], + ['si4431_594',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431']]], + ['si4432_595',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432']]], + ['si443x_596',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x']]], + ['sleep_597',['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_598',['SPIgetRegValue',['../class_module.html#ad7ca9ae5a22cdacdf9437ca9cd37c9b4',1,'Module']]], + ['spireadregister_599',['SPIreadRegister',['../class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3',1,'Module']]], + ['spireadregisterburst_600',['SPIreadRegisterBurst',['../class_module.html#a6fa5239d73379e4140f5c4f513b1b8d2',1,'Module']]], + ['spisetregvalue_601',['SPIsetRegValue',['../class_module.html#a1286d7fd9673cbfab945c26b2585a129',1,'Module']]], + ['spitransfer_602',['SPItransfer',['../class_module.html#aefd955f1cd6d588b2cc229db87cb2121',1,'Module']]], + ['spiwriteregister_603',['SPIwriteRegister',['../class_module.html#ab814614ddd34b57f5a612a20f5fe4c57',1,'Module']]], + ['spiwriteregisterburst_604',['SPIwriteRegisterBurst',['../class_module.html#a9d77a08070cbd48fd4ece62a739333e9',1,'Module']]], + ['sstvclient_605',['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_606',['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()']]], + ['startdirect_607',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], + ['startranging_608',['startRanging',['../class_s_x1280.html#af30ff497ca3bcc043dc4dc2e7587a795',1,'SX1280']]], + ['startreceive_609',['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#a5052dc09f4b10ee22e169129f368685f',1,'SX126x::startReceive()'],['../class_s_x127x.html#afe8456d0f9abbce4d743f256f3e1e6c6',1,'SX127x::startReceive()'],['../class_s_x128x.html#a8171d2f3de53156526580ca4fe4d647d',1,'SX128x::startReceive()']]], + ['startreceivedutycycle_610',['startReceiveDutyCycle',['../class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136',1,'SX126x']]], + ['startreceivedutycycleauto_611',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f',1,'SX126x']]], + ['startsignal_612',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], + ['starttransmit_613',['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']]], + ['subscribe_614',['subscribe',['../class_m_q_t_t_client.html#a9488df90534953c33d76e9183965a300',1,'MQTTClient']]], + ['sx1231_615',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231']]], + ['sx1261_616',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261']]], + ['sx1262_617',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262']]], + ['sx1268_618',['SX1268',['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268']]], + ['sx126x_619',['SX126x',['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x']]], + ['sx1272_620',['SX1272',['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272']]], + ['sx1273_621',['SX1273',['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273']]], + ['sx1276_622',['SX1276',['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276']]], + ['sx1277_623',['SX1277',['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277']]], + ['sx1278_624',['SX1278',['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278']]], + ['sx1279_625',['SX1279',['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279']]], + ['sx127x_626',['SX127x',['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x']]], + ['sx1280_627',['SX1280',['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280']]], + ['sx1281_628',['SX1281',['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281']]], + ['sx1282_629',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282']]], + ['sx128x_630',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x']]] ]; diff --git a/search/functions_11.js b/search/functions_11.js index cae00ace..61adc179 100644 --- a/search/functions_11.js +++ b/search/functions_11.js @@ -1,7 +1,7 @@ var searchData= [ - ['term_630',['term',['../class_module.html#af0569f6930da7bee761eeca8158aed3a',1,'Module']]], - ['tone_631',['tone',['../class_module.html#a32ba59613a2f1e77038956e18d9fedd7',1,'Module::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]], - ['transmit_632',['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_x_bee.html#ac1573e0aa0421cbcc767a968dda65819',1,'XBee::transmit(uint8_t *dest, const char *payload, uint8_t radius=1)'],['../class_x_bee.html#a697bfb6969560ef25bfb6c7bc64c3f09',1,'XBee::transmit(uint8_t *dest, uint8_t *destNetwork, const char *payload, uint8_t radius=1)'],['../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_633',['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()']]] + ['term_631',['term',['../class_module.html#af0569f6930da7bee761eeca8158aed3a',1,'Module']]], + ['tone_632',['tone',['../class_module.html#a32ba59613a2f1e77038956e18d9fedd7',1,'Module::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]], + ['transmit_633',['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_x_bee.html#ac1573e0aa0421cbcc767a968dda65819',1,'XBee::transmit(uint8_t *dest, const char *payload, uint8_t radius=1)'],['../class_x_bee.html#a697bfb6969560ef25bfb6c7bc64c3f09',1,'XBee::transmit(uint8_t *dest, uint8_t *destNetwork, const char *payload, uint8_t radius=1)'],['../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_634',['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()']]] ]; diff --git a/search/functions_12.js b/search/functions_12.js index a816e75d..f2b752c0 100644 --- a/search/functions_12.js +++ b/search/functions_12.js @@ -1,4 +1,4 @@ var searchData= [ - ['unsubscribe_634',['unsubscribe',['../class_m_q_t_t_client.html#a782158f20b289746b7b6884fd922a22c',1,'MQTTClient']]] + ['unsubscribe_635',['unsubscribe',['../class_m_q_t_t_client.html#a782158f20b289746b7b6884fd922a22c',1,'MQTTClient']]] ]; diff --git a/search/functions_13.js b/search/functions_13.js index ae796070..918a867b 100644 --- a/search/functions_13.js +++ b/search/functions_13.js @@ -1,4 +1,4 @@ var searchData= [ - ['variablepacketlengthmode_635',['variablePacketLengthMode',['../class_c_c1101.html#a881122ec3457c5f95760859f8e0297c7',1,'CC1101::variablePacketLengthMode()'],['../class_r_f69.html#af62ebde1ea34a394b9781a21ae348c39',1,'RF69::variablePacketLengthMode()'],['../class_s_x126x.html#aa11ab2c6f4488daf2ece93288e05c504',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a9f753c0857e7b8b4b9f7f6e91c77f0fd',1,'SX127x::variablePacketLengthMode()']]] + ['variablepacketlengthmode_636',['variablePacketLengthMode',['../class_c_c1101.html#a881122ec3457c5f95760859f8e0297c7',1,'CC1101::variablePacketLengthMode()'],['../class_r_f69.html#af62ebde1ea34a394b9781a21ae348c39',1,'RF69::variablePacketLengthMode()'],['../class_s_x126x.html#aa11ab2c6f4488daf2ece93288e05c504',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a9f753c0857e7b8b4b9f7f6e91c77f0fd',1,'SX127x::variablePacketLengthMode()']]] ]; diff --git a/search/functions_14.js b/search/functions_14.js index 20e1206a..d9582028 100644 --- a/search/functions_14.js +++ b/search/functions_14.js @@ -1,5 +1,5 @@ var searchData= [ - ['xbee_636',['XBee',['../class_x_bee.html#a8a60ce7fd2b58e495b436d046e730e0b',1,'XBee']]], - ['xbeeserial_637',['XBeeSerial',['../class_x_bee_serial.html#a9ee7ddd4b45096a6112798be1be09080',1,'XBeeSerial']]] + ['xbee_637',['XBee',['../class_x_bee.html#a8a60ce7fd2b58e495b436d046e730e0b',1,'XBee']]], + ['xbeeserial_638',['XBeeSerial',['../class_x_bee_serial.html#a9ee7ddd4b45096a6112798be1be09080',1,'XBeeSerial']]] ]; diff --git a/search/functions_15.js b/search/functions_15.js index a53a3240..0d95ba51 100644 --- a/search/functions_15.js +++ b/search/functions_15.js @@ -1,4 +1,4 @@ var searchData= [ - ['yield_638',['yield',['../class_module.html#a227d2d38e4747d0f49bb4df1c80b45d7',1,'Module']]] + ['yield_639',['yield',['../class_module.html#a227d2d38e4747d0f49bb4df1c80b45d7',1,'Module']]] ]; diff --git a/search/functions_16.js b/search/functions_16.js index 4b828fed..1eff3784 100644 --- a/search/functions_16.js +++ b/search/functions_16.js @@ -1,5 +1,5 @@ var searchData= [ - ['_7eax25frame_639',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]], - ['_7eita2string_640',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]] + ['_7eax25frame_640',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]], + ['_7eita2string_641',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]] ]; diff --git a/search/functions_a.js b/search/functions_a.js index 45ea8783..65d0ab7c 100644 --- a/search/functions_a.js +++ b/search/functions_a.js @@ -1,4 +1,5 @@ var searchData= [ - ['length_500',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]] + ['length_500',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]], + ['llcc68_501',['LLCC68',['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68']]] ]; diff --git a/search/functions_b.js b/search/functions_b.js index 8f86e634..0426a016 100644 --- a/search/functions_b.js +++ b/search/functions_b.js @@ -1,8 +1,8 @@ var searchData= [ - ['micros_501',['micros',['../class_module.html#af3f51e517a825949891ad29e30fd3f59',1,'Module']]], - ['millis_502',['millis',['../class_module.html#a216dd0c6ce140857f2b003ab8d89fbac',1,'Module']]], - ['module_503',['Module',['../class_module.html#a5ea76bc25ef979ec1ff90c032e476004',1,'Module::Module(RADIOLIB_PIN_TYPE rx, RADIOLIB_PIN_TYPE tx, HardwareSerial *serial=nullptr, RADIOLIB_PIN_TYPE rst=RADIOLIB_NC)'],['../class_module.html#a06b2e1f1eb9e07a280e55f517f2fab38',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst)'],['../class_module.html#ae8709b81f592a23ebd72ba3fd8066b0f',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE gpio)'],['../class_module.html#ac65f3d9e022b3284134ced1c20bcff09',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, SPIClass &spi, SPISettings spiSettings)'],['../class_module.html#a53d99944916b750dc1c69890f370680e',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE gpio, SPIClass &spi, SPISettings spiSettings=SPISettings(2000000, MSBFIRST, SPI_MODE0))'],['../class_module.html#a56456ade4eeffa2c566a6fc3fd098276',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE rx, RADIOLIB_PIN_TYPE tx, SPIClass &spi=RADIOLIB_DEFAULT_SPI, SPISettings spiSettings=SPISettings(2000000, MSBFIRST, SPI_MODE0), HardwareSerial *serial=nullptr)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]], - ['morseclient_504',['MorseClient',['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)']]], - ['mqttclient_505',['MQTTClient',['../class_m_q_t_t_client.html#a6ecdbc80b76ae32b926e84af620dacb6',1,'MQTTClient']]] + ['micros_502',['micros',['../class_module.html#af3f51e517a825949891ad29e30fd3f59',1,'Module']]], + ['millis_503',['millis',['../class_module.html#a216dd0c6ce140857f2b003ab8d89fbac',1,'Module']]], + ['module_504',['Module',['../class_module.html#a5ea76bc25ef979ec1ff90c032e476004',1,'Module::Module(RADIOLIB_PIN_TYPE rx, RADIOLIB_PIN_TYPE tx, HardwareSerial *serial=nullptr, RADIOLIB_PIN_TYPE rst=RADIOLIB_NC)'],['../class_module.html#a06b2e1f1eb9e07a280e55f517f2fab38',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst)'],['../class_module.html#ae8709b81f592a23ebd72ba3fd8066b0f',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE gpio)'],['../class_module.html#ac65f3d9e022b3284134ced1c20bcff09',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, SPIClass &spi, SPISettings spiSettings)'],['../class_module.html#a53d99944916b750dc1c69890f370680e',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE gpio, SPIClass &spi, SPISettings spiSettings=SPISettings(2000000, MSBFIRST, SPI_MODE0))'],['../class_module.html#a56456ade4eeffa2c566a6fc3fd098276',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE rx, RADIOLIB_PIN_TYPE tx, SPIClass &spi=RADIOLIB_DEFAULT_SPI, SPISettings spiSettings=SPISettings(2000000, MSBFIRST, SPI_MODE0), HardwareSerial *serial=nullptr)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]], + ['morseclient_505',['MorseClient',['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)']]], + ['mqttclient_506',['MQTTClient',['../class_m_q_t_t_client.html#a6ecdbc80b76ae32b926e84af620dacb6',1,'MQTTClient']]] ]; diff --git a/search/functions_c.js b/search/functions_c.js index c7d8ca7c..a6342933 100644 --- a/search/functions_c.js +++ b/search/functions_c.js @@ -1,5 +1,5 @@ var searchData= [ - ['notone_506',['noTone',['../class_module.html#af998b86ce1243f616f6fcb6df5336207',1,'Module::noTone()'],['../class_a_f_s_k_client.html#ade91356bb158bbc820d28855dd5818d1',1,'AFSKClient::noTone()']]], - ['nrf24_507',['nRF24',['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24']]] + ['notone_507',['noTone',['../class_module.html#af998b86ce1243f616f6fcb6df5336207',1,'Module::noTone()'],['../class_a_f_s_k_client.html#ade91356bb158bbc820d28855dd5818d1',1,'AFSKClient::noTone()']]], + ['nrf24_508',['nRF24',['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24']]] ]; diff --git a/search/functions_d.js b/search/functions_d.js index a78275a9..9c2db542 100644 --- a/search/functions_d.js +++ b/search/functions_d.js @@ -1,5 +1,5 @@ var searchData= [ - ['opentransportconnection_508',['openTransportConnection',['../class_e_s_p8266.html#a535f4b7a8ef104b208753f9361568d20',1,'ESP8266::openTransportConnection()'],['../class_transport_layer.html#a36b1ceebca3643fb475607d3d92f5d63',1,'TransportLayer::openTransportConnection()']]], - ['operator_3d_509',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()']]] + ['opentransportconnection_509',['openTransportConnection',['../class_e_s_p8266.html#a535f4b7a8ef104b208753f9361568d20',1,'ESP8266::openTransportConnection()'],['../class_transport_layer.html#a36b1ceebca3643fb475607d3d92f5d63',1,'TransportLayer::openTransportConnection()']]], + ['operator_3d_510',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()']]] ]; diff --git a/search/functions_e.js b/search/functions_e.js index 706e2aa8..b5945e77 100644 --- a/search/functions_e.js +++ b/search/functions_e.js @@ -1,10 +1,10 @@ var searchData= [ - ['packetmode_510',['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_511',['PhysicalLayer',['../class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62',1,'PhysicalLayer']]], - ['ping_512',['ping',['../class_m_q_t_t_client.html#aea3fb930ed43a0b3122ccc90efebb99d',1,'MQTTClient']]], - ['pinmode_513',['pinMode',['../class_module.html#af7e4872dad3d19b6f75f532c88683168',1,'Module']]], - ['post_514',['post',['../class_h_t_t_p_client.html#ac1119b889b6fed7bd4d119d3e4842acb',1,'HTTPClient']]], - ['printglyph_515',['printGlyph',['../class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9',1,'HellClient']]], - ['publish_516',['publish',['../class_m_q_t_t_client.html#ace3ee45313dea2f853207accf20b7c87',1,'MQTTClient::publish(String &topic, String &message)'],['../class_m_q_t_t_client.html#ab59a1174098dfdf514d8ec6d0bd9d015',1,'MQTTClient::publish(const char *topic, const char *message)']]] + ['packetmode_511',['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_512',['PhysicalLayer',['../class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62',1,'PhysicalLayer']]], + ['ping_513',['ping',['../class_m_q_t_t_client.html#aea3fb930ed43a0b3122ccc90efebb99d',1,'MQTTClient']]], + ['pinmode_514',['pinMode',['../class_module.html#af7e4872dad3d19b6f75f532c88683168',1,'Module']]], + ['post_515',['post',['../class_h_t_t_p_client.html#ac1119b889b6fed7bd4d119d3e4842acb',1,'HTTPClient']]], + ['printglyph_516',['printGlyph',['../class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9',1,'HellClient']]], + ['publish_517',['publish',['../class_m_q_t_t_client.html#ace3ee45313dea2f853207accf20b7c87',1,'MQTTClient::publish(String &topic, String &message)'],['../class_m_q_t_t_client.html#ab59a1174098dfdf514d8ec6d0bd9d015',1,'MQTTClient::publish(const char *topic, const char *message)']]] ]; diff --git a/search/functions_f.js b/search/functions_f.js index c5690870..cbbb2f4c 100644 --- a/search/functions_f.js +++ b/search/functions_f.js @@ -1,16 +1,16 @@ var searchData= [ - ['random_517',['random',['../class_c_c1101.html#aeea507b71f1a3dfab5be4c3a1606b8fd',1,'CC1101::random()'],['../classn_r_f24.html#aeb98b92de42dec7c703888c62e061c3c',1,'nRF24::random()'],['../class_r_f69.html#a54cd7be92e166659b50bd6ed4433db4c',1,'RF69::random()'],['../class_si443x.html#ad371b44fc0c4ddd3ed39e2595e85b5df',1,'Si443x::random()'],['../class_s_x126x.html#a3dd88861454d8b6e742470dee04961be',1,'SX126x::random()'],['../class_s_x127x.html#a6a03da620f9fb532c879900ba05732de',1,'SX127x::random()'],['../class_s_x128x.html#a1cefaf76d47ee71d143fc073333a9d82',1,'SX128x::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)'],['../class_physical_layer.html#a5bf5bac5b015aa9312025255ca503d4f',1,'PhysicalLayer::random()=0']]], - ['range_518',['range',['../class_s_x1280.html#a812e289084b2f78977b254c28f0fff7c',1,'SX1280']]], - ['read_519',['read',['../class_physical_layer.html#a929662904e9af2611e098dc13b91c977',1,'PhysicalLayer']]], - ['readbit_520',['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_521',['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_522',['receive',['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_e_s_p8266.html#aa79f841de9ae9c5d6057e89a9f1721ea',1,'ESP8266::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'],['../class_transport_layer.html#a846492348f71d7328834076c9046dc3f',1,'TransportLayer::receive()']]], - ['receivedirect_523',['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()']]], - ['reset_524',['reset',['../class_e_s_p8266.html#aee0279b476a83a55f54ab22e6d8f3904',1,'ESP8266::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()'],['../class_x_bee_serial.html#a1870183689e2a2a17aa36e0d6d30ea3f',1,'XBeeSerial::reset()'],['../class_x_bee.html#a10a4b3df9d5980e89a126848ec31613c',1,'XBee::reset()']]], - ['rf69_525',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69']]], - ['rfm95_526',['RFM95',['../class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326',1,'RFM95']]], - ['rfm96_527',['RFM96',['../class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a',1,'RFM96']]], - ['rfm97_528',['RFM97',['../class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be',1,'RFM97']]], - ['rttyclient_529',['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_518',['random',['../class_c_c1101.html#aeea507b71f1a3dfab5be4c3a1606b8fd',1,'CC1101::random()'],['../classn_r_f24.html#aeb98b92de42dec7c703888c62e061c3c',1,'nRF24::random()'],['../class_r_f69.html#a54cd7be92e166659b50bd6ed4433db4c',1,'RF69::random()'],['../class_si443x.html#ad371b44fc0c4ddd3ed39e2595e85b5df',1,'Si443x::random()'],['../class_s_x126x.html#a3dd88861454d8b6e742470dee04961be',1,'SX126x::random()'],['../class_s_x127x.html#a6a03da620f9fb532c879900ba05732de',1,'SX127x::random()'],['../class_s_x128x.html#a1cefaf76d47ee71d143fc073333a9d82',1,'SX128x::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)'],['../class_physical_layer.html#a5bf5bac5b015aa9312025255ca503d4f',1,'PhysicalLayer::random()=0']]], + ['range_519',['range',['../class_s_x1280.html#a812e289084b2f78977b254c28f0fff7c',1,'SX1280']]], + ['read_520',['read',['../class_physical_layer.html#a929662904e9af2611e098dc13b91c977',1,'PhysicalLayer']]], + ['readbit_521',['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_522',['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_523',['receive',['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_e_s_p8266.html#aa79f841de9ae9c5d6057e89a9f1721ea',1,'ESP8266::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'],['../class_transport_layer.html#a846492348f71d7328834076c9046dc3f',1,'TransportLayer::receive()']]], + ['receivedirect_524',['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()']]], + ['reset_525',['reset',['../class_e_s_p8266.html#aee0279b476a83a55f54ab22e6d8f3904',1,'ESP8266::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()'],['../class_x_bee_serial.html#a1870183689e2a2a17aa36e0d6d30ea3f',1,'XBeeSerial::reset()'],['../class_x_bee.html#a10a4b3df9d5980e89a126848ec31613c',1,'XBee::reset()']]], + ['rf69_526',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69']]], + ['rfm95_527',['RFM95',['../class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326',1,'RFM95']]], + ['rfm96_528',['RFM96',['../class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a',1,'RFM96']]], + ['rfm97_529',['RFM97',['../class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be',1,'RFM97']]], + ['rttyclient_530',['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/groups_0.js b/search/groups_0.js index 55748f44..ac2f79cd 100644 --- a/search/groups_0.js +++ b/search/groups_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['data_20shaping_20filter_20values_20aliases_2e_668',['Data shaping filter values aliases.',['../group__config__shaping.html',1,'']]] + ['data_20shaping_20filter_20values_20aliases_2e_669',['Data shaping filter values aliases.',['../group__config__shaping.html',1,'']]] ]; diff --git a/search/groups_1.js b/search/groups_1.js index 4e0f046b..21afa1dd 100644 --- a/search/groups_1.js +++ b/search/groups_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['encoding_20type_20aliases_2e_669',['Encoding type aliases.',['../group__config__encoding.html',1,'']]] + ['encoding_20type_20aliases_2e_670',['Encoding type aliases.',['../group__config__encoding.html',1,'']]] ]; diff --git a/search/groups_2.js b/search/groups_2.js index 2952649c..8ae5c86a 100644 --- a/search/groups_2.js +++ b/search/groups_2.js @@ -1,5 +1,5 @@ var searchData= [ - ['shield_20configuration_670',['Shield Configuration',['../group__shield__config.html',1,'']]], - ['status_20codes_671',['Status Codes',['../group__status__codes.html',1,'']]] + ['shield_20configuration_671',['Shield Configuration',['../group__shield__config.html',1,'']]], + ['status_20codes_672',['Status Codes',['../group__status__codes.html',1,'']]] ]; diff --git a/search/groups_3.js b/search/groups_3.js index 23f7cc0f..916cea16 100644 --- a/search/groups_3.js +++ b/search/groups_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['uart_20configuration_672',['UART Configuration',['../group__uart__config.html',1,'']]] + ['uart_20configuration_673',['UART Configuration',['../group__uart__config.html',1,'']]] ]; diff --git a/search/pages_0.js b/search/pages_0.js index 0b1c952c..e1d9a109 100644 --- a/search/pages_0.js +++ b/search/pages_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['radiolib_20documentation_673',['RadioLib Documentation',['../index.html',1,'']]] + ['radiolib_20documentation_674',['RadioLib Documentation',['../index.html',1,'']]] ]; diff --git a/search/pages_1.js b/search/pages_1.js index 88fb7d19..84d25b43 100644 --- a/search/pages_1.js +++ b/search/pages_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['todo_20list_674',['Todo List',['../todo.html',1,'']]] + ['todo_20list_675',['Todo List',['../todo.html',1,'']]] ]; diff --git a/search/variables_0.js b/search/variables_0.js index 52cd2e79..3d02b109 100644 --- a/search/variables_0.js +++ b/search/variables_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['atlinefeed_641',['AtLineFeed',['../class_module.html#a9d8ab2ff353bad5d0e7568d300a48ba0',1,'Module']]] + ['atlinefeed_642',['AtLineFeed',['../class_module.html#a9d8ab2ff353bad5d0e7568d300a48ba0',1,'Module']]] ]; diff --git a/search/variables_1.js b/search/variables_1.js index cc226478..72512dd0 100644 --- a/search/variables_1.js +++ b/search/variables_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['baudrate_642',['baudrate',['../class_module.html#a128ead3f3198e3b06d39a128a5d6c777',1,'Module']]] + ['baudrate_643',['baudrate',['../class_module.html#a128ead3f3198e3b06d39a128a5d6c777',1,'Module']]] ]; diff --git a/search/variables_2.js b/search/variables_2.js index f232f93e..f9705daf 100644 --- a/search/variables_2.js +++ b/search/variables_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['control_643',['control',['../class_a_x25_frame.html#a5b196079b539dc417ca65dd4ad622f8f',1,'AX25Frame']]] + ['control_644',['control',['../class_a_x25_frame.html#a5b196079b539dc417ca65dd4ad622f8f',1,'AX25Frame']]] ]; diff --git a/search/variables_3.js b/search/variables_3.js index 089feb9a..e6d375fd 100644 --- a/search/variables_3.js +++ b/search/variables_3.js @@ -1,5 +1,5 @@ var searchData= [ - ['destcallsign_644',['destCallsign',['../class_a_x25_frame.html#a78e72871e3a9370675318876f4a4b432',1,'AX25Frame']]], - ['destssid_645',['destSSID',['../class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8',1,'AX25Frame']]] + ['destcallsign_645',['destCallsign',['../class_a_x25_frame.html#a78e72871e3a9370675318876f4a4b432',1,'AX25Frame']]], + ['destssid_646',['destSSID',['../class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8',1,'AX25Frame']]] ]; diff --git a/search/variables_4.js b/search/variables_4.js index 756dba5e..037f2324 100644 --- a/search/variables_4.js +++ b/search/variables_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['freq_646',['freq',['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t']]] + ['freq_647',['freq',['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t']]] ]; diff --git a/search/variables_5.js b/search/variables_5.js index 6527e212..e45b368c 100644 --- a/search/variables_5.js +++ b/search/variables_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['height_647',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]] + ['height_648',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]] ]; diff --git a/search/variables_6.js b/search/variables_6.js index 9439c87c..7c381022 100644 --- a/search/variables_6.js +++ b/search/variables_6.js @@ -1,5 +1,5 @@ var searchData= [ - ['info_648',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]], - ['infolen_649',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]] + ['info_649',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]], + ['infolen_650',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]] ]; diff --git a/search/variables_7.js b/search/variables_7.js index 9c445524..34fc78c1 100644 --- a/search/variables_7.js +++ b/search/variables_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['len_650',['len',['../structtone__t.html#a3b0421dd255c7c59552741957a6224ed',1,'tone_t']]] + ['len_651',['len',['../structtone__t.html#a3b0421dd255c7c59552741957a6224ed',1,'tone_t']]] ]; diff --git a/search/variables_8.js b/search/variables_8.js index 4c37fd46..0e43644a 100644 --- a/search/variables_8.js +++ b/search/variables_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['moduleserial_651',['ModuleSerial',['../class_module.html#a99556decb983f682b98220ae5434b004',1,'Module']]] + ['moduleserial_652',['ModuleSerial',['../class_module.html#a99556decb983f682b98220ae5434b004',1,'Module']]] ]; diff --git a/search/variables_9.js b/search/variables_9.js index f777deae..bdf58c53 100644 --- a/search/variables_9.js +++ b/search/variables_9.js @@ -1,5 +1,5 @@ var searchData= [ - ['numrepeaters_652',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]], - ['numtones_653',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]] + ['numrepeaters_653',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]], + ['numtones_654',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]] ]; diff --git a/search/variables_a.js b/search/variables_a.js index a3041c2b..8b210a5f 100644 --- a/search/variables_a.js +++ b/search/variables_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['protocolid_654',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]] + ['protocolid_655',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]] ]; diff --git a/search/variables_b.js b/search/variables_b.js index b472c39f..8c069dd9 100644 --- a/search/variables_b.js +++ b/search/variables_b.js @@ -1,6 +1,6 @@ var searchData= [ - ['rcvseqnumber_655',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], - ['repeatercallsigns_656',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]], - ['repeaterssids_657',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]] + ['rcvseqnumber_656',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], + ['repeatercallsigns_657',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]], + ['repeaterssids_658',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]] ]; diff --git a/search/variables_c.js b/search/variables_c.js index 6d35c693..323ee475 100644 --- a/search/variables_c.js +++ b/search/variables_c.js @@ -1,9 +1,9 @@ var searchData= [ - ['scanpixellen_658',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]], - ['sendseqnumber_659',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]], - ['spireadcommand_660',['SPIreadCommand',['../class_module.html#a849ad85fc1bc3a7130e660c13973ab26',1,'Module']]], - ['spiwritecommand_661',['SPIwriteCommand',['../class_module.html#ae89764d15e8df5694a6aec0e18f72d3f',1,'Module']]], - ['srccallsign_662',['srcCallsign',['../class_a_x25_frame.html#ab76eaa8445e7953059a46bb78082dd5a',1,'AX25Frame']]], - ['srcssid_663',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]] + ['scanpixellen_659',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]], + ['sendseqnumber_660',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]], + ['spireadcommand_661',['SPIreadCommand',['../class_module.html#a849ad85fc1bc3a7130e660c13973ab26',1,'Module']]], + ['spiwritecommand_662',['SPIwriteCommand',['../class_module.html#ae89764d15e8df5694a6aec0e18f72d3f',1,'Module']]], + ['srccallsign_663',['srcCallsign',['../class_a_x25_frame.html#ab76eaa8445e7953059a46bb78082dd5a',1,'AX25Frame']]], + ['srcssid_664',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]] ]; diff --git a/search/variables_d.js b/search/variables_d.js index 097a5214..894edb42 100644 --- a/search/variables_d.js +++ b/search/variables_d.js @@ -1,5 +1,5 @@ var searchData= [ - ['tones_664',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]], - ['type_665',['type',['../structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40',1,'tone_t']]] + ['tones_665',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]], + ['type_666',['type',['../structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40',1,'tone_t']]] ]; diff --git a/search/variables_e.js b/search/variables_e.js index d35359f6..71564869 100644 --- a/search/variables_e.js +++ b/search/variables_e.js @@ -1,4 +1,4 @@ var searchData= [ - ['viscode_666',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]] + ['viscode_667',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]] ]; diff --git a/search/variables_f.js b/search/variables_f.js index 89da3223..3b11aa18 100644 --- a/search/variables_f.js +++ b/search/variables_f.js @@ -1,4 +1,4 @@ var searchData= [ - ['width_667',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]] + ['width_668',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]] ];