diff --git a/_l_r1110_8h_source.html b/_l_r1110_8h_source.html index e3b13a5a..582d3009 100644 --- a/_l_r1110_8h_source.html +++ b/_l_r1110_8h_source.html @@ -110,39 +110,39 @@ $(document).ready(function(){initNavTree('_l_r1110_8h_source.html',''); initResi
69 
70  // configuration methods
71 
-
78  int16_t setFrequency(float freq) override;
-
79 
-
89  int16_t setFrequency(float freq, bool calibrate, float band = 4);
-
90 
-
96  int16_t setOutputPower(int8_t power) override;
-
97 
-
105  int16_t setOutputPower(int8_t power, bool forceHighPower);
-
106 
-
114  int16_t checkOutputPower(int8_t power, int8_t* clipped) override;
-
115 
-
124  int16_t checkOutputPower(int8_t power, int8_t* clipped, bool forceHighPower);
-
125 
-
132  int16_t setModem(ModemType_t modem) override;
-
133 
-
134 #if !RADIOLIB_GODMODE
-
135  private:
-
136 #endif
-
137 
-
138 };
-
139 
-
140 #endif
-
141 
-
142 #endif
+
79  int16_t setFrequency(float freq) override;
+
80 
+
92  int16_t setFrequency(float freq, bool skipCalibration, float band = 4);
+
93 
+
99  int16_t setOutputPower(int8_t power) override;
+
100 
+
108  int16_t setOutputPower(int8_t power, bool forceHighPower);
+
109 
+
117  int16_t checkOutputPower(int8_t power, int8_t* clipped) override;
+
118 
+
127  int16_t checkOutputPower(int8_t power, int8_t* clipped, bool forceHighPower);
+
128 
+
135  int16_t setModem(ModemType_t modem) override;
+
136 
+
137 #if !RADIOLIB_GODMODE
+
138  private:
+
139 #endif
+
140 
+
141 };
+
142 
+
143 #endif
+
144 
+
145 #endif
LR1110
Derived class for LR1110 modules.
Definition: LR1110.h:15
-
LR1110::setModem
int16_t setModem(ModemType_t modem) override
Set modem for the radio to use. Will perform full reset and reconfigure the radio using its default p...
Definition: LR1110.cpp:108
-
LR1110::LR1110
LR1110(Module *mod)
Default constructor.
Definition: LR1110.cpp:4
-
LR1110::setOutputPower
int16_t setOutputPower(int8_t power) override
Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (lo...
Definition: LR1110.cpp:64
-
LR1110::begin
int16_t begin(float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_LR11X0_LORA_SYNC_WORD_PRIVATE, int8_t power=10, uint16_t preambleLength=8, float tcxoVoltage=1.6)
Initialization method for LoRa modem.
Definition: LR1110.cpp:8
-
LR1110::beginLRFHSS
int16_t beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_LR11X0_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_LR11X0_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6)
Initialization method for LR-FHSS modem.
Definition: LR1110.cpp:34
-
LR1110::setFrequency
int16_t setFrequency(float freq) override
Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will also perform calibr...
Definition: LR1110.cpp:47
-
LR1110::checkOutputPower
int16_t checkOutputPower(int8_t power, int8_t *clipped) override
Check if output power is configurable. This method is needed for compatibility with PhysicalLayer::ch...
Definition: LR1110.cpp:87
-
LR1110::beginGFSK
int16_t beginGFSK(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=156.2, int8_t power=10, uint16_t preambleLength=16, float tcxoVoltage=1.6)
Initialization method for FSK modem.
Definition: LR1110.cpp:21
-
LR11x0
Base class for LR11x0 series. All derived classes for LR11x0 (e.g. LR1110 or LR1120) inherit from thi...
Definition: LR11x0.h:871
+
LR1110::setModem
int16_t setModem(ModemType_t modem) override
Set modem for the radio to use. Will perform full reset and reconfigure the radio using its default p...
Definition: LR1110.cpp:114
+
LR1110::LR1110
LR1110(Module *mod)
Default constructor.
Definition: LR1110.cpp:6
+
LR1110::setOutputPower
int16_t setOutputPower(int8_t power) override
Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (lo...
Definition: LR1110.cpp:70
+
LR1110::begin
int16_t begin(float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_LR11X0_LORA_SYNC_WORD_PRIVATE, int8_t power=10, uint16_t preambleLength=8, float tcxoVoltage=1.6)
Initialization method for LoRa modem.
Definition: LR1110.cpp:10
+
LR1110::beginLRFHSS
int16_t beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_LR11X0_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_LR11X0_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6)
Initialization method for LR-FHSS modem.
Definition: LR1110.cpp:36
+
LR1110::setFrequency
int16_t setFrequency(float freq) override
Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will automatically perfo...
Definition: LR1110.cpp:49
+
LR1110::checkOutputPower
int16_t checkOutputPower(int8_t power, int8_t *clipped) override
Check if output power is configurable. This method is needed for compatibility with PhysicalLayer::ch...
Definition: LR1110.cpp:93
+
LR1110::beginGFSK
int16_t beginGFSK(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=156.2, int8_t power=10, uint16_t preambleLength=16, float tcxoVoltage=1.6)
Initialization method for FSK modem.
Definition: LR1110.cpp:23
+
LR11x0
Base class for LR11x0 series. All derived classes for LR11x0 (e.g. LR1110 or LR1120) inherit from thi...
Definition: LR11x0.h:872
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
diff --git a/_l_r1120_8h_source.html b/_l_r1120_8h_source.html index a6134ee2..3962f7cd 100644 --- a/_l_r1120_8h_source.html +++ b/_l_r1120_8h_source.html @@ -110,42 +110,42 @@ $(document).ready(function(){initNavTree('_l_r1120_8h_source.html',''); initResi
69 
70  // configuration methods
71 
-
80  int16_t setFrequency(float freq) override;
-
81 
-
94  int16_t setFrequency(float freq, bool calibrate, float band = 4);
-
95 
-
101  int16_t setOutputPower(int8_t power) override;
-
102 
-
113  int16_t setOutputPower(int8_t power, bool forceHighPower);
-
114 
-
122  int16_t checkOutputPower(int8_t power, int8_t* clipped) override;
-
123 
-
133  int16_t checkOutputPower(int8_t power, int8_t* clipped, bool forceHighPower);
-
134 
-
141  int16_t setModem(ModemType_t modem) override;
-
142 
-
143 #if !RADIOLIB_GODMODE
-
144  private:
-
145 #endif
-
146  // flag to determine whether we are in the sub-GHz or 2.4 GHz range
-
147  // this is needed to automatically detect which PA to use
-
148  bool highFreq = false;
-
149 
-
150 };
-
151 
-
152 #endif
+
82  int16_t setFrequency(float freq) override;
+
83 
+
98  int16_t setFrequency(float freq, bool skipCalibration, float band = 4);
+
99 
+
105  int16_t setOutputPower(int8_t power) override;
+
106 
+
117  int16_t setOutputPower(int8_t power, bool forceHighPower);
+
118 
+
126  int16_t checkOutputPower(int8_t power, int8_t* clipped) override;
+
127 
+
137  int16_t checkOutputPower(int8_t power, int8_t* clipped, bool forceHighPower);
+
138 
+
145  int16_t setModem(ModemType_t modem) override;
+
146 
+
147 #if !RADIOLIB_GODMODE
+
148  private:
+
149 #endif
+
150  // flag to determine whether we are in the sub-GHz or 2.4 GHz range
+
151  // this is needed to automatically detect which PA to use
+
152  bool highFreq = false;
153 
-
154 #endif
+
154 };
+
155 
+
156 #endif
+
157 
+
158 #endif
LR1120
Derived class for LR1120 modules.
Definition: LR1120.h:15
-
LR1120::begin
int16_t begin(float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_LR11X0_LORA_SYNC_WORD_PRIVATE, int8_t power=10, uint16_t preambleLength=8, float tcxoVoltage=1.6)
Initialization method for LoRa modem.
Definition: LR1120.cpp:8
-
LR1120::setOutputPower
int16_t setOutputPower(int8_t power) override
Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (lo...
Definition: LR1120.cpp:72
-
LR1120::beginGFSK
int16_t beginGFSK(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=156.2, int8_t power=10, uint16_t preambleLength=16, float tcxoVoltage=1.6)
Initialization method for FSK modem.
Definition: LR1120.cpp:21
-
LR1120::setModem
int16_t setModem(ModemType_t modem) override
Set modem for the radio to use. Will perform full reset and reconfigure the radio using its default p...
Definition: LR1120.cpp:131
-
LR1120::setFrequency
int16_t setFrequency(float freq) override
Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400...
Definition: LR1120.cpp:47
-
LR1120::checkOutputPower
int16_t checkOutputPower(int8_t power, int8_t *clipped) override
Check if output power is configurable. This method is needed for compatibility with PhysicalLayer::ch...
Definition: LR1120.cpp:102
-
LR1120::beginLRFHSS
int16_t beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_LR11X0_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_LR11X0_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6)
Initialization method for LR-FHSS modem.
Definition: LR1120.cpp:34
-
LR1120::LR1120
LR1120(Module *mod)
Default constructor.
Definition: LR1120.cpp:4
-
LR11x0
Base class for LR11x0 series. All derived classes for LR11x0 (e.g. LR1110 or LR1120) inherit from thi...
Definition: LR11x0.h:871
+
LR1120::begin
int16_t begin(float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_LR11X0_LORA_SYNC_WORD_PRIVATE, int8_t power=10, uint16_t preambleLength=8, float tcxoVoltage=1.6)
Initialization method for LoRa modem.
Definition: LR1120.cpp:10
+
LR1120::setOutputPower
int16_t setOutputPower(int8_t power) override
Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (lo...
Definition: LR1120.cpp:75
+
LR1120::beginGFSK
int16_t beginGFSK(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=156.2, int8_t power=10, uint16_t preambleLength=16, float tcxoVoltage=1.6)
Initialization method for FSK modem.
Definition: LR1120.cpp:23
+
LR1120::setModem
int16_t setModem(ModemType_t modem) override
Set modem for the radio to use. Will perform full reset and reconfigure the radio using its default p...
Definition: LR1120.cpp:134
+
LR1120::setFrequency
int16_t setFrequency(float freq) override
Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400...
Definition: LR1120.cpp:49
+
LR1120::checkOutputPower
int16_t checkOutputPower(int8_t power, int8_t *clipped) override
Check if output power is configurable. This method is needed for compatibility with PhysicalLayer::ch...
Definition: LR1120.cpp:105
+
LR1120::beginLRFHSS
int16_t beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_LR11X0_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_LR11X0_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6)
Initialization method for LR-FHSS modem.
Definition: LR1120.cpp:36
+
LR1120::LR1120
LR1120(Module *mod)
Default constructor.
Definition: LR1120.cpp:6
+
LR11x0
Base class for LR11x0 series. All derived classes for LR11x0 (e.g. LR1110 or LR1120) inherit from thi...
Definition: LR11x0.h:872
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
diff --git a/_l_r11x0_8h_source.html b/_l_r11x0_8h_source.html index 70a1384f..37310176 100644 --- a/_l_r11x0_8h_source.html +++ b/_l_r11x0_8h_source.html @@ -321,979 +321,982 @@ $(document).ready(function(){initNavTree('_l_r11x0_8h_source.html',''); initResi
233 #define RADIOLIB_LR11X0_CALIBRATE_HF_RC (0x01UL << 1) // 1 1 high frequency RC
234 #define RADIOLIB_LR11X0_CALIBRATE_LF_RC (0x01UL << 0) // 0 0 low frequency RC
235 #define RADIOLIB_LR11X0_CALIBRATE_ALL (0x3FUL << 0) // 5 0 everything
-
236 
-
237 // RADIOLIB_LR11X0_CMD_SET_REG_MODE
-
238 #define RADIOLIB_LR11X0_REG_MODE_LDO (0x00UL << 0) // 0 0 regulator mode: LDO in all modes
-
239 #define RADIOLIB_LR11X0_REG_MODE_DC_DC (0x01UL << 0) // 0 0 DC-DC and LDO
-
240 
-
241 // RADIOLIB_LR11X0_CMD_SET_DIO_AS_RF_SWITCH
-
242 #define RADIOLIB_LR11X0_RFSW_DIO5_ENABLED (0x01UL << 0) // 4 0 RF switch: DIO5 enabled
-
243 #define RADIOLIB_LR11X0_RFSW_DIO5_DISABLED (0x00UL << 0) // 4 0 DIO5 disabled (default)
-
244 #define RADIOLIB_LR11X0_RFSW_DIO6_ENABLED (0x01UL << 1) // 4 0 RF switch: DIO6 enabled
-
245 #define RADIOLIB_LR11X0_RFSW_DIO6_DISABLED (0x00UL << 1) // 4 0 DIO6 disabled (default)
-
246 #define RADIOLIB_LR11X0_RFSW_DIO7_ENABLED (0x01UL << 2) // 4 0 RF switch: DIO7 enabled
-
247 #define RADIOLIB_LR11X0_RFSW_DIO7_DISABLED (0x00UL << 2) // 4 0 DIO7 disabled (default)
-
248 #define RADIOLIB_LR11X0_RFSW_DIO8_ENABLED (0x01UL << 3) // 4 0 RF switch: DIO8 enabled
-
249 #define RADIOLIB_LR11X0_RFSW_DIO8_DISABLED (0x00UL << 3) // 4 0 DIO8 disabled (default)
-
250 #define RADIOLIB_LR11X0_RFSW_DIO10_ENABLED (0x01UL << 4) // 4 0 RF switch: DIO10 enabled
-
251 #define RADIOLIB_LR11X0_RFSW_DIO10_DISABLED (0x00UL << 4) // 4 0 DIO10 disabled (default)
-
252 #define RADIOLIB_LR11X0_DIO5 (0)
-
253 #define RADIOLIB_LR11X0_DIO6 (1)
-
254 #define RADIOLIB_LR11X0_DIO7 (2)
-
255 #define RADIOLIB_LR11X0_DIO8 (3)
-
256 #define RADIOLIB_LR11X0_DIO10 (4)
-
257 
-
258 // RADIOLIB_LR11X0_CMD_SET_DIO_IRQ_PARAMS
-
259 #define RADIOLIB_LR11X0_IRQ_TX_DONE (0x01UL << 2) // 31 0 interrupt: packet transmitted
-
260 #define RADIOLIB_LR11X0_IRQ_RX_DONE (0x01UL << 3) // 31 0 packet received
-
261 #define RADIOLIB_LR11X0_IRQ_PREAMBLE_DETECTED (0x01UL << 4) // 31 0 preamble detected
-
262 #define RADIOLIB_LR11X0_IRQ_SYNC_WORD_HEADER_VALID (0x01UL << 5) // 31 0 sync word or LoRa header valid
-
263 #define RADIOLIB_LR11X0_IRQ_HEADER_ERR (0x01UL << 6) // 31 0 LoRa header CRC error
-
264 #define RADIOLIB_LR11X0_IRQ_CRC_ERR (0x01UL << 7) // 31 0 packet CRC error
-
265 #define RADIOLIB_LR11X0_IRQ_CAD_DONE (0x01UL << 8) // 31 0 CAD completed
-
266 #define RADIOLIB_LR11X0_IRQ_CAD_DETECTED (0x01UL << 9) // 31 0 CAD detected
-
267 #define RADIOLIB_LR11X0_IRQ_TIMEOUT (0x01UL << 10) // 31 0 Rx or Tx timeout
-
268 #define RADIOLIB_LR11X0_IRQ_LR_FHSS_HOP (0x01UL << 11) // 31 0 FHSS hop
-
269 #define RADIOLIB_LR11X0_IRQ_GNSS_DONE (0x01UL << 19) // 31 0 GNSS scan finished
-
270 #define RADIOLIB_LR11X0_IRQ_WIFI_DONE (0x01UL << 20) // 31 0 WiFi scan finished
-
271 #define RADIOLIB_LR11X0_IRQ_LBD (0x01UL << 21) // 31 0 low battery detected
-
272 #define RADIOLIB_LR11X0_IRQ_CMD_ERROR (0x01UL << 22) // 31 0 command error
-
273 #define RADIOLIB_LR11X0_IRQ_ERROR (0x01UL << 23) // 31 0 some other error than CMD_ERR
-
274 #define RADIOLIB_LR11X0_IRQ_FSK_LEN_ERROR (0x01UL << 24) // 31 0 FSK packet received with length error
-
275 #define RADIOLIB_LR11X0_IRQ_FSK_ADDR_ERROR (0x01UL << 25) // 31 0 FSK packet received with address error
-
276 #define RADIOLIB_LR11X0_IRQ_LORA_RX_TIMESTAMP (0x01UL << 27) // 31 0 last LoRa symbol was received (timestamp source)
-
277 #define RADIOLIB_LR11X0_IRQ_GNSS_ABORT (0x01UL << 28) // 31 0 GNSS scan aborted
-
278 #define RADIOLIB_LR11X0_IRQ_ALL (0x1BF80FFCUL) // 31 0 all interrupts
-
279 #define RADIOLIB_LR11X0_IRQ_NONE (0x00UL << 0) // 31 0 no interrupts
-
280 
-
281 // RADIOLIB_LR11X0_CMD_CONFIG_LF_LOCK
-
282 #define RADIOLIB_LR11X0_LF_CLK_RC (0x00UL << 0) // 1 0 32.768 kHz source: RC oscillator
-
283 #define RADIOLIB_LR11X0_LF_CLK_XOSC (0x01UL << 0) // 1 0 crystal oscillator
-
284 #define RADIOLIB_LR11X0_LF_CLK_EXT (0x02UL << 0) // 1 0 external signal on DIO11
-
285 #define RADIOLIB_LR11X0_LF_BUSY_RELEASE_DISABLED (0x00UL << 2) // 2 2
-
286 #define RADIOLIB_LR11X0_LF_BUSY_RELEASE_ENABLED (0x01UL << 2) // 2 2
-
287 
-
288 // RADIOLIB_LR11X0_CMD_SET_TCXO_MODE
-
289 #define RADIOLIB_LR11X0_TCXO_VOLTAGE_1_6 (0x00UL << 0) // 2 0 TCXO supply voltage: 1.6V
-
290 #define RADIOLIB_LR11X0_TCXO_VOLTAGE_1_7 (0x01UL << 0) // 2 0 1.7V
-
291 #define RADIOLIB_LR11X0_TCXO_VOLTAGE_1_8 (0x02UL << 0) // 2 0 1.8V
-
292 #define RADIOLIB_LR11X0_TCXO_VOLTAGE_2_2 (0x03UL << 0) // 2 0 2.2V
-
293 #define RADIOLIB_LR11X0_TCXO_VOLTAGE_2_4 (0x04UL << 0) // 2 0 2.4V
-
294 #define RADIOLIB_LR11X0_TCXO_VOLTAGE_2_7 (0x05UL << 0) // 2 0 2.7V
-
295 #define RADIOLIB_LR11X0_TCXO_VOLTAGE_3_0 (0x06UL << 0) // 2 0 3.0V
-
296 #define RADIOLIB_LR11X0_TCXO_VOLTAGE_3_3 (0x07UL << 0) // 2 0 3.3V
-
297 
-
298 // RADIOLIB_LR11X0_CMD_SET_SLEEP
-
299 #define RADIOLIB_LR11X0_SLEEP_RETENTION_DISABLED (0x00UL << 0) // 0 0 configuration retention in sleep mode: disabled
-
300 #define RADIOLIB_LR11X0_SLEEP_RETENTION_ENABLED (0x01UL << 0) // 0 0 enabled
-
301 #define RADIOLIB_LR11X0_SLEEP_WAKEUP_DISABLED (0x00UL << 0) // 1 1 automated wakeup: disabled
-
302 #define RADIOLIB_LR11X0_SLEEP_WAKEUP_ENABLED (0x01UL << 0) // 1 1 enabled
-
303 
-
304 // RADIOLIB_LR11X0_CMD_SET_STANDBY
-
305 #define RADIOLIB_LR11X0_STANDBY_RC (0x00UL << 0) // 7 0 standby mode: RC oscillator
-
306 #define RADIOLIB_LR11X0_STANDBY_XOSC (0x00UL << 0) // 7 0 XTAL/TCXO oscillator
-
307 
-
308 // RADIOLIB_LR11X0_CMD_ERASE_INFO_PAGE
-
309 #define RADIOLIB_LR11X0_INFO_PAGE (1)
-
310 
-
311 // RADIOLIB_LR11X0_CMD_GET_CHIP_EUI
-
312 #define RADIOLIB_LR11X0_EUI_LEN (8)
-
313 
-
314 // RADIOLIB_LR11X0_CMD_DERIVE_ROOT_KEYS_AND_GET_PIN
-
315 #define RADIOLIB_LR11X0_PIN_LEN (4)
-
316 
-
317 // RADIOLIB_LR11X0_CMD_GET_PACKET_STATUS
-
318 #define RADIOLIB_LR11X0_RX_STATUS_ADDR_ERR (0x01UL << 5) // 7 0 Rx status: address filtering error
-
319 #define RADIOLIB_LR11X0_RX_STATUS_CRC_ERR (0x01UL << 4) // 7 0 CRC error
-
320 #define RADIOLIB_LR11X0_RX_STATUS_LEN_ERR (0x01UL << 3) // 7 0 length filtering error
-
321 #define RADIOLIB_LR11X0_RX_STATUS_ABORTED (0x01UL << 2) // 7 0 packet reception aborted
-
322 #define RADIOLIB_LR11X0_RX_STATUS_PACKET_RECEIVED (0x01UL << 1) // 7 0 packet received
-
323 #define RADIOLIB_LR11X0_RX_STATUS_PACKET_SENT (0x01UL << 0) // 7 0 packet sent
-
324 
-
325 // RADIOLIB_LR11X0_CMD_SET_GFSK_SYNC_WORD
-
326 #define RADIOLIB_LR11X0_GFSK_SYNC_WORD_LEN (8)
-
327 
-
328 // RADIOLIB_LR11X0_CMD_SET_LORA_PUBLIC_NETWORK
-
329 #define RADIOLIB_LR11X0_LORA_PRIVATE_NETWORK (0x00UL << 0) // 7 0 LoRa sync word: private network
-
330 #define RADIOLIB_LR11X0_LORA_PUBLIC_NETWORK (0x01UL << 0) // 7 0 public network
-
331 
-
332 // RADIOLIB_LR11X0_CMD_SET_RX
-
333 #define RADIOLIB_LR11X0_RX_TIMEOUT_NONE (0x000000UL) // 23 0 Rx timeout duration: no timeout (Rx single mode)
-
334 #define RADIOLIB_LR11X0_RX_TIMEOUT_INF (0xFFFFFFUL) // 23 0 infinite (Rx continuous mode)
-
335 
-
336 // RADIOLIB_LR11X0_CMD_SET_TX
-
337 #define RADIOLIB_LR11X0_TX_TIMEOUT_NONE (0x000000UL) // 23 0 disable Tx timeout
-
338 
-
339 // RADIOLIB_LR11X0_CMD_AUTO_TX_RX
-
340 #define RADIOLIB_LR11X0_AUTO_TX_RX_DISABLED (0xFFFFFFUL) // 23 0 disable auto Tx/Rx mode
-
341 #define RADIOLIB_LR11X0_AUTO_TX_RX_SKIP_INT (0x000000UL) // 23 0 skip intermediary mode
-
342 #define RADIOLIB_LR11X0_AUTO_INTERMEDIARY_MODE_SLEEP (0x00UL << 0) // 1 0 intermediary mode: sleep
-
343 #define RADIOLIB_LR11X0_AUTO_INTERMEDIARY_MODE_STBY_RC (0x01UL << 0) // 1 0 standby with RC
-
344 #define RADIOLIB_LR11X0_AUTO_INTERMEDIARY_MODE_STBY_XOSC (0x02UL << 0) // 1 0 standby with XOSC
-
345 #define RADIOLIB_LR11X0_AUTO_INTERMEDIARY_MODE_FS (0x03UL << 0) // 1 0 frequency synthesis
-
346 #define RADIOLIB_LR11X0_AUTO_TX_RX_TIMEOUT_DISABLED (0x000000UL) // 23 0 disable timeout of the second mode
-
347 
-
348 // RADIOLIB_LR11X0_CMD_SET_CAD_PARAMS
-
349 #define RADIOLIB_LR11X0_CAD_EXIT_MODE_STBY_RC (0x00UL << 0) // 7 0 mode to set after CAD: standby with RC
-
350 #define RADIOLIB_LR11X0_CAD_EXIT_MODE_RX (0x01UL << 0) // 7 0 receive if activity detected
-
351 #define RADIOLIB_LR11X0_CAD_EXIT_MODE_LBT (0x10UL << 0) // 7 0 transmit if no activity detected
-
352 #define RADIOLIB_LR11X0_CAD_PARAM_DEFAULT (0xFFUL << 0) // 7 0 used by the CAD methods to specify default parameter value
-
353 
-
354 // RADIOLIB_LR11X0_CMD_SET_PACKET_TYPE
-
355 #define RADIOLIB_LR11X0_PACKET_TYPE_NONE (0x00UL << 0) // 2 0 packet type: none
-
356 #define RADIOLIB_LR11X0_PACKET_TYPE_GFSK (0x01UL << 0) // 2 0 (G)FSK
-
357 #define RADIOLIB_LR11X0_PACKET_TYPE_LORA (0x02UL << 0) // 2 0 LoRa
-
358 #define RADIOLIB_LR11X0_PACKET_TYPE_SIGFOX (0x03UL << 0) // 2 0 Sigfox
-
359 #define RADIOLIB_LR11X0_PACKET_TYPE_LR_FHSS (0x04UL << 0) // 2 0 GMSK/LR-FHSS
-
360 #define RADIOLIB_LR11X0_PACKET_TYPE_RANGING (0x05UL << 0) // 2 0 ranging
-
361 #define RADIOLIB_LR11X0_PACKET_TYPE_BLE (0x06UL << 0) // 2 0 BLE beacon
-
362 
-
363 // RADIOLIB_LR11X0_CMD_SET_MODULATION_PARAMS
-
364 #define RADIOLIB_LR11X0_LORA_BW_62_5 (0x03UL << 0) // 7 0 LoRa bandwidth: 62.5 kHz
-
365 #define RADIOLIB_LR11X0_LORA_BW_125_0 (0x04UL << 0) // 7 0 125.0 kHz
-
366 #define RADIOLIB_LR11X0_LORA_BW_250_0 (0x05UL << 0) // 7 0 250.0 kHz
-
367 #define RADIOLIB_LR11X0_LORA_BW_500_0 (0x06UL << 0) // 7 0 500.0 kHz
-
368 #define RADIOLIB_LR11X0_LORA_BW_203_125 (0x0DUL << 0) // 7 0 203.0 kHz (2.4GHz only)
-
369 #define RADIOLIB_LR11X0_LORA_BW_406_25 (0x0EUL << 0) // 7 0 406.0 kHz (2.4GHz only)
-
370 #define RADIOLIB_LR11X0_LORA_BW_812_50 (0x0FUL << 0) // 7 0 812.0 kHz (2.4GHz only)
-
371 #define RADIOLIB_LR11X0_LORA_CR_4_5_SHORT (0x01UL << 0) // 7 0 coding rate: 4/5 with short interleaver
-
372 #define RADIOLIB_LR11X0_LORA_CR_4_6_SHORT (0x02UL << 0) // 7 0 4/6 with short interleaver
-
373 #define RADIOLIB_LR11X0_LORA_CR_4_7_SHORT (0x03UL << 0) // 7 0 4/7 with short interleaver
-
374 #define RADIOLIB_LR11X0_LORA_CR_4_8_SHORT (0x04UL << 0) // 7 0 4/8 with short interleaver
-
375 #define RADIOLIB_LR11X0_LORA_CR_4_5_LONG (0x05UL << 0) // 7 0 4/5 with long interleaver
-
376 #define RADIOLIB_LR11X0_LORA_CR_4_6_LONG (0x06UL << 0) // 7 0 4/6 with long interleaver
-
377 #define RADIOLIB_LR11X0_LORA_CR_4_8_LONG (0x07UL << 0) // 7 0 4/8 with long interleaver
-
378 #define RADIOLIB_LR11X0_LORA_LDRO_DISABLED (0x00UL << 0) // 7 0 low data rate optimize: disabled
-
379 #define RADIOLIB_LR11X0_LORA_LDRO_ENABLED (0x01UL << 0) // 7 0 enabled
-
380 #define RADIOLIB_LR11X0_GFSK_BIT_RATE_DIV_DISABLED (0x00UL << 31) // 31 0 divide bit rate value by 256: disabled
-
381 #define RADIOLIB_LR11X0_GFSK_BIT_RATE_DIV_ENABLED (0x01UL << 31) // 31 0 enabled
-
382 #define RADIOLIB_LR11X0_GFSK_SHAPING_NONE (0x00UL << 0) // 7 0 shaping filter: none
-
383 #define RADIOLIB_LR11X0_GFSK_SHAPING_GAUSSIAN_BT_0_3 (0x08UL << 0) // 7 0 Gaussian, BT = 0.3
-
384 #define RADIOLIB_LR11X0_GFSK_SHAPING_GAUSSIAN_BT_0_5 (0x09UL << 0) // 7 0 Gaussian, BT = 0.5
-
385 #define RADIOLIB_LR11X0_GFSK_SHAPING_GAUSSIAN_BT_0_7 (0x0AUL << 0) // 7 0 Gaussian, BT = 0.7
-
386 #define RADIOLIB_LR11X0_GFSK_SHAPING_GAUSSIAN_BT_1_0 (0x0BUL << 0) // 7 0 Gaussian, BT = 1.0
-
387 #define RADIOLIB_LR11X0_GFSK_SHAPING_RAISED_COSINE_BT_0_7 (0x16UL << 0) // 7 0 raised cosine, BT = 0.7
-
388 #define RADIOLIB_LR11X0_GFSK_RX_BW_4_8 (0x1FUL << 0) // 7 0 GFSK Rx bandwidth: 4.8 kHz
-
389 #define RADIOLIB_LR11X0_GFSK_RX_BW_5_8 (0x17UL << 0) // 7 0 5.8 kHz
-
390 #define RADIOLIB_LR11X0_GFSK_RX_BW_7_3 (0x0FUL << 0) // 7 0 7.3 kHz
-
391 #define RADIOLIB_LR11X0_GFSK_RX_BW_9_7 (0x1EUL << 0) // 7 0 9.7 kHz
-
392 #define RADIOLIB_LR11X0_GFSK_RX_BW_11_7 (0x16UL << 0) // 7 0 11.7 kHz
-
393 #define RADIOLIB_LR11X0_GFSK_RX_BW_14_6 (0x0EUL << 0) // 7 0 14.6 kHz
-
394 #define RADIOLIB_LR11X0_GFSK_RX_BW_19_5 (0x1DUL << 0) // 7 0 19.5 kHz
-
395 #define RADIOLIB_LR11X0_GFSK_RX_BW_23_4 (0x15UL << 0) // 7 0 23.4 kHz
-
396 #define RADIOLIB_LR11X0_GFSK_RX_BW_29_3 (0x0DUL << 0) // 7 0 29.3 kHz
-
397 #define RADIOLIB_LR11X0_GFSK_RX_BW_39_0 (0x1CUL << 0) // 7 0 39.0 kHz
-
398 #define RADIOLIB_LR11X0_GFSK_RX_BW_46_9 (0x14UL << 0) // 7 0 46.9 kHz
-
399 #define RADIOLIB_LR11X0_GFSK_RX_BW_58_6 (0x0CUL << 0) // 7 0 58.6 kHz
-
400 #define RADIOLIB_LR11X0_GFSK_RX_BW_78_2 (0x1BUL << 0) // 7 0 78.2 kHz
-
401 #define RADIOLIB_LR11X0_GFSK_RX_BW_93_8 (0x13UL << 0) // 7 0 93.8 kHz
-
402 #define RADIOLIB_LR11X0_GFSK_RX_BW_117_3 (0x0BUL << 0) // 7 0 117.3 kHz
-
403 #define RADIOLIB_LR11X0_GFSK_RX_BW_156_2 (0x1AUL << 0) // 7 0 156.2 kHz
-
404 #define RADIOLIB_LR11X0_GFSK_RX_BW_187_2 (0x12UL << 0) // 7 0 187.2 kHz
-
405 #define RADIOLIB_LR11X0_GFSK_RX_BW_234_3 (0x0AUL << 0) // 7 0 234.3 kHz
-
406 #define RADIOLIB_LR11X0_GFSK_RX_BW_312_0 (0x19UL << 0) // 7 0 312.0 kHz
-
407 #define RADIOLIB_LR11X0_GFSK_RX_BW_373_6 (0x11UL << 0) // 7 0 373.6 kHz
-
408 #define RADIOLIB_LR11X0_GFSK_RX_BW_467_0 (0x09UL << 0) // 7 0 467.0 kHz
-
409 #define RADIOLIB_LR11X0_LR_FHSS_BIT_RATE (488.28215) // 31 0 LR FHSS bit rate: 488.28215 bps
-
410 #define RADIOLIB_LR11X0_LR_FHSS_BIT_RATE_RAW (0x8001E848UL) // 31 0 488.28215 bps in raw
-
411 #define RADIOLIB_LR11X0_LR_FHSS_SHAPING_GAUSSIAN_BT_1_0 (0x0BUL << 0) // 7 0 shaping filter: Gaussian, BT = 1.0
-
412 #define RADIOLIB_LR11X0_SIGFOX_SHAPING_GAUSSIAN_BT_0_7 (0x16UL << 0) // 7 0 shaping filter: Gaussian, BT = 0.7
-
413 
-
414 // RADIOLIB_LR11X0_CMD_SET_PACKET_PARAMS
-
415 #define RADIOLIB_LR11X0_LORA_HEADER_EXPLICIT (0x00UL << 0) // 7 0 LoRa header mode: explicit
-
416 #define RADIOLIB_LR11X0_LORA_HEADER_IMPLICIT (0x01UL << 0) // 7 0 implicit
-
417 #define RADIOLIB_LR11X0_LORA_PAYLOAD_LEN_ANY (0x00UL << 0) // 7 0 accept any payload length
-
418 #define RADIOLIB_LR11X0_LORA_CRC_ENABLED (0x01UL << 0) // 7 0 CRC: enabled
-
419 #define RADIOLIB_LR11X0_LORA_CRC_DISABLED (0x00UL << 0) // 7 0 disabled
-
420 #define RADIOLIB_LR11X0_LORA_IQ_STANDARD (0x00UL << 0) // 7 0 IQ setup: standard
-
421 #define RADIOLIB_LR11X0_LORA_IQ_INVERTED (0x01UL << 0) // 7 0 inverted
-
422 #define RADIOLIB_LR11X0_GFSK_PREAMBLE_DETECT_DISABLED (0x00UL << 0) // 7 0 preamble detector: disabled
-
423 #define RADIOLIB_LR11X0_GFSK_PREAMBLE_DETECT_8_BITS (0x04UL << 0) // 7 0 8 bits
-
424 #define RADIOLIB_LR11X0_GFSK_PREAMBLE_DETECT_16_BITS (0x05UL << 0) // 7 0 16 bits
-
425 #define RADIOLIB_LR11X0_GFSK_PREAMBLE_DETECT_24_BITS (0x06UL << 0) // 7 0 24 bits
-
426 #define RADIOLIB_LR11X0_GFSK_PREAMBLE_DETECT_32_BITS (0x07UL << 0) // 7 0 32 bits
-
427 #define RADIOLIB_LR11X0_GFSK_ADDR_FILTER_DISABLED (0x00UL << 0) // 7 0 address filtering: disabled
-
428 #define RADIOLIB_LR11X0_GFSK_ADDR_FILTER_NODE (0x01UL << 0) // 7 0 node address
-
429 #define RADIOLIB_LR11X0_GFSK_ADDR_FILTER_NODE_BROADCAST (0x02UL << 0) // 7 0 node and broadcast address
-
430 #define RADIOLIB_LR11X0_GFSK_PACKET_LENGTH_FIXED (0x00UL << 0) // 7 0 packet length: fixed
-
431 #define RADIOLIB_LR11X0_GFSK_PACKET_LENGTH_VARIABLE (0x01UL << 0) // 7 0 variable
-
432 #define RADIOLIB_LR11X0_GFSK_PACKET_LENGTH_VARIABLE_SX128X (0x02UL << 0) // 7 0 variable, SX128x 9-bit length encoding
-
433 #define RADIOLIB_LR11X0_GFSK_PAYLOAD_LEN_ANY (0x00UL << 0) // 7 0 accept any payload length
-
434 #define RADIOLIB_LR11X0_GFSK_CRC_DISABLED (0x01UL << 0) // 7 0 CRC: disabled
-
435 #define RADIOLIB_LR11X0_GFSK_CRC_1_BYTE (0x00UL << 0) // 7 0 1-byte
-
436 #define RADIOLIB_LR11X0_GFSK_CRC_2_BYTE (0x02UL << 0) // 7 0 2-byte
-
437 #define RADIOLIB_LR11X0_GFSK_CRC_1_BYTE_INV (0x04UL << 0) // 7 0 1-byte, inverted
-
438 #define RADIOLIB_LR11X0_GFSK_CRC_2_BYTE_INV (0x06UL << 0) // 7 0 2-byte, inverted
-
439 #define RADIOLIB_LR11X0_GFSK_WHITENING_DISABLED (0x00UL << 0) // 7 0 whitening: disabled
-
440 #define RADIOLIB_LR11X0_GFSK_WHITENING_ENABLED (0x01UL << 0) // 7 0 enabled
-
441 
-
442 // RADIOLIB_LR11X0_CMD_SET_TX_PARAMS
-
443 #define RADIOLIB_LR11X0_PA_RAMP_48U (0x02UL << 0) // 7 0 PA ramp time: 48 us
-
444 
-
445 // RADIOLIB_LR11X0_CMD_SET_RX_TX_FALLBACK_MODE
-
446 #define RADIOLIB_LR11X0_FALLBACK_MODE_STBY_RC (0x01UL << 0) // 1 0 fallback mode after Rx/Tx: standby with RC
-
447 #define RADIOLIB_LR11X0_FALLBACK_MODE_STBY_XOSC (0x02UL << 0) // 1 0 standby with XOSC
-
448 #define RADIOLIB_LR11X0_FALLBACK_MODE_FS (0x03UL << 0) // 1 0 frequency synthesis
-
449 
-
450 // RADIOLIB_LR11X0_CMD_SET_RX_DUTY_CYCLE
-
451 #define RADIOLIB_LR11X0_RX_DUTY_CYCLE_MODE_RX (0x00UL << 0) // 0 0 mode in Rx windows: Rx (default)
-
452 #define RADIOLIB_LR11X0_RX_DUTY_CYCLE_MODE_CAD (0x01UL << 0) // 0 0 CAD
-
453 #define RADIOLIB_LR11X0_TIMING_STEP (1.0f/32768.0f) // 23 0 timing step fo delays
-
454 
-
455 // RADIOLIB_LR11X0_CMD_SET_PA_CONFIG
-
456 #define RADIOLIB_LR11X0_PA_SEL_LP (0x00UL << 0) // 7 0 PA select: low power PA
-
457 #define RADIOLIB_LR11X0_PA_SEL_HP (0x01UL << 0) // 7 0 high power PA
-
458 #define RADIOLIB_LR11X0_PA_SEL_HF (0x02UL << 0) // 7 0 high frequency PA
-
459 #define RADIOLIB_LR11X0_PA_SUPPLY_INTERNAL (0x00UL << 0) // 7 0 PA power source: internal
-
460 #define RADIOLIB_LR11X0_PA_SUPPLY_VBAT (0x01UL << 0) // 7 0 VBAT (required for >= 14 dBm)
-
461 
-
462 // RADIOLIB_LR11X0_CMD_STOP_TIMEOUT_ON_PREAMBLE
-
463 #define RADIOLIB_LR11X0_STOP_ON_SYNC_HEADER (0x00UL << 0) // 0 0 stop timeout on: sync word or header (default)
-
464 #define RADIOLIB_LR11X0_STOP_ON_PREAMBLE (0x01UL << 0) // 0 0 preamble
-
465 
-
466 // RADIOLIB_LR11X0_CMD_GET_RANGING_RESULT
-
467 #define RADIOLIB_LR11X0_RANGING_RESULT_DISTANCE (0) // 7 0 ranging result type: distance
-
468 #define RADIOLIB_LR11X0_RANGING_RESULT_RSSI (1) // 7 0 RSSI
-
469 
-
470 // RADIOLIB_LR11X0_CMD_SET_RX_BOOSTED
-
471 #define RADIOLIB_LR11X0_RX_BOOSTED_ENABLED (0x01UL << 0) // 0 0 Rx boosted mode: enabled
-
472 #define RADIOLIB_LR11X0_RX_BOOSTED_DISABLED (0x00UL << 0) // 0 0 disabled
-
473 
-
474 // RADIOLIB_LR11X0_CMD_SET_LORA_SYNC_WORD
-
475 #define RADIOLIB_LR11X0_LORA_SYNC_WORD_PRIVATE (0x12)
-
476 #define RADIOLIB_LR11X0_LORA_SYNC_WORD_PUBLIC (0x34)
-
477 
-
478 // RADIOLIB_LR11X0_CMD_LR_FHSS_BUILD_FRAME
-
479 #define RADIOLIB_LR11X0_LR_FHSS_CR_5_6 (0x00UL << 0) // 7 0 LR FHSS coding rate: 5/6
-
480 #define RADIOLIB_LR11X0_LR_FHSS_CR_2_3 (0x01UL << 0) // 7 0 2/3
-
481 #define RADIOLIB_LR11X0_LR_FHSS_CR_1_2 (0x02UL << 0) // 7 0 1/2
-
482 #define RADIOLIB_LR11X0_LR_FHSS_CR_1_3 (0x03UL << 0) // 7 0 1/3
-
483 #define RADIOLIB_LR11X0_LR_FHSS_MOD_TYPE_GMSK (0x00UL << 0) // 7 0 LR FHSS modulation: GMSK
-
484 #define RADIOLIB_LR11X0_LR_FHSS_GRID_STEP_FCC (0x00UL << 0) // 7 0 LR FHSS step size: 25.390625 kHz (FCC)
-
485 #define RADIOLIB_LR11X0_LR_FHSS_GRID_STEP_NON_FCC (0x01UL << 0) // 7 0 3.90625 kHz (non-FCC)
-
486 #define RADIOLIB_LR11X0_LR_FHSS_HOPPING_DISABLED (0x00UL << 0) // 7 0 LR FHSS hopping: disabled
-
487 #define RADIOLIB_LR11X0_LR_FHSS_HOPPING_ENABLED (0x01UL << 0) // 7 0 enabled
-
488 #define RADIOLIB_LR11X0_LR_FHSS_BW_39_06 (0x00UL << 0) // 7 0 LR FHSS bandwidth: 39.06 kHz
-
489 #define RADIOLIB_LR11X0_LR_FHSS_BW_85_94 (0x01UL << 0) // 7 0 85.94 kHz
-
490 #define RADIOLIB_LR11X0_LR_FHSS_BW_136_72 (0x02UL << 0) // 7 0 136.72 kHz
-
491 #define RADIOLIB_LR11X0_LR_FHSS_BW_183_59 (0x03UL << 0) // 7 0 183.59 kHz
-
492 #define RADIOLIB_LR11X0_LR_FHSS_BW_335_94 (0x04UL << 0) // 7 0 335.94 kHz
-
493 #define RADIOLIB_LR11X0_LR_FHSS_BW_386_72 (0x05UL << 0) // 7 0 386.72 kHz
-
494 #define RADIOLIB_LR11X0_LR_FHSS_BW_722_66 (0x06UL << 0) // 7 0 722.66 kHz
-
495 #define RADIOLIB_LR11X0_LR_FHSS_BW_773_44 (0x07UL << 0) // 7 0 773.44 kHz
-
496 #define RADIOLIB_LR11X0_LR_FHSS_BW_1523_4 (0x08UL << 0) // 7 0 1523.4 kHz
-
497 #define RADIOLIB_LR11X0_LR_FHSS_BW_1574_2 (0x09UL << 0) // 7 0 1574.2 kHz
-
498 #define RADIOLIB_LR11X0_LR_FHSS_HEADER_BITS (114) // 7 0 LR FHSS packet bit widths: header
-
499 #define RADIOLIB_LR11X0_LR_FHSS_FRAG_BITS (48) // 7 0 payload fragment
-
500 #define RADIOLIB_LR11X0_LR_FHSS_BLOCK_PREAMBLE_BITS (2) // 7 0 block preamble
-
501 #define RADIOLIB_LR11X0_LR_FHSS_BLOCK_BITS (RADIOLIB_LR11X0_LR_FHSS_FRAG_BITS + RADIOLIB_LR11X0_LR_FHSS_BLOCK_PREAMBLE_BITS)
-
502 
-
503 // RADIOLIB_LR11X0_CMD_GET_LORA_RX_HEADER_INFOS
-
504 #define RADIOLIB_LR11X0_LAST_HEADER_CRC_ENABLED (0x01UL << 4) // 4 4 last header CRC: enabled
-
505 #define RADIOLIB_LR11X0_LAST_HEADER_CRC_DISABLED (0x00UL << 4) // 4 4 disabled
-
506 
-
507 // RADIOLIB_LR11X0_CMD_WIFI_SCAN
-
508 #define RADIOLIB_LR11X0_WIFI_SCAN_802_11_B (0x01UL << 0) // 7 0 Wi-Fi type to scan: 802.11b
-
509 #define RADIOLIB_LR11X0_WIFI_SCAN_802_11_G (0x02UL << 0) // 7 0 802.11g
-
510 #define RADIOLIB_LR11X0_WIFI_SCAN_802_11_N (0x03UL << 0) // 7 0 802.11n
-
511 #define RADIOLIB_LR11X0_WIFI_SCAN_ALL (0x04UL << 0) // 7 0 all (802.11b first)
-
512 #define RADIOLIB_LR11X0_WIFI_ACQ_MODE_BEACON_ONLY (0x01UL << 0) // 7 0 Wi-Fi acquisition mode: beacon only
-
513 #define RADIOLIB_LR11X0_WIFI_ACQ_MODE_BEACON_PACKET (0x02UL << 0) // 7 0 beacon and packet
-
514 #define RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_TRAFFIC (0x03UL << 0) // 7 0 full traffic
-
515 #define RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON (0x04UL << 0) // 7 0 full beacon
-
516 #define RADIOLIB_LR11X0_WIFI_ACQ_MODE_SSID_BEACON (0x05UL << 0) // 7 0 SSID beacon
-
517 #define RADIOLIB_LR11X0_WIFI_ABORT_ON_TIMEOUT_ENABLED (0x01UL << 0) // 7 0 abort scanning on preamble timeout: enabled
-
518 #define RADIOLIB_LR11X0_WIFI_ABORT_ON_TIMEOUT_DISABLED (0x00UL << 0) // 7 0 disabled
-
519 #define RADIOLIB_LR11X0_WIFI_MAX_NUM_RESULTS (32) // 7 0 maximum possible number of Wi-Fi scan results
-
520 #define RADIOLIB_LR11X0_WIFI_ALL_CHANNELS (0x3FFFUL) // 16 0 scan all channels
-
521 
-
522 // RADIOLIB_LR11X0_CMD_WIFI_READ_RESULTS
-
523 #define RADIOLIB_LR11X0_WIFI_RESULT_TYPE_COMPLETE (0x01UL << 0) // 7 0 Wi-Fi scan result type: complete
-
524 #define RADIOLIB_LR11X0_WIFI_RESULT_TYPE_BASIC (0x04UL << 0) // 7 0 basic
-
525 #define RADIOLIB_LR11X0_WIFI_RESULT_MAX_LEN (79) // 7 0 maximum possible Wi-Fi scan size
-
526 #define RADIOLIB_LR11X0_WIFI_RESULT_MAC_LEN (6) // 7 0 MAC address length in bytes
-
527 #define RADIOLIB_LR11X0_WIFI_RESULT_SSID_LEN (32) // 7 0 SSID length in bytes
-
528 
-
529 // RADIOLIB_LR11X0_CMD_GNSS_SET_CONSTELLATION_TO_USE
-
530 #define RADIOLIB_LR11X0_GNSS_CONSTELLATION_GPS (0x01UL << 0) // 7 0 GNSS constellation to use: GPS
-
531 #define RADIOLIB_LR11X0_GNSS_CONSTELLATION_BEIDOU (0x01UL << 1) // 7 0 BeiDou
-
532 
-
533 // RADIOLIB_LR11X0_CMD_GNSS_SET_MODE
-
534 #define RADIOLIB_LR11X0_GNSS_MODE_SINGLE_SCAN (0x00UL << 0) // 7 0 GNSS scanning mode: single/legacy
-
535 #define RADIOLIB_LR11X0_GNSS_MODE_SINGLE_MULTIPLE (0x03UL << 1) // 7 0 multiple/advanced
-
536 
-
537 // RADIOLIB_LR11X0_CMD_GNSS_AUTONOMOUS
-
538 #define RADIOLIB_LR11X0_GNSS_RES_PSEUDO_DOPPLER_ENABLED (0x01UL << 0) // 0 0 GNSS results in NAV message: pseudo-range (in single scan mode) or Doppler information (in multiple scan mode)
-
539 #define RADIOLIB_LR11X0_GNSS_RES_PSEUDO_DOPPLER_DISABLED (0x00UL << 0) // 0 0 not included
-
540 #define RADIOLIB_LR11X0_GNSS_RES_DOPPLER_ENABLED (0x01UL << 1) // 1 1 Doppler information
-
541 #define RADIOLIB_LR11X0_GNSS_RES_DOPPLER_DISABLED (0x00UL << 1) // 1 1 not included
-
542 #define RADIOLIB_LR11X0_GNSS_NB_SV_ALL (0x00UL << 0) // 7 0 include all detected satellites
-
543 #define RADIOLIB_LR11X0_GNSS_AUTO_EFFORT_MODE (0x00UL << 0) // 7 0 reserved, always 0
-
544 
-
545 // RADIOLIB_LR11X0_CMD_GNSS_ASSISTED
-
546 #define RADIOLIB_LR11X0_GNSS_ASSIST_LOW_POWER (0x00UL << 0) // 7 0 effort mode: low power
-
547 #define RADIOLIB_LR11X0_GNSS_ASSIST_BEST_EFFORT (0x01UL << 0) // 7 0 best effort
-
548 
-
549 // RADIOLIB_LR11X0_CMD_GNSS_GET_CONTEXT_STATUS
-
550 #define RADIOLIB_LR11X0_GNSS_CONTEXT_ERR_NONE (0x00UL << 0) // 7 4 error code: none
-
551 #define RADIOLIB_LR11X0_GNSS_CONTEXT_ERR_ALMANAC_OLD (0x01UL << 0) // 7 4 almanac too old
-
552 #define RADIOLIB_LR11X0_GNSS_CONTEXT_ERR_ALMANAC_CRC (0x02UL << 0) // 7 4 almanac CRC mismatch
-
553 #define RADIOLIB_LR11X0_GNSS_CONTEXT_ERR_FLASH (0x03UL << 0) // 7 4 flash integrity error
-
554 #define RADIOLIB_LR11X0_GNSS_CONTEXT_ERR_ALMANAC_UPD (0x04UL << 0) // 7 4 almanac update not allowed
-
555 #define RADIOLIB_LR11X0_GNSS_CONTEXT_FREQ_SPACE_250_HZ (0x00UL << 0) // 8 7 frequency search space: 250 Hz
-
556 #define RADIOLIB_LR11X0_GNSS_CONTEXT_FREQ_SPACE_500_HZ (0x01UL << 0) // 8 7 500 Hz
-
557 #define RADIOLIB_LR11X0_GNSS_CONTEXT_FREQ_SPACE_1000_HZ (0x02UL << 0) // 8 7 1000 Hz
-
558 #define RADIOLIB_LR11X0_GNSS_CONTEXT_FREQ_SPACE_2000_HZ (0x03UL << 0) // 8 7 2000 Hz
-
559 
-
560 // RADIOLIB_LR11X0_CMD_GNSS_GET_SV_VISIBLE
-
561 #define RADIOLIB_LR11X0_SV_CONSTELLATION_GPS (0x00UL << 0) // 7 0 GNSS constellation: GPS
-
562 #define RADIOLIB_LR11X0_SV_CONSTELLATION_BEIDOU (0x01UL << 0) // 7 0 BeiDou
-
563 
-
564 // RADIOLIB_LR11X0_CMD_GNSS_ALMANAC_FULL_UPDATE
-
565 #define RADIOLIB_LR11X0_GNSS_ALMANAC_HEADER_ID (0x80UL << 0) // 7 0 starting byte of GNSS almanac header
-
566 #define RADIOLIB_LR11X0_GNSS_ALMANAC_BLOCK_SIZE (20)
-
567 
-
568 // RADIOLIB_LR11X0_CMD_GNSS_FETCH_TIME
-
569 #define RADIOLIB_LR11X0_GNSS_EFFORT_LOW (0x00UL << 0) // 7 0 GNSS effort mode: low sensitivity
-
570 #define RADIOLIB_LR11X0_GNSS_EFFORT_MID (0x01UL << 0) // 7 0 medium sensitivity
-
571 #define RADIOLIB_LR11X0_GNSS_FETCH_TIME_OPT_TOW (0x00UL << 0) // 7 0 time fetch options: ToW only, requires WN to demodulated beforehand
-
572 #define RADIOLIB_LR11X0_GNSS_FETCH_TIME_OPT_TOW_WN (0x01UL << 0) // 7 0 ToW and WN
-
573 #define RADIOLIB_LR11X0_GNSS_FETCH_TIME_OPT_TOW_WN_ROLL (0x02UL << 0) // 7 0 ToW, WN and rollover
-
574 
-
575 // RADIOLIB_LR11X0_CMD_GNSS_READ_DEMOD_STATUS
-
576 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_NOT_POSSIBLE (-21) // 7 0 GNSS demodulation status: not possible to demodulate
-
577 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_SAT_LOST (-20) // 7 0 satellite lost
-
578 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_ALMANAC_DEMOD_ERROR (-19) // 7 0 almanac demodulation error
-
579 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_TOO_LATE (-18) // 7 0 woke up after preamble (demodulation started too late)
-
580 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_20_MS_FAIL (-17) // 7 0 20ms real-time clock failed
-
581 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_WAKE_UP_FAIL (-16) // 7 0 wake up sync failed
-
582 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_WN_INVALID (-15) // 7 0 week number not validated
-
583 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_NO_ACTIVE_SAT (-14) // 7 0 no active satellite selected in satellite list
-
584 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_SLEEP_TOO_LONG (-13) // 7 0 sleep time too long
-
585 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_TOW_INVALID (-12) // 7 0 wrong time-of-week demodulated
-
586 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_PREAMBLE_INVALID (-11) // 7 0 preamble not validated
-
587 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_DISABLED (-10) // 7 0 demodulator disabled
-
588 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_EXTR_FAILED (-9) // 7 0 demodulator extraction failed
-
589 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_NO_BIT_CHANGE (-8) // 7 0 no bit change found during demodulation start
-
590 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_NO_BIT_CHANGE_ADV (-7) // 7 0 no bit change found during advanced scan
-
591 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_NO_SAT_FOUND (-6) // 7 0 no satellites found
-
592 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_SYNC_LOST (-5) // 7 0 word sync lost
-
593 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_PARITY_NOT_ENOUGH (-3) // 7 0 parity check fail (not enough)
-
594 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_PARITY_TOO_MANY (-2) // 7 0 parity check fail (too many)
-
595 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_NO_PARITY (-1) // 7 0 parity check fail (no parity found)
-
596 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_WORD_SYNC_NONE (0) // 7 0 word sync search not started
-
597 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_WORD_SYNC_POT (1) // 7 0 potential word sync found
-
598 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_WORD_SYNC_OK (2) // 7 0 word sync found
-
599 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_TOW_FOUND (3) // 7 0 time-of-week found
-
600 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_WN_FOUND (4) // 7 0 week number and time-of-week found
-
601 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_ALM_FOUND_UNSAVED (5) // 7 0 almanac found but not saved
-
602 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_HALF_ALM_SAVED (6) // 7 0 half of almanac found and saved
-
603 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_FULL_ALM_SAVED (7) // 7 0 full almanac found and saved
-
604 #define RADIOLIB_LR11X0_GNSS_DEMOD_INFO_WORD_SYNC_FOUND (0x01UL << 0) // 7 0 GNSS demodulation info: word synchronization found
-
605 #define RADIOLIB_LR11X0_GNSS_DEMOD_INFO_TOW_FOUND (0x01UL << 1) // 7 0 time-of-week found
-
606 #define RADIOLIB_LR11X0_GNSS_DEMOD_INFO_WN_DEMODED (0x01UL << 2) // 7 0 week number demodulated
-
607 #define RADIOLIB_LR11X0_GNSS_DEMOD_INFO_WN_FOUND (0x01UL << 3) // 7 0 week number found
-
608 #define RADIOLIB_LR11X0_GNSS_DEMOD_INFO_SUBFRAME_1_FOUND (0x01UL << 4) // 7 0 subframe 1 found
-
609 #define RADIOLIB_LR11X0_GNSS_DEMOD_INFO_SUBFRAME_4_FOUND (0x01UL << 5) // 7 0 subframe 4 found
-
610 #define RADIOLIB_LR11X0_GNSS_DEMOD_INFO_SUBFRAME_5_FOUND (0x01UL << 6) // 7 0 subframe 5 found
-
611 
-
612 // RADIOLIB_LR11X0_CMD_GNSS_READ_ALMANAC_STATUS
-
613 #define RADIOLIB_LR11X0_GNSS_ALMANAC_STATUS_UP_TO_DATE (0) // 7 0 GPS/BeiDou almanac status: all satellites up-to-date
-
614 #define RADIOLIB_LR11X0_GNSS_ALMANAC_STATUS_OUTDATED (1) // 7 0 at least one satellite needs update
-
615 
-
616 // RADIOLIB_LR11X0_CMD_GNSS_READ_DOPPLER_SOLVER_RES
-
617 #define RADIOLIB_LR11X0_GNSS_SOLVER_ERR_NONE (0) // 7 0 internal 2D solver error: no error
-
618 #define RADIOLIB_LR11X0_GNSS_SOLVER_ERR_RES_HIGH (1) // 7 0 residue too high
-
619 #define RADIOLIB_LR11X0_GNSS_SOLVER_ERR_NOT_CONVERGED (2) // 7 0 not converged on solution
-
620 #define RADIOLIB_LR11X0_GNSS_SOLVER_ERR_NOT_ENOUGH_SV (3) // 7 0 not enough satellites
-
621 #define RADIOLIB_LR11X0_GNSS_SOLVER_ERR_ILL_MATRIX (4) // 7 0 matrix error (?)
-
622 #define RADIOLIB_LR11X0_GNSS_SOLVER_ERR_TIME (5) // 7 0 time error
-
623 #define RADIOLIB_LR11X0_GNSS_SOLVER_ERR_ALM_PART_OLD (6) // 7 0 part of almanac too old or not available
-
624 #define RADIOLIB_LR11X0_GNSS_SOLVER_ERR_INCONSISTENT (7) // 7 0 not consistent with history (?)
-
625 #define RADIOLIB_LR11X0_GNSS_SOLVER_ERR_ALM_OLD (8) // 7 0 all of almanac too old
-
626 
-
627 // RADIOLIB_LR11X0_CMD_CRYPTO_SET_KEY
-
628 #define RADIOLIB_LR11X0_CRYPTO_STATUS_SUCCESS (0x00UL << 0) // 7 0 crypto engine status: success
-
629 #define RADIOLIB_LR11X0_CRYPTO_STATUS_FAIL_CMAC (0x01UL << 0) // 7 0 MIC check failed
-
630 #define RADIOLIB_LR11X0_CRYPTO_STATUS_INV_KEY_ID (0x03UL << 0) // 7 0 key/parameter source or destination ID error
-
631 #define RADIOLIB_LR11X0_CRYPTO_STATUS_BUF_SIZE (0x05UL << 0) // 7 0 data buffer size invalid
-
632 #define RADIOLIB_LR11X0_CRYPTO_STATUS_ERROR (0x06UL << 0) // 7 0 generic error
-
633 
-
634 // RADIOLIB_LR11X0_CMD_CRYPTO_PROCESS_JOIN_ACCEPT
-
635 #define RADIOLIB_LR11X0_CRYPTO_LORAWAN_VERSION_1_0 (0x00UL << 0) // 7 0 LoRaWAN version: 1.0.x
-
636 #define RADIOLIB_LR11X0_CRYPTO_LORAWAN_VERSION_1_1 (0x01UL << 0) // 7 0 1.1
-
637 
-
638 // LR11X0 SPI register variables
-
639 
-
640 // RADIOLIB_LR11X0_REG_SF6_SX127X_COMPAT
-
641 #define RADIOLIB_LR11X0_SF6_SX126X (0x00UL << 18) // 18 18 SF6 mode: SX126x series
-
642 #define RADIOLIB_LR11X0_SF6_SX127X (0x01UL << 18) // 18 18 SX127x series
-
643 
-
644 // RADIOLIB_LR11X0_REG_LORA_HIGH_POWER_FIX
-
645 #define RADIOLIB_LR11X0_LORA_HIGH_POWER_FIX (0x00UL << 30) // 30 30 fix for errata
-
646 
-
647 // RADIOLIB_LR11X0_REG_LNA_MODE
-
648 #define RADIOLIB_LR11X0_LNA_MODE_SINGLE_RFI_N (0x01UL << 4) // 7 4 LNA mode: single-ended RFI_N
-
649 #define RADIOLIB_LR11X0_LNA_MODE_SINGLE_RFI_P (0x02UL << 4) // 7 4 single-ended RFI_P
-
650 #define RADIOLIB_LR11X0_LNA_MODE_DIFFERENTIAL (0x03UL << 4) // 7 4 differential (default)
-
651 
-
657 struct LR11x0WifiResult_t {
-
659  char type;
-
660 
-
662  uint8_t dataRateId;
-
663 
-
665  uint16_t channelFreq;
-
666 
-
668  uint8_t origin;
-
669 
-
671  bool ap;
-
672 
-
674  float rssi;
-
675 
-
677  uint8_t mac[RADIOLIB_LR11X0_WIFI_RESULT_MAC_LEN];
-
678 };
-
679 
-
685 struct LR11x0WifiResultFull_t: public LR11x0WifiResult_t {
-
687  uint8_t frameType;
-
688 
-
690  uint8_t frameSubType;
-
691 
-
693  bool toDistributionSystem;
-
694 
-
696  bool fromDistributionSystem;
-
697 
-
699  uint16_t phiOffset;
-
700 
-
702  uint64_t timestamp;
-
703 
-
705  uint32_t periodBeacon;
-
706 };
-
707 
-
715 struct LR11x0WifiResultExtended_t: public LR11x0WifiResultFull_t {
-
717  uint8_t rate;
-
718 
-
720  uint16_t service;
-
721 
-
723  uint16_t length;
-
724 
-
726  uint8_t mac0[RADIOLIB_LR11X0_WIFI_RESULT_MAC_LEN];
-
727 
-
729  uint8_t mac2[RADIOLIB_LR11X0_WIFI_RESULT_MAC_LEN];
-
730 
-
732  uint16_t seqCtrl;
-
733 
-
735  uint8_t ssid[RADIOLIB_LR11X0_WIFI_RESULT_SSID_LEN];
-
736 
-
738  uint8_t currentChannel;
-
739 
-
741  char countryCode[3];
-
742 
-
744  uint8_t ioReg;
-
745 
-
747  bool fcsCheckOk;
-
748 };
-
749 
-
754 struct LR11x0VersionInfo_t {
-
756  uint8_t hardware;
-
757 
-
759  uint8_t device;
-
760 
-
762  uint8_t fwMajor;
-
763 
-
765  uint8_t fwMinor;
-
766 
-
768  uint8_t fwMajorWiFi;
-
769 
-
771  uint8_t fwMinorWiFi;
-
772 
-
774  uint8_t fwGNSS;
-
775 
-
777  uint8_t almanacGNSS;
-
778 };
-
779 
-
784 struct LR11x0GnssResult_t {
-
786  int8_t demodStat;
-
787 
-
789  uint8_t numSatsDet;
-
790 
-
792  uint16_t resSize;
-
793 };
-
794 
-
799 struct LR11x0GnssPosition_t {
-
801  float latitude;
-
802 
-
804  float longitude;
-
805 
-
807  uint16_t accuracy;
-
808 
-
810  uint8_t numSatsUsed;
-
811 };
-
812 
-
817 struct LR11x0GnssSatellite_t {
-
819  uint8_t svId;
-
820 
-
822  uint8_t c_n0;
-
823 
-
825  int16_t doppler;
-
826 };
-
827 
-
832 struct LR11x0GnssAlmanacStatusPart_t {
-
833  int8_t status;
-
834  uint32_t timeUntilSubframe;
-
835  uint8_t numSubframes;
-
836  uint8_t nextSubframe4SvId;
-
837  uint8_t nextSubframe5SvId;
-
838  uint8_t nextSubframeStart;
-
839  uint8_t numUpdateNeeded;
-
840  uint32_t flagsUpdateNeeded[2];
-
841  uint32_t flagsActive[2];
-
842 };
-
843 
-
849 struct LR11x0GnssAlmanacStatus_t {
-
851  LR11x0GnssAlmanacStatusPart_t gps;
-
852 
-
854  LR11x0GnssAlmanacStatusPart_t beidou;
-
855 
-
857  uint32_t beidouSvNoAlmanacFlags[2];
-
858 
-
860  uint8_t nextAlmanacId;
-
861 
-
863  RadioLibTime_t start;
-
864 };
-
865 
-
871 class LR11x0: public PhysicalLayer {
-
872  public:
-
873  // introduce PhysicalLayer overloads
-
874  using PhysicalLayer::transmit;
-
875  using PhysicalLayer::receive;
-
876  using PhysicalLayer::startTransmit;
-
877  using PhysicalLayer::readData;
-
878 
-
883  explicit LR11x0(Module* mod);
-
884 
-
889  enum OpMode_t {
-
891  MODE_END_OF_TABLE = Module::MODE_END_OF_TABLE,
-
893  MODE_STBY = Module::MODE_IDLE,
-
895  MODE_RX = Module::MODE_RX,
-
897  MODE_TX = Module::MODE_TX,
-
899  MODE_TX_HP,
-
901  MODE_TX_HF,
-
903  MODE_GNSS,
-
905  MODE_WIFI,
-
906  };
-
907 
-
911  bool XTAL;
-
912 
-
924  int16_t begin(float bw, uint8_t sf, uint8_t cr, uint8_t syncWord, uint16_t preambleLength, float tcxoVoltage, bool high = false);
-
925 
-
935  int16_t beginGFSK(float br, float freqDev, float rxBw, uint16_t preambleLength, float tcxoVoltage);
-
936 
-
945  int16_t beginLRFHSS(uint8_t bw, uint8_t cr, bool narrowGrid, float tcxoVoltage);
-
946 
-
953  int16_t beginGNSS(uint8_t constellations = RADIOLIB_LR11X0_GNSS_CONSTELLATION_GPS | RADIOLIB_LR11X0_GNSS_CONSTELLATION_BEIDOU, float tcxoVoltage = 1.6);
-
954 
-
959  int16_t reset();
-
960 
-
969  int16_t transmit(const uint8_t* data, size_t len, uint8_t addr = 0) override;
-
970 
-
978  int16_t receive(uint8_t* data, size_t len) override;
-
979 
-
985  int16_t transmitDirect(uint32_t frf = 0) override;
-
986 
-
992  int16_t receiveDirect() override;
-
993 
-
998  int16_t scanChannel() override;
-
999 
-
1005  int16_t scanChannel(const ChannelScanConfig_t &config) override;
-
1006 
-
1011  int16_t standby() override;
-
1012 
-
1020  int16_t standby(uint8_t mode, bool wakeup = true);
-
1021 
-
1027  int16_t sleep() override;
-
1028 
-
1036  int16_t sleep(bool retainConfig, uint32_t sleepTime);
-
1037 
-
1038  // interrupt methods
-
1039 
-
1044  void setIrqAction(void (*func)(void));
-
1045 
-
1049  void clearIrqAction();
-
1050 
-
1055  void setPacketReceivedAction(void (*func)(void)) override;
-
1056 
-
1060  void clearPacketReceivedAction() override;
-
1061 
-
1066  void setPacketSentAction(void (*func)(void)) override;
-
1067 
-
1071  void clearPacketSentAction() override;
-
1072 
-
1081  int16_t startTransmit(const uint8_t* data, size_t len, uint8_t addr = 0) override;
-
1082 
-
1087  int16_t finishTransmit() override;
-
1088 
-
1095  int16_t startReceive() override;
-
1096 
-
1109  int16_t startReceive(uint32_t timeout, uint32_t irqFlags = RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask = 0, size_t len = 0);
-
1110 
-
1115  uint32_t getIrqStatus();
-
1116 
-
1125  int16_t readData(uint8_t* data, size_t len) override;
-
1126 
-
1132  int16_t startChannelScan() override;
-
1133 
-
1140  int16_t startChannelScan(const ChannelScanConfig_t &config) override;
-
1141 
-
1146  int16_t getChannelScanResult() override;
-
1147 
-
1148  // configuration methods
-
1149 
-
1156  int16_t setBandwidth(float bw, bool high = false);
-
1157 
-
1164  int16_t setSpreadingFactor(uint8_t sf, bool legacy = false);
-
1165 
-
1173  int16_t setCodingRate(uint8_t cr, bool longInterleave = false);
-
1174 
-
1180  int16_t setSyncWord(uint32_t syncWord);
-
1181 
-
1187  int16_t setBitRate(float br) override;
-
1188 
-
1194  int16_t setFrequencyDeviation(float freqDev) override;
-
1195 
-
1202  int16_t setRxBandwidth(float rxBw);
-
1203 
-
1210  int16_t setSyncWord(uint8_t* syncWord, size_t len) override;
-
1211 
-
1219  int16_t setSyncBits(uint8_t *syncWord, uint8_t bitsLen);
-
1220 
-
1226  int16_t setNodeAddress(uint8_t nodeAddr);
-
1227 
-
1234  int16_t setBroadcastAddress(uint8_t broadAddr);
-
1235 
-
1240  int16_t disableAddressFiltering();
-
1241 
-
1249  int16_t setDataShaping(uint8_t sh) override;
-
1250 
-
1256  int16_t setEncoding(uint8_t encoding) override;
-
1257 
-
1263  int16_t fixedPacketLengthMode(uint8_t len = RADIOLIB_LR11X0_MAX_PACKET_LENGTH);
-
1264 
-
1270  int16_t variablePacketLengthMode(uint8_t maxLen = RADIOLIB_LR11X0_MAX_PACKET_LENGTH);
-
1271 
-
1279  int16_t setWhitening(bool enabled, uint16_t initial = 0x01FF);
-
1280 
-
1286  int16_t setDataRate(DataRate_t dr) override;
-
1287 
-
1293  int16_t checkDataRate(DataRate_t dr) override;
-
1294 
-
1300  int16_t setPreambleLength(size_t preambleLength) override;
-
1301 
-
1310  int16_t setTCXO(float voltage, uint32_t delay = 5000);
-
1311 
-
1320  int16_t setCRC(uint8_t len, uint32_t initial = 0x00001D0FUL, uint32_t polynomial = 0x00001021UL, bool inverted = true);
-
1321 
-
1327  int16_t invertIQ(bool enable) override;
-
1328 
-
1333  float getRSSI() override;
-
1334 
-
1339  float getSNR() override;
-
1340 
-
1345  float getFrequencyError();
-
1346 
-
1352  size_t getPacketLength(bool update = true) override;
-
1353 
-
1359  size_t getPacketLength(bool update, uint8_t* offset);
-
1360 
-
1366  RadioLibTime_t getTimeOnAir(size_t len) override;
-
1367 
-
1373  RadioLibTime_t calculateRxTimeout(RadioLibTime_t timeoutUs) override;
-
1374 
-
1379  uint32_t getIrqFlags() override;
-
1380 
-
1386  int16_t setIrqFlags(uint32_t irq) override;
-
1387 
-
1393  int16_t clearIrqFlags(uint32_t irq) override;
-
1394 
-
1399  uint8_t randomByte() override;
-
1400 
-
1406  int16_t implicitHeader(size_t len);
-
1407 
-
1412  int16_t explicitHeader();
-
1413 
-
1418  float getDataRate() const;
-
1419 
-
1424  int16_t setRegulatorLDO();
-
1425 
-
1430  int16_t setRegulatorDCDC();
-
1431 
-
1437  int16_t setRxBoostedGainMode(bool en);
-
1438 
-
1440  void setRfSwitchTable(const uint32_t (&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[]);
-
1441 
-
1448  int16_t forceLDRO(bool enable);
-
1449 
-
1455  int16_t autoLDRO();
-
1456 
-
1465  int16_t setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount = 3, uint16_t hopSeed = 0x13A);
-
1466 
-
1481  int16_t startWifiScan(char wifiType, uint8_t mode = RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask = RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans = 16, uint16_t timeout = 100);
-
1482 
-
1487  void setWiFiScanAction(void (*func)(void));
-
1488 
-
1492  void clearWiFiScanAction();
-
1493 
-
1499  int16_t getWifiScanResultsCount(uint8_t* count);
-
1500 
-
1510  int16_t getWifiScanResult(LR11x0WifiResult_t* result, uint8_t index, bool brief = false);
-
1511 
-
1528  int16_t wifiScan(uint8_t wifiType, uint8_t* count, uint8_t mode = RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask = RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans = 16, uint16_t timeout = 100);
-
1529 
-
1535  int16_t getVersionInfo(LR11x0VersionInfo_t* info);
-
1536 
-
1547  int16_t updateFirmware(const uint32_t* image, size_t size, bool nonvolatile = true);
-
1548 
-
1553  int16_t isGnssScanCapable();
-
1554 
-
1561  int16_t gnssScan(LR11x0GnssResult_t* res = NULL);
-
1562 
-
1569  int16_t getGnssAlmanacStatus(LR11x0GnssAlmanacStatus_t *stat);
-
1570 
-
1580  int16_t gnssDelayUntilSubframe(LR11x0GnssAlmanacStatus_t *stat, uint8_t constellation);
-
1581 
-
1588  int16_t updateGnssAlmanac(uint8_t constellation);
-
1589 
-
1596  int16_t getGnssPosition(LR11x0GnssPosition_t* pos, bool filtered = true);
-
1597 
-
1604  int16_t getGnssSatellites(LR11x0GnssSatellite_t* sats, uint8_t numSats);
-
1605 
-
1611  int16_t getModem(ModemType_t* modem) override;
-
1612 
-
1613 #if !RADIOLIB_GODMODE && !RADIOLIB_LOW_LEVEL
-
1614  protected:
-
1615 #endif
-
1616  Module* getMod() override;
-
1617 
-
1618  // LR11x0 SPI command implementations
-
1619  int16_t writeRegMem32(uint32_t addr, uint32_t* data, size_t len);
-
1620  int16_t readRegMem32(uint32_t addr, uint32_t* data, size_t len);
-
1621  int16_t writeBuffer8(uint8_t* data, size_t len);
-
1622  int16_t readBuffer8(uint8_t* data, size_t len, size_t offset);
-
1623  int16_t clearRxBuffer(void);
-
1624  int16_t writeRegMemMask32(uint32_t addr, uint32_t mask, uint32_t data);
-
1625 
-
1626  int16_t getStatus(uint8_t* stat1, uint8_t* stat2, uint32_t* irq);
-
1627  int16_t getVersion(uint8_t* hw, uint8_t* device, uint8_t* major, uint8_t* minor);
-
1628  int16_t getErrors(uint16_t* err);
-
1629  int16_t clearErrors(void);
-
1630  int16_t calibrate(uint8_t params);
-
1631  int16_t setRegMode(uint8_t mode);
-
1632  int16_t calibImage(float freq1, float freq2);
-
1633  int16_t setDioAsRfSwitch(uint8_t en, uint8_t stbyCfg, uint8_t rxCfg, uint8_t txCfg, uint8_t txHpCfg, uint8_t txHfCfg, uint8_t gnssCfg, uint8_t wifiCfg);
-
1634  int16_t setDioIrqParams(uint32_t irq1, uint32_t irq2);
-
1635  int16_t setDioIrqParams(uint32_t irq);
-
1636  int16_t clearIrq(uint32_t irq);
-
1637  int16_t configLfClock(uint8_t setup);
-
1638  int16_t setTcxoMode(uint8_t tune, uint32_t delay);
-
1639  int16_t reboot(bool stay);
-
1640  int16_t getVbat(float* vbat);
-
1641  int16_t getTemp(float* temp);
-
1642  int16_t setFs(void);
-
1643  int16_t getRandomNumber(uint32_t* rnd);
-
1644  int16_t eraseInfoPage(void);
-
1645  int16_t writeInfoPage(uint16_t addr, const uint32_t* data, size_t len);
-
1646  int16_t readInfoPage(uint16_t addr, uint32_t* data, size_t len);
-
1647  int16_t getChipEui(uint8_t* eui);
-
1648  int16_t getSemtechJoinEui(uint8_t* eui);
-
1649  int16_t deriveRootKeysAndGetPin(uint8_t* pin);
-
1650  int16_t enableSpiCrc(bool en);
-
1651  int16_t driveDiosInSleepMode(bool en);
-
1652 
-
1653  int16_t resetStats(void);
-
1654  int16_t getStats(uint16_t* nbPktReceived, uint16_t* nbPktCrcError, uint16_t* data1, uint16_t* data2);
-
1655  int16_t getPacketType(uint8_t* type);
-
1656  int16_t getRxBufferStatus(uint8_t* len, uint8_t* startOffset);
-
1657  int16_t getPacketStatusLoRa(float* rssiPkt, float* snrPkt, float* signalRssiPkt);
-
1658  int16_t getPacketStatusGFSK(float* rssiSync, float* rssiAvg, uint8_t* rxLen, uint8_t* stat);
-
1659  int16_t getRssiInst(float* rssi);
-
1660  int16_t setGfskSyncWord(uint8_t* sync);
-
1661  int16_t setLoRaPublicNetwork(bool pub);
-
1662  int16_t setRx(uint32_t timeout);
-
1663  int16_t setTx(uint32_t timeout);
-
1664  int16_t setRfFrequency(uint32_t rfFreq);
-
1665  int16_t autoTxRx(uint32_t delay, uint8_t intMode, uint32_t timeout);
-
1666  int16_t setCadParams(uint8_t symNum, uint8_t detPeak, uint8_t detMin, uint8_t cadExitMode, uint32_t timeout);
-
1667  int16_t setPacketType(uint8_t type);
-
1668  int16_t setModulationParamsLoRa(uint8_t sf, uint8_t bw, uint8_t cr, uint8_t ldro);
-
1669  int16_t setModulationParamsGFSK(uint32_t br, uint8_t sh, uint8_t rxBw, uint32_t freqDev);
-
1670  int16_t setModulationParamsLrFhss(uint32_t br, uint8_t sh);
-
1671  int16_t setModulationParamsSigfox(uint32_t br, uint8_t sh);
-
1672  int16_t setPacketParamsLoRa(uint16_t preambleLen, uint8_t hdrType, uint8_t payloadLen, uint8_t crcType, uint8_t invertIQ);
-
1673  int16_t setPacketParamsGFSK(uint16_t preambleLen, uint8_t preambleDetectorLen, uint8_t syncWordLen, uint8_t addrCmp, uint8_t packType, uint8_t payloadLen, uint8_t crcType, uint8_t whiten);
-
1674  int16_t setPacketParamsSigfox(uint8_t payloadLen, uint16_t rampUpDelay, uint16_t rampDownDelay, uint16_t bitNum);
-
1675  int16_t setTxParams(int8_t pwr, uint8_t ramp);
-
1676  int16_t setPacketAdrs(uint8_t node, uint8_t broadcast);
-
1677  int16_t setRxTxFallbackMode(uint8_t mode);
-
1678  int16_t setRxDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, uint8_t mode);
-
1679  int16_t setPaConfig(uint8_t paSel, uint8_t regPaSupply, uint8_t paDutyCycle, uint8_t paHpSel);
-
1680  int16_t stopTimeoutOnPreamble(bool stop);
-
1681  int16_t setCad(void);
-
1682  int16_t setTxCw(void);
-
1683  int16_t setTxInfinitePreamble(void);
-
1684  int16_t setLoRaSynchTimeout(uint8_t symbolNum);
-
1685  int16_t setRangingAddr(uint32_t addr, uint8_t checkLen);
-
1686  int16_t setRangingReqAddr(uint32_t addr);
-
1687  int16_t getRangingResult(uint8_t type, float* res);
-
1688  int16_t setRangingTxRxDelay(uint32_t delay);
-
1689  int16_t setGfskCrcParams(uint32_t init, uint32_t poly);
-
1690  int16_t setGfskWhitParams(uint16_t seed);
-
1691  int16_t setRangingParameter(uint8_t symbolNum);
-
1692  int16_t setRssiCalibration(const int8_t* tune, int16_t gainOffset);
-
1693  int16_t setLoRaSyncWord(uint8_t sync);
-
1694  int16_t lrFhssBuildFrame(uint8_t hdrCount, uint8_t cr, uint8_t grid, bool hop, uint8_t bw, uint16_t hopSeq, int8_t devOffset, uint8_t* payload, size_t len);
-
1695  int16_t lrFhssSetSyncWord(uint32_t sync);
-
1696  int16_t configBleBeacon(uint8_t chan, uint8_t* payload, size_t len);
-
1697  int16_t getLoRaRxHeaderInfos(uint8_t* info);
-
1698  int16_t bleBeaconSend(uint8_t chan, uint8_t* payload, size_t len);
-
1699 
-
1700  int16_t wifiScan(uint8_t type, uint16_t mask, uint8_t acqMode, uint8_t nbMaxRes, uint8_t nbScanPerChan, uint16_t timeout, uint8_t abortOnTimeout);
-
1701  int16_t wifiScanTimeLimit(uint8_t type, uint16_t mask, uint8_t acqMode, uint8_t nbMaxRes, uint16_t timePerChan, uint16_t timeout);
-
1702  int16_t wifiCountryCode(uint16_t mask, uint8_t nbMaxRes, uint8_t nbScanPerChan, uint16_t timeout, uint8_t abortOnTimeout);
-
1703  int16_t wifiCountryCodeTimeLimit(uint16_t mask, uint8_t nbMaxRes, uint16_t timePerChan, uint16_t timeout);
-
1704  int16_t wifiGetNbResults(uint8_t* nbResults);
-
1705  int16_t wifiReadResults(uint8_t index, uint8_t nbResults, uint8_t format, uint8_t* results);
-
1706  int16_t wifiResetCumulTimings(void);
-
1707  int16_t wifiReadCumulTimings(uint32_t* detection, uint32_t* capture, uint32_t* demodulation);
-
1708  int16_t wifiGetNbCountryCodeResults(uint8_t* nbResults);
-
1709  int16_t wifiReadCountryCodeResults(uint8_t index, uint8_t nbResults, uint8_t* results);
-
1710  int16_t wifiCfgTimestampAPphone(uint32_t timestamp);
-
1711  int16_t wifiReadVersion(uint8_t* major, uint8_t* minor);
-
1712 
-
1713  int16_t gnssReadRssi(int8_t* rssi);
-
1714  int16_t gnssSetConstellationToUse(uint8_t mask);
-
1715  int16_t gnssReadConstellationToUse(uint8_t* mask);
-
1716  int16_t gnssSetAlmanacUpdate(uint8_t mask);
-
1717  int16_t gnssReadAlmanacUpdate(uint8_t* mask);
-
1718  int16_t gnssSetFreqSearchSpace(uint8_t freq);
-
1719  int16_t gnssReadFreqSearchSpace(uint8_t* freq);
-
1720  int16_t gnssReadVersion(uint8_t* fw, uint8_t* almanac);
-
1721  int16_t gnssReadSupportedConstellations(uint8_t* mask);
-
1722  int16_t gnssSetMode(uint8_t mode);
-
1723  int16_t gnssAutonomous(uint32_t gpsTime, uint8_t resMask, uint8_t nbSvMask);
-
1724  int16_t gnssAssisted(uint32_t gpsTime, uint8_t effort, uint8_t resMask, uint8_t nbSvMask);
-
1725  int16_t gnssSetAssistancePosition(float lat, float lon);
-
1726  int16_t gnssReadAssistancePosition(float* lat, float* lon);
-
1727  int16_t gnssPushSolverMsg(uint8_t* payload, size_t len);
-
1728  int16_t gnssPushDmMsg(uint8_t* payload, size_t len);
-
1729  int16_t gnssGetContextStatus(uint8_t* fwVersion, uint32_t* almanacCrc, uint8_t* errCode, uint8_t* almUpdMask, uint8_t* freqSpace);
-
1730  int16_t gnssGetNbSvDetected(uint8_t* nbSv);
-
1731  int16_t gnssGetSvDetected(uint8_t* svId, uint8_t* snr, int16_t* doppler, size_t nbSv);
-
1732  int16_t gnssGetConsumption(uint32_t* cpu, uint32_t* radio);
-
1733  int16_t gnssGetResultSize(uint16_t* size);
-
1734  int16_t gnssReadResults(uint8_t* result, uint16_t size);
-
1735  int16_t gnssAlmanacFullUpdateHeader(uint16_t date, uint32_t globalCrc);
-
1736  int16_t gnssAlmanacFullUpdateSV(uint8_t svn, uint8_t* svnAlmanac);
-
1737  int16_t gnssAlmanacReadAddrSize(uint32_t* addr, uint16_t* size);
-
1738  int16_t gnssAlmanacReadSV(uint8_t svId, uint8_t* almanac);
-
1739  int16_t gnssGetNbSvVisible(uint32_t time, float lat, float lon, uint8_t constellation, uint8_t* nbSv);
-
1740  int16_t gnssGetSvVisible(uint8_t nbSv, uint8_t** svId, int16_t** doppler, int16_t** dopplerErr);
-
1741  int16_t gnssPerformScan(uint8_t effort, uint8_t resMask, uint8_t nbSvMax);
-
1742  int16_t gnssReadLastScanModeLaunched(uint8_t* lastScanMode);
-
1743  int16_t gnssFetchTime(uint8_t effort, uint8_t opt);
-
1744  int16_t gnssReadTime(uint8_t* err, uint32_t* time, uint32_t* nbUs, uint32_t* timeAccuracy);
-
1745  int16_t gnssResetTime(void);
-
1746  int16_t gnssResetPosition(void);
-
1747  int16_t gnssReadWeekNumberRollover(uint8_t* status, uint8_t* rollover);
-
1748  int16_t gnssReadDemodStatus(int8_t* status, uint8_t* info);
-
1749  int16_t gnssReadCumulTiming(uint32_t* timing, uint8_t* constDemod);
-
1750  int16_t gnssSetTime(uint32_t time, uint16_t accuracy);
-
1751  int16_t gnssReadDopplerSolverRes(uint8_t* error, uint8_t* nbSvUsed, float* lat, float* lon, uint16_t* accuracy, uint16_t* xtal, float* latFilt, float* lonFilt, uint16_t* accuracyFilt, uint16_t* xtalFilt);
-
1752  int16_t gnssReadDelayResetAP(uint32_t* delay);
-
1753  int16_t gnssAlmanacUpdateFromSat(uint8_t effort, uint8_t bitMask);
-
1754  int16_t gnssReadAlmanacStatus(uint8_t* status);
-
1755  int16_t gnssReadKeepSyncStatus(uint8_t mask, uint8_t* nbSvVisible, uint32_t* elapsed);
-
1756  int16_t gnssConfigAlmanacUpdatePeriod(uint8_t bitMask, uint8_t svType, uint16_t period);
-
1757  int16_t gnssReadAlmanacUpdatePeriod(uint8_t bitMask, uint8_t svType, uint16_t* period);
-
1758  int16_t gnssConfigDelayResetAP(uint32_t delay);
-
1759  int16_t gnssGetSvWarmStart(uint8_t bitMask, uint8_t* sv, uint8_t nbVisSat);
-
1760  int16_t gnssReadWarmStartStatus(uint8_t bitMask, uint8_t* nbVisSat, uint32_t* timeElapsed);
-
1761  int16_t gnssGetSvSync(uint8_t mask, uint8_t nbSv, uint8_t* syncList);
-
1762  int16_t gnssWriteBitMaskSatActivated(uint8_t bitMask, uint32_t* bitMaskActivated0, uint32_t* bitMaskActivated1);
-
1763  void gnssAbort();
-
1764 
-
1765  int16_t cryptoSetKey(uint8_t keyId, uint8_t* key);
-
1766  int16_t cryptoDeriveKey(uint8_t srcKeyId, uint8_t dstKeyId, uint8_t* key);
-
1767  int16_t cryptoProcessJoinAccept(uint8_t decKeyId, uint8_t verKeyId, uint8_t lwVer, uint8_t* header, uint8_t* dataIn, size_t len, uint8_t* dataOut);
-
1768  int16_t cryptoComputeAesCmac(uint8_t keyId, uint8_t* data, size_t len, uint32_t* mic);
-
1769  int16_t cryptoVerifyAesCmac(uint8_t keyId, uint32_t micExp, uint8_t* data, size_t len, bool* result);
-
1770  int16_t cryptoAesEncrypt01(uint8_t keyId, uint8_t* dataIn, size_t len, uint8_t* dataOut);
-
1771  int16_t cryptoAesEncrypt(uint8_t keyId, uint8_t* dataIn, size_t len, uint8_t* dataOut);
-
1772  int16_t cryptoAesDecrypt(uint8_t keyId, uint8_t* dataIn, size_t len, uint8_t* dataOut);
-
1773  int16_t cryptoStoreToFlash(void);
-
1774  int16_t cryptoRestoreFromFlash(void);
-
1775  int16_t cryptoSetParam(uint8_t id, uint32_t value);
-
1776  int16_t cryptoGetParam(uint8_t id, uint32_t* value);
-
1777  int16_t cryptoCheckEncryptedFirmwareImage(uint32_t offset, uint32_t* data, size_t len, bool nonvolatile);
-
1778  int16_t cryptoCheckEncryptedFirmwareImageResult(bool* result);
-
1779 
-
1780  int16_t bootEraseFlash(void);
-
1781  int16_t bootWriteFlashEncrypted(uint32_t offset, uint32_t* data, size_t len, bool nonvolatile);
-
1782  int16_t bootReboot(bool stay);
-
1783  int16_t bootGetPin(uint8_t* pin);
-
1784  int16_t bootGetChipEui(uint8_t* eui);
-
1785  int16_t bootGetJoinEui(uint8_t* eui);
-
1786 
-
1787  int16_t SPIcommand(uint16_t cmd, bool write, uint8_t* data, size_t len, uint8_t* out = NULL, size_t outLen = 0);
-
1788 
-
1789 #if !RADIOLIB_GODMODE
-
1790  protected:
-
1791 #endif
-
1792  uint8_t chipType = 0;
-
1793 
-
1794 #if !RADIOLIB_GODMODE
-
1795  private:
-
1796 #endif
-
1797  Module* mod;
-
1798 
-
1799  // cached LoRa parameters
-
1800  uint8_t bandwidth = 0, spreadingFactor = 0, codingRate = 0, ldrOptimize = 0, crcTypeLoRa = 0, headerType = 0;
-
1801  uint16_t preambleLengthLoRa = 0;
-
1802  float bandwidthKhz = 0;
-
1803  bool ldroAuto = true;
-
1804  size_t implicitLen = 0;
-
1805  bool invertIQEnabled = false;
-
1806 
-
1807  // cached GFSK parameters
-
1808  uint32_t bitRate = 0, frequencyDev = 0;
-
1809  uint8_t preambleDetLength = 0, rxBandwidth = 0, pulseShape = 0, crcTypeGFSK = 0, syncWordLength = 0, addrComp = 0, whitening = 0, packetType = 0, node = 0;
-
1810  uint16_t preambleLengthGFSK = 0;
-
1811 
-
1812  // cached LR-FHSS parameters
-
1813  uint8_t lrFhssCr = 0, lrFhssBw = 0, lrFhssHdrCount = 0, lrFhssGrid = 0;
-
1814  uint16_t lrFhssHopSeq = 0;
-
1815 
-
1816  float dataRateMeasured = 0;
-
1817 
-
1818  uint8_t wifiScanMode = 0;
-
1819 
-
1820  int16_t modSetup(float tcxoVoltage, uint8_t modem);
-
1821  static int16_t SPIparseStatus(uint8_t in);
-
1822  static int16_t SPIcheckStatus(Module* mod);
-
1823  bool findChip(uint8_t ver);
-
1824  int16_t config(uint8_t modem);
-
1825  int16_t setPacketMode(uint8_t mode, uint8_t len);
-
1826  int16_t startCad(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin, uint8_t exitMode, RadioLibTime_t timeout);
-
1827  int16_t setHeaderType(uint8_t hdrType, size_t len = 0xFF);
-
1828 
-
1829  // common methods to avoid some copy-paste
-
1830  int16_t bleBeaconCommon(uint16_t cmd, uint8_t chan, uint8_t* payload, size_t len);
-
1831  int16_t writeCommon(uint16_t cmd, uint32_t addrOffset, const uint32_t* data, size_t len, bool nonvolatile);
-
1832  int16_t cryptoCommon(uint16_t cmd, uint8_t keyId, uint8_t* dataIn, size_t len, uint8_t* dataOut);
-
1833 };
-
1834 
-
1835 #endif
-
1836 
-
1837 #endif
-
LR11x0
Base class for LR11x0 series. All derived classes for LR11x0 (e.g. LR1110 or LR1120) inherit from thi...
Definition: LR11x0.h:871
+
236 #define RADIOLIB_LR11X0_CAL_IMG_FREQ_TRIG_MHZ (20.0)
+
237 
+
238 // RADIOLIB_LR11X0_CMD_SET_REG_MODE
+
239 #define RADIOLIB_LR11X0_REG_MODE_LDO (0x00UL << 0) // 0 0 regulator mode: LDO in all modes
+
240 #define RADIOLIB_LR11X0_REG_MODE_DC_DC (0x01UL << 0) // 0 0 DC-DC and LDO
+
241 
+
242 // RADIOLIB_LR11X0_CMD_SET_DIO_AS_RF_SWITCH
+
243 #define RADIOLIB_LR11X0_RFSW_DIO5_ENABLED (0x01UL << 0) // 4 0 RF switch: DIO5 enabled
+
244 #define RADIOLIB_LR11X0_RFSW_DIO5_DISABLED (0x00UL << 0) // 4 0 DIO5 disabled (default)
+
245 #define RADIOLIB_LR11X0_RFSW_DIO6_ENABLED (0x01UL << 1) // 4 0 RF switch: DIO6 enabled
+
246 #define RADIOLIB_LR11X0_RFSW_DIO6_DISABLED (0x00UL << 1) // 4 0 DIO6 disabled (default)
+
247 #define RADIOLIB_LR11X0_RFSW_DIO7_ENABLED (0x01UL << 2) // 4 0 RF switch: DIO7 enabled
+
248 #define RADIOLIB_LR11X0_RFSW_DIO7_DISABLED (0x00UL << 2) // 4 0 DIO7 disabled (default)
+
249 #define RADIOLIB_LR11X0_RFSW_DIO8_ENABLED (0x01UL << 3) // 4 0 RF switch: DIO8 enabled
+
250 #define RADIOLIB_LR11X0_RFSW_DIO8_DISABLED (0x00UL << 3) // 4 0 DIO8 disabled (default)
+
251 #define RADIOLIB_LR11X0_RFSW_DIO10_ENABLED (0x01UL << 4) // 4 0 RF switch: DIO10 enabled
+
252 #define RADIOLIB_LR11X0_RFSW_DIO10_DISABLED (0x00UL << 4) // 4 0 DIO10 disabled (default)
+
253 #define RADIOLIB_LR11X0_DIO5 (0)
+
254 #define RADIOLIB_LR11X0_DIO6 (1)
+
255 #define RADIOLIB_LR11X0_DIO7 (2)
+
256 #define RADIOLIB_LR11X0_DIO8 (3)
+
257 #define RADIOLIB_LR11X0_DIO10 (4)
+
258 
+
259 // RADIOLIB_LR11X0_CMD_SET_DIO_IRQ_PARAMS
+
260 #define RADIOLIB_LR11X0_IRQ_TX_DONE (0x01UL << 2) // 31 0 interrupt: packet transmitted
+
261 #define RADIOLIB_LR11X0_IRQ_RX_DONE (0x01UL << 3) // 31 0 packet received
+
262 #define RADIOLIB_LR11X0_IRQ_PREAMBLE_DETECTED (0x01UL << 4) // 31 0 preamble detected
+
263 #define RADIOLIB_LR11X0_IRQ_SYNC_WORD_HEADER_VALID (0x01UL << 5) // 31 0 sync word or LoRa header valid
+
264 #define RADIOLIB_LR11X0_IRQ_HEADER_ERR (0x01UL << 6) // 31 0 LoRa header CRC error
+
265 #define RADIOLIB_LR11X0_IRQ_CRC_ERR (0x01UL << 7) // 31 0 packet CRC error
+
266 #define RADIOLIB_LR11X0_IRQ_CAD_DONE (0x01UL << 8) // 31 0 CAD completed
+
267 #define RADIOLIB_LR11X0_IRQ_CAD_DETECTED (0x01UL << 9) // 31 0 CAD detected
+
268 #define RADIOLIB_LR11X0_IRQ_TIMEOUT (0x01UL << 10) // 31 0 Rx or Tx timeout
+
269 #define RADIOLIB_LR11X0_IRQ_LR_FHSS_HOP (0x01UL << 11) // 31 0 FHSS hop
+
270 #define RADIOLIB_LR11X0_IRQ_GNSS_DONE (0x01UL << 19) // 31 0 GNSS scan finished
+
271 #define RADIOLIB_LR11X0_IRQ_WIFI_DONE (0x01UL << 20) // 31 0 WiFi scan finished
+
272 #define RADIOLIB_LR11X0_IRQ_LBD (0x01UL << 21) // 31 0 low battery detected
+
273 #define RADIOLIB_LR11X0_IRQ_CMD_ERROR (0x01UL << 22) // 31 0 command error
+
274 #define RADIOLIB_LR11X0_IRQ_ERROR (0x01UL << 23) // 31 0 some other error than CMD_ERR
+
275 #define RADIOLIB_LR11X0_IRQ_FSK_LEN_ERROR (0x01UL << 24) // 31 0 FSK packet received with length error
+
276 #define RADIOLIB_LR11X0_IRQ_FSK_ADDR_ERROR (0x01UL << 25) // 31 0 FSK packet received with address error
+
277 #define RADIOLIB_LR11X0_IRQ_LORA_RX_TIMESTAMP (0x01UL << 27) // 31 0 last LoRa symbol was received (timestamp source)
+
278 #define RADIOLIB_LR11X0_IRQ_GNSS_ABORT (0x01UL << 28) // 31 0 GNSS scan aborted
+
279 #define RADIOLIB_LR11X0_IRQ_ALL (0x1BF80FFCUL) // 31 0 all interrupts
+
280 #define RADIOLIB_LR11X0_IRQ_NONE (0x00UL << 0) // 31 0 no interrupts
+
281 
+
282 // RADIOLIB_LR11X0_CMD_CONFIG_LF_LOCK
+
283 #define RADIOLIB_LR11X0_LF_CLK_RC (0x00UL << 0) // 1 0 32.768 kHz source: RC oscillator
+
284 #define RADIOLIB_LR11X0_LF_CLK_XOSC (0x01UL << 0) // 1 0 crystal oscillator
+
285 #define RADIOLIB_LR11X0_LF_CLK_EXT (0x02UL << 0) // 1 0 external signal on DIO11
+
286 #define RADIOLIB_LR11X0_LF_BUSY_RELEASE_DISABLED (0x00UL << 2) // 2 2
+
287 #define RADIOLIB_LR11X0_LF_BUSY_RELEASE_ENABLED (0x01UL << 2) // 2 2
+
288 
+
289 // RADIOLIB_LR11X0_CMD_SET_TCXO_MODE
+
290 #define RADIOLIB_LR11X0_TCXO_VOLTAGE_1_6 (0x00UL << 0) // 2 0 TCXO supply voltage: 1.6V
+
291 #define RADIOLIB_LR11X0_TCXO_VOLTAGE_1_7 (0x01UL << 0) // 2 0 1.7V
+
292 #define RADIOLIB_LR11X0_TCXO_VOLTAGE_1_8 (0x02UL << 0) // 2 0 1.8V
+
293 #define RADIOLIB_LR11X0_TCXO_VOLTAGE_2_2 (0x03UL << 0) // 2 0 2.2V
+
294 #define RADIOLIB_LR11X0_TCXO_VOLTAGE_2_4 (0x04UL << 0) // 2 0 2.4V
+
295 #define RADIOLIB_LR11X0_TCXO_VOLTAGE_2_7 (0x05UL << 0) // 2 0 2.7V
+
296 #define RADIOLIB_LR11X0_TCXO_VOLTAGE_3_0 (0x06UL << 0) // 2 0 3.0V
+
297 #define RADIOLIB_LR11X0_TCXO_VOLTAGE_3_3 (0x07UL << 0) // 2 0 3.3V
+
298 
+
299 // RADIOLIB_LR11X0_CMD_SET_SLEEP
+
300 #define RADIOLIB_LR11X0_SLEEP_RETENTION_DISABLED (0x00UL << 0) // 0 0 configuration retention in sleep mode: disabled
+
301 #define RADIOLIB_LR11X0_SLEEP_RETENTION_ENABLED (0x01UL << 0) // 0 0 enabled
+
302 #define RADIOLIB_LR11X0_SLEEP_WAKEUP_DISABLED (0x00UL << 0) // 1 1 automated wakeup: disabled
+
303 #define RADIOLIB_LR11X0_SLEEP_WAKEUP_ENABLED (0x01UL << 0) // 1 1 enabled
+
304 
+
305 // RADIOLIB_LR11X0_CMD_SET_STANDBY
+
306 #define RADIOLIB_LR11X0_STANDBY_RC (0x00UL << 0) // 7 0 standby mode: RC oscillator
+
307 #define RADIOLIB_LR11X0_STANDBY_XOSC (0x00UL << 0) // 7 0 XTAL/TCXO oscillator
+
308 
+
309 // RADIOLIB_LR11X0_CMD_ERASE_INFO_PAGE
+
310 #define RADIOLIB_LR11X0_INFO_PAGE (1)
+
311 
+
312 // RADIOLIB_LR11X0_CMD_GET_CHIP_EUI
+
313 #define RADIOLIB_LR11X0_EUI_LEN (8)
+
314 
+
315 // RADIOLIB_LR11X0_CMD_DERIVE_ROOT_KEYS_AND_GET_PIN
+
316 #define RADIOLIB_LR11X0_PIN_LEN (4)
+
317 
+
318 // RADIOLIB_LR11X0_CMD_GET_PACKET_STATUS
+
319 #define RADIOLIB_LR11X0_RX_STATUS_ADDR_ERR (0x01UL << 5) // 7 0 Rx status: address filtering error
+
320 #define RADIOLIB_LR11X0_RX_STATUS_CRC_ERR (0x01UL << 4) // 7 0 CRC error
+
321 #define RADIOLIB_LR11X0_RX_STATUS_LEN_ERR (0x01UL << 3) // 7 0 length filtering error
+
322 #define RADIOLIB_LR11X0_RX_STATUS_ABORTED (0x01UL << 2) // 7 0 packet reception aborted
+
323 #define RADIOLIB_LR11X0_RX_STATUS_PACKET_RECEIVED (0x01UL << 1) // 7 0 packet received
+
324 #define RADIOLIB_LR11X0_RX_STATUS_PACKET_SENT (0x01UL << 0) // 7 0 packet sent
+
325 
+
326 // RADIOLIB_LR11X0_CMD_SET_GFSK_SYNC_WORD
+
327 #define RADIOLIB_LR11X0_GFSK_SYNC_WORD_LEN (8)
+
328 
+
329 // RADIOLIB_LR11X0_CMD_SET_LORA_PUBLIC_NETWORK
+
330 #define RADIOLIB_LR11X0_LORA_PRIVATE_NETWORK (0x00UL << 0) // 7 0 LoRa sync word: private network
+
331 #define RADIOLIB_LR11X0_LORA_PUBLIC_NETWORK (0x01UL << 0) // 7 0 public network
+
332 
+
333 // RADIOLIB_LR11X0_CMD_SET_RX
+
334 #define RADIOLIB_LR11X0_RX_TIMEOUT_NONE (0x000000UL) // 23 0 Rx timeout duration: no timeout (Rx single mode)
+
335 #define RADIOLIB_LR11X0_RX_TIMEOUT_INF (0xFFFFFFUL) // 23 0 infinite (Rx continuous mode)
+
336 
+
337 // RADIOLIB_LR11X0_CMD_SET_TX
+
338 #define RADIOLIB_LR11X0_TX_TIMEOUT_NONE (0x000000UL) // 23 0 disable Tx timeout
+
339 
+
340 // RADIOLIB_LR11X0_CMD_AUTO_TX_RX
+
341 #define RADIOLIB_LR11X0_AUTO_TX_RX_DISABLED (0xFFFFFFUL) // 23 0 disable auto Tx/Rx mode
+
342 #define RADIOLIB_LR11X0_AUTO_TX_RX_SKIP_INT (0x000000UL) // 23 0 skip intermediary mode
+
343 #define RADIOLIB_LR11X0_AUTO_INTERMEDIARY_MODE_SLEEP (0x00UL << 0) // 1 0 intermediary mode: sleep
+
344 #define RADIOLIB_LR11X0_AUTO_INTERMEDIARY_MODE_STBY_RC (0x01UL << 0) // 1 0 standby with RC
+
345 #define RADIOLIB_LR11X0_AUTO_INTERMEDIARY_MODE_STBY_XOSC (0x02UL << 0) // 1 0 standby with XOSC
+
346 #define RADIOLIB_LR11X0_AUTO_INTERMEDIARY_MODE_FS (0x03UL << 0) // 1 0 frequency synthesis
+
347 #define RADIOLIB_LR11X0_AUTO_TX_RX_TIMEOUT_DISABLED (0x000000UL) // 23 0 disable timeout of the second mode
+
348 
+
349 // RADIOLIB_LR11X0_CMD_SET_CAD_PARAMS
+
350 #define RADIOLIB_LR11X0_CAD_EXIT_MODE_STBY_RC (0x00UL << 0) // 7 0 mode to set after CAD: standby with RC
+
351 #define RADIOLIB_LR11X0_CAD_EXIT_MODE_RX (0x01UL << 0) // 7 0 receive if activity detected
+
352 #define RADIOLIB_LR11X0_CAD_EXIT_MODE_LBT (0x10UL << 0) // 7 0 transmit if no activity detected
+
353 #define RADIOLIB_LR11X0_CAD_PARAM_DEFAULT (0xFFUL << 0) // 7 0 used by the CAD methods to specify default parameter value
+
354 
+
355 // RADIOLIB_LR11X0_CMD_SET_PACKET_TYPE
+
356 #define RADIOLIB_LR11X0_PACKET_TYPE_NONE (0x00UL << 0) // 2 0 packet type: none
+
357 #define RADIOLIB_LR11X0_PACKET_TYPE_GFSK (0x01UL << 0) // 2 0 (G)FSK
+
358 #define RADIOLIB_LR11X0_PACKET_TYPE_LORA (0x02UL << 0) // 2 0 LoRa
+
359 #define RADIOLIB_LR11X0_PACKET_TYPE_SIGFOX (0x03UL << 0) // 2 0 Sigfox
+
360 #define RADIOLIB_LR11X0_PACKET_TYPE_LR_FHSS (0x04UL << 0) // 2 0 GMSK/LR-FHSS
+
361 #define RADIOLIB_LR11X0_PACKET_TYPE_RANGING (0x05UL << 0) // 2 0 ranging
+
362 #define RADIOLIB_LR11X0_PACKET_TYPE_BLE (0x06UL << 0) // 2 0 BLE beacon
+
363 
+
364 // RADIOLIB_LR11X0_CMD_SET_MODULATION_PARAMS
+
365 #define RADIOLIB_LR11X0_LORA_BW_62_5 (0x03UL << 0) // 7 0 LoRa bandwidth: 62.5 kHz
+
366 #define RADIOLIB_LR11X0_LORA_BW_125_0 (0x04UL << 0) // 7 0 125.0 kHz
+
367 #define RADIOLIB_LR11X0_LORA_BW_250_0 (0x05UL << 0) // 7 0 250.0 kHz
+
368 #define RADIOLIB_LR11X0_LORA_BW_500_0 (0x06UL << 0) // 7 0 500.0 kHz
+
369 #define RADIOLIB_LR11X0_LORA_BW_203_125 (0x0DUL << 0) // 7 0 203.0 kHz (2.4GHz only)
+
370 #define RADIOLIB_LR11X0_LORA_BW_406_25 (0x0EUL << 0) // 7 0 406.0 kHz (2.4GHz only)
+
371 #define RADIOLIB_LR11X0_LORA_BW_812_50 (0x0FUL << 0) // 7 0 812.0 kHz (2.4GHz only)
+
372 #define RADIOLIB_LR11X0_LORA_CR_4_5_SHORT (0x01UL << 0) // 7 0 coding rate: 4/5 with short interleaver
+
373 #define RADIOLIB_LR11X0_LORA_CR_4_6_SHORT (0x02UL << 0) // 7 0 4/6 with short interleaver
+
374 #define RADIOLIB_LR11X0_LORA_CR_4_7_SHORT (0x03UL << 0) // 7 0 4/7 with short interleaver
+
375 #define RADIOLIB_LR11X0_LORA_CR_4_8_SHORT (0x04UL << 0) // 7 0 4/8 with short interleaver
+
376 #define RADIOLIB_LR11X0_LORA_CR_4_5_LONG (0x05UL << 0) // 7 0 4/5 with long interleaver
+
377 #define RADIOLIB_LR11X0_LORA_CR_4_6_LONG (0x06UL << 0) // 7 0 4/6 with long interleaver
+
378 #define RADIOLIB_LR11X0_LORA_CR_4_8_LONG (0x07UL << 0) // 7 0 4/8 with long interleaver
+
379 #define RADIOLIB_LR11X0_LORA_LDRO_DISABLED (0x00UL << 0) // 7 0 low data rate optimize: disabled
+
380 #define RADIOLIB_LR11X0_LORA_LDRO_ENABLED (0x01UL << 0) // 7 0 enabled
+
381 #define RADIOLIB_LR11X0_GFSK_BIT_RATE_DIV_DISABLED (0x00UL << 31) // 31 0 divide bit rate value by 256: disabled
+
382 #define RADIOLIB_LR11X0_GFSK_BIT_RATE_DIV_ENABLED (0x01UL << 31) // 31 0 enabled
+
383 #define RADIOLIB_LR11X0_GFSK_SHAPING_NONE (0x00UL << 0) // 7 0 shaping filter: none
+
384 #define RADIOLIB_LR11X0_GFSK_SHAPING_GAUSSIAN_BT_0_3 (0x08UL << 0) // 7 0 Gaussian, BT = 0.3
+
385 #define RADIOLIB_LR11X0_GFSK_SHAPING_GAUSSIAN_BT_0_5 (0x09UL << 0) // 7 0 Gaussian, BT = 0.5
+
386 #define RADIOLIB_LR11X0_GFSK_SHAPING_GAUSSIAN_BT_0_7 (0x0AUL << 0) // 7 0 Gaussian, BT = 0.7
+
387 #define RADIOLIB_LR11X0_GFSK_SHAPING_GAUSSIAN_BT_1_0 (0x0BUL << 0) // 7 0 Gaussian, BT = 1.0
+
388 #define RADIOLIB_LR11X0_GFSK_SHAPING_RAISED_COSINE_BT_0_7 (0x16UL << 0) // 7 0 raised cosine, BT = 0.7
+
389 #define RADIOLIB_LR11X0_GFSK_RX_BW_4_8 (0x1FUL << 0) // 7 0 GFSK Rx bandwidth: 4.8 kHz
+
390 #define RADIOLIB_LR11X0_GFSK_RX_BW_5_8 (0x17UL << 0) // 7 0 5.8 kHz
+
391 #define RADIOLIB_LR11X0_GFSK_RX_BW_7_3 (0x0FUL << 0) // 7 0 7.3 kHz
+
392 #define RADIOLIB_LR11X0_GFSK_RX_BW_9_7 (0x1EUL << 0) // 7 0 9.7 kHz
+
393 #define RADIOLIB_LR11X0_GFSK_RX_BW_11_7 (0x16UL << 0) // 7 0 11.7 kHz
+
394 #define RADIOLIB_LR11X0_GFSK_RX_BW_14_6 (0x0EUL << 0) // 7 0 14.6 kHz
+
395 #define RADIOLIB_LR11X0_GFSK_RX_BW_19_5 (0x1DUL << 0) // 7 0 19.5 kHz
+
396 #define RADIOLIB_LR11X0_GFSK_RX_BW_23_4 (0x15UL << 0) // 7 0 23.4 kHz
+
397 #define RADIOLIB_LR11X0_GFSK_RX_BW_29_3 (0x0DUL << 0) // 7 0 29.3 kHz
+
398 #define RADIOLIB_LR11X0_GFSK_RX_BW_39_0 (0x1CUL << 0) // 7 0 39.0 kHz
+
399 #define RADIOLIB_LR11X0_GFSK_RX_BW_46_9 (0x14UL << 0) // 7 0 46.9 kHz
+
400 #define RADIOLIB_LR11X0_GFSK_RX_BW_58_6 (0x0CUL << 0) // 7 0 58.6 kHz
+
401 #define RADIOLIB_LR11X0_GFSK_RX_BW_78_2 (0x1BUL << 0) // 7 0 78.2 kHz
+
402 #define RADIOLIB_LR11X0_GFSK_RX_BW_93_8 (0x13UL << 0) // 7 0 93.8 kHz
+
403 #define RADIOLIB_LR11X0_GFSK_RX_BW_117_3 (0x0BUL << 0) // 7 0 117.3 kHz
+
404 #define RADIOLIB_LR11X0_GFSK_RX_BW_156_2 (0x1AUL << 0) // 7 0 156.2 kHz
+
405 #define RADIOLIB_LR11X0_GFSK_RX_BW_187_2 (0x12UL << 0) // 7 0 187.2 kHz
+
406 #define RADIOLIB_LR11X0_GFSK_RX_BW_234_3 (0x0AUL << 0) // 7 0 234.3 kHz
+
407 #define RADIOLIB_LR11X0_GFSK_RX_BW_312_0 (0x19UL << 0) // 7 0 312.0 kHz
+
408 #define RADIOLIB_LR11X0_GFSK_RX_BW_373_6 (0x11UL << 0) // 7 0 373.6 kHz
+
409 #define RADIOLIB_LR11X0_GFSK_RX_BW_467_0 (0x09UL << 0) // 7 0 467.0 kHz
+
410 #define RADIOLIB_LR11X0_LR_FHSS_BIT_RATE (488.28215) // 31 0 LR FHSS bit rate: 488.28215 bps
+
411 #define RADIOLIB_LR11X0_LR_FHSS_BIT_RATE_RAW (0x8001E848UL) // 31 0 488.28215 bps in raw
+
412 #define RADIOLIB_LR11X0_LR_FHSS_SHAPING_GAUSSIAN_BT_1_0 (0x0BUL << 0) // 7 0 shaping filter: Gaussian, BT = 1.0
+
413 #define RADIOLIB_LR11X0_SIGFOX_SHAPING_GAUSSIAN_BT_0_7 (0x16UL << 0) // 7 0 shaping filter: Gaussian, BT = 0.7
+
414 
+
415 // RADIOLIB_LR11X0_CMD_SET_PACKET_PARAMS
+
416 #define RADIOLIB_LR11X0_LORA_HEADER_EXPLICIT (0x00UL << 0) // 7 0 LoRa header mode: explicit
+
417 #define RADIOLIB_LR11X0_LORA_HEADER_IMPLICIT (0x01UL << 0) // 7 0 implicit
+
418 #define RADIOLIB_LR11X0_LORA_PAYLOAD_LEN_ANY (0x00UL << 0) // 7 0 accept any payload length
+
419 #define RADIOLIB_LR11X0_LORA_CRC_ENABLED (0x01UL << 0) // 7 0 CRC: enabled
+
420 #define RADIOLIB_LR11X0_LORA_CRC_DISABLED (0x00UL << 0) // 7 0 disabled
+
421 #define RADIOLIB_LR11X0_LORA_IQ_STANDARD (0x00UL << 0) // 7 0 IQ setup: standard
+
422 #define RADIOLIB_LR11X0_LORA_IQ_INVERTED (0x01UL << 0) // 7 0 inverted
+
423 #define RADIOLIB_LR11X0_GFSK_PREAMBLE_DETECT_DISABLED (0x00UL << 0) // 7 0 preamble detector: disabled
+
424 #define RADIOLIB_LR11X0_GFSK_PREAMBLE_DETECT_8_BITS (0x04UL << 0) // 7 0 8 bits
+
425 #define RADIOLIB_LR11X0_GFSK_PREAMBLE_DETECT_16_BITS (0x05UL << 0) // 7 0 16 bits
+
426 #define RADIOLIB_LR11X0_GFSK_PREAMBLE_DETECT_24_BITS (0x06UL << 0) // 7 0 24 bits
+
427 #define RADIOLIB_LR11X0_GFSK_PREAMBLE_DETECT_32_BITS (0x07UL << 0) // 7 0 32 bits
+
428 #define RADIOLIB_LR11X0_GFSK_ADDR_FILTER_DISABLED (0x00UL << 0) // 7 0 address filtering: disabled
+
429 #define RADIOLIB_LR11X0_GFSK_ADDR_FILTER_NODE (0x01UL << 0) // 7 0 node address
+
430 #define RADIOLIB_LR11X0_GFSK_ADDR_FILTER_NODE_BROADCAST (0x02UL << 0) // 7 0 node and broadcast address
+
431 #define RADIOLIB_LR11X0_GFSK_PACKET_LENGTH_FIXED (0x00UL << 0) // 7 0 packet length: fixed
+
432 #define RADIOLIB_LR11X0_GFSK_PACKET_LENGTH_VARIABLE (0x01UL << 0) // 7 0 variable
+
433 #define RADIOLIB_LR11X0_GFSK_PACKET_LENGTH_VARIABLE_SX128X (0x02UL << 0) // 7 0 variable, SX128x 9-bit length encoding
+
434 #define RADIOLIB_LR11X0_GFSK_PAYLOAD_LEN_ANY (0x00UL << 0) // 7 0 accept any payload length
+
435 #define RADIOLIB_LR11X0_GFSK_CRC_DISABLED (0x01UL << 0) // 7 0 CRC: disabled
+
436 #define RADIOLIB_LR11X0_GFSK_CRC_1_BYTE (0x00UL << 0) // 7 0 1-byte
+
437 #define RADIOLIB_LR11X0_GFSK_CRC_2_BYTE (0x02UL << 0) // 7 0 2-byte
+
438 #define RADIOLIB_LR11X0_GFSK_CRC_1_BYTE_INV (0x04UL << 0) // 7 0 1-byte, inverted
+
439 #define RADIOLIB_LR11X0_GFSK_CRC_2_BYTE_INV (0x06UL << 0) // 7 0 2-byte, inverted
+
440 #define RADIOLIB_LR11X0_GFSK_WHITENING_DISABLED (0x00UL << 0) // 7 0 whitening: disabled
+
441 #define RADIOLIB_LR11X0_GFSK_WHITENING_ENABLED (0x01UL << 0) // 7 0 enabled
+
442 
+
443 // RADIOLIB_LR11X0_CMD_SET_TX_PARAMS
+
444 #define RADIOLIB_LR11X0_PA_RAMP_48U (0x02UL << 0) // 7 0 PA ramp time: 48 us
+
445 
+
446 // RADIOLIB_LR11X0_CMD_SET_RX_TX_FALLBACK_MODE
+
447 #define RADIOLIB_LR11X0_FALLBACK_MODE_STBY_RC (0x01UL << 0) // 1 0 fallback mode after Rx/Tx: standby with RC
+
448 #define RADIOLIB_LR11X0_FALLBACK_MODE_STBY_XOSC (0x02UL << 0) // 1 0 standby with XOSC
+
449 #define RADIOLIB_LR11X0_FALLBACK_MODE_FS (0x03UL << 0) // 1 0 frequency synthesis
+
450 
+
451 // RADIOLIB_LR11X0_CMD_SET_RX_DUTY_CYCLE
+
452 #define RADIOLIB_LR11X0_RX_DUTY_CYCLE_MODE_RX (0x00UL << 0) // 0 0 mode in Rx windows: Rx (default)
+
453 #define RADIOLIB_LR11X0_RX_DUTY_CYCLE_MODE_CAD (0x01UL << 0) // 0 0 CAD
+
454 #define RADIOLIB_LR11X0_TIMING_STEP (1.0f/32768.0f) // 23 0 timing step fo delays
+
455 
+
456 // RADIOLIB_LR11X0_CMD_SET_PA_CONFIG
+
457 #define RADIOLIB_LR11X0_PA_SEL_LP (0x00UL << 0) // 7 0 PA select: low power PA
+
458 #define RADIOLIB_LR11X0_PA_SEL_HP (0x01UL << 0) // 7 0 high power PA
+
459 #define RADIOLIB_LR11X0_PA_SEL_HF (0x02UL << 0) // 7 0 high frequency PA
+
460 #define RADIOLIB_LR11X0_PA_SUPPLY_INTERNAL (0x00UL << 0) // 7 0 PA power source: internal
+
461 #define RADIOLIB_LR11X0_PA_SUPPLY_VBAT (0x01UL << 0) // 7 0 VBAT (required for >= 14 dBm)
+
462 
+
463 // RADIOLIB_LR11X0_CMD_STOP_TIMEOUT_ON_PREAMBLE
+
464 #define RADIOLIB_LR11X0_STOP_ON_SYNC_HEADER (0x00UL << 0) // 0 0 stop timeout on: sync word or header (default)
+
465 #define RADIOLIB_LR11X0_STOP_ON_PREAMBLE (0x01UL << 0) // 0 0 preamble
+
466 
+
467 // RADIOLIB_LR11X0_CMD_GET_RANGING_RESULT
+
468 #define RADIOLIB_LR11X0_RANGING_RESULT_DISTANCE (0) // 7 0 ranging result type: distance
+
469 #define RADIOLIB_LR11X0_RANGING_RESULT_RSSI (1) // 7 0 RSSI
+
470 
+
471 // RADIOLIB_LR11X0_CMD_SET_RX_BOOSTED
+
472 #define RADIOLIB_LR11X0_RX_BOOSTED_ENABLED (0x01UL << 0) // 0 0 Rx boosted mode: enabled
+
473 #define RADIOLIB_LR11X0_RX_BOOSTED_DISABLED (0x00UL << 0) // 0 0 disabled
+
474 
+
475 // RADIOLIB_LR11X0_CMD_SET_LORA_SYNC_WORD
+
476 #define RADIOLIB_LR11X0_LORA_SYNC_WORD_PRIVATE (0x12)
+
477 #define RADIOLIB_LR11X0_LORA_SYNC_WORD_PUBLIC (0x34)
+
478 
+
479 // RADIOLIB_LR11X0_CMD_LR_FHSS_BUILD_FRAME
+
480 #define RADIOLIB_LR11X0_LR_FHSS_CR_5_6 (0x00UL << 0) // 7 0 LR FHSS coding rate: 5/6
+
481 #define RADIOLIB_LR11X0_LR_FHSS_CR_2_3 (0x01UL << 0) // 7 0 2/3
+
482 #define RADIOLIB_LR11X0_LR_FHSS_CR_1_2 (0x02UL << 0) // 7 0 1/2
+
483 #define RADIOLIB_LR11X0_LR_FHSS_CR_1_3 (0x03UL << 0) // 7 0 1/3
+
484 #define RADIOLIB_LR11X0_LR_FHSS_MOD_TYPE_GMSK (0x00UL << 0) // 7 0 LR FHSS modulation: GMSK
+
485 #define RADIOLIB_LR11X0_LR_FHSS_GRID_STEP_FCC (0x00UL << 0) // 7 0 LR FHSS step size: 25.390625 kHz (FCC)
+
486 #define RADIOLIB_LR11X0_LR_FHSS_GRID_STEP_NON_FCC (0x01UL << 0) // 7 0 3.90625 kHz (non-FCC)
+
487 #define RADIOLIB_LR11X0_LR_FHSS_HOPPING_DISABLED (0x00UL << 0) // 7 0 LR FHSS hopping: disabled
+
488 #define RADIOLIB_LR11X0_LR_FHSS_HOPPING_ENABLED (0x01UL << 0) // 7 0 enabled
+
489 #define RADIOLIB_LR11X0_LR_FHSS_BW_39_06 (0x00UL << 0) // 7 0 LR FHSS bandwidth: 39.06 kHz
+
490 #define RADIOLIB_LR11X0_LR_FHSS_BW_85_94 (0x01UL << 0) // 7 0 85.94 kHz
+
491 #define RADIOLIB_LR11X0_LR_FHSS_BW_136_72 (0x02UL << 0) // 7 0 136.72 kHz
+
492 #define RADIOLIB_LR11X0_LR_FHSS_BW_183_59 (0x03UL << 0) // 7 0 183.59 kHz
+
493 #define RADIOLIB_LR11X0_LR_FHSS_BW_335_94 (0x04UL << 0) // 7 0 335.94 kHz
+
494 #define RADIOLIB_LR11X0_LR_FHSS_BW_386_72 (0x05UL << 0) // 7 0 386.72 kHz
+
495 #define RADIOLIB_LR11X0_LR_FHSS_BW_722_66 (0x06UL << 0) // 7 0 722.66 kHz
+
496 #define RADIOLIB_LR11X0_LR_FHSS_BW_773_44 (0x07UL << 0) // 7 0 773.44 kHz
+
497 #define RADIOLIB_LR11X0_LR_FHSS_BW_1523_4 (0x08UL << 0) // 7 0 1523.4 kHz
+
498 #define RADIOLIB_LR11X0_LR_FHSS_BW_1574_2 (0x09UL << 0) // 7 0 1574.2 kHz
+
499 #define RADIOLIB_LR11X0_LR_FHSS_HEADER_BITS (114) // 7 0 LR FHSS packet bit widths: header
+
500 #define RADIOLIB_LR11X0_LR_FHSS_FRAG_BITS (48) // 7 0 payload fragment
+
501 #define RADIOLIB_LR11X0_LR_FHSS_BLOCK_PREAMBLE_BITS (2) // 7 0 block preamble
+
502 #define RADIOLIB_LR11X0_LR_FHSS_BLOCK_BITS (RADIOLIB_LR11X0_LR_FHSS_FRAG_BITS + RADIOLIB_LR11X0_LR_FHSS_BLOCK_PREAMBLE_BITS)
+
503 
+
504 // RADIOLIB_LR11X0_CMD_GET_LORA_RX_HEADER_INFOS
+
505 #define RADIOLIB_LR11X0_LAST_HEADER_CRC_ENABLED (0x01UL << 4) // 4 4 last header CRC: enabled
+
506 #define RADIOLIB_LR11X0_LAST_HEADER_CRC_DISABLED (0x00UL << 4) // 4 4 disabled
+
507 
+
508 // RADIOLIB_LR11X0_CMD_WIFI_SCAN
+
509 #define RADIOLIB_LR11X0_WIFI_SCAN_802_11_B (0x01UL << 0) // 7 0 Wi-Fi type to scan: 802.11b
+
510 #define RADIOLIB_LR11X0_WIFI_SCAN_802_11_G (0x02UL << 0) // 7 0 802.11g
+
511 #define RADIOLIB_LR11X0_WIFI_SCAN_802_11_N (0x03UL << 0) // 7 0 802.11n
+
512 #define RADIOLIB_LR11X0_WIFI_SCAN_ALL (0x04UL << 0) // 7 0 all (802.11b first)
+
513 #define RADIOLIB_LR11X0_WIFI_ACQ_MODE_BEACON_ONLY (0x01UL << 0) // 7 0 Wi-Fi acquisition mode: beacon only
+
514 #define RADIOLIB_LR11X0_WIFI_ACQ_MODE_BEACON_PACKET (0x02UL << 0) // 7 0 beacon and packet
+
515 #define RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_TRAFFIC (0x03UL << 0) // 7 0 full traffic
+
516 #define RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON (0x04UL << 0) // 7 0 full beacon
+
517 #define RADIOLIB_LR11X0_WIFI_ACQ_MODE_SSID_BEACON (0x05UL << 0) // 7 0 SSID beacon
+
518 #define RADIOLIB_LR11X0_WIFI_ABORT_ON_TIMEOUT_ENABLED (0x01UL << 0) // 7 0 abort scanning on preamble timeout: enabled
+
519 #define RADIOLIB_LR11X0_WIFI_ABORT_ON_TIMEOUT_DISABLED (0x00UL << 0) // 7 0 disabled
+
520 #define RADIOLIB_LR11X0_WIFI_MAX_NUM_RESULTS (32) // 7 0 maximum possible number of Wi-Fi scan results
+
521 #define RADIOLIB_LR11X0_WIFI_ALL_CHANNELS (0x3FFFUL) // 16 0 scan all channels
+
522 
+
523 // RADIOLIB_LR11X0_CMD_WIFI_READ_RESULTS
+
524 #define RADIOLIB_LR11X0_WIFI_RESULT_TYPE_COMPLETE (0x01UL << 0) // 7 0 Wi-Fi scan result type: complete
+
525 #define RADIOLIB_LR11X0_WIFI_RESULT_TYPE_BASIC (0x04UL << 0) // 7 0 basic
+
526 #define RADIOLIB_LR11X0_WIFI_RESULT_MAX_LEN (79) // 7 0 maximum possible Wi-Fi scan size
+
527 #define RADIOLIB_LR11X0_WIFI_RESULT_MAC_LEN (6) // 7 0 MAC address length in bytes
+
528 #define RADIOLIB_LR11X0_WIFI_RESULT_SSID_LEN (32) // 7 0 SSID length in bytes
+
529 
+
530 // RADIOLIB_LR11X0_CMD_GNSS_SET_CONSTELLATION_TO_USE
+
531 #define RADIOLIB_LR11X0_GNSS_CONSTELLATION_GPS (0x01UL << 0) // 7 0 GNSS constellation to use: GPS
+
532 #define RADIOLIB_LR11X0_GNSS_CONSTELLATION_BEIDOU (0x01UL << 1) // 7 0 BeiDou
+
533 
+
534 // RADIOLIB_LR11X0_CMD_GNSS_SET_MODE
+
535 #define RADIOLIB_LR11X0_GNSS_MODE_SINGLE_SCAN (0x00UL << 0) // 7 0 GNSS scanning mode: single/legacy
+
536 #define RADIOLIB_LR11X0_GNSS_MODE_SINGLE_MULTIPLE (0x03UL << 1) // 7 0 multiple/advanced
+
537 
+
538 // RADIOLIB_LR11X0_CMD_GNSS_AUTONOMOUS
+
539 #define RADIOLIB_LR11X0_GNSS_RES_PSEUDO_DOPPLER_ENABLED (0x01UL << 0) // 0 0 GNSS results in NAV message: pseudo-range (in single scan mode) or Doppler information (in multiple scan mode)
+
540 #define RADIOLIB_LR11X0_GNSS_RES_PSEUDO_DOPPLER_DISABLED (0x00UL << 0) // 0 0 not included
+
541 #define RADIOLIB_LR11X0_GNSS_RES_DOPPLER_ENABLED (0x01UL << 1) // 1 1 Doppler information
+
542 #define RADIOLIB_LR11X0_GNSS_RES_DOPPLER_DISABLED (0x00UL << 1) // 1 1 not included
+
543 #define RADIOLIB_LR11X0_GNSS_NB_SV_ALL (0x00UL << 0) // 7 0 include all detected satellites
+
544 #define RADIOLIB_LR11X0_GNSS_AUTO_EFFORT_MODE (0x00UL << 0) // 7 0 reserved, always 0
+
545 
+
546 // RADIOLIB_LR11X0_CMD_GNSS_ASSISTED
+
547 #define RADIOLIB_LR11X0_GNSS_ASSIST_LOW_POWER (0x00UL << 0) // 7 0 effort mode: low power
+
548 #define RADIOLIB_LR11X0_GNSS_ASSIST_BEST_EFFORT (0x01UL << 0) // 7 0 best effort
+
549 
+
550 // RADIOLIB_LR11X0_CMD_GNSS_GET_CONTEXT_STATUS
+
551 #define RADIOLIB_LR11X0_GNSS_CONTEXT_ERR_NONE (0x00UL << 0) // 7 4 error code: none
+
552 #define RADIOLIB_LR11X0_GNSS_CONTEXT_ERR_ALMANAC_OLD (0x01UL << 0) // 7 4 almanac too old
+
553 #define RADIOLIB_LR11X0_GNSS_CONTEXT_ERR_ALMANAC_CRC (0x02UL << 0) // 7 4 almanac CRC mismatch
+
554 #define RADIOLIB_LR11X0_GNSS_CONTEXT_ERR_FLASH (0x03UL << 0) // 7 4 flash integrity error
+
555 #define RADIOLIB_LR11X0_GNSS_CONTEXT_ERR_ALMANAC_UPD (0x04UL << 0) // 7 4 almanac update not allowed
+
556 #define RADIOLIB_LR11X0_GNSS_CONTEXT_FREQ_SPACE_250_HZ (0x00UL << 0) // 8 7 frequency search space: 250 Hz
+
557 #define RADIOLIB_LR11X0_GNSS_CONTEXT_FREQ_SPACE_500_HZ (0x01UL << 0) // 8 7 500 Hz
+
558 #define RADIOLIB_LR11X0_GNSS_CONTEXT_FREQ_SPACE_1000_HZ (0x02UL << 0) // 8 7 1000 Hz
+
559 #define RADIOLIB_LR11X0_GNSS_CONTEXT_FREQ_SPACE_2000_HZ (0x03UL << 0) // 8 7 2000 Hz
+
560 
+
561 // RADIOLIB_LR11X0_CMD_GNSS_GET_SV_VISIBLE
+
562 #define RADIOLIB_LR11X0_SV_CONSTELLATION_GPS (0x00UL << 0) // 7 0 GNSS constellation: GPS
+
563 #define RADIOLIB_LR11X0_SV_CONSTELLATION_BEIDOU (0x01UL << 0) // 7 0 BeiDou
+
564 
+
565 // RADIOLIB_LR11X0_CMD_GNSS_ALMANAC_FULL_UPDATE
+
566 #define RADIOLIB_LR11X0_GNSS_ALMANAC_HEADER_ID (0x80UL << 0) // 7 0 starting byte of GNSS almanac header
+
567 #define RADIOLIB_LR11X0_GNSS_ALMANAC_BLOCK_SIZE (20)
+
568 
+
569 // RADIOLIB_LR11X0_CMD_GNSS_FETCH_TIME
+
570 #define RADIOLIB_LR11X0_GNSS_EFFORT_LOW (0x00UL << 0) // 7 0 GNSS effort mode: low sensitivity
+
571 #define RADIOLIB_LR11X0_GNSS_EFFORT_MID (0x01UL << 0) // 7 0 medium sensitivity
+
572 #define RADIOLIB_LR11X0_GNSS_FETCH_TIME_OPT_TOW (0x00UL << 0) // 7 0 time fetch options: ToW only, requires WN to demodulated beforehand
+
573 #define RADIOLIB_LR11X0_GNSS_FETCH_TIME_OPT_TOW_WN (0x01UL << 0) // 7 0 ToW and WN
+
574 #define RADIOLIB_LR11X0_GNSS_FETCH_TIME_OPT_TOW_WN_ROLL (0x02UL << 0) // 7 0 ToW, WN and rollover
+
575 
+
576 // RADIOLIB_LR11X0_CMD_GNSS_READ_DEMOD_STATUS
+
577 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_NOT_POSSIBLE (-21) // 7 0 GNSS demodulation status: not possible to demodulate
+
578 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_SAT_LOST (-20) // 7 0 satellite lost
+
579 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_ALMANAC_DEMOD_ERROR (-19) // 7 0 almanac demodulation error
+
580 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_TOO_LATE (-18) // 7 0 woke up after preamble (demodulation started too late)
+
581 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_20_MS_FAIL (-17) // 7 0 20ms real-time clock failed
+
582 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_WAKE_UP_FAIL (-16) // 7 0 wake up sync failed
+
583 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_WN_INVALID (-15) // 7 0 week number not validated
+
584 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_NO_ACTIVE_SAT (-14) // 7 0 no active satellite selected in satellite list
+
585 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_SLEEP_TOO_LONG (-13) // 7 0 sleep time too long
+
586 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_TOW_INVALID (-12) // 7 0 wrong time-of-week demodulated
+
587 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_PREAMBLE_INVALID (-11) // 7 0 preamble not validated
+
588 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_DISABLED (-10) // 7 0 demodulator disabled
+
589 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_EXTR_FAILED (-9) // 7 0 demodulator extraction failed
+
590 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_NO_BIT_CHANGE (-8) // 7 0 no bit change found during demodulation start
+
591 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_NO_BIT_CHANGE_ADV (-7) // 7 0 no bit change found during advanced scan
+
592 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_NO_SAT_FOUND (-6) // 7 0 no satellites found
+
593 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_SYNC_LOST (-5) // 7 0 word sync lost
+
594 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_PARITY_NOT_ENOUGH (-3) // 7 0 parity check fail (not enough)
+
595 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_PARITY_TOO_MANY (-2) // 7 0 parity check fail (too many)
+
596 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_NO_PARITY (-1) // 7 0 parity check fail (no parity found)
+
597 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_WORD_SYNC_NONE (0) // 7 0 word sync search not started
+
598 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_WORD_SYNC_POT (1) // 7 0 potential word sync found
+
599 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_WORD_SYNC_OK (2) // 7 0 word sync found
+
600 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_TOW_FOUND (3) // 7 0 time-of-week found
+
601 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_WN_FOUND (4) // 7 0 week number and time-of-week found
+
602 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_ALM_FOUND_UNSAVED (5) // 7 0 almanac found but not saved
+
603 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_HALF_ALM_SAVED (6) // 7 0 half of almanac found and saved
+
604 #define RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_FULL_ALM_SAVED (7) // 7 0 full almanac found and saved
+
605 #define RADIOLIB_LR11X0_GNSS_DEMOD_INFO_WORD_SYNC_FOUND (0x01UL << 0) // 7 0 GNSS demodulation info: word synchronization found
+
606 #define RADIOLIB_LR11X0_GNSS_DEMOD_INFO_TOW_FOUND (0x01UL << 1) // 7 0 time-of-week found
+
607 #define RADIOLIB_LR11X0_GNSS_DEMOD_INFO_WN_DEMODED (0x01UL << 2) // 7 0 week number demodulated
+
608 #define RADIOLIB_LR11X0_GNSS_DEMOD_INFO_WN_FOUND (0x01UL << 3) // 7 0 week number found
+
609 #define RADIOLIB_LR11X0_GNSS_DEMOD_INFO_SUBFRAME_1_FOUND (0x01UL << 4) // 7 0 subframe 1 found
+
610 #define RADIOLIB_LR11X0_GNSS_DEMOD_INFO_SUBFRAME_4_FOUND (0x01UL << 5) // 7 0 subframe 4 found
+
611 #define RADIOLIB_LR11X0_GNSS_DEMOD_INFO_SUBFRAME_5_FOUND (0x01UL << 6) // 7 0 subframe 5 found
+
612 
+
613 // RADIOLIB_LR11X0_CMD_GNSS_READ_ALMANAC_STATUS
+
614 #define RADIOLIB_LR11X0_GNSS_ALMANAC_STATUS_UP_TO_DATE (0) // 7 0 GPS/BeiDou almanac status: all satellites up-to-date
+
615 #define RADIOLIB_LR11X0_GNSS_ALMANAC_STATUS_OUTDATED (1) // 7 0 at least one satellite needs update
+
616 
+
617 // RADIOLIB_LR11X0_CMD_GNSS_READ_DOPPLER_SOLVER_RES
+
618 #define RADIOLIB_LR11X0_GNSS_SOLVER_ERR_NONE (0) // 7 0 internal 2D solver error: no error
+
619 #define RADIOLIB_LR11X0_GNSS_SOLVER_ERR_RES_HIGH (1) // 7 0 residue too high
+
620 #define RADIOLIB_LR11X0_GNSS_SOLVER_ERR_NOT_CONVERGED (2) // 7 0 not converged on solution
+
621 #define RADIOLIB_LR11X0_GNSS_SOLVER_ERR_NOT_ENOUGH_SV (3) // 7 0 not enough satellites
+
622 #define RADIOLIB_LR11X0_GNSS_SOLVER_ERR_ILL_MATRIX (4) // 7 0 matrix error (?)
+
623 #define RADIOLIB_LR11X0_GNSS_SOLVER_ERR_TIME (5) // 7 0 time error
+
624 #define RADIOLIB_LR11X0_GNSS_SOLVER_ERR_ALM_PART_OLD (6) // 7 0 part of almanac too old or not available
+
625 #define RADIOLIB_LR11X0_GNSS_SOLVER_ERR_INCONSISTENT (7) // 7 0 not consistent with history (?)
+
626 #define RADIOLIB_LR11X0_GNSS_SOLVER_ERR_ALM_OLD (8) // 7 0 all of almanac too old
+
627 
+
628 // RADIOLIB_LR11X0_CMD_CRYPTO_SET_KEY
+
629 #define RADIOLIB_LR11X0_CRYPTO_STATUS_SUCCESS (0x00UL << 0) // 7 0 crypto engine status: success
+
630 #define RADIOLIB_LR11X0_CRYPTO_STATUS_FAIL_CMAC (0x01UL << 0) // 7 0 MIC check failed
+
631 #define RADIOLIB_LR11X0_CRYPTO_STATUS_INV_KEY_ID (0x03UL << 0) // 7 0 key/parameter source or destination ID error
+
632 #define RADIOLIB_LR11X0_CRYPTO_STATUS_BUF_SIZE (0x05UL << 0) // 7 0 data buffer size invalid
+
633 #define RADIOLIB_LR11X0_CRYPTO_STATUS_ERROR (0x06UL << 0) // 7 0 generic error
+
634 
+
635 // RADIOLIB_LR11X0_CMD_CRYPTO_PROCESS_JOIN_ACCEPT
+
636 #define RADIOLIB_LR11X0_CRYPTO_LORAWAN_VERSION_1_0 (0x00UL << 0) // 7 0 LoRaWAN version: 1.0.x
+
637 #define RADIOLIB_LR11X0_CRYPTO_LORAWAN_VERSION_1_1 (0x01UL << 0) // 7 0 1.1
+
638 
+
639 // LR11X0 SPI register variables
+
640 
+
641 // RADIOLIB_LR11X0_REG_SF6_SX127X_COMPAT
+
642 #define RADIOLIB_LR11X0_SF6_SX126X (0x00UL << 18) // 18 18 SF6 mode: SX126x series
+
643 #define RADIOLIB_LR11X0_SF6_SX127X (0x01UL << 18) // 18 18 SX127x series
+
644 
+
645 // RADIOLIB_LR11X0_REG_LORA_HIGH_POWER_FIX
+
646 #define RADIOLIB_LR11X0_LORA_HIGH_POWER_FIX (0x00UL << 30) // 30 30 fix for errata
+
647 
+
648 // RADIOLIB_LR11X0_REG_LNA_MODE
+
649 #define RADIOLIB_LR11X0_LNA_MODE_SINGLE_RFI_N (0x01UL << 4) // 7 4 LNA mode: single-ended RFI_N
+
650 #define RADIOLIB_LR11X0_LNA_MODE_SINGLE_RFI_P (0x02UL << 4) // 7 4 single-ended RFI_P
+
651 #define RADIOLIB_LR11X0_LNA_MODE_DIFFERENTIAL (0x03UL << 4) // 7 4 differential (default)
+
652 
+
658 struct LR11x0WifiResult_t {
+
660  char type;
+
661 
+
663  uint8_t dataRateId;
+
664 
+
666  uint16_t channelFreq;
+
667 
+
669  uint8_t origin;
+
670 
+
672  bool ap;
+
673 
+
675  float rssi;
+
676 
+
678  uint8_t mac[RADIOLIB_LR11X0_WIFI_RESULT_MAC_LEN];
+
679 };
+
680 
+
686 struct LR11x0WifiResultFull_t: public LR11x0WifiResult_t {
+
688  uint8_t frameType;
+
689 
+
691  uint8_t frameSubType;
+
692 
+
694  bool toDistributionSystem;
+
695 
+
697  bool fromDistributionSystem;
+
698 
+
700  uint16_t phiOffset;
+
701 
+
703  uint64_t timestamp;
+
704 
+
706  uint32_t periodBeacon;
+
707 };
+
708 
+
716 struct LR11x0WifiResultExtended_t: public LR11x0WifiResultFull_t {
+
718  uint8_t rate;
+
719 
+
721  uint16_t service;
+
722 
+
724  uint16_t length;
+
725 
+
727  uint8_t mac0[RADIOLIB_LR11X0_WIFI_RESULT_MAC_LEN];
+
728 
+
730  uint8_t mac2[RADIOLIB_LR11X0_WIFI_RESULT_MAC_LEN];
+
731 
+
733  uint16_t seqCtrl;
+
734 
+
736  uint8_t ssid[RADIOLIB_LR11X0_WIFI_RESULT_SSID_LEN];
+
737 
+
739  uint8_t currentChannel;
+
740 
+
742  char countryCode[3];
+
743 
+
745  uint8_t ioReg;
+
746 
+
748  bool fcsCheckOk;
+
749 };
+
750 
+
755 struct LR11x0VersionInfo_t {
+
757  uint8_t hardware;
+
758 
+
760  uint8_t device;
+
761 
+
763  uint8_t fwMajor;
+
764 
+
766  uint8_t fwMinor;
+
767 
+
769  uint8_t fwMajorWiFi;
+
770 
+
772  uint8_t fwMinorWiFi;
+
773 
+
775  uint8_t fwGNSS;
+
776 
+
778  uint8_t almanacGNSS;
+
779 };
+
780 
+
785 struct LR11x0GnssResult_t {
+
787  int8_t demodStat;
+
788 
+
790  uint8_t numSatsDet;
+
791 
+
793  uint16_t resSize;
+
794 };
+
795 
+
800 struct LR11x0GnssPosition_t {
+
802  float latitude;
+
803 
+
805  float longitude;
+
806 
+
808  uint16_t accuracy;
+
809 
+
811  uint8_t numSatsUsed;
+
812 };
+
813 
+
818 struct LR11x0GnssSatellite_t {
+
820  uint8_t svId;
+
821 
+
823  uint8_t c_n0;
+
824 
+
826  int16_t doppler;
+
827 };
+
828 
+
833 struct LR11x0GnssAlmanacStatusPart_t {
+
834  int8_t status;
+
835  uint32_t timeUntilSubframe;
+
836  uint8_t numSubframes;
+
837  uint8_t nextSubframe4SvId;
+
838  uint8_t nextSubframe5SvId;
+
839  uint8_t nextSubframeStart;
+
840  uint8_t numUpdateNeeded;
+
841  uint32_t flagsUpdateNeeded[2];
+
842  uint32_t flagsActive[2];
+
843 };
+
844 
+
850 struct LR11x0GnssAlmanacStatus_t {
+
852  LR11x0GnssAlmanacStatusPart_t gps;
+
853 
+
855  LR11x0GnssAlmanacStatusPart_t beidou;
+
856 
+
858  uint32_t beidouSvNoAlmanacFlags[2];
+
859 
+
861  uint8_t nextAlmanacId;
+
862 
+
864  RadioLibTime_t start;
+
865 };
+
866 
+
872 class LR11x0: public PhysicalLayer {
+
873  public:
+
874  // introduce PhysicalLayer overloads
+
875  using PhysicalLayer::transmit;
+
876  using PhysicalLayer::receive;
+
877  using PhysicalLayer::startTransmit;
+
878  using PhysicalLayer::readData;
+
879 
+
884  explicit LR11x0(Module* mod);
+
885 
+
890  enum OpMode_t {
+
892  MODE_END_OF_TABLE = Module::MODE_END_OF_TABLE,
+
894  MODE_STBY = Module::MODE_IDLE,
+
896  MODE_RX = Module::MODE_RX,
+
898  MODE_TX = Module::MODE_TX,
+
900  MODE_TX_HP,
+
902  MODE_TX_HF,
+
904  MODE_GNSS,
+
906  MODE_WIFI,
+
907  };
+
908 
+
912  bool XTAL;
+
913 
+
925  int16_t begin(float bw, uint8_t sf, uint8_t cr, uint8_t syncWord, uint16_t preambleLength, float tcxoVoltage, bool high = false);
+
926 
+
936  int16_t beginGFSK(float br, float freqDev, float rxBw, uint16_t preambleLength, float tcxoVoltage);
+
937 
+
946  int16_t beginLRFHSS(uint8_t bw, uint8_t cr, bool narrowGrid, float tcxoVoltage);
+
947 
+
954  int16_t beginGNSS(uint8_t constellations = RADIOLIB_LR11X0_GNSS_CONSTELLATION_GPS | RADIOLIB_LR11X0_GNSS_CONSTELLATION_BEIDOU, float tcxoVoltage = 1.6);
+
955 
+
960  int16_t reset();
+
961 
+
970  int16_t transmit(const uint8_t* data, size_t len, uint8_t addr = 0) override;
+
971 
+
979  int16_t receive(uint8_t* data, size_t len) override;
+
980 
+
986  int16_t transmitDirect(uint32_t frf = 0) override;
+
987 
+
993  int16_t receiveDirect() override;
+
994 
+
999  int16_t scanChannel() override;
+
1000 
+
1006  int16_t scanChannel(const ChannelScanConfig_t &config) override;
+
1007 
+
1012  int16_t standby() override;
+
1013 
+
1021  int16_t standby(uint8_t mode, bool wakeup = true);
+
1022 
+
1028  int16_t sleep() override;
+
1029 
+
1037  int16_t sleep(bool retainConfig, uint32_t sleepTime);
+
1038 
+
1039  // interrupt methods
+
1040 
+
1045  void setIrqAction(void (*func)(void));
+
1046 
+
1050  void clearIrqAction();
+
1051 
+
1056  void setPacketReceivedAction(void (*func)(void)) override;
+
1057 
+
1061  void clearPacketReceivedAction() override;
+
1062 
+
1067  void setPacketSentAction(void (*func)(void)) override;
+
1068 
+
1072  void clearPacketSentAction() override;
+
1073 
+
1082  int16_t startTransmit(const uint8_t* data, size_t len, uint8_t addr = 0) override;
+
1083 
+
1088  int16_t finishTransmit() override;
+
1089 
+
1096  int16_t startReceive() override;
+
1097 
+
1110  int16_t startReceive(uint32_t timeout, uint32_t irqFlags = RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask = 0, size_t len = 0);
+
1111 
+
1116  uint32_t getIrqStatus();
+
1117 
+
1126  int16_t readData(uint8_t* data, size_t len) override;
+
1127 
+
1133  int16_t startChannelScan() override;
+
1134 
+
1141  int16_t startChannelScan(const ChannelScanConfig_t &config) override;
+
1142 
+
1147  int16_t getChannelScanResult() override;
+
1148 
+
1149  // configuration methods
+
1150 
+
1157  int16_t setBandwidth(float bw, bool high = false);
+
1158 
+
1165  int16_t setSpreadingFactor(uint8_t sf, bool legacy = false);
+
1166 
+
1174  int16_t setCodingRate(uint8_t cr, bool longInterleave = false);
+
1175 
+
1181  int16_t setSyncWord(uint32_t syncWord);
+
1182 
+
1188  int16_t setBitRate(float br) override;
+
1189 
+
1195  int16_t setFrequencyDeviation(float freqDev) override;
+
1196 
+
1203  int16_t setRxBandwidth(float rxBw);
+
1204 
+
1211  int16_t setSyncWord(uint8_t* syncWord, size_t len) override;
+
1212 
+
1220  int16_t setSyncBits(uint8_t *syncWord, uint8_t bitsLen);
+
1221 
+
1227  int16_t setNodeAddress(uint8_t nodeAddr);
+
1228 
+
1235  int16_t setBroadcastAddress(uint8_t broadAddr);
+
1236 
+
1241  int16_t disableAddressFiltering();
+
1242 
+
1250  int16_t setDataShaping(uint8_t sh) override;
+
1251 
+
1257  int16_t setEncoding(uint8_t encoding) override;
+
1258 
+
1264  int16_t fixedPacketLengthMode(uint8_t len = RADIOLIB_LR11X0_MAX_PACKET_LENGTH);
+
1265 
+
1271  int16_t variablePacketLengthMode(uint8_t maxLen = RADIOLIB_LR11X0_MAX_PACKET_LENGTH);
+
1272 
+
1280  int16_t setWhitening(bool enabled, uint16_t initial = 0x01FF);
+
1281 
+
1287  int16_t setDataRate(DataRate_t dr) override;
+
1288 
+
1294  int16_t checkDataRate(DataRate_t dr) override;
+
1295 
+
1301  int16_t setPreambleLength(size_t preambleLength) override;
+
1302 
+
1311  int16_t setTCXO(float voltage, uint32_t delay = 5000);
+
1312 
+
1321  int16_t setCRC(uint8_t len, uint32_t initial = 0x00001D0FUL, uint32_t polynomial = 0x00001021UL, bool inverted = true);
+
1322 
+
1328  int16_t invertIQ(bool enable) override;
+
1329 
+
1334  float getRSSI() override;
+
1335 
+
1340  float getSNR() override;
+
1341 
+
1346  float getFrequencyError();
+
1347 
+
1353  size_t getPacketLength(bool update = true) override;
+
1354 
+
1360  size_t getPacketLength(bool update, uint8_t* offset);
+
1361 
+
1367  RadioLibTime_t getTimeOnAir(size_t len) override;
+
1368 
+
1374  RadioLibTime_t calculateRxTimeout(RadioLibTime_t timeoutUs) override;
+
1375 
+
1380  uint32_t getIrqFlags() override;
+
1381 
+
1387  int16_t setIrqFlags(uint32_t irq) override;
+
1388 
+
1394  int16_t clearIrqFlags(uint32_t irq) override;
+
1395 
+
1400  uint8_t randomByte() override;
+
1401 
+
1407  int16_t implicitHeader(size_t len);
+
1408 
+
1413  int16_t explicitHeader();
+
1414 
+
1419  float getDataRate() const;
+
1420 
+
1425  int16_t setRegulatorLDO();
+
1426 
+
1431  int16_t setRegulatorDCDC();
+
1432 
+
1438  int16_t setRxBoostedGainMode(bool en);
+
1439 
+
1441  void setRfSwitchTable(const uint32_t (&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[]);
+
1442 
+
1449  int16_t forceLDRO(bool enable);
+
1450 
+
1456  int16_t autoLDRO();
+
1457 
+
1466  int16_t setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount = 3, uint16_t hopSeed = 0x13A);
+
1467 
+
1482  int16_t startWifiScan(char wifiType, uint8_t mode = RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask = RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans = 16, uint16_t timeout = 100);
+
1483 
+
1488  void setWiFiScanAction(void (*func)(void));
+
1489 
+
1493  void clearWiFiScanAction();
+
1494 
+
1500  int16_t getWifiScanResultsCount(uint8_t* count);
+
1501 
+
1511  int16_t getWifiScanResult(LR11x0WifiResult_t* result, uint8_t index, bool brief = false);
+
1512 
+
1529  int16_t wifiScan(uint8_t wifiType, uint8_t* count, uint8_t mode = RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask = RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans = 16, uint16_t timeout = 100);
+
1530 
+
1536  int16_t getVersionInfo(LR11x0VersionInfo_t* info);
+
1537 
+
1548  int16_t updateFirmware(const uint32_t* image, size_t size, bool nonvolatile = true);
+
1549 
+
1554  int16_t isGnssScanCapable();
+
1555 
+
1562  int16_t gnssScan(LR11x0GnssResult_t* res = NULL);
+
1563 
+
1570  int16_t getGnssAlmanacStatus(LR11x0GnssAlmanacStatus_t *stat);
+
1571 
+
1581  int16_t gnssDelayUntilSubframe(LR11x0GnssAlmanacStatus_t *stat, uint8_t constellation);
+
1582 
+
1589  int16_t updateGnssAlmanac(uint8_t constellation);
+
1590 
+
1597  int16_t getGnssPosition(LR11x0GnssPosition_t* pos, bool filtered = true);
+
1598 
+
1605  int16_t getGnssSatellites(LR11x0GnssSatellite_t* sats, uint8_t numSats);
+
1606 
+
1612  int16_t getModem(ModemType_t* modem) override;
+
1613 
+
1621  int16_t calibrateImageRejection(float freqMin, float freqMax);
+
1622 
+
1623 #if !RADIOLIB_GODMODE && !RADIOLIB_LOW_LEVEL
+
1624  protected:
+
1625 #endif
+
1626  Module* getMod() override;
+
1627 
+
1628  // LR11x0 SPI command implementations
+
1629  int16_t writeRegMem32(uint32_t addr, uint32_t* data, size_t len);
+
1630  int16_t readRegMem32(uint32_t addr, uint32_t* data, size_t len);
+
1631  int16_t writeBuffer8(uint8_t* data, size_t len);
+
1632  int16_t readBuffer8(uint8_t* data, size_t len, size_t offset);
+
1633  int16_t clearRxBuffer(void);
+
1634  int16_t writeRegMemMask32(uint32_t addr, uint32_t mask, uint32_t data);
+
1635 
+
1636  int16_t getStatus(uint8_t* stat1, uint8_t* stat2, uint32_t* irq);
+
1637  int16_t getVersion(uint8_t* hw, uint8_t* device, uint8_t* major, uint8_t* minor);
+
1638  int16_t getErrors(uint16_t* err);
+
1639  int16_t clearErrors(void);
+
1640  int16_t calibrate(uint8_t params);
+
1641  int16_t setRegMode(uint8_t mode);
+
1642  int16_t setDioAsRfSwitch(uint8_t en, uint8_t stbyCfg, uint8_t rxCfg, uint8_t txCfg, uint8_t txHpCfg, uint8_t txHfCfg, uint8_t gnssCfg, uint8_t wifiCfg);
+
1643  int16_t setDioIrqParams(uint32_t irq1, uint32_t irq2);
+
1644  int16_t setDioIrqParams(uint32_t irq);
+
1645  int16_t clearIrq(uint32_t irq);
+
1646  int16_t configLfClock(uint8_t setup);
+
1647  int16_t setTcxoMode(uint8_t tune, uint32_t delay);
+
1648  int16_t reboot(bool stay);
+
1649  int16_t getVbat(float* vbat);
+
1650  int16_t getTemp(float* temp);
+
1651  int16_t setFs(void);
+
1652  int16_t getRandomNumber(uint32_t* rnd);
+
1653  int16_t eraseInfoPage(void);
+
1654  int16_t writeInfoPage(uint16_t addr, const uint32_t* data, size_t len);
+
1655  int16_t readInfoPage(uint16_t addr, uint32_t* data, size_t len);
+
1656  int16_t getChipEui(uint8_t* eui);
+
1657  int16_t getSemtechJoinEui(uint8_t* eui);
+
1658  int16_t deriveRootKeysAndGetPin(uint8_t* pin);
+
1659  int16_t enableSpiCrc(bool en);
+
1660  int16_t driveDiosInSleepMode(bool en);
+
1661 
+
1662  int16_t resetStats(void);
+
1663  int16_t getStats(uint16_t* nbPktReceived, uint16_t* nbPktCrcError, uint16_t* data1, uint16_t* data2);
+
1664  int16_t getPacketType(uint8_t* type);
+
1665  int16_t getRxBufferStatus(uint8_t* len, uint8_t* startOffset);
+
1666  int16_t getPacketStatusLoRa(float* rssiPkt, float* snrPkt, float* signalRssiPkt);
+
1667  int16_t getPacketStatusGFSK(float* rssiSync, float* rssiAvg, uint8_t* rxLen, uint8_t* stat);
+
1668  int16_t getRssiInst(float* rssi);
+
1669  int16_t setGfskSyncWord(uint8_t* sync);
+
1670  int16_t setLoRaPublicNetwork(bool pub);
+
1671  int16_t setRx(uint32_t timeout);
+
1672  int16_t setTx(uint32_t timeout);
+
1673  int16_t setRfFrequency(uint32_t rfFreq);
+
1674  int16_t autoTxRx(uint32_t delay, uint8_t intMode, uint32_t timeout);
+
1675  int16_t setCadParams(uint8_t symNum, uint8_t detPeak, uint8_t detMin, uint8_t cadExitMode, uint32_t timeout);
+
1676  int16_t setPacketType(uint8_t type);
+
1677  int16_t setModulationParamsLoRa(uint8_t sf, uint8_t bw, uint8_t cr, uint8_t ldro);
+
1678  int16_t setModulationParamsGFSK(uint32_t br, uint8_t sh, uint8_t rxBw, uint32_t freqDev);
+
1679  int16_t setModulationParamsLrFhss(uint32_t br, uint8_t sh);
+
1680  int16_t setModulationParamsSigfox(uint32_t br, uint8_t sh);
+
1681  int16_t setPacketParamsLoRa(uint16_t preambleLen, uint8_t hdrType, uint8_t payloadLen, uint8_t crcType, uint8_t invertIQ);
+
1682  int16_t setPacketParamsGFSK(uint16_t preambleLen, uint8_t preambleDetectorLen, uint8_t syncWordLen, uint8_t addrCmp, uint8_t packType, uint8_t payloadLen, uint8_t crcType, uint8_t whiten);
+
1683  int16_t setPacketParamsSigfox(uint8_t payloadLen, uint16_t rampUpDelay, uint16_t rampDownDelay, uint16_t bitNum);
+
1684  int16_t setTxParams(int8_t pwr, uint8_t ramp);
+
1685  int16_t setPacketAdrs(uint8_t node, uint8_t broadcast);
+
1686  int16_t setRxTxFallbackMode(uint8_t mode);
+
1687  int16_t setRxDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, uint8_t mode);
+
1688  int16_t setPaConfig(uint8_t paSel, uint8_t regPaSupply, uint8_t paDutyCycle, uint8_t paHpSel);
+
1689  int16_t stopTimeoutOnPreamble(bool stop);
+
1690  int16_t setCad(void);
+
1691  int16_t setTxCw(void);
+
1692  int16_t setTxInfinitePreamble(void);
+
1693  int16_t setLoRaSynchTimeout(uint8_t symbolNum);
+
1694  int16_t setRangingAddr(uint32_t addr, uint8_t checkLen);
+
1695  int16_t setRangingReqAddr(uint32_t addr);
+
1696  int16_t getRangingResult(uint8_t type, float* res);
+
1697  int16_t setRangingTxRxDelay(uint32_t delay);
+
1698  int16_t setGfskCrcParams(uint32_t init, uint32_t poly);
+
1699  int16_t setGfskWhitParams(uint16_t seed);
+
1700  int16_t setRangingParameter(uint8_t symbolNum);
+
1701  int16_t setRssiCalibration(const int8_t* tune, int16_t gainOffset);
+
1702  int16_t setLoRaSyncWord(uint8_t sync);
+
1703  int16_t lrFhssBuildFrame(uint8_t hdrCount, uint8_t cr, uint8_t grid, bool hop, uint8_t bw, uint16_t hopSeq, int8_t devOffset, uint8_t* payload, size_t len);
+
1704  int16_t lrFhssSetSyncWord(uint32_t sync);
+
1705  int16_t configBleBeacon(uint8_t chan, uint8_t* payload, size_t len);
+
1706  int16_t getLoRaRxHeaderInfos(uint8_t* info);
+
1707  int16_t bleBeaconSend(uint8_t chan, uint8_t* payload, size_t len);
+
1708 
+
1709  int16_t wifiScan(uint8_t type, uint16_t mask, uint8_t acqMode, uint8_t nbMaxRes, uint8_t nbScanPerChan, uint16_t timeout, uint8_t abortOnTimeout);
+
1710  int16_t wifiScanTimeLimit(uint8_t type, uint16_t mask, uint8_t acqMode, uint8_t nbMaxRes, uint16_t timePerChan, uint16_t timeout);
+
1711  int16_t wifiCountryCode(uint16_t mask, uint8_t nbMaxRes, uint8_t nbScanPerChan, uint16_t timeout, uint8_t abortOnTimeout);
+
1712  int16_t wifiCountryCodeTimeLimit(uint16_t mask, uint8_t nbMaxRes, uint16_t timePerChan, uint16_t timeout);
+
1713  int16_t wifiGetNbResults(uint8_t* nbResults);
+
1714  int16_t wifiReadResults(uint8_t index, uint8_t nbResults, uint8_t format, uint8_t* results);
+
1715  int16_t wifiResetCumulTimings(void);
+
1716  int16_t wifiReadCumulTimings(uint32_t* detection, uint32_t* capture, uint32_t* demodulation);
+
1717  int16_t wifiGetNbCountryCodeResults(uint8_t* nbResults);
+
1718  int16_t wifiReadCountryCodeResults(uint8_t index, uint8_t nbResults, uint8_t* results);
+
1719  int16_t wifiCfgTimestampAPphone(uint32_t timestamp);
+
1720  int16_t wifiReadVersion(uint8_t* major, uint8_t* minor);
+
1721 
+
1722  int16_t gnssReadRssi(int8_t* rssi);
+
1723  int16_t gnssSetConstellationToUse(uint8_t mask);
+
1724  int16_t gnssReadConstellationToUse(uint8_t* mask);
+
1725  int16_t gnssSetAlmanacUpdate(uint8_t mask);
+
1726  int16_t gnssReadAlmanacUpdate(uint8_t* mask);
+
1727  int16_t gnssSetFreqSearchSpace(uint8_t freq);
+
1728  int16_t gnssReadFreqSearchSpace(uint8_t* freq);
+
1729  int16_t gnssReadVersion(uint8_t* fw, uint8_t* almanac);
+
1730  int16_t gnssReadSupportedConstellations(uint8_t* mask);
+
1731  int16_t gnssSetMode(uint8_t mode);
+
1732  int16_t gnssAutonomous(uint32_t gpsTime, uint8_t resMask, uint8_t nbSvMask);
+
1733  int16_t gnssAssisted(uint32_t gpsTime, uint8_t effort, uint8_t resMask, uint8_t nbSvMask);
+
1734  int16_t gnssSetAssistancePosition(float lat, float lon);
+
1735  int16_t gnssReadAssistancePosition(float* lat, float* lon);
+
1736  int16_t gnssPushSolverMsg(uint8_t* payload, size_t len);
+
1737  int16_t gnssPushDmMsg(uint8_t* payload, size_t len);
+
1738  int16_t gnssGetContextStatus(uint8_t* fwVersion, uint32_t* almanacCrc, uint8_t* errCode, uint8_t* almUpdMask, uint8_t* freqSpace);
+
1739  int16_t gnssGetNbSvDetected(uint8_t* nbSv);
+
1740  int16_t gnssGetSvDetected(uint8_t* svId, uint8_t* snr, int16_t* doppler, size_t nbSv);
+
1741  int16_t gnssGetConsumption(uint32_t* cpu, uint32_t* radio);
+
1742  int16_t gnssGetResultSize(uint16_t* size);
+
1743  int16_t gnssReadResults(uint8_t* result, uint16_t size);
+
1744  int16_t gnssAlmanacFullUpdateHeader(uint16_t date, uint32_t globalCrc);
+
1745  int16_t gnssAlmanacFullUpdateSV(uint8_t svn, uint8_t* svnAlmanac);
+
1746  int16_t gnssAlmanacReadAddrSize(uint32_t* addr, uint16_t* size);
+
1747  int16_t gnssAlmanacReadSV(uint8_t svId, uint8_t* almanac);
+
1748  int16_t gnssGetNbSvVisible(uint32_t time, float lat, float lon, uint8_t constellation, uint8_t* nbSv);
+
1749  int16_t gnssGetSvVisible(uint8_t nbSv, uint8_t** svId, int16_t** doppler, int16_t** dopplerErr);
+
1750  int16_t gnssPerformScan(uint8_t effort, uint8_t resMask, uint8_t nbSvMax);
+
1751  int16_t gnssReadLastScanModeLaunched(uint8_t* lastScanMode);
+
1752  int16_t gnssFetchTime(uint8_t effort, uint8_t opt);
+
1753  int16_t gnssReadTime(uint8_t* err, uint32_t* time, uint32_t* nbUs, uint32_t* timeAccuracy);
+
1754  int16_t gnssResetTime(void);
+
1755  int16_t gnssResetPosition(void);
+
1756  int16_t gnssReadWeekNumberRollover(uint8_t* status, uint8_t* rollover);
+
1757  int16_t gnssReadDemodStatus(int8_t* status, uint8_t* info);
+
1758  int16_t gnssReadCumulTiming(uint32_t* timing, uint8_t* constDemod);
+
1759  int16_t gnssSetTime(uint32_t time, uint16_t accuracy);
+
1760  int16_t gnssReadDopplerSolverRes(uint8_t* error, uint8_t* nbSvUsed, float* lat, float* lon, uint16_t* accuracy, uint16_t* xtal, float* latFilt, float* lonFilt, uint16_t* accuracyFilt, uint16_t* xtalFilt);
+
1761  int16_t gnssReadDelayResetAP(uint32_t* delay);
+
1762  int16_t gnssAlmanacUpdateFromSat(uint8_t effort, uint8_t bitMask);
+
1763  int16_t gnssReadAlmanacStatus(uint8_t* status);
+
1764  int16_t gnssReadKeepSyncStatus(uint8_t mask, uint8_t* nbSvVisible, uint32_t* elapsed);
+
1765  int16_t gnssConfigAlmanacUpdatePeriod(uint8_t bitMask, uint8_t svType, uint16_t period);
+
1766  int16_t gnssReadAlmanacUpdatePeriod(uint8_t bitMask, uint8_t svType, uint16_t* period);
+
1767  int16_t gnssConfigDelayResetAP(uint32_t delay);
+
1768  int16_t gnssGetSvWarmStart(uint8_t bitMask, uint8_t* sv, uint8_t nbVisSat);
+
1769  int16_t gnssReadWarmStartStatus(uint8_t bitMask, uint8_t* nbVisSat, uint32_t* timeElapsed);
+
1770  int16_t gnssGetSvSync(uint8_t mask, uint8_t nbSv, uint8_t* syncList);
+
1771  int16_t gnssWriteBitMaskSatActivated(uint8_t bitMask, uint32_t* bitMaskActivated0, uint32_t* bitMaskActivated1);
+
1772  void gnssAbort();
+
1773 
+
1774  int16_t cryptoSetKey(uint8_t keyId, uint8_t* key);
+
1775  int16_t cryptoDeriveKey(uint8_t srcKeyId, uint8_t dstKeyId, uint8_t* key);
+
1776  int16_t cryptoProcessJoinAccept(uint8_t decKeyId, uint8_t verKeyId, uint8_t lwVer, uint8_t* header, uint8_t* dataIn, size_t len, uint8_t* dataOut);
+
1777  int16_t cryptoComputeAesCmac(uint8_t keyId, uint8_t* data, size_t len, uint32_t* mic);
+
1778  int16_t cryptoVerifyAesCmac(uint8_t keyId, uint32_t micExp, uint8_t* data, size_t len, bool* result);
+
1779  int16_t cryptoAesEncrypt01(uint8_t keyId, uint8_t* dataIn, size_t len, uint8_t* dataOut);
+
1780  int16_t cryptoAesEncrypt(uint8_t keyId, uint8_t* dataIn, size_t len, uint8_t* dataOut);
+
1781  int16_t cryptoAesDecrypt(uint8_t keyId, uint8_t* dataIn, size_t len, uint8_t* dataOut);
+
1782  int16_t cryptoStoreToFlash(void);
+
1783  int16_t cryptoRestoreFromFlash(void);
+
1784  int16_t cryptoSetParam(uint8_t id, uint32_t value);
+
1785  int16_t cryptoGetParam(uint8_t id, uint32_t* value);
+
1786  int16_t cryptoCheckEncryptedFirmwareImage(uint32_t offset, uint32_t* data, size_t len, bool nonvolatile);
+
1787  int16_t cryptoCheckEncryptedFirmwareImageResult(bool* result);
+
1788 
+
1789  int16_t bootEraseFlash(void);
+
1790  int16_t bootWriteFlashEncrypted(uint32_t offset, uint32_t* data, size_t len, bool nonvolatile);
+
1791  int16_t bootReboot(bool stay);
+
1792  int16_t bootGetPin(uint8_t* pin);
+
1793  int16_t bootGetChipEui(uint8_t* eui);
+
1794  int16_t bootGetJoinEui(uint8_t* eui);
+
1795 
+
1796  int16_t SPIcommand(uint16_t cmd, bool write, uint8_t* data, size_t len, uint8_t* out = NULL, size_t outLen = 0);
+
1797 
+
1798 #if !RADIOLIB_GODMODE
+
1799  protected:
+
1800 #endif
+
1801  uint8_t chipType = 0;
+
1802  float freqMHz = 0;
+
1803 
+
1804 #if !RADIOLIB_GODMODE
+
1805  private:
+
1806 #endif
+
1807  Module* mod;
+
1808 
+
1809  // cached LoRa parameters
+
1810  uint8_t bandwidth = 0, spreadingFactor = 0, codingRate = 0, ldrOptimize = 0, crcTypeLoRa = 0, headerType = 0;
+
1811  uint16_t preambleLengthLoRa = 0;
+
1812  float bandwidthKhz = 0;
+
1813  bool ldroAuto = true;
+
1814  size_t implicitLen = 0;
+
1815  bool invertIQEnabled = false;
+
1816 
+
1817  // cached GFSK parameters
+
1818  uint32_t bitRate = 0, frequencyDev = 0;
+
1819  uint8_t preambleDetLength = 0, rxBandwidth = 0, pulseShape = 0, crcTypeGFSK = 0, syncWordLength = 0, addrComp = 0, whitening = 0, packetType = 0, node = 0;
+
1820  uint16_t preambleLengthGFSK = 0;
+
1821 
+
1822  // cached LR-FHSS parameters
+
1823  uint8_t lrFhssCr = 0, lrFhssBw = 0, lrFhssHdrCount = 0, lrFhssGrid = 0;
+
1824  uint16_t lrFhssHopSeq = 0;
+
1825 
+
1826  float dataRateMeasured = 0;
+
1827 
+
1828  uint8_t wifiScanMode = 0;
+
1829 
+
1830  int16_t modSetup(float tcxoVoltage, uint8_t modem);
+
1831  static int16_t SPIparseStatus(uint8_t in);
+
1832  static int16_t SPIcheckStatus(Module* mod);
+
1833  bool findChip(uint8_t ver);
+
1834  int16_t config(uint8_t modem);
+
1835  int16_t setPacketMode(uint8_t mode, uint8_t len);
+
1836  int16_t startCad(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin, uint8_t exitMode, RadioLibTime_t timeout);
+
1837  int16_t setHeaderType(uint8_t hdrType, size_t len = 0xFF);
+
1838 
+
1839  // common methods to avoid some copy-paste
+
1840  int16_t bleBeaconCommon(uint16_t cmd, uint8_t chan, uint8_t* payload, size_t len);
+
1841  int16_t writeCommon(uint16_t cmd, uint32_t addrOffset, const uint32_t* data, size_t len, bool nonvolatile);
+
1842  int16_t cryptoCommon(uint16_t cmd, uint8_t keyId, uint8_t* dataIn, size_t len, uint8_t* dataOut);
+
1843 };
+
1844 
+
1845 #endif
+
1846 
+
1847 #endif
+
LR11x0
Base class for LR11x0 series. All derived classes for LR11x0 (e.g. LR1110 or LR1120) inherit from thi...
Definition: LR11x0.h:872
LR11x0::getSNR
float getSNR() override
Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem.
Definition: LR11x0.cpp:1260
LR11x0::getIrqStatus
uint32_t getIrqStatus()
Reads the current IRQ status.
Definition: LR11x0.cpp:534
LR11x0::setDataRate
int16_t setDataRate(DataRate_t dr) override
Set data.
Definition: LR11x0.cpp:1054
@@ -1307,19 +1310,19 @@ $(document).ready(function(){initNavTree('_l_r11x0_8h_source.html',''); initResi
LR11x0::setRxBandwidth
int16_t setRxBandwidth(float rxBw)
Sets GFSK receiver bandwidth. Allowed values are 4.8, 5.8, 7.3, 9.7, 11.7, 14.6, 19....
Definition: LR11x0.cpp:814
LR11x0::calculateRxTimeout
RadioLibTime_t calculateRxTimeout(RadioLibTime_t timeoutUs) override
Calculate the timeout value for this specific module / series (in number of symbols or units of time)
Definition: LR11x0.cpp:1394
LR11x0::reset
int16_t reset()
Reset method. Will reset the chip to the default state using RST pin.
Definition: LR11x0.cpp:151
-
LR11x0::OpMode_t
OpMode_t
Custom operation modes for LR11x0. Needed because LR11x0 has several modems (sub-GHz,...
Definition: LR11x0.h:889
-
LR11x0::MODE_TX_HP
@ MODE_TX_HP
Definition: LR11x0.h:899
-
LR11x0::MODE_END_OF_TABLE
@ MODE_END_OF_TABLE
Definition: LR11x0.h:891
-
LR11x0::MODE_WIFI
@ MODE_WIFI
Definition: LR11x0.h:905
-
LR11x0::MODE_GNSS
@ MODE_GNSS
Definition: LR11x0.h:903
-
LR11x0::MODE_TX
@ MODE_TX
Definition: LR11x0.h:897
-
LR11x0::MODE_RX
@ MODE_RX
Definition: LR11x0.h:895
-
LR11x0::MODE_STBY
@ MODE_STBY
Definition: LR11x0.h:893
-
LR11x0::MODE_TX_HF
@ MODE_TX_HF
Definition: LR11x0.h:901
+
LR11x0::OpMode_t
OpMode_t
Custom operation modes for LR11x0. Needed because LR11x0 has several modems (sub-GHz,...
Definition: LR11x0.h:890
+
LR11x0::MODE_TX_HP
@ MODE_TX_HP
Definition: LR11x0.h:900
+
LR11x0::MODE_END_OF_TABLE
@ MODE_END_OF_TABLE
Definition: LR11x0.h:892
+
LR11x0::MODE_WIFI
@ MODE_WIFI
Definition: LR11x0.h:906
+
LR11x0::MODE_GNSS
@ MODE_GNSS
Definition: LR11x0.h:904
+
LR11x0::MODE_TX
@ MODE_TX
Definition: LR11x0.h:898
+
LR11x0::MODE_RX
@ MODE_RX
Definition: LR11x0.h:896
+
LR11x0::MODE_STBY
@ MODE_STBY
Definition: LR11x0.h:894
+
LR11x0::MODE_TX_HF
@ MODE_TX_HF
Definition: LR11x0.h:902
LR11x0::startWifiScan
int16_t startWifiScan(char wifiType, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)
Start passive WiFi scan. BUSY pin will be de-activated when the scan is finished.
Definition: LR11x0.cpp:1514
LR11x0::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:206
LR11x0::explicitHeader
int16_t explicitHeader()
Set explicit header mode for future reception/transmission.
Definition: LR11x0.cpp:1423
-
LR11x0::XTAL
bool XTAL
Whether the module has an XTAL (true) or TCXO (false). Defaults to false.
Definition: LR11x0.h:911
+
LR11x0::XTAL
bool XTAL
Whether the module has an XTAL (true) or TCXO (false). Defaults to false.
Definition: LR11x0.h:912
LR11x0::getWifiScanResult
int16_t getWifiScanResult(LR11x0WifiResult_t *result, uint8_t index, bool brief=false)
Retrieve passive WiFi scan result.
Definition: LR11x0.cpp:1578
LR11x0::setIrqAction
void setIrqAction(void(*func)(void))
Sets interrupt service routine to call when IRQ1 activates.
Definition: LR11x0.cpp:391
LR11x0::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:53
@@ -1376,6 +1379,7 @@ $(document).ready(function(){initNavTree('_l_r11x0_8h_source.html',''); initResi
LR11x0::beginGNSS
int16_t beginGNSS(uint8_t constellations=RADIOLIB_LR11X0_GNSS_CONSTELLATION_GPS|RADIOLIB_LR11X0_GNSS_CONSTELLATION_BEIDOU, float tcxoVoltage=1.6)
Initialization method for GNSS scanning.
Definition: LR11x0.cpp:123
LR11x0::getFrequencyError
float getFrequencyError()
Gets frequency error of the latest received packet.
Definition: LR11x0.cpp:1273
LR11x0::gnssScan
int16_t gnssScan(LR11x0GnssResult_t *res=NULL)
Performs GNSS scan.
Definition: LR11x0.cpp:1801
+
LR11x0::calibrateImageRejection
int16_t calibrateImageRejection(float freqMin, float freqMax)
Perform image rejection calibration for the specified frequency band. WARNING: Use at your own risk!...
Definition: LR11x0.cpp:2403
LR11x0::variablePacketLengthMode
int16_t variablePacketLengthMode(uint8_t maxLen=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)
Set modem in variable packet length mode. Available in GFSK mode only.
Definition: LR11x0.cpp:1025
LR11x0::setWhitening
int16_t setWhitening(bool enabled, uint16_t initial=0x01FF)
Sets GFSK whitening parameters.
Definition: LR11x0.cpp:1029
LR11x0::wifiScan
int16_t wifiScan(uint8_t wifiType, uint8_t *count, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)
Blocking WiFi scan method. Performs a full passive WiFi scan. This method may block for several secon...
Definition: LR11x0.cpp:1652
@@ -1400,63 +1404,63 @@ $(document).ready(function(){initNavTree('_l_r11x0_8h_source.html',''); initResi
PhysicalLayer::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:148
PhysicalLayer::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:111
RadioLibTime_t
unsigned long RadioLibTime_t
Type used for durations in RadioLib.
Definition: TypeDef.h:642
-
LR11x0GnssAlmanacStatus_t
Structure to save information about the GNSS almanac. This is not the actual almanac,...
Definition: LR11x0.h:849
-
LR11x0GnssAlmanacStatus_t::start
RadioLibTime_t start
Timestamp of when almanac status was retrieved - timeUntilSubframe is relative to this value.
Definition: LR11x0.h:863
-
LR11x0GnssAlmanacStatus_t::beidou
LR11x0GnssAlmanacStatusPart_t beidou
BeiDou part of the almanac.
Definition: LR11x0.h:854
-
LR11x0GnssAlmanacStatus_t::nextAlmanacId
uint8_t nextAlmanacId
Next almanac ID.
Definition: LR11x0.h:860
-
LR11x0GnssAlmanacStatus_t::beidouSvNoAlmanacFlags
uint32_t beidouSvNoAlmanacFlags[2]
Extra flags present for BeiDou only.
Definition: LR11x0.h:857
-
LR11x0GnssAlmanacStatus_t::gps
LR11x0GnssAlmanacStatusPart_t gps
GPS part of the almanac.
Definition: LR11x0.h:851
-
LR11x0GnssAlmanacStatusPart_t
Structure to save information about one constellation of the GNSS almanac.
Definition: LR11x0.h:832
-
LR11x0GnssPosition_t
Structure to report position from LR11x0 internal solver.
Definition: LR11x0.h:799
-
LR11x0GnssPosition_t::latitude
float latitude
Latitude in degrees.
Definition: LR11x0.h:801
-
LR11x0GnssPosition_t::accuracy
uint16_t accuracy
Accuracy of this result.
Definition: LR11x0.h:807
-
LR11x0GnssPosition_t::longitude
float longitude
Longitude in degrees.
Definition: LR11x0.h:804
-
LR11x0GnssPosition_t::numSatsUsed
uint8_t numSatsUsed
Number of satellites used to solve this position.
Definition: LR11x0.h:810
-
LR11x0GnssResult_t
Structure to report information results of a GNSS scan.
Definition: LR11x0.h:784
-
LR11x0GnssResult_t::resSize
uint16_t resSize
Result size, used when passing data to LoRa cloud.
Definition: LR11x0.h:792
-
LR11x0GnssResult_t::demodStat
int8_t demodStat
Demodulator status. One of RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_*.
Definition: LR11x0.h:786
-
LR11x0GnssResult_t::numSatsDet
uint8_t numSatsDet
Number of satellites detected during the scan.
Definition: LR11x0.h:789
-
LR11x0GnssSatellite_t
Structure to save information about a satellite found during GNSS scan.
Definition: LR11x0.h:817
-
LR11x0GnssSatellite_t::svId
uint8_t svId
Satellite vehicle (SV) identifier.
Definition: LR11x0.h:819
-
LR11x0GnssSatellite_t::c_n0
uint8_t c_n0
C/N0 in dB.
Definition: LR11x0.h:822
-
LR11x0GnssSatellite_t::doppler
int16_t doppler
Doppler shift of the signal in Hz.
Definition: LR11x0.h:825
-
LR11x0VersionInfo_t
Structure to report information about versions of the LR11x0 hardware and firmware.
Definition: LR11x0.h:754
-
LR11x0VersionInfo_t::fwMajor
uint8_t fwMajor
Major revision of the base firmware.
Definition: LR11x0.h:762
-
LR11x0VersionInfo_t::fwMinorWiFi
uint8_t fwMinorWiFi
Minor revision of the WiFi firmware.
Definition: LR11x0.h:771
-
LR11x0VersionInfo_t::device
uint8_t device
Which device this is - one of RADIOLIB_LR11X0_DEVICE_* macros.
Definition: LR11x0.h:759
-
LR11x0VersionInfo_t::hardware
uint8_t hardware
Hardware revision.
Definition: LR11x0.h:756
-
LR11x0VersionInfo_t::fwMinor
uint8_t fwMinor
Minor revision of the base firmware.
Definition: LR11x0.h:765
-
LR11x0VersionInfo_t::fwGNSS
uint8_t fwGNSS
Revision of the GNSS firmware.
Definition: LR11x0.h:774
-
LR11x0VersionInfo_t::almanacGNSS
uint8_t almanacGNSS
Almanac revision of the GNSS firmware.
Definition: LR11x0.h:777
-
LR11x0VersionInfo_t::fwMajorWiFi
uint8_t fwMajorWiFi
Major revision of the WiFi firmware.
Definition: LR11x0.h:768
-
LR11x0WifiResult_t
Structure to save result of passive WiFi scan. This result only saves the basic information.
Definition: LR11x0.h:657
-
LR11x0WifiResult_t::ap
bool ap
Whether this signal was sent by an access point (true) or end device (false)
Definition: LR11x0.h:671
-
LR11x0WifiResult_t::channelFreq
uint16_t channelFreq
Channel frequency in MHz.
Definition: LR11x0.h:665
-
LR11x0WifiResult_t::type
char type
WiFi (802.11) signal type, 'b', 'n' or 'g'.
Definition: LR11x0.h:659
-
LR11x0WifiResult_t::mac
uint8_t mac[RADIOLIB_LR11X0_WIFI_RESULT_MAC_LEN]
MAC address.
Definition: LR11x0.h:677
-
LR11x0WifiResult_t::dataRateId
uint8_t dataRateId
Data rate ID holding information about modulation and coding rate. See LR11x0 user manual for details...
Definition: LR11x0.h:662
-
LR11x0WifiResult_t::rssi
float rssi
RSSI in dBm.
Definition: LR11x0.h:674
-
LR11x0WifiResult_t::origin
uint8_t origin
MAC address origin: from gateway (1), phone (2) or undetermined (3)
Definition: LR11x0.h:668
-
LR11x0WifiResultExtended_t
Structure to save result of passive WiFi scan. This result saves additional information alongside tha...
Definition: LR11x0.h:715
-
LR11x0WifiResultExtended_t::rate
uint8_t rate
Data rate. See LR11x0 user manual for details.
Definition: LR11x0.h:717
-
LR11x0WifiResultExtended_t::length
uint16_t length
Refer to IEEE Std 802.11, 2016, Part 11: Wireless LAN MAC and PHY Spec.
Definition: LR11x0.h:723
-
LR11x0WifiResultExtended_t::fcsCheckOk
bool fcsCheckOk
True if frame check sequences is valid, false otherwise.
Definition: LR11x0.h:747
-
LR11x0WifiResultExtended_t::service
uint16_t service
Refer to IEEE Std 802.11, 2016, Part 11: Wireless LAN MAC and PHY Spec.
Definition: LR11x0.h:720
-
LR11x0WifiResultExtended_t::mac2
uint8_t mac2[RADIOLIB_LR11X0_WIFI_RESULT_MAC_LEN]
MAC address 2.
Definition: LR11x0.h:729
-
LR11x0WifiResultExtended_t::ssid
uint8_t ssid[RADIOLIB_LR11X0_WIFI_RESULT_SSID_LEN]
SSID.
Definition: LR11x0.h:735
-
LR11x0WifiResultExtended_t::currentChannel
uint8_t currentChannel
WiFi channel number.
Definition: LR11x0.h:738
-
LR11x0WifiResultExtended_t::seqCtrl
uint16_t seqCtrl
Refer to IEEE Std 802.11, 2016, Part 11: Wireless LAN MAC and PHY Spec.
Definition: LR11x0.h:732
-
LR11x0WifiResultExtended_t::mac0
uint8_t mac0[RADIOLIB_LR11X0_WIFI_RESULT_MAC_LEN]
MAC address 0.
Definition: LR11x0.h:726
-
LR11x0WifiResultExtended_t::countryCode
char countryCode[3]
Two-letter country code (null-terminated string).
Definition: LR11x0.h:741
-
LR11x0WifiResultExtended_t::ioReg
uint8_t ioReg
Refer to IEEE Std 802.11, 2016, Part 11: Wireless LAN MAC and PHY Spec.
Definition: LR11x0.h:744
-
LR11x0WifiResultFull_t
Structure to save result of passive WiFi scan. This result saves additional information alongside tha...
Definition: LR11x0.h:685
-
LR11x0WifiResultFull_t::periodBeacon
uint32_t periodBeacon
Beacon period in microseconds.
Definition: LR11x0.h:705
-
LR11x0WifiResultFull_t::phiOffset
uint16_t phiOffset
See LR11x0 user manual for details.
Definition: LR11x0.h:699
-
LR11x0WifiResultFull_t::fromDistributionSystem
bool fromDistributionSystem
Frame sent from distribution system to client station.
Definition: LR11x0.h:696
-
LR11x0WifiResultFull_t::timestamp
uint64_t timestamp
Number of microseconds the AP has been active.
Definition: LR11x0.h:702
-
LR11x0WifiResultFull_t::frameType
uint8_t frameType
Frame type. See LR11x0 user manual for details.
Definition: LR11x0.h:687
-
LR11x0WifiResultFull_t::frameSubType
uint8_t frameSubType
Frame sub type. See LR11x0 user manual for details.
Definition: LR11x0.h:690
-
LR11x0WifiResultFull_t::toDistributionSystem
bool toDistributionSystem
Frame sent from client station to distribution system.
Definition: LR11x0.h:693
+
LR11x0GnssAlmanacStatus_t
Structure to save information about the GNSS almanac. This is not the actual almanac,...
Definition: LR11x0.h:850
+
LR11x0GnssAlmanacStatus_t::start
RadioLibTime_t start
Timestamp of when almanac status was retrieved - timeUntilSubframe is relative to this value.
Definition: LR11x0.h:864
+
LR11x0GnssAlmanacStatus_t::beidou
LR11x0GnssAlmanacStatusPart_t beidou
BeiDou part of the almanac.
Definition: LR11x0.h:855
+
LR11x0GnssAlmanacStatus_t::nextAlmanacId
uint8_t nextAlmanacId
Next almanac ID.
Definition: LR11x0.h:861
+
LR11x0GnssAlmanacStatus_t::beidouSvNoAlmanacFlags
uint32_t beidouSvNoAlmanacFlags[2]
Extra flags present for BeiDou only.
Definition: LR11x0.h:858
+
LR11x0GnssAlmanacStatus_t::gps
LR11x0GnssAlmanacStatusPart_t gps
GPS part of the almanac.
Definition: LR11x0.h:852
+
LR11x0GnssAlmanacStatusPart_t
Structure to save information about one constellation of the GNSS almanac.
Definition: LR11x0.h:833
+
LR11x0GnssPosition_t
Structure to report position from LR11x0 internal solver.
Definition: LR11x0.h:800
+
LR11x0GnssPosition_t::latitude
float latitude
Latitude in degrees.
Definition: LR11x0.h:802
+
LR11x0GnssPosition_t::accuracy
uint16_t accuracy
Accuracy of this result.
Definition: LR11x0.h:808
+
LR11x0GnssPosition_t::longitude
float longitude
Longitude in degrees.
Definition: LR11x0.h:805
+
LR11x0GnssPosition_t::numSatsUsed
uint8_t numSatsUsed
Number of satellites used to solve this position.
Definition: LR11x0.h:811
+
LR11x0GnssResult_t
Structure to report information results of a GNSS scan.
Definition: LR11x0.h:785
+
LR11x0GnssResult_t::resSize
uint16_t resSize
Result size, used when passing data to LoRa cloud.
Definition: LR11x0.h:793
+
LR11x0GnssResult_t::demodStat
int8_t demodStat
Demodulator status. One of RADIOLIB_LR11X0_GNSS_DEMOD_STATUS_*.
Definition: LR11x0.h:787
+
LR11x0GnssResult_t::numSatsDet
uint8_t numSatsDet
Number of satellites detected during the scan.
Definition: LR11x0.h:790
+
LR11x0GnssSatellite_t
Structure to save information about a satellite found during GNSS scan.
Definition: LR11x0.h:818
+
LR11x0GnssSatellite_t::svId
uint8_t svId
Satellite vehicle (SV) identifier.
Definition: LR11x0.h:820
+
LR11x0GnssSatellite_t::c_n0
uint8_t c_n0
C/N0 in dB.
Definition: LR11x0.h:823
+
LR11x0GnssSatellite_t::doppler
int16_t doppler
Doppler shift of the signal in Hz.
Definition: LR11x0.h:826
+
LR11x0VersionInfo_t
Structure to report information about versions of the LR11x0 hardware and firmware.
Definition: LR11x0.h:755
+
LR11x0VersionInfo_t::fwMajor
uint8_t fwMajor
Major revision of the base firmware.
Definition: LR11x0.h:763
+
LR11x0VersionInfo_t::fwMinorWiFi
uint8_t fwMinorWiFi
Minor revision of the WiFi firmware.
Definition: LR11x0.h:772
+
LR11x0VersionInfo_t::device
uint8_t device
Which device this is - one of RADIOLIB_LR11X0_DEVICE_* macros.
Definition: LR11x0.h:760
+
LR11x0VersionInfo_t::hardware
uint8_t hardware
Hardware revision.
Definition: LR11x0.h:757
+
LR11x0VersionInfo_t::fwMinor
uint8_t fwMinor
Minor revision of the base firmware.
Definition: LR11x0.h:766
+
LR11x0VersionInfo_t::fwGNSS
uint8_t fwGNSS
Revision of the GNSS firmware.
Definition: LR11x0.h:775
+
LR11x0VersionInfo_t::almanacGNSS
uint8_t almanacGNSS
Almanac revision of the GNSS firmware.
Definition: LR11x0.h:778
+
LR11x0VersionInfo_t::fwMajorWiFi
uint8_t fwMajorWiFi
Major revision of the WiFi firmware.
Definition: LR11x0.h:769
+
LR11x0WifiResult_t
Structure to save result of passive WiFi scan. This result only saves the basic information.
Definition: LR11x0.h:658
+
LR11x0WifiResult_t::ap
bool ap
Whether this signal was sent by an access point (true) or end device (false)
Definition: LR11x0.h:672
+
LR11x0WifiResult_t::channelFreq
uint16_t channelFreq
Channel frequency in MHz.
Definition: LR11x0.h:666
+
LR11x0WifiResult_t::type
char type
WiFi (802.11) signal type, 'b', 'n' or 'g'.
Definition: LR11x0.h:660
+
LR11x0WifiResult_t::mac
uint8_t mac[RADIOLIB_LR11X0_WIFI_RESULT_MAC_LEN]
MAC address.
Definition: LR11x0.h:678
+
LR11x0WifiResult_t::dataRateId
uint8_t dataRateId
Data rate ID holding information about modulation and coding rate. See LR11x0 user manual for details...
Definition: LR11x0.h:663
+
LR11x0WifiResult_t::rssi
float rssi
RSSI in dBm.
Definition: LR11x0.h:675
+
LR11x0WifiResult_t::origin
uint8_t origin
MAC address origin: from gateway (1), phone (2) or undetermined (3)
Definition: LR11x0.h:669
+
LR11x0WifiResultExtended_t
Structure to save result of passive WiFi scan. This result saves additional information alongside tha...
Definition: LR11x0.h:716
+
LR11x0WifiResultExtended_t::rate
uint8_t rate
Data rate. See LR11x0 user manual for details.
Definition: LR11x0.h:718
+
LR11x0WifiResultExtended_t::length
uint16_t length
Refer to IEEE Std 802.11, 2016, Part 11: Wireless LAN MAC and PHY Spec.
Definition: LR11x0.h:724
+
LR11x0WifiResultExtended_t::fcsCheckOk
bool fcsCheckOk
True if frame check sequences is valid, false otherwise.
Definition: LR11x0.h:748
+
LR11x0WifiResultExtended_t::service
uint16_t service
Refer to IEEE Std 802.11, 2016, Part 11: Wireless LAN MAC and PHY Spec.
Definition: LR11x0.h:721
+
LR11x0WifiResultExtended_t::mac2
uint8_t mac2[RADIOLIB_LR11X0_WIFI_RESULT_MAC_LEN]
MAC address 2.
Definition: LR11x0.h:730
+
LR11x0WifiResultExtended_t::ssid
uint8_t ssid[RADIOLIB_LR11X0_WIFI_RESULT_SSID_LEN]
SSID.
Definition: LR11x0.h:736
+
LR11x0WifiResultExtended_t::currentChannel
uint8_t currentChannel
WiFi channel number.
Definition: LR11x0.h:739
+
LR11x0WifiResultExtended_t::seqCtrl
uint16_t seqCtrl
Refer to IEEE Std 802.11, 2016, Part 11: Wireless LAN MAC and PHY Spec.
Definition: LR11x0.h:733
+
LR11x0WifiResultExtended_t::mac0
uint8_t mac0[RADIOLIB_LR11X0_WIFI_RESULT_MAC_LEN]
MAC address 0.
Definition: LR11x0.h:727
+
LR11x0WifiResultExtended_t::countryCode
char countryCode[3]
Two-letter country code (null-terminated string).
Definition: LR11x0.h:742
+
LR11x0WifiResultExtended_t::ioReg
uint8_t ioReg
Refer to IEEE Std 802.11, 2016, Part 11: Wireless LAN MAC and PHY Spec.
Definition: LR11x0.h:745
+
LR11x0WifiResultFull_t
Structure to save result of passive WiFi scan. This result saves additional information alongside tha...
Definition: LR11x0.h:686
+
LR11x0WifiResultFull_t::periodBeacon
uint32_t periodBeacon
Beacon period in microseconds.
Definition: LR11x0.h:706
+
LR11x0WifiResultFull_t::phiOffset
uint16_t phiOffset
See LR11x0 user manual for details.
Definition: LR11x0.h:700
+
LR11x0WifiResultFull_t::fromDistributionSystem
bool fromDistributionSystem
Frame sent from distribution system to client station.
Definition: LR11x0.h:697
+
LR11x0WifiResultFull_t::timestamp
uint64_t timestamp
Number of microseconds the AP has been active.
Definition: LR11x0.h:703
+
LR11x0WifiResultFull_t::frameType
uint8_t frameType
Frame type. See LR11x0 user manual for details.
Definition: LR11x0.h:688
+
LR11x0WifiResultFull_t::frameSubType
uint8_t frameSubType
Frame sub type. See LR11x0 user manual for details.
Definition: LR11x0.h:691
+
LR11x0WifiResultFull_t::toDistributionSystem
bool toDistributionSystem
Frame sent from client station to distribution system.
Definition: LR11x0.h:694
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:82
ChannelScanConfig_t
Common channel scan configuration structure.
Definition: PhysicalLayer.h:125
DataRate_t
Common data rate structure.
Definition: PhysicalLayer.h:74
diff --git a/_s_x1262_8h_source.html b/_s_x1262_8h_source.html index ca611529..4c1440af 100644 --- a/_s_x1262_8h_source.html +++ b/_s_x1262_8h_source.html @@ -117,36 +117,36 @@ $(document).ready(function(){initNavTree('_s_x1262_8h_source.html',''); initResi
79 
80  // configuration methods
81 
-
87  int16_t setFrequency(float freq) override;
-
88 
-
95  int16_t setFrequency(float freq, bool calibrate);
-
96 
-
103  virtual int16_t setOutputPower(int8_t power) override;
-
104 
-
111  int16_t checkOutputPower(int8_t power, int8_t* clipped) override;
-
112 
-
119  int16_t setModem(ModemType_t modem) override;
-
120 
-
121 #if !RADIOLIB_GODMODE
-
122  private:
-
123 #endif
+
89  int16_t setFrequency(float freq) override;
+
90 
+
99  int16_t setFrequency(float freq, bool skipCalibration);
+
100 
+
107  virtual int16_t setOutputPower(int8_t power) override;
+
108 
+
115  int16_t checkOutputPower(int8_t power, int8_t* clipped) override;
+
116 
+
123  int16_t setModem(ModemType_t modem) override;
124 
-
125 };
-
126 
+
125 #if !RADIOLIB_GODMODE
+
126  private:
127 #endif
128 
-
129 #endif
+
129 };
+
130 
+
131 #endif
+
132 
+
133 #endif
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
SX1262
Derived class for SX1262 modules.
Definition: SX1262.h:22
-
SX1262::SX1262
SX1262(Module *mod)
Default constructor.
Definition: SX1262.cpp:4
-
SX1262::setFrequency
int16_t setFrequency(float freq) override
Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz.
Definition: SX1262.cpp:68
-
SX1262::checkOutputPower
int16_t checkOutputPower(int8_t power, int8_t *clipped) override
Check if output power is configurable.
Definition: SX1262.cpp:140
-
SX1262::beginFSK
int16_t beginFSK(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=156.2, int8_t power=10, uint16_t preambleLength=16, float tcxoVoltage=1.6, bool useRegulatorLDO=false)
Initialization method for FSK modem.
Definition: SX1262.cpp:32
-
SX1262::setModem
int16_t setModem(ModemType_t modem) override
Set modem for the radio to use. Will perform full reset and reconfigure the radio using its default p...
Definition: SX1262.cpp:148
-
SX1262::begin
int16_t begin(float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_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: SX1262.cpp:8
-
SX1262::setOutputPower
virtual int16_t setOutputPower(int8_t power) override
Sets output power. Allowed values are in range from -9 to 22 dBm. This method is virtual to allow ove...
Definition: SX1262.cpp:118
-
SX1262::beginLRFHSS
int16_t beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_SX126X_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_SX126X_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6, bool useRegulatorLDO=false)
Initialization method for LR-FHSS modem. This modem only supports transmission!
Definition: SX1262.cpp:50
-
SX126x
Base class for SX126x series. All derived classes for SX126x (e.g. SX1262 or SX1268) inherit from thi...
Definition: SX126x.h:474
+
SX1262::SX1262
SX1262(Module *mod)
Default constructor.
Definition: SX1262.cpp:6
+
SX1262::setFrequency
int16_t setFrequency(float freq) override
Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will automatically perfo...
Definition: SX1262.cpp:70
+
SX1262::checkOutputPower
int16_t checkOutputPower(int8_t power, int8_t *clipped) override
Check if output power is configurable.
Definition: SX1262.cpp:109
+
SX1262::beginFSK
int16_t beginFSK(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=156.2, int8_t power=10, uint16_t preambleLength=16, float tcxoVoltage=1.6, bool useRegulatorLDO=false)
Initialization method for FSK modem.
Definition: SX1262.cpp:34
+
SX1262::setModem
int16_t setModem(ModemType_t modem) override
Set modem for the radio to use. Will perform full reset and reconfigure the radio using its default p...
Definition: SX1262.cpp:117
+
SX1262::begin
int16_t begin(float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_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: SX1262.cpp:10
+
SX1262::setOutputPower
virtual int16_t setOutputPower(int8_t power) override
Sets output power. Allowed values are in range from -9 to 22 dBm. This method is virtual to allow ove...
Definition: SX1262.cpp:87
+
SX1262::beginLRFHSS
int16_t beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_SX126X_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_SX126X_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6, bool useRegulatorLDO=false)
Initialization method for LR-FHSS modem. This modem only supports transmission!
Definition: SX1262.cpp:52
+
SX126x
Base class for SX126x series. All derived classes for SX126x (e.g. SX1262 or SX1268) inherit from thi...
Definition: SX126x.h:475
diff --git a/_s_x1268_8h_source.html b/_s_x1268_8h_source.html index 3a34641a..b3f582d1 100644 --- a/_s_x1268_8h_source.html +++ b/_s_x1268_8h_source.html @@ -116,36 +116,36 @@ $(document).ready(function(){initNavTree('_s_x1268_8h_source.html',''); initResi
78 
79  // configuration methods
80 
-
86  int16_t setFrequency(float freq) override;
-
87 
-
94  int16_t setFrequency(float freq, bool calibrate);
-
95 
-
101  int16_t setOutputPower(int8_t power) override;
-
102 
-
109  int16_t checkOutputPower(int8_t power, int8_t* clipped) override;
-
110 
-
117  int16_t setModem(ModemType_t modem) override;
-
118 
-
119 #if !RADIOLIB_GODMODE
-
120  private:
-
121 #endif
+
88  int16_t setFrequency(float freq) override;
+
89 
+
98  int16_t setFrequency(float freq, bool skipCalibration);
+
99 
+
105  int16_t setOutputPower(int8_t power) override;
+
106 
+
113  int16_t checkOutputPower(int8_t power, int8_t* clipped) override;
+
114 
+
121  int16_t setModem(ModemType_t modem) override;
122 
-
123 };
-
124 
+
123 #if !RADIOLIB_GODMODE
+
124  private:
125 #endif
126 
-
127 #endif
+
127 };
+
128 
+
129 #endif
+
130 
+
131 #endif
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
SX1268
Derived class for SX1268 modules.
Definition: SX1268.h:21
-
SX1268::beginLRFHSS
int16_t beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_SX126X_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_SX126X_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6, bool useRegulatorLDO=false)
Initialization method for LR-FHSS modem. This modem only supports transmission!
Definition: SX1268.cpp:50
-
SX1268::setOutputPower
int16_t setOutputPower(int8_t power) override
Sets output power. Allowed values are in range from -9 to 22 dBm.
Definition: SX1268.cpp:113
-
SX1268::SX1268
SX1268(Module *mod)
Default constructor.
Definition: SX1268.cpp:4
-
SX1268::begin
int16_t begin(float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_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
-
SX1268::checkOutputPower
int16_t checkOutputPower(int8_t power, int8_t *clipped) override
Check if output power is configurable.
Definition: SX1268.cpp:135
-
SX1268::setModem
int16_t setModem(ModemType_t modem) override
Set modem for the radio to use. Will perform full reset and reconfigure the radio using its default p...
Definition: SX1268.cpp:143
-
SX1268::setFrequency
int16_t setFrequency(float freq) override
Sets carrier frequency. Allowed values are in range from 410.0 to 810.0 MHz.
Definition: SX1268.cpp:68
-
SX1268::beginFSK
int16_t beginFSK(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=156.2, int8_t power=10, uint16_t preambleLength=16, float tcxoVoltage=1.6, bool useRegulatorLDO=false)
Initialization method for FSK modem.
Definition: SX1268.cpp:32
-
SX126x
Base class for SX126x series. All derived classes for SX126x (e.g. SX1262 or SX1268) inherit from thi...
Definition: SX126x.h:474
+
SX1268::beginLRFHSS
int16_t beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_SX126X_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_SX126X_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6, bool useRegulatorLDO=false)
Initialization method for LR-FHSS modem. This modem only supports transmission!
Definition: SX1268.cpp:52
+
SX1268::setOutputPower
int16_t setOutputPower(int8_t power) override
Sets output power. Allowed values are in range from -9 to 22 dBm.
Definition: SX1268.cpp:88
+
SX1268::SX1268
SX1268(Module *mod)
Default constructor.
Definition: SX1268.cpp:6
+
SX1268::begin
int16_t begin(float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_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:10
+
SX1268::checkOutputPower
int16_t checkOutputPower(int8_t power, int8_t *clipped) override
Check if output power is configurable.
Definition: SX1268.cpp:110
+
SX1268::setModem
int16_t setModem(ModemType_t modem) override
Set modem for the radio to use. Will perform full reset and reconfigure the radio using its default p...
Definition: SX1268.cpp:118
+
SX1268::setFrequency
int16_t setFrequency(float freq) override
Sets carrier frequency. Allowed values are in range from 410.0 to 810.0 MHz. Will automatically perfo...
Definition: SX1268.cpp:70
+
SX1268::beginFSK
int16_t beginFSK(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=156.2, int8_t power=10, uint16_t preambleLength=16, float tcxoVoltage=1.6, bool useRegulatorLDO=false)
Initialization method for FSK modem.
Definition: SX1268.cpp:34
+
SX126x
Base class for SX126x series. All derived classes for SX126x (e.g. SX1262 or SX1268) inherit from thi...
Definition: SX126x.h:475
diff --git a/_s_x126x_8h_source.html b/_s_x126x_8h_source.html index b76b549c..c91bc439 100644 --- a/_s_x126x_8h_source.html +++ b/_s_x126x_8h_source.html @@ -289,592 +289,595 @@ $(document).ready(function(){initNavTree('_s_x126x_8h_source.html',''); initResi
201 #define RADIOLIB_SX126X_CAL_IMG_863_MHZ_2 0xDB
202 #define RADIOLIB_SX126X_CAL_IMG_902_MHZ_1 0xE1
203 #define RADIOLIB_SX126X_CAL_IMG_902_MHZ_2 0xE9
-
204 
-
205 //RADIOLIB_SX126X_CMD_SET_PA_CONFIG
-
206 #define RADIOLIB_SX126X_PA_CONFIG_HP_MAX 0x07
-
207 #define RADIOLIB_SX126X_PA_CONFIG_PA_LUT 0x01
-
208 #define RADIOLIB_SX126X_PA_CONFIG_SX1262_8 0x00
-
209 
-
210 //RADIOLIB_SX126X_CMD_SET_RX_TX_FALLBACK_MODE
-
211 #define RADIOLIB_SX126X_RX_TX_FALLBACK_MODE_FS 0x40 // 7 0 after Rx/Tx go to: FS mode
-
212 #define RADIOLIB_SX126X_RX_TX_FALLBACK_MODE_STDBY_XOSC 0x30 // 7 0 standby with crystal oscillator
-
213 #define RADIOLIB_SX126X_RX_TX_FALLBACK_MODE_STDBY_RC 0x20 // 7 0 standby with RC oscillator (default)
-
214 
-
215 //RADIOLIB_SX126X_CMD_SET_DIO_IRQ_PARAMS
-
216 #define RADIOLIB_SX126X_IRQ_LR_FHSS_HOP 0b0100000000000000 // 14 14 PA ramped up during LR-FHSS hop
-
217 #define RADIOLIB_SX126X_IRQ_TIMEOUT 0b0000001000000000 // 9 9 Rx or Tx timeout
-
218 #define RADIOLIB_SX126X_IRQ_CAD_DETECTED 0b0000000100000000 // 8 8 channel activity detected
-
219 #define RADIOLIB_SX126X_IRQ_CAD_DONE 0b0000000010000000 // 7 7 channel activity detection finished
-
220 #define RADIOLIB_SX126X_IRQ_CRC_ERR 0b0000000001000000 // 6 6 wrong CRC received
-
221 #define RADIOLIB_SX126X_IRQ_HEADER_ERR 0b0000000000100000 // 5 5 LoRa header CRC error
-
222 #define RADIOLIB_SX126X_IRQ_HEADER_VALID 0b0000000000010000 // 4 4 valid LoRa header received
-
223 #define RADIOLIB_SX126X_IRQ_SYNC_WORD_VALID 0b0000000000001000 // 3 3 valid sync word detected
-
224 #define RADIOLIB_SX126X_IRQ_PREAMBLE_DETECTED 0b0000000000000100 // 2 2 preamble detected
-
225 #define RADIOLIB_SX126X_IRQ_RX_DONE 0b0000000000000010 // 1 1 packet received
-
226 #define RADIOLIB_SX126X_IRQ_TX_DONE 0b0000000000000001 // 0 0 packet transmission completed
-
227 #define RADIOLIB_SX126X_IRQ_ALL 0b0100001111111111 // 14 0 all interrupts
-
228 #define RADIOLIB_SX126X_IRQ_NONE 0b0000000000000000 // 14 0 no interrupts
-
229 
-
230 //RADIOLIB_SX126X_CMD_SET_DIO2_AS_RF_SWITCH_CTRL
-
231 #define RADIOLIB_SX126X_DIO2_AS_IRQ 0x00 // 7 0 DIO2 configuration: IRQ
-
232 #define RADIOLIB_SX126X_DIO2_AS_RF_SWITCH 0x01 // 7 0 RF switch control
-
233 
-
234 //RADIOLIB_SX126X_CMD_SET_DIO3_AS_TCXO_CTRL
-
235 #define RADIOLIB_SX126X_DIO3_OUTPUT_1_6 0x00 // 7 0 DIO3 voltage output for TCXO: 1.6 V
-
236 #define RADIOLIB_SX126X_DIO3_OUTPUT_1_7 0x01 // 7 0 1.7 V
-
237 #define RADIOLIB_SX126X_DIO3_OUTPUT_1_8 0x02 // 7 0 1.8 V
-
238 #define RADIOLIB_SX126X_DIO3_OUTPUT_2_2 0x03 // 7 0 2.2 V
-
239 #define RADIOLIB_SX126X_DIO3_OUTPUT_2_4 0x04 // 7 0 2.4 V
-
240 #define RADIOLIB_SX126X_DIO3_OUTPUT_2_7 0x05 // 7 0 2.7 V
-
241 #define RADIOLIB_SX126X_DIO3_OUTPUT_3_0 0x06 // 7 0 3.0 V
-
242 #define RADIOLIB_SX126X_DIO3_OUTPUT_3_3 0x07 // 7 0 3.3 V
-
243 
-
244 //RADIOLIB_SX126X_CMD_SET_PACKET_TYPE
-
245 #define RADIOLIB_SX126X_PACKET_TYPE_GFSK 0x00 // 7 0 packet type: GFSK
-
246 #define RADIOLIB_SX126X_PACKET_TYPE_LORA 0x01 // 7 0 LoRa
-
247 #define RADIOLIB_SX126X_PACKET_TYPE_LR_FHSS 0x03 // 7 0 LR-FHSS
-
248 
-
249 //RADIOLIB_SX126X_CMD_SET_TX_PARAMS
-
250 #define RADIOLIB_SX126X_PA_RAMP_10U 0x00 // 7 0 ramp time: 10 us
-
251 #define RADIOLIB_SX126X_PA_RAMP_20U 0x01 // 7 0 20 us
-
252 #define RADIOLIB_SX126X_PA_RAMP_40U 0x02 // 7 0 40 us
-
253 #define RADIOLIB_SX126X_PA_RAMP_80U 0x03 // 7 0 80 us
-
254 #define RADIOLIB_SX126X_PA_RAMP_200U 0x04 // 7 0 200 us
-
255 #define RADIOLIB_SX126X_PA_RAMP_800U 0x05 // 7 0 800 us
-
256 #define RADIOLIB_SX126X_PA_RAMP_1700U 0x06 // 7 0 1700 us
-
257 #define RADIOLIB_SX126X_PA_RAMP_3400U 0x07 // 7 0 3400 us
-
258 
-
259 //RADIOLIB_SX126X_CMD_SET_MODULATION_PARAMS
-
260 #define RADIOLIB_SX126X_GFSK_FILTER_NONE 0x00 // 7 0 GFSK filter: none
-
261 #define RADIOLIB_SX126X_GFSK_FILTER_GAUSS_0_3 0x08 // 7 0 Gaussian, BT = 0.3
-
262 #define RADIOLIB_SX126X_GFSK_FILTER_GAUSS_0_5 0x09 // 7 0 Gaussian, BT = 0.5
-
263 #define RADIOLIB_SX126X_GFSK_FILTER_GAUSS_0_7 0x0A // 7 0 Gaussian, BT = 0.7
-
264 #define RADIOLIB_SX126X_GFSK_FILTER_GAUSS_1 0x0B // 7 0 Gaussian, BT = 1
-
265 #define RADIOLIB_SX126X_GFSK_RX_BW_4_8 0x1F // 7 0 GFSK Rx bandwidth: 4.8 kHz
-
266 #define RADIOLIB_SX126X_GFSK_RX_BW_5_8 0x17 // 7 0 5.8 kHz
-
267 #define RADIOLIB_SX126X_GFSK_RX_BW_7_3 0x0F // 7 0 7.3 kHz
-
268 #define RADIOLIB_SX126X_GFSK_RX_BW_9_7 0x1E // 7 0 9.7 kHz
-
269 #define RADIOLIB_SX126X_GFSK_RX_BW_11_7 0x16 // 7 0 11.7 kHz
-
270 #define RADIOLIB_SX126X_GFSK_RX_BW_14_6 0x0E // 7 0 14.6 kHz
-
271 #define RADIOLIB_SX126X_GFSK_RX_BW_19_5 0x1D // 7 0 19.5 kHz
-
272 #define RADIOLIB_SX126X_GFSK_RX_BW_23_4 0x15 // 7 0 23.4 kHz
-
273 #define RADIOLIB_SX126X_GFSK_RX_BW_29_3 0x0D // 7 0 29.3 kHz
-
274 #define RADIOLIB_SX126X_GFSK_RX_BW_39_0 0x1C // 7 0 39.0 kHz
-
275 #define RADIOLIB_SX126X_GFSK_RX_BW_46_9 0x14 // 7 0 46.9 kHz
-
276 #define RADIOLIB_SX126X_GFSK_RX_BW_58_6 0x0C // 7 0 58.6 kHz
-
277 #define RADIOLIB_SX126X_GFSK_RX_BW_78_2 0x1B // 7 0 78.2 kHz
-
278 #define RADIOLIB_SX126X_GFSK_RX_BW_93_8 0x13 // 7 0 93.8 kHz
-
279 #define RADIOLIB_SX126X_GFSK_RX_BW_117_3 0x0B // 7 0 117.3 kHz
-
280 #define RADIOLIB_SX126X_GFSK_RX_BW_156_2 0x1A // 7 0 156.2 kHz
-
281 #define RADIOLIB_SX126X_GFSK_RX_BW_187_2 0x12 // 7 0 187.2 kHz
-
282 #define RADIOLIB_SX126X_GFSK_RX_BW_234_3 0x0A // 7 0 234.3 kHz
-
283 #define RADIOLIB_SX126X_GFSK_RX_BW_312_0 0x19 // 7 0 312.0 kHz
-
284 #define RADIOLIB_SX126X_GFSK_RX_BW_373_6 0x11 // 7 0 373.6 kHz
-
285 #define RADIOLIB_SX126X_GFSK_RX_BW_467_0 0x09 // 7 0 467.0 kHz
-
286 #define RADIOLIB_SX126X_LORA_BW_7_8 0x00 // 7 0 LoRa bandwidth: 7.8 kHz
-
287 #define RADIOLIB_SX126X_LORA_BW_10_4 0x08 // 7 0 10.4 kHz
-
288 #define RADIOLIB_SX126X_LORA_BW_15_6 0x01 // 7 0 15.6 kHz
-
289 #define RADIOLIB_SX126X_LORA_BW_20_8 0x09 // 7 0 20.8 kHz
-
290 #define RADIOLIB_SX126X_LORA_BW_31_25 0x02 // 7 0 31.25 kHz
-
291 #define RADIOLIB_SX126X_LORA_BW_41_7 0x0A // 7 0 41.7 kHz
-
292 #define RADIOLIB_SX126X_LORA_BW_62_5 0x03 // 7 0 62.5 kHz
-
293 #define RADIOLIB_SX126X_LORA_BW_125_0 0x04 // 7 0 125.0 kHz
-
294 #define RADIOLIB_SX126X_LORA_BW_250_0 0x05 // 7 0 250.0 kHz
-
295 #define RADIOLIB_SX126X_LORA_BW_500_0 0x06 // 7 0 500.0 kHz
-
296 #define RADIOLIB_SX126X_LORA_CR_4_5 0x01 // 7 0 LoRa coding rate: 4/5
-
297 #define RADIOLIB_SX126X_LORA_CR_4_6 0x02 // 7 0 4/6
-
298 #define RADIOLIB_SX126X_LORA_CR_4_7 0x03 // 7 0 4/7
-
299 #define RADIOLIB_SX126X_LORA_CR_4_8 0x04 // 7 0 4/8
-
300 #define RADIOLIB_SX126X_LORA_LOW_DATA_RATE_OPTIMIZE_OFF 0x00 // 7 0 LoRa low data rate optimization: disabled
-
301 #define RADIOLIB_SX126X_LORA_LOW_DATA_RATE_OPTIMIZE_ON 0x01 // 7 0 enabled
-
302 
-
303 //RADIOLIB_SX126X_CMD_SET_PACKET_PARAMS
-
304 #define RADIOLIB_SX126X_GFSK_PREAMBLE_DETECT_OFF 0x00 // 7 0 GFSK minimum preamble length before reception starts: detector disabled
-
305 #define RADIOLIB_SX126X_GFSK_PREAMBLE_DETECT_8 0x04 // 7 0 8 bits
-
306 #define RADIOLIB_SX126X_GFSK_PREAMBLE_DETECT_16 0x05 // 7 0 16 bits
-
307 #define RADIOLIB_SX126X_GFSK_PREAMBLE_DETECT_24 0x06 // 7 0 24 bits
-
308 #define RADIOLIB_SX126X_GFSK_PREAMBLE_DETECT_32 0x07 // 7 0 32 bits
-
309 #define RADIOLIB_SX126X_GFSK_ADDRESS_FILT_OFF 0x00 // 7 0 GFSK address filtering: disabled
-
310 #define RADIOLIB_SX126X_GFSK_ADDRESS_FILT_NODE 0x01 // 7 0 node only
-
311 #define RADIOLIB_SX126X_GFSK_ADDRESS_FILT_NODE_BROADCAST 0x02 // 7 0 node and broadcast
-
312 #define RADIOLIB_SX126X_GFSK_PACKET_FIXED 0x00 // 7 0 GFSK packet type: fixed (payload length known in advance to both sides)
-
313 #define RADIOLIB_SX126X_GFSK_PACKET_VARIABLE 0x01 // 7 0 variable (payload length added to packet)
-
314 #define RADIOLIB_SX126X_GFSK_CRC_OFF 0x01 // 7 0 GFSK packet CRC: disabled
-
315 #define RADIOLIB_SX126X_GFSK_CRC_1_BYTE 0x00 // 7 0 1 byte
-
316 #define RADIOLIB_SX126X_GFSK_CRC_2_BYTE 0x02 // 7 0 2 byte
-
317 #define RADIOLIB_SX126X_GFSK_CRC_1_BYTE_INV 0x04 // 7 0 1 byte, inverted
-
318 #define RADIOLIB_SX126X_GFSK_CRC_2_BYTE_INV 0x06 // 7 0 2 byte, inverted
-
319 #define RADIOLIB_SX126X_GFSK_WHITENING_OFF 0x00 // 7 0 GFSK data whitening: disabled
-
320 #define RADIOLIB_SX126X_GFSK_WHITENING_ON 0x01 // 7 0 enabled
-
321 #define RADIOLIB_SX126X_LORA_HEADER_EXPLICIT 0x00 // 7 0 LoRa header mode: explicit
-
322 #define RADIOLIB_SX126X_LORA_HEADER_IMPLICIT 0x01 // 7 0 implicit
-
323 #define RADIOLIB_SX126X_LORA_CRC_OFF 0x00 // 7 0 LoRa CRC mode: disabled
-
324 #define RADIOLIB_SX126X_LORA_CRC_ON 0x01 // 7 0 enabled
-
325 #define RADIOLIB_SX126X_LORA_IQ_STANDARD 0x00 // 7 0 LoRa IQ setup: standard
-
326 #define RADIOLIB_SX126X_LORA_IQ_INVERTED 0x01 // 7 0 inverted
-
327 
-
328 //RADIOLIB_SX126X_CMD_SET_CAD_PARAMS
-
329 #define RADIOLIB_SX126X_CAD_ON_1_SYMB 0x00 // 7 0 number of symbols used for CAD: 1
-
330 #define RADIOLIB_SX126X_CAD_ON_2_SYMB 0x01 // 7 0 2
-
331 #define RADIOLIB_SX126X_CAD_ON_4_SYMB 0x02 // 7 0 4
-
332 #define RADIOLIB_SX126X_CAD_ON_8_SYMB 0x03 // 7 0 8
-
333 #define RADIOLIB_SX126X_CAD_ON_16_SYMB 0x04 // 7 0 16
-
334 #define RADIOLIB_SX126X_CAD_GOTO_STDBY 0x00 // 7 0 after CAD is done, always go to STDBY_RC mode
-
335 #define RADIOLIB_SX126X_CAD_GOTO_RX 0x01 // 7 0 after CAD is done, go to Rx mode if activity is detected
-
336 #define RADIOLIB_SX126X_CAD_PARAM_DEFAULT 0xFF // 7 0 used by the CAD methods to specify default parameter value
-
337 #define RADIOLIB_SX126X_CAD_PARAM_DET_MIN 10 // 7 0 default detMin CAD parameter
-
338 
-
339 //RADIOLIB_SX126X_CMD_GET_STATUS
-
340 #define RADIOLIB_SX126X_STATUS_MODE_STDBY_RC 0b00100000 // 6 4 current chip mode: STDBY_RC
-
341 #define RADIOLIB_SX126X_STATUS_MODE_STDBY_XOSC 0b00110000 // 6 4 STDBY_XOSC
-
342 #define RADIOLIB_SX126X_STATUS_MODE_FS 0b01000000 // 6 4 FS
-
343 #define RADIOLIB_SX126X_STATUS_MODE_RX 0b01010000 // 6 4 RX
-
344 #define RADIOLIB_SX126X_STATUS_MODE_TX 0b01100000 // 6 4 TX
-
345 #define RADIOLIB_SX126X_STATUS_DATA_AVAILABLE 0b00000100 // 3 1 command status: packet received and data can be retrieved
-
346 #define RADIOLIB_SX126X_STATUS_CMD_TIMEOUT 0b00000110 // 3 1 SPI command timed out
-
347 #define RADIOLIB_SX126X_STATUS_CMD_INVALID 0b00001000 // 3 1 invalid SPI command
-
348 #define RADIOLIB_SX126X_STATUS_CMD_FAILED 0b00001010 // 3 1 SPI command failed to execute
-
349 #define RADIOLIB_SX126X_STATUS_TX_DONE 0b00001100 // 3 1 packet transmission done
-
350 #define RADIOLIB_SX126X_STATUS_SPI_FAILED 0b11111111 // 7 0 SPI transaction failed
-
351 
-
352 //RADIOLIB_SX126X_CMD_GET_PACKET_STATUS
-
353 #define RADIOLIB_SX126X_GFSK_RX_STATUS_PREAMBLE_ERR 0b10000000 // 7 7 GFSK Rx status: preamble error
-
354 #define RADIOLIB_SX126X_GFSK_RX_STATUS_SYNC_ERR 0b01000000 // 6 6 sync word error
-
355 #define RADIOLIB_SX126X_GFSK_RX_STATUS_ADRS_ERR 0b00100000 // 5 5 address error
-
356 #define RADIOLIB_SX126X_GFSK_RX_STATUS_CRC_ERR 0b00010000 // 4 4 CRC error
-
357 #define RADIOLIB_SX126X_GFSK_RX_STATUS_LENGTH_ERR 0b00001000 // 3 3 length error
-
358 #define RADIOLIB_SX126X_GFSK_RX_STATUS_ABORT_ERR 0b00000100 // 2 2 abort error
-
359 #define RADIOLIB_SX126X_GFSK_RX_STATUS_PACKET_RECEIVED 0b00000010 // 2 2 packet received
-
360 #define RADIOLIB_SX126X_GFSK_RX_STATUS_PACKET_SENT 0b00000001 // 2 2 packet sent
-
361 
-
362 //RADIOLIB_SX126X_CMD_GET_DEVICE_ERRORS
-
363 #define RADIOLIB_SX126X_PA_RAMP_ERR 0b100000000 // 8 8 device errors: PA ramping failed
-
364 #define RADIOLIB_SX126X_PLL_LOCK_ERR 0b001000000 // 6 6 PLL failed to lock
-
365 #define RADIOLIB_SX126X_XOSC_START_ERR 0b000100000 // 5 5 crystal oscillator failed to start
-
366 #define RADIOLIB_SX126X_IMG_CALIB_ERR 0b000010000 // 4 4 image calibration failed
-
367 #define RADIOLIB_SX126X_ADC_CALIB_ERR 0b000001000 // 3 3 ADC calibration failed
-
368 #define RADIOLIB_SX126X_PLL_CALIB_ERR 0b000000100 // 2 2 PLL calibration failed
-
369 #define RADIOLIB_SX126X_RC13M_CALIB_ERR 0b000000010 // 1 1 RC13M calibration failed
-
370 #define RADIOLIB_SX126X_RC64K_CALIB_ERR 0b000000001 // 0 0 RC64K calibration failed
-
371 
-
372 //RADIOLIB_SX126X_CMD_SET_LBT_SCAN_PARAMS + RADIOLIB_SX126X_CMD_SET_SPECTR_SCAN_PARAMS
-
373 #define RADIOLIB_SX126X_SCAN_INTERVAL_7_68_US 10 // 7 0 RSSI reading interval: 7.68 us
-
374 #define RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US 11 // 7 0 8.20 us
-
375 #define RADIOLIB_SX126X_SCAN_INTERVAL_8_68_US 12 // 7 0 8.68 us
-
376 
-
377 // SX126X SPI register variables
-
378 //RADIOLIB_SX126X_REG_HOPPING_ENABLE
-
379 #define RADIOLIB_SX126X_HOPPING_ENABLED 0b00000001 // 0 0 intra-packet hopping for LR-FHSS: enabled
-
380 #define RADIOLIB_SX126X_HOPPING_DISABLED 0b00000000 // 0 0 (disabled)
-
381 
-
382 //RADIOLIB_SX126X_REG_LORA_SYNC_WORD_MSB + LSB
-
383 #define RADIOLIB_SX126X_SYNC_WORD_PUBLIC 0x34 // actually 0x3444 NOTE: The low nibbles in each byte (0x_4_4) are masked out since apparently, they're reserved.
-
384 #define RADIOLIB_SX126X_SYNC_WORD_PRIVATE 0x12 // actually 0x1424 You couldn't make this up if you tried.
-
385 
-
386 // RADIOLIB_SX126X_REG_TX_BITBANG_ENABLE_1
-
387 #define RADIOLIB_SX126X_TX_BITBANG_1_DISABLED 0b00000000 // 6 4 Tx bitbang: disabled (default)
-
388 #define RADIOLIB_SX126X_TX_BITBANG_1_ENABLED 0b00010000 // 6 4 enabled
-
389 
-
390 // RADIOLIB_SX126X_REG_TX_BITBANG_ENABLE_0
-
391 #define RADIOLIB_SX126X_TX_BITBANG_0_DISABLED 0b00000000 // 3 0 Tx bitbang: disabled (default)
-
392 #define RADIOLIB_SX126X_TX_BITBANG_0_ENABLED 0b00001100 // 3 0 enabled
-
393 
-
394 // RADIOLIB_SX126X_REG_DIOX_OUT_ENABLE
-
395 #define RADIOLIB_SX126X_DIO1_OUT_DISABLED 0b00000010 // 1 1 DIO1 output: disabled
-
396 #define RADIOLIB_SX126X_DIO1_OUT_ENABLED 0b00000000 // 1 1 enabled
-
397 #define RADIOLIB_SX126X_DIO2_OUT_DISABLED 0b00000100 // 2 2 DIO2 output: disabled
-
398 #define RADIOLIB_SX126X_DIO2_OUT_ENABLED 0b00000000 // 2 2 enabled
-
399 #define RADIOLIB_SX126X_DIO3_OUT_DISABLED 0b00001000 // 3 3 DIO3 output: disabled
-
400 #define RADIOLIB_SX126X_DIO3_OUT_ENABLED 0b00000000 // 3 3 enabled
-
401 
-
402 // RADIOLIB_SX126X_REG_DIOX_IN_ENABLE
-
403 #define RADIOLIB_SX126X_DIO1_IN_DISABLED 0b00000000 // 1 1 DIO1 input: disabled
-
404 #define RADIOLIB_SX126X_DIO1_IN_ENABLED 0b00000010 // 1 1 enabled
-
405 #define RADIOLIB_SX126X_DIO2_IN_DISABLED 0b00000000 // 2 2 DIO2 input: disabled
-
406 #define RADIOLIB_SX126X_DIO2_IN_ENABLED 0b00000100 // 2 2 enabled
-
407 #define RADIOLIB_SX126X_DIO3_IN_DISABLED 0b00000000 // 3 3 DIO3 input: disabled
-
408 #define RADIOLIB_SX126X_DIO3_IN_ENABLED 0b00001000 // 3 3 enabled
-
409 
-
410 // RADIOLIB_SX126X_REG_RX_GAIN
-
411 #define RADIOLIB_SX126X_RX_GAIN_BOOSTED 0x96 // 7 0 Rx gain: boosted
-
412 #define RADIOLIB_SX126X_RX_GAIN_POWER_SAVING 0x94 // 7 0 power saving
-
413 #define RADIOLIB_SX126X_RX_GAIN_SPECTRAL_SCAN 0xCB // 7 0 spectral scan
-
414 
-
415 // RADIOLIB_SX126X_REG_PATCH_UPDATE_ENABLE
-
416 #define RADIOLIB_SX126X_PATCH_UPDATE_DISABLED 0b00000000 // 4 4 patch update: disabled
-
417 #define RADIOLIB_SX126X_PATCH_UPDATE_ENABLED 0b00010000 // 4 4 enabled
-
418 
-
419 // RADIOLIB_SX126X_REG_SPECTRAL_SCAN_STATUS
-
420 #define RADIOLIB_SX126X_SPECTRAL_SCAN_NONE 0x00 // 7 0 spectral scan status: none
-
421 #define RADIOLIB_SX126X_SPECTRAL_SCAN_ONGOING 0x0F // 7 0 ongoing
-
422 #define RADIOLIB_SX126X_SPECTRAL_SCAN_ABORTED 0xF0 // 7 0 aborted
-
423 #define RADIOLIB_SX126X_SPECTRAL_SCAN_COMPLETED 0xFF // 7 0 completed
-
424 
-
425 // RADIOLIB_SX126X_REG_RSSI_AVG_WINDOW
-
426 #define RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT (0x05 << 2) // 7 0 default RSSI average window
-
427 
-
428 // RADIOLIB_SX126X_REG_ANA_LNA
-
429 #define RADIOLIB_SX126X_LNA_RNG_DISABLED 0b00000001 // 0 0 random number: disabled
-
430 #define RADIOLIB_SX126X_LNA_RNG_ENABLED 0b00000000 // 0 0 enabled
-
431 
-
432 // RADIOLIB_SX126X_REG_ANA_MIXER
-
433 #define RADIOLIB_SX126X_MIXER_RNG_DISABLED 0b00000001 // 7 7 random number: disabled
-
434 #define RADIOLIB_SX126X_MIXER_RNG_ENABLED 0b00000000 // 7 7 enabled
-
435 
-
436 // size of the spectral scan result
-
437 #define RADIOLIB_SX126X_SPECTRAL_SCAN_RES_SIZE (33)
-
438 
-
439 // LR-FHSS configuration
-
440 #define RADIOLIB_SX126X_LR_FHSS_CR_5_6 (0x00UL << 0) // 7 0 LR FHSS coding rate: 5/6
-
441 #define RADIOLIB_SX126X_LR_FHSS_CR_2_3 (0x01UL << 0) // 7 0 2/3
-
442 #define RADIOLIB_SX126X_LR_FHSS_CR_1_2 (0x02UL << 0) // 7 0 1/2
-
443 #define RADIOLIB_SX126X_LR_FHSS_CR_1_3 (0x03UL << 0) // 7 0 1/3
-
444 #define RADIOLIB_SX126X_LR_FHSS_MOD_TYPE_GMSK (0x00UL << 0) // 7 0 LR FHSS modulation: GMSK
-
445 #define RADIOLIB_SX126X_LR_FHSS_GRID_STEP_FCC (0x00UL << 0) // 7 0 LR FHSS step size: 25.390625 kHz (FCC)
-
446 #define RADIOLIB_SX126X_LR_FHSS_GRID_STEP_NON_FCC (0x01UL << 0) // 7 0 3.90625 kHz (non-FCC)
-
447 #define RADIOLIB_SX126X_LR_FHSS_HOPPING_DISABLED (0x00UL << 0) // 7 0 LR FHSS hopping: disabled
-
448 #define RADIOLIB_SX126X_LR_FHSS_HOPPING_ENABLED (0x01UL << 0) // 7 0 enabled
-
449 #define RADIOLIB_SX126X_LR_FHSS_BW_39_06 (0x00UL << 0) // 7 0 LR FHSS bandwidth: 39.06 kHz
-
450 #define RADIOLIB_SX126X_LR_FHSS_BW_85_94 (0x01UL << 0) // 7 0 85.94 kHz
-
451 #define RADIOLIB_SX126X_LR_FHSS_BW_136_72 (0x02UL << 0) // 7 0 136.72 kHz
-
452 #define RADIOLIB_SX126X_LR_FHSS_BW_183_59 (0x03UL << 0) // 7 0 183.59 kHz
-
453 #define RADIOLIB_SX126X_LR_FHSS_BW_335_94 (0x04UL << 0) // 7 0 335.94 kHz
-
454 #define RADIOLIB_SX126X_LR_FHSS_BW_386_72 (0x05UL << 0) // 7 0 386.72 kHz
-
455 #define RADIOLIB_SX126X_LR_FHSS_BW_722_66 (0x06UL << 0) // 7 0 722.66 kHz
-
456 #define RADIOLIB_SX126X_LR_FHSS_BW_773_44 (0x07UL << 0) // 7 0 773.44 kHz
-
457 #define RADIOLIB_SX126X_LR_FHSS_BW_1523_4 (0x08UL << 0) // 7 0 1523.4 kHz
-
458 #define RADIOLIB_SX126X_LR_FHSS_BW_1574_2 (0x09UL << 0) // 7 0 1574.2 kHz
-
459 
-
460 // LR-FHSS packet lengths
-
461 #define RADIOLIB_SX126X_LR_FHSS_MAX_ENC_SIZE (608)
-
462 #define RADIOLIB_SX126X_LR_FHSS_HEADER_BITS (114)
-
463 #define RADIOLIB_SX126X_LR_FHSS_HDR_BYTES (10)
-
464 #define RADIOLIB_SX126X_LR_FHSS_SYNC_WORD_BYTES (4)
-
465 #define RADIOLIB_SX126X_LR_FHSS_FRAG_BITS (48)
-
466 #define RADIOLIB_SX126X_LR_FHSS_BLOCK_PREAMBLE_BITS (2)
-
467 #define RADIOLIB_SX126X_LR_FHSS_BLOCK_BITS (RADIOLIB_SX126X_LR_FHSS_FRAG_BITS + RADIOLIB_SX126X_LR_FHSS_BLOCK_PREAMBLE_BITS)
-
468 
-
474 class SX126x: public PhysicalLayer {
-
475  public:
-
476  // introduce PhysicalLayer overloads
-
477  using PhysicalLayer::transmit;
-
478  using PhysicalLayer::receive;
-
479  using PhysicalLayer::startTransmit;
-
480  using PhysicalLayer::readData;
-
481 
-
486  explicit SX126x(Module* mod);
-
487 
-
491  bool XTAL;
-
492 
-
496  bool standbyXOSC;
-
497 
-
498  // basic methods
-
499 
-
509  int16_t begin(uint8_t cr, uint8_t syncWord, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO = false);
-
510 
-
522  int16_t beginFSK(float br, float freqDev, float rxBw, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO = false);
-
523 
-
533  int16_t beginLRFHSS(uint8_t bw, uint8_t cr, bool narrowGrid, float tcxoVoltage, bool useRegulatorLDO = false);
-
534 
-
543  int16_t setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount = 3, uint16_t hopSeqId = 0x100);
-
544 
-
551  int16_t reset(bool verify = true);
-
552 
-
561  int16_t transmit(const uint8_t* data, size_t len, uint8_t addr = 0) override;
-
562 
-
570  int16_t receive(uint8_t* data, size_t len) override;
-
571 
-
577  int16_t transmitDirect(uint32_t frf = 0) override;
-
578 
-
584  int16_t receiveDirect() override;
-
585 
-
591  int16_t scanChannel() override;
-
592 
-
598  int16_t scanChannel(const ChannelScanConfig_t &config) override;
-
599 
-
605  int16_t sleep() override;
-
606 
-
613  int16_t sleep(bool retainConfig);
-
614 
-
619  int16_t standby() override;
-
620 
-
628  int16_t standby(uint8_t mode, bool wakeup = true);
-
629 
-
630  // interrupt methods
-
631 
-
636  void setDio1Action(void (*func)(void));
-
637 
-
641  void clearDio1Action();
-
642 
-
647  void setPacketReceivedAction(void (*func)(void)) override;
-
648 
-
652  void clearPacketReceivedAction() override;
-
653 
-
658  void setPacketSentAction(void (*func)(void)) override;
-
659 
-
663  void clearPacketSentAction() override;
-
664 
-
669  void setChannelScanAction(void (*func)(void)) override;
-
670 
-
674  void clearChannelScanAction() override;
-
675 
-
684  int16_t startTransmit(const uint8_t* data, size_t len, uint8_t addr = 0) override;
-
685 
-
690  int16_t finishTransmit() override;
-
691 
-
698  int16_t startReceive() override;
-
699 
-
715  int16_t startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags = RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask = RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len = 0);
-
716 
-
729  int16_t startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, RadioLibIrqFlags_t irqFlags = RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask = RADIOLIB_IRQ_RX_DEFAULT_MASK);
-
730 
-
745  int16_t startReceiveDutyCycleAuto(uint16_t senderPreambleLength = 0, uint16_t minSymbols = 8, RadioLibIrqFlags_t irqFlags = RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask = RADIOLIB_IRQ_RX_DEFAULT_MASK);
-
746 
-
755  int16_t readData(uint8_t* data, size_t len) override;
-
756 
-
762  int16_t startChannelScan() override;
-
763 
-
770  int16_t startChannelScan(const ChannelScanConfig_t &config) override;
-
771 
-
776  int16_t getChannelScanResult() override;
-
777 
-
778  // configuration methods
-
779 
-
785  int16_t setBandwidth(float bw);
-
786 
-
792  int16_t setSpreadingFactor(uint8_t sf);
-
793 
-
799  int16_t setCodingRate(uint8_t cr);
-
800 
-
807  int16_t setSyncWord(uint8_t syncWord, uint8_t controlBits = 0x44);
-
808 
-
814  int16_t setCurrentLimit(float currentLimit);
-
815 
-
820  float getCurrentLimit();
-
821 
-
827  int16_t setPreambleLength(size_t preambleLength) override;
-
828 
-
834  int16_t setFrequencyDeviation(float freqDev) override;
-
835 
-
841  int16_t setBitRate(float br) override;
-
842 
-
848  int16_t setDataRate(DataRate_t dr) override;
-
849 
-
855  int16_t checkDataRate(DataRate_t dr) override;
-
856 
-
863  int16_t setRxBandwidth(float rxBw);
-
864 
-
873  int16_t setRxBoostedGainMode(bool rxbgm, bool persist = true);
-
874 
-
882  int16_t setDataShaping(uint8_t sh) override;
-
883 
-
891  int16_t setSyncWord(uint8_t* syncWord, size_t len) override;
-
892 
-
900  int16_t setSyncBits(uint8_t *syncWord, uint8_t bitsLen);
-
901 
-
907  int16_t setNodeAddress(uint8_t addr);
-
908 
-
915  int16_t setBroadcastAddress(uint8_t broadAddr);
-
916 
-
921  int16_t disableAddressFiltering();
-
922 
-
931  int16_t setCRC(uint8_t len, uint16_t initial = 0x1D0F, uint16_t polynomial = 0x1021, bool inverted = true);
-
932 
-
940  int16_t setWhitening(bool enabled, uint16_t initial = 0x01FF);
-
941 
-
951  int16_t setTCXO(float voltage, uint32_t delay = 5000);
-
952 
-
957  int16_t setDio2AsRfSwitch(bool enable = true);
-
958 
-
963  float getDataRate() const;
-
964 
-
970  float getRSSI() override;
-
971 
-
977  float getRSSI(bool packet);
-
978 
-
983  float getSNR() override;
-
984 
-
992  float getFrequencyError();
-
993 
-
999  size_t getPacketLength(bool update = true) override;
-
1000 
-
1007  size_t getPacketLength(bool update, uint8_t* offset);
-
1008 
-
1014  int16_t fixedPacketLengthMode(uint8_t len = RADIOLIB_SX126X_MAX_PACKET_LENGTH);
-
1015 
-
1021  int16_t variablePacketLengthMode(uint8_t maxLen = RADIOLIB_SX126X_MAX_PACKET_LENGTH);
-
1022 
-
1028  RadioLibTime_t getTimeOnAir(size_t len) override;
-
1029 
-
1035  RadioLibTime_t calculateRxTimeout(RadioLibTime_t timeoutUs) override;
-
1036 
-
1041  uint32_t getIrqFlags() override;
-
1042 
-
1048  int16_t setIrqFlags(uint32_t irq) override;
-
1049 
-
1055  int16_t clearIrqFlags(uint32_t irq) override;
-
1056 
-
1062  int16_t implicitHeader(size_t len);
-
1063 
-
1068  int16_t explicitHeader();
-
1069 
-
1074  int16_t setRegulatorLDO();
-
1075 
-
1080  int16_t setRegulatorDCDC();
-
1081 
-
1087  int16_t setEncoding(uint8_t encoding) override;
-
1088 
-
1090  void setRfSwitchPins(uint32_t rxEn, uint32_t txEn);
-
1091 
-
1093  void setRfSwitchTable(const uint32_t (&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[]);
-
1094 
-
1103  int16_t forceLDRO(bool enable);
-
1104 
-
1111  int16_t autoLDRO();
-
1112 
-
1117  uint8_t randomByte() override;
-
1118 
-
1124  int16_t invertIQ(bool enable) override;
-
1125 
-
1131  int16_t getModem(ModemType_t* modem) override;
-
1132 
-
1133  #if !RADIOLIB_EXCLUDE_DIRECT_RECEIVE
-
1138  void setDirectAction(void (*func)(void)) override;
-
1139 
-
1144  void readBit(uint32_t pin) override;
-
1145  #endif
-
1146 
-
1156  int16_t uploadPatch(const uint32_t* patch, size_t len, bool nonvolatile = true);
-
1157 
-
1165  int16_t spectralScanStart(uint16_t numSamples, uint8_t window = RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval = RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US);
-
1166 
-
1170  void spectralScanAbort();
-
1171 
-
1176  int16_t spectralScanGetStatus();
-
1177 
-
1183  int16_t spectralScanGetResult(uint16_t* results);
-
1184 
-
1196  int16_t setPaConfig(uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax = RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut = RADIOLIB_SX126X_PA_CONFIG_PA_LUT);
-
1197 
-
1205  int16_t calibrateImageRejection(float freqMin, float freqMax);
-
1206 
-
1211  int16_t setPaRampTime(uint8_t rampTime);
-
1212 
-
1213 #if !RADIOLIB_GODMODE && !RADIOLIB_LOW_LEVEL
-
1214  protected:
-
1215 #endif
-
1216  Module* getMod() override;
-
1217 
-
1218  // SX126x SPI command implementations
-
1219  int16_t setFs();
-
1220  int16_t setTx(uint32_t timeout = 0);
-
1221  int16_t setRx(uint32_t timeout);
-
1222  int16_t setCad(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin, uint8_t exitMode, RadioLibTime_t timeout);
-
1223  int16_t writeRegister(uint16_t addr, uint8_t* data, uint8_t numBytes);
-
1224  int16_t readRegister(uint16_t addr, uint8_t* data, uint8_t numBytes);
-
1225  int16_t writeBuffer(uint8_t* data, uint8_t numBytes, uint8_t offset = 0x00);
-
1226  int16_t readBuffer(uint8_t* data, uint8_t numBytes, uint8_t offset = 0x00);
-
1227  int16_t setDioIrqParams(uint16_t irqMask, uint16_t dio1Mask, uint16_t dio2Mask = RADIOLIB_SX126X_IRQ_NONE, uint16_t dio3Mask = RADIOLIB_SX126X_IRQ_NONE);
-
1228  virtual int16_t clearIrqStatus(uint16_t clearIrqParams = RADIOLIB_SX126X_IRQ_ALL);
-
1229  int16_t setRfFrequency(uint32_t frf);
-
1230  int16_t calibrateImage(uint8_t* data);
-
1231  uint8_t getPacketType();
-
1232  int16_t setTxParams(uint8_t power, uint8_t rampTime);
-
1233  int16_t setModulationParams(uint8_t sf, uint8_t bw, uint8_t cr, uint8_t ldro);
-
1234  int16_t setModulationParamsFSK(uint32_t br, uint8_t sh, uint8_t rxBw, uint32_t freqDev);
-
1235  int16_t setPacketParams(uint16_t preambleLen, uint8_t crcType, uint8_t payloadLen, uint8_t hdrType, uint8_t invertIQ);
-
1236  int16_t setPacketParamsFSK(uint16_t preambleLen, uint8_t preambleDetectorLen, uint8_t crcType, uint8_t syncWordLen, uint8_t addrCmp, uint8_t whiten, uint8_t packType = RADIOLIB_SX126X_GFSK_PACKET_VARIABLE, uint8_t payloadLen = 0xFF);
-
1237  int16_t setBufferBaseAddress(uint8_t txBaseAddress = 0x00, uint8_t rxBaseAddress = 0x00);
-
1238  int16_t setRegulatorMode(uint8_t mode);
-
1239  uint8_t getStatus();
-
1240  uint32_t getPacketStatus();
-
1241  uint16_t getDeviceErrors();
-
1242  int16_t clearDeviceErrors();
-
1243 
-
1244 #if !RADIOLIB_GODMODE
-
1245  protected:
-
1246 #endif
-
1247  const char* chipType = NULL;
-
1248  uint8_t bandwidth = 0;
-
1249 
-
1250  // Allow subclasses to define different TX modes
-
1251  uint8_t txMode = Module::MODE_TX;
-
1252 
-
1253  int16_t setFrequencyRaw(float freq);
-
1254  int16_t fixPaClamping(bool enable = true);
-
1255 
-
1256  // common low-level SPI interface
-
1257  static int16_t SPIparseStatus(uint8_t in);
-
1258 
-
1259 #if !RADIOLIB_GODMODE
-
1260  private:
-
1261 #endif
-
1262  Module* mod;
+
204 #define RADIOLIB_SX126X_CAL_IMG_FREQ_TRIG_MHZ (20.0)
+
205 
+
206 //RADIOLIB_SX126X_CMD_SET_PA_CONFIG
+
207 #define RADIOLIB_SX126X_PA_CONFIG_HP_MAX 0x07
+
208 #define RADIOLIB_SX126X_PA_CONFIG_PA_LUT 0x01
+
209 #define RADIOLIB_SX126X_PA_CONFIG_SX1262_8 0x00
+
210 
+
211 //RADIOLIB_SX126X_CMD_SET_RX_TX_FALLBACK_MODE
+
212 #define RADIOLIB_SX126X_RX_TX_FALLBACK_MODE_FS 0x40 // 7 0 after Rx/Tx go to: FS mode
+
213 #define RADIOLIB_SX126X_RX_TX_FALLBACK_MODE_STDBY_XOSC 0x30 // 7 0 standby with crystal oscillator
+
214 #define RADIOLIB_SX126X_RX_TX_FALLBACK_MODE_STDBY_RC 0x20 // 7 0 standby with RC oscillator (default)
+
215 
+
216 //RADIOLIB_SX126X_CMD_SET_DIO_IRQ_PARAMS
+
217 #define RADIOLIB_SX126X_IRQ_LR_FHSS_HOP 0b0100000000000000 // 14 14 PA ramped up during LR-FHSS hop
+
218 #define RADIOLIB_SX126X_IRQ_TIMEOUT 0b0000001000000000 // 9 9 Rx or Tx timeout
+
219 #define RADIOLIB_SX126X_IRQ_CAD_DETECTED 0b0000000100000000 // 8 8 channel activity detected
+
220 #define RADIOLIB_SX126X_IRQ_CAD_DONE 0b0000000010000000 // 7 7 channel activity detection finished
+
221 #define RADIOLIB_SX126X_IRQ_CRC_ERR 0b0000000001000000 // 6 6 wrong CRC received
+
222 #define RADIOLIB_SX126X_IRQ_HEADER_ERR 0b0000000000100000 // 5 5 LoRa header CRC error
+
223 #define RADIOLIB_SX126X_IRQ_HEADER_VALID 0b0000000000010000 // 4 4 valid LoRa header received
+
224 #define RADIOLIB_SX126X_IRQ_SYNC_WORD_VALID 0b0000000000001000 // 3 3 valid sync word detected
+
225 #define RADIOLIB_SX126X_IRQ_PREAMBLE_DETECTED 0b0000000000000100 // 2 2 preamble detected
+
226 #define RADIOLIB_SX126X_IRQ_RX_DONE 0b0000000000000010 // 1 1 packet received
+
227 #define RADIOLIB_SX126X_IRQ_TX_DONE 0b0000000000000001 // 0 0 packet transmission completed
+
228 #define RADIOLIB_SX126X_IRQ_ALL 0b0100001111111111 // 14 0 all interrupts
+
229 #define RADIOLIB_SX126X_IRQ_NONE 0b0000000000000000 // 14 0 no interrupts
+
230 
+
231 //RADIOLIB_SX126X_CMD_SET_DIO2_AS_RF_SWITCH_CTRL
+
232 #define RADIOLIB_SX126X_DIO2_AS_IRQ 0x00 // 7 0 DIO2 configuration: IRQ
+
233 #define RADIOLIB_SX126X_DIO2_AS_RF_SWITCH 0x01 // 7 0 RF switch control
+
234 
+
235 //RADIOLIB_SX126X_CMD_SET_DIO3_AS_TCXO_CTRL
+
236 #define RADIOLIB_SX126X_DIO3_OUTPUT_1_6 0x00 // 7 0 DIO3 voltage output for TCXO: 1.6 V
+
237 #define RADIOLIB_SX126X_DIO3_OUTPUT_1_7 0x01 // 7 0 1.7 V
+
238 #define RADIOLIB_SX126X_DIO3_OUTPUT_1_8 0x02 // 7 0 1.8 V
+
239 #define RADIOLIB_SX126X_DIO3_OUTPUT_2_2 0x03 // 7 0 2.2 V
+
240 #define RADIOLIB_SX126X_DIO3_OUTPUT_2_4 0x04 // 7 0 2.4 V
+
241 #define RADIOLIB_SX126X_DIO3_OUTPUT_2_7 0x05 // 7 0 2.7 V
+
242 #define RADIOLIB_SX126X_DIO3_OUTPUT_3_0 0x06 // 7 0 3.0 V
+
243 #define RADIOLIB_SX126X_DIO3_OUTPUT_3_3 0x07 // 7 0 3.3 V
+
244 
+
245 //RADIOLIB_SX126X_CMD_SET_PACKET_TYPE
+
246 #define RADIOLIB_SX126X_PACKET_TYPE_GFSK 0x00 // 7 0 packet type: GFSK
+
247 #define RADIOLIB_SX126X_PACKET_TYPE_LORA 0x01 // 7 0 LoRa
+
248 #define RADIOLIB_SX126X_PACKET_TYPE_LR_FHSS 0x03 // 7 0 LR-FHSS
+
249 
+
250 //RADIOLIB_SX126X_CMD_SET_TX_PARAMS
+
251 #define RADIOLIB_SX126X_PA_RAMP_10U 0x00 // 7 0 ramp time: 10 us
+
252 #define RADIOLIB_SX126X_PA_RAMP_20U 0x01 // 7 0 20 us
+
253 #define RADIOLIB_SX126X_PA_RAMP_40U 0x02 // 7 0 40 us
+
254 #define RADIOLIB_SX126X_PA_RAMP_80U 0x03 // 7 0 80 us
+
255 #define RADIOLIB_SX126X_PA_RAMP_200U 0x04 // 7 0 200 us
+
256 #define RADIOLIB_SX126X_PA_RAMP_800U 0x05 // 7 0 800 us
+
257 #define RADIOLIB_SX126X_PA_RAMP_1700U 0x06 // 7 0 1700 us
+
258 #define RADIOLIB_SX126X_PA_RAMP_3400U 0x07 // 7 0 3400 us
+
259 
+
260 //RADIOLIB_SX126X_CMD_SET_MODULATION_PARAMS
+
261 #define RADIOLIB_SX126X_GFSK_FILTER_NONE 0x00 // 7 0 GFSK filter: none
+
262 #define RADIOLIB_SX126X_GFSK_FILTER_GAUSS_0_3 0x08 // 7 0 Gaussian, BT = 0.3
+
263 #define RADIOLIB_SX126X_GFSK_FILTER_GAUSS_0_5 0x09 // 7 0 Gaussian, BT = 0.5
+
264 #define RADIOLIB_SX126X_GFSK_FILTER_GAUSS_0_7 0x0A // 7 0 Gaussian, BT = 0.7
+
265 #define RADIOLIB_SX126X_GFSK_FILTER_GAUSS_1 0x0B // 7 0 Gaussian, BT = 1
+
266 #define RADIOLIB_SX126X_GFSK_RX_BW_4_8 0x1F // 7 0 GFSK Rx bandwidth: 4.8 kHz
+
267 #define RADIOLIB_SX126X_GFSK_RX_BW_5_8 0x17 // 7 0 5.8 kHz
+
268 #define RADIOLIB_SX126X_GFSK_RX_BW_7_3 0x0F // 7 0 7.3 kHz
+
269 #define RADIOLIB_SX126X_GFSK_RX_BW_9_7 0x1E // 7 0 9.7 kHz
+
270 #define RADIOLIB_SX126X_GFSK_RX_BW_11_7 0x16 // 7 0 11.7 kHz
+
271 #define RADIOLIB_SX126X_GFSK_RX_BW_14_6 0x0E // 7 0 14.6 kHz
+
272 #define RADIOLIB_SX126X_GFSK_RX_BW_19_5 0x1D // 7 0 19.5 kHz
+
273 #define RADIOLIB_SX126X_GFSK_RX_BW_23_4 0x15 // 7 0 23.4 kHz
+
274 #define RADIOLIB_SX126X_GFSK_RX_BW_29_3 0x0D // 7 0 29.3 kHz
+
275 #define RADIOLIB_SX126X_GFSK_RX_BW_39_0 0x1C // 7 0 39.0 kHz
+
276 #define RADIOLIB_SX126X_GFSK_RX_BW_46_9 0x14 // 7 0 46.9 kHz
+
277 #define RADIOLIB_SX126X_GFSK_RX_BW_58_6 0x0C // 7 0 58.6 kHz
+
278 #define RADIOLIB_SX126X_GFSK_RX_BW_78_2 0x1B // 7 0 78.2 kHz
+
279 #define RADIOLIB_SX126X_GFSK_RX_BW_93_8 0x13 // 7 0 93.8 kHz
+
280 #define RADIOLIB_SX126X_GFSK_RX_BW_117_3 0x0B // 7 0 117.3 kHz
+
281 #define RADIOLIB_SX126X_GFSK_RX_BW_156_2 0x1A // 7 0 156.2 kHz
+
282 #define RADIOLIB_SX126X_GFSK_RX_BW_187_2 0x12 // 7 0 187.2 kHz
+
283 #define RADIOLIB_SX126X_GFSK_RX_BW_234_3 0x0A // 7 0 234.3 kHz
+
284 #define RADIOLIB_SX126X_GFSK_RX_BW_312_0 0x19 // 7 0 312.0 kHz
+
285 #define RADIOLIB_SX126X_GFSK_RX_BW_373_6 0x11 // 7 0 373.6 kHz
+
286 #define RADIOLIB_SX126X_GFSK_RX_BW_467_0 0x09 // 7 0 467.0 kHz
+
287 #define RADIOLIB_SX126X_LORA_BW_7_8 0x00 // 7 0 LoRa bandwidth: 7.8 kHz
+
288 #define RADIOLIB_SX126X_LORA_BW_10_4 0x08 // 7 0 10.4 kHz
+
289 #define RADIOLIB_SX126X_LORA_BW_15_6 0x01 // 7 0 15.6 kHz
+
290 #define RADIOLIB_SX126X_LORA_BW_20_8 0x09 // 7 0 20.8 kHz
+
291 #define RADIOLIB_SX126X_LORA_BW_31_25 0x02 // 7 0 31.25 kHz
+
292 #define RADIOLIB_SX126X_LORA_BW_41_7 0x0A // 7 0 41.7 kHz
+
293 #define RADIOLIB_SX126X_LORA_BW_62_5 0x03 // 7 0 62.5 kHz
+
294 #define RADIOLIB_SX126X_LORA_BW_125_0 0x04 // 7 0 125.0 kHz
+
295 #define RADIOLIB_SX126X_LORA_BW_250_0 0x05 // 7 0 250.0 kHz
+
296 #define RADIOLIB_SX126X_LORA_BW_500_0 0x06 // 7 0 500.0 kHz
+
297 #define RADIOLIB_SX126X_LORA_CR_4_5 0x01 // 7 0 LoRa coding rate: 4/5
+
298 #define RADIOLIB_SX126X_LORA_CR_4_6 0x02 // 7 0 4/6
+
299 #define RADIOLIB_SX126X_LORA_CR_4_7 0x03 // 7 0 4/7
+
300 #define RADIOLIB_SX126X_LORA_CR_4_8 0x04 // 7 0 4/8
+
301 #define RADIOLIB_SX126X_LORA_LOW_DATA_RATE_OPTIMIZE_OFF 0x00 // 7 0 LoRa low data rate optimization: disabled
+
302 #define RADIOLIB_SX126X_LORA_LOW_DATA_RATE_OPTIMIZE_ON 0x01 // 7 0 enabled
+
303 
+
304 //RADIOLIB_SX126X_CMD_SET_PACKET_PARAMS
+
305 #define RADIOLIB_SX126X_GFSK_PREAMBLE_DETECT_OFF 0x00 // 7 0 GFSK minimum preamble length before reception starts: detector disabled
+
306 #define RADIOLIB_SX126X_GFSK_PREAMBLE_DETECT_8 0x04 // 7 0 8 bits
+
307 #define RADIOLIB_SX126X_GFSK_PREAMBLE_DETECT_16 0x05 // 7 0 16 bits
+
308 #define RADIOLIB_SX126X_GFSK_PREAMBLE_DETECT_24 0x06 // 7 0 24 bits
+
309 #define RADIOLIB_SX126X_GFSK_PREAMBLE_DETECT_32 0x07 // 7 0 32 bits
+
310 #define RADIOLIB_SX126X_GFSK_ADDRESS_FILT_OFF 0x00 // 7 0 GFSK address filtering: disabled
+
311 #define RADIOLIB_SX126X_GFSK_ADDRESS_FILT_NODE 0x01 // 7 0 node only
+
312 #define RADIOLIB_SX126X_GFSK_ADDRESS_FILT_NODE_BROADCAST 0x02 // 7 0 node and broadcast
+
313 #define RADIOLIB_SX126X_GFSK_PACKET_FIXED 0x00 // 7 0 GFSK packet type: fixed (payload length known in advance to both sides)
+
314 #define RADIOLIB_SX126X_GFSK_PACKET_VARIABLE 0x01 // 7 0 variable (payload length added to packet)
+
315 #define RADIOLIB_SX126X_GFSK_CRC_OFF 0x01 // 7 0 GFSK packet CRC: disabled
+
316 #define RADIOLIB_SX126X_GFSK_CRC_1_BYTE 0x00 // 7 0 1 byte
+
317 #define RADIOLIB_SX126X_GFSK_CRC_2_BYTE 0x02 // 7 0 2 byte
+
318 #define RADIOLIB_SX126X_GFSK_CRC_1_BYTE_INV 0x04 // 7 0 1 byte, inverted
+
319 #define RADIOLIB_SX126X_GFSK_CRC_2_BYTE_INV 0x06 // 7 0 2 byte, inverted
+
320 #define RADIOLIB_SX126X_GFSK_WHITENING_OFF 0x00 // 7 0 GFSK data whitening: disabled
+
321 #define RADIOLIB_SX126X_GFSK_WHITENING_ON 0x01 // 7 0 enabled
+
322 #define RADIOLIB_SX126X_LORA_HEADER_EXPLICIT 0x00 // 7 0 LoRa header mode: explicit
+
323 #define RADIOLIB_SX126X_LORA_HEADER_IMPLICIT 0x01 // 7 0 implicit
+
324 #define RADIOLIB_SX126X_LORA_CRC_OFF 0x00 // 7 0 LoRa CRC mode: disabled
+
325 #define RADIOLIB_SX126X_LORA_CRC_ON 0x01 // 7 0 enabled
+
326 #define RADIOLIB_SX126X_LORA_IQ_STANDARD 0x00 // 7 0 LoRa IQ setup: standard
+
327 #define RADIOLIB_SX126X_LORA_IQ_INVERTED 0x01 // 7 0 inverted
+
328 
+
329 //RADIOLIB_SX126X_CMD_SET_CAD_PARAMS
+
330 #define RADIOLIB_SX126X_CAD_ON_1_SYMB 0x00 // 7 0 number of symbols used for CAD: 1
+
331 #define RADIOLIB_SX126X_CAD_ON_2_SYMB 0x01 // 7 0 2
+
332 #define RADIOLIB_SX126X_CAD_ON_4_SYMB 0x02 // 7 0 4
+
333 #define RADIOLIB_SX126X_CAD_ON_8_SYMB 0x03 // 7 0 8
+
334 #define RADIOLIB_SX126X_CAD_ON_16_SYMB 0x04 // 7 0 16
+
335 #define RADIOLIB_SX126X_CAD_GOTO_STDBY 0x00 // 7 0 after CAD is done, always go to STDBY_RC mode
+
336 #define RADIOLIB_SX126X_CAD_GOTO_RX 0x01 // 7 0 after CAD is done, go to Rx mode if activity is detected
+
337 #define RADIOLIB_SX126X_CAD_PARAM_DEFAULT 0xFF // 7 0 used by the CAD methods to specify default parameter value
+
338 #define RADIOLIB_SX126X_CAD_PARAM_DET_MIN 10 // 7 0 default detMin CAD parameter
+
339 
+
340 //RADIOLIB_SX126X_CMD_GET_STATUS
+
341 #define RADIOLIB_SX126X_STATUS_MODE_STDBY_RC 0b00100000 // 6 4 current chip mode: STDBY_RC
+
342 #define RADIOLIB_SX126X_STATUS_MODE_STDBY_XOSC 0b00110000 // 6 4 STDBY_XOSC
+
343 #define RADIOLIB_SX126X_STATUS_MODE_FS 0b01000000 // 6 4 FS
+
344 #define RADIOLIB_SX126X_STATUS_MODE_RX 0b01010000 // 6 4 RX
+
345 #define RADIOLIB_SX126X_STATUS_MODE_TX 0b01100000 // 6 4 TX
+
346 #define RADIOLIB_SX126X_STATUS_DATA_AVAILABLE 0b00000100 // 3 1 command status: packet received and data can be retrieved
+
347 #define RADIOLIB_SX126X_STATUS_CMD_TIMEOUT 0b00000110 // 3 1 SPI command timed out
+
348 #define RADIOLIB_SX126X_STATUS_CMD_INVALID 0b00001000 // 3 1 invalid SPI command
+
349 #define RADIOLIB_SX126X_STATUS_CMD_FAILED 0b00001010 // 3 1 SPI command failed to execute
+
350 #define RADIOLIB_SX126X_STATUS_TX_DONE 0b00001100 // 3 1 packet transmission done
+
351 #define RADIOLIB_SX126X_STATUS_SPI_FAILED 0b11111111 // 7 0 SPI transaction failed
+
352 
+
353 //RADIOLIB_SX126X_CMD_GET_PACKET_STATUS
+
354 #define RADIOLIB_SX126X_GFSK_RX_STATUS_PREAMBLE_ERR 0b10000000 // 7 7 GFSK Rx status: preamble error
+
355 #define RADIOLIB_SX126X_GFSK_RX_STATUS_SYNC_ERR 0b01000000 // 6 6 sync word error
+
356 #define RADIOLIB_SX126X_GFSK_RX_STATUS_ADRS_ERR 0b00100000 // 5 5 address error
+
357 #define RADIOLIB_SX126X_GFSK_RX_STATUS_CRC_ERR 0b00010000 // 4 4 CRC error
+
358 #define RADIOLIB_SX126X_GFSK_RX_STATUS_LENGTH_ERR 0b00001000 // 3 3 length error
+
359 #define RADIOLIB_SX126X_GFSK_RX_STATUS_ABORT_ERR 0b00000100 // 2 2 abort error
+
360 #define RADIOLIB_SX126X_GFSK_RX_STATUS_PACKET_RECEIVED 0b00000010 // 2 2 packet received
+
361 #define RADIOLIB_SX126X_GFSK_RX_STATUS_PACKET_SENT 0b00000001 // 2 2 packet sent
+
362 
+
363 //RADIOLIB_SX126X_CMD_GET_DEVICE_ERRORS
+
364 #define RADIOLIB_SX126X_PA_RAMP_ERR 0b100000000 // 8 8 device errors: PA ramping failed
+
365 #define RADIOLIB_SX126X_PLL_LOCK_ERR 0b001000000 // 6 6 PLL failed to lock
+
366 #define RADIOLIB_SX126X_XOSC_START_ERR 0b000100000 // 5 5 crystal oscillator failed to start
+
367 #define RADIOLIB_SX126X_IMG_CALIB_ERR 0b000010000 // 4 4 image calibration failed
+
368 #define RADIOLIB_SX126X_ADC_CALIB_ERR 0b000001000 // 3 3 ADC calibration failed
+
369 #define RADIOLIB_SX126X_PLL_CALIB_ERR 0b000000100 // 2 2 PLL calibration failed
+
370 #define RADIOLIB_SX126X_RC13M_CALIB_ERR 0b000000010 // 1 1 RC13M calibration failed
+
371 #define RADIOLIB_SX126X_RC64K_CALIB_ERR 0b000000001 // 0 0 RC64K calibration failed
+
372 
+
373 //RADIOLIB_SX126X_CMD_SET_LBT_SCAN_PARAMS + RADIOLIB_SX126X_CMD_SET_SPECTR_SCAN_PARAMS
+
374 #define RADIOLIB_SX126X_SCAN_INTERVAL_7_68_US 10 // 7 0 RSSI reading interval: 7.68 us
+
375 #define RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US 11 // 7 0 8.20 us
+
376 #define RADIOLIB_SX126X_SCAN_INTERVAL_8_68_US 12 // 7 0 8.68 us
+
377 
+
378 // SX126X SPI register variables
+
379 //RADIOLIB_SX126X_REG_HOPPING_ENABLE
+
380 #define RADIOLIB_SX126X_HOPPING_ENABLED 0b00000001 // 0 0 intra-packet hopping for LR-FHSS: enabled
+
381 #define RADIOLIB_SX126X_HOPPING_DISABLED 0b00000000 // 0 0 (disabled)
+
382 
+
383 //RADIOLIB_SX126X_REG_LORA_SYNC_WORD_MSB + LSB
+
384 #define RADIOLIB_SX126X_SYNC_WORD_PUBLIC 0x34 // actually 0x3444 NOTE: The low nibbles in each byte (0x_4_4) are masked out since apparently, they're reserved.
+
385 #define RADIOLIB_SX126X_SYNC_WORD_PRIVATE 0x12 // actually 0x1424 You couldn't make this up if you tried.
+
386 
+
387 // RADIOLIB_SX126X_REG_TX_BITBANG_ENABLE_1
+
388 #define RADIOLIB_SX126X_TX_BITBANG_1_DISABLED 0b00000000 // 6 4 Tx bitbang: disabled (default)
+
389 #define RADIOLIB_SX126X_TX_BITBANG_1_ENABLED 0b00010000 // 6 4 enabled
+
390 
+
391 // RADIOLIB_SX126X_REG_TX_BITBANG_ENABLE_0
+
392 #define RADIOLIB_SX126X_TX_BITBANG_0_DISABLED 0b00000000 // 3 0 Tx bitbang: disabled (default)
+
393 #define RADIOLIB_SX126X_TX_BITBANG_0_ENABLED 0b00001100 // 3 0 enabled
+
394 
+
395 // RADIOLIB_SX126X_REG_DIOX_OUT_ENABLE
+
396 #define RADIOLIB_SX126X_DIO1_OUT_DISABLED 0b00000010 // 1 1 DIO1 output: disabled
+
397 #define RADIOLIB_SX126X_DIO1_OUT_ENABLED 0b00000000 // 1 1 enabled
+
398 #define RADIOLIB_SX126X_DIO2_OUT_DISABLED 0b00000100 // 2 2 DIO2 output: disabled
+
399 #define RADIOLIB_SX126X_DIO2_OUT_ENABLED 0b00000000 // 2 2 enabled
+
400 #define RADIOLIB_SX126X_DIO3_OUT_DISABLED 0b00001000 // 3 3 DIO3 output: disabled
+
401 #define RADIOLIB_SX126X_DIO3_OUT_ENABLED 0b00000000 // 3 3 enabled
+
402 
+
403 // RADIOLIB_SX126X_REG_DIOX_IN_ENABLE
+
404 #define RADIOLIB_SX126X_DIO1_IN_DISABLED 0b00000000 // 1 1 DIO1 input: disabled
+
405 #define RADIOLIB_SX126X_DIO1_IN_ENABLED 0b00000010 // 1 1 enabled
+
406 #define RADIOLIB_SX126X_DIO2_IN_DISABLED 0b00000000 // 2 2 DIO2 input: disabled
+
407 #define RADIOLIB_SX126X_DIO2_IN_ENABLED 0b00000100 // 2 2 enabled
+
408 #define RADIOLIB_SX126X_DIO3_IN_DISABLED 0b00000000 // 3 3 DIO3 input: disabled
+
409 #define RADIOLIB_SX126X_DIO3_IN_ENABLED 0b00001000 // 3 3 enabled
+
410 
+
411 // RADIOLIB_SX126X_REG_RX_GAIN
+
412 #define RADIOLIB_SX126X_RX_GAIN_BOOSTED 0x96 // 7 0 Rx gain: boosted
+
413 #define RADIOLIB_SX126X_RX_GAIN_POWER_SAVING 0x94 // 7 0 power saving
+
414 #define RADIOLIB_SX126X_RX_GAIN_SPECTRAL_SCAN 0xCB // 7 0 spectral scan
+
415 
+
416 // RADIOLIB_SX126X_REG_PATCH_UPDATE_ENABLE
+
417 #define RADIOLIB_SX126X_PATCH_UPDATE_DISABLED 0b00000000 // 4 4 patch update: disabled
+
418 #define RADIOLIB_SX126X_PATCH_UPDATE_ENABLED 0b00010000 // 4 4 enabled
+
419 
+
420 // RADIOLIB_SX126X_REG_SPECTRAL_SCAN_STATUS
+
421 #define RADIOLIB_SX126X_SPECTRAL_SCAN_NONE 0x00 // 7 0 spectral scan status: none
+
422 #define RADIOLIB_SX126X_SPECTRAL_SCAN_ONGOING 0x0F // 7 0 ongoing
+
423 #define RADIOLIB_SX126X_SPECTRAL_SCAN_ABORTED 0xF0 // 7 0 aborted
+
424 #define RADIOLIB_SX126X_SPECTRAL_SCAN_COMPLETED 0xFF // 7 0 completed
+
425 
+
426 // RADIOLIB_SX126X_REG_RSSI_AVG_WINDOW
+
427 #define RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT (0x05 << 2) // 7 0 default RSSI average window
+
428 
+
429 // RADIOLIB_SX126X_REG_ANA_LNA
+
430 #define RADIOLIB_SX126X_LNA_RNG_DISABLED 0b00000001 // 0 0 random number: disabled
+
431 #define RADIOLIB_SX126X_LNA_RNG_ENABLED 0b00000000 // 0 0 enabled
+
432 
+
433 // RADIOLIB_SX126X_REG_ANA_MIXER
+
434 #define RADIOLIB_SX126X_MIXER_RNG_DISABLED 0b00000001 // 7 7 random number: disabled
+
435 #define RADIOLIB_SX126X_MIXER_RNG_ENABLED 0b00000000 // 7 7 enabled
+
436 
+
437 // size of the spectral scan result
+
438 #define RADIOLIB_SX126X_SPECTRAL_SCAN_RES_SIZE (33)
+
439 
+
440 // LR-FHSS configuration
+
441 #define RADIOLIB_SX126X_LR_FHSS_CR_5_6 (0x00UL << 0) // 7 0 LR FHSS coding rate: 5/6
+
442 #define RADIOLIB_SX126X_LR_FHSS_CR_2_3 (0x01UL << 0) // 7 0 2/3
+
443 #define RADIOLIB_SX126X_LR_FHSS_CR_1_2 (0x02UL << 0) // 7 0 1/2
+
444 #define RADIOLIB_SX126X_LR_FHSS_CR_1_3 (0x03UL << 0) // 7 0 1/3
+
445 #define RADIOLIB_SX126X_LR_FHSS_MOD_TYPE_GMSK (0x00UL << 0) // 7 0 LR FHSS modulation: GMSK
+
446 #define RADIOLIB_SX126X_LR_FHSS_GRID_STEP_FCC (0x00UL << 0) // 7 0 LR FHSS step size: 25.390625 kHz (FCC)
+
447 #define RADIOLIB_SX126X_LR_FHSS_GRID_STEP_NON_FCC (0x01UL << 0) // 7 0 3.90625 kHz (non-FCC)
+
448 #define RADIOLIB_SX126X_LR_FHSS_HOPPING_DISABLED (0x00UL << 0) // 7 0 LR FHSS hopping: disabled
+
449 #define RADIOLIB_SX126X_LR_FHSS_HOPPING_ENABLED (0x01UL << 0) // 7 0 enabled
+
450 #define RADIOLIB_SX126X_LR_FHSS_BW_39_06 (0x00UL << 0) // 7 0 LR FHSS bandwidth: 39.06 kHz
+
451 #define RADIOLIB_SX126X_LR_FHSS_BW_85_94 (0x01UL << 0) // 7 0 85.94 kHz
+
452 #define RADIOLIB_SX126X_LR_FHSS_BW_136_72 (0x02UL << 0) // 7 0 136.72 kHz
+
453 #define RADIOLIB_SX126X_LR_FHSS_BW_183_59 (0x03UL << 0) // 7 0 183.59 kHz
+
454 #define RADIOLIB_SX126X_LR_FHSS_BW_335_94 (0x04UL << 0) // 7 0 335.94 kHz
+
455 #define RADIOLIB_SX126X_LR_FHSS_BW_386_72 (0x05UL << 0) // 7 0 386.72 kHz
+
456 #define RADIOLIB_SX126X_LR_FHSS_BW_722_66 (0x06UL << 0) // 7 0 722.66 kHz
+
457 #define RADIOLIB_SX126X_LR_FHSS_BW_773_44 (0x07UL << 0) // 7 0 773.44 kHz
+
458 #define RADIOLIB_SX126X_LR_FHSS_BW_1523_4 (0x08UL << 0) // 7 0 1523.4 kHz
+
459 #define RADIOLIB_SX126X_LR_FHSS_BW_1574_2 (0x09UL << 0) // 7 0 1574.2 kHz
+
460 
+
461 // LR-FHSS packet lengths
+
462 #define RADIOLIB_SX126X_LR_FHSS_MAX_ENC_SIZE (608)
+
463 #define RADIOLIB_SX126X_LR_FHSS_HEADER_BITS (114)
+
464 #define RADIOLIB_SX126X_LR_FHSS_HDR_BYTES (10)
+
465 #define RADIOLIB_SX126X_LR_FHSS_SYNC_WORD_BYTES (4)
+
466 #define RADIOLIB_SX126X_LR_FHSS_FRAG_BITS (48)
+
467 #define RADIOLIB_SX126X_LR_FHSS_BLOCK_PREAMBLE_BITS (2)
+
468 #define RADIOLIB_SX126X_LR_FHSS_BLOCK_BITS (RADIOLIB_SX126X_LR_FHSS_FRAG_BITS + RADIOLIB_SX126X_LR_FHSS_BLOCK_PREAMBLE_BITS)
+
469 
+
475 class SX126x: public PhysicalLayer {
+
476  public:
+
477  // introduce PhysicalLayer overloads
+
478  using PhysicalLayer::transmit;
+
479  using PhysicalLayer::receive;
+
480  using PhysicalLayer::startTransmit;
+
481  using PhysicalLayer::readData;
+
482 
+
487  explicit SX126x(Module* mod);
+
488 
+
492  bool XTAL;
+
493 
+
497  bool standbyXOSC;
+
498 
+
499  // basic methods
+
500 
+
510  int16_t begin(uint8_t cr, uint8_t syncWord, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO = false);
+
511 
+
523  int16_t beginFSK(float br, float freqDev, float rxBw, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO = false);
+
524 
+
534  int16_t beginLRFHSS(uint8_t bw, uint8_t cr, bool narrowGrid, float tcxoVoltage, bool useRegulatorLDO = false);
+
535 
+
544  int16_t setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount = 3, uint16_t hopSeqId = 0x100);
+
545 
+
552  int16_t reset(bool verify = true);
+
553 
+
562  int16_t transmit(const uint8_t* data, size_t len, uint8_t addr = 0) override;
+
563 
+
571  int16_t receive(uint8_t* data, size_t len) override;
+
572 
+
578  int16_t transmitDirect(uint32_t frf = 0) override;
+
579 
+
585  int16_t receiveDirect() override;
+
586 
+
592  int16_t scanChannel() override;
+
593 
+
599  int16_t scanChannel(const ChannelScanConfig_t &config) override;
+
600 
+
606  int16_t sleep() override;
+
607 
+
614  int16_t sleep(bool retainConfig);
+
615 
+
620  int16_t standby() override;
+
621 
+
629  int16_t standby(uint8_t mode, bool wakeup = true);
+
630 
+
631  // interrupt methods
+
632 
+
637  void setDio1Action(void (*func)(void));
+
638 
+
642  void clearDio1Action();
+
643 
+
648  void setPacketReceivedAction(void (*func)(void)) override;
+
649 
+
653  void clearPacketReceivedAction() override;
+
654 
+
659  void setPacketSentAction(void (*func)(void)) override;
+
660 
+
664  void clearPacketSentAction() override;
+
665 
+
670  void setChannelScanAction(void (*func)(void)) override;
+
671 
+
675  void clearChannelScanAction() override;
+
676 
+
685  int16_t startTransmit(const uint8_t* data, size_t len, uint8_t addr = 0) override;
+
686 
+
691  int16_t finishTransmit() override;
+
692 
+
699  int16_t startReceive() override;
+
700 
+
716  int16_t startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags = RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask = RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len = 0);
+
717 
+
730  int16_t startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, RadioLibIrqFlags_t irqFlags = RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask = RADIOLIB_IRQ_RX_DEFAULT_MASK);
+
731 
+
746  int16_t startReceiveDutyCycleAuto(uint16_t senderPreambleLength = 0, uint16_t minSymbols = 8, RadioLibIrqFlags_t irqFlags = RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask = RADIOLIB_IRQ_RX_DEFAULT_MASK);
+
747 
+
756  int16_t readData(uint8_t* data, size_t len) override;
+
757 
+
763  int16_t startChannelScan() override;
+
764 
+
771  int16_t startChannelScan(const ChannelScanConfig_t &config) override;
+
772 
+
777  int16_t getChannelScanResult() override;
+
778 
+
779  // configuration methods
+
780 
+
786  int16_t setBandwidth(float bw);
+
787 
+
793  int16_t setSpreadingFactor(uint8_t sf);
+
794 
+
800  int16_t setCodingRate(uint8_t cr);
+
801 
+
808  int16_t setSyncWord(uint8_t syncWord, uint8_t controlBits = 0x44);
+
809 
+
815  int16_t setCurrentLimit(float currentLimit);
+
816 
+
821  float getCurrentLimit();
+
822 
+
828  int16_t setPreambleLength(size_t preambleLength) override;
+
829 
+
835  int16_t setFrequencyDeviation(float freqDev) override;
+
836 
+
842  int16_t setBitRate(float br) override;
+
843 
+
849  int16_t setDataRate(DataRate_t dr) override;
+
850 
+
856  int16_t checkDataRate(DataRate_t dr) override;
+
857 
+
864  int16_t setRxBandwidth(float rxBw);
+
865 
+
874  int16_t setRxBoostedGainMode(bool rxbgm, bool persist = true);
+
875 
+
883  int16_t setDataShaping(uint8_t sh) override;
+
884 
+
892  int16_t setSyncWord(uint8_t* syncWord, size_t len) override;
+
893 
+
901  int16_t setSyncBits(uint8_t *syncWord, uint8_t bitsLen);
+
902 
+
908  int16_t setNodeAddress(uint8_t addr);
+
909 
+
916  int16_t setBroadcastAddress(uint8_t broadAddr);
+
917 
+
922  int16_t disableAddressFiltering();
+
923 
+
932  int16_t setCRC(uint8_t len, uint16_t initial = 0x1D0F, uint16_t polynomial = 0x1021, bool inverted = true);
+
933 
+
941  int16_t setWhitening(bool enabled, uint16_t initial = 0x01FF);
+
942 
+
952  int16_t setTCXO(float voltage, uint32_t delay = 5000);
+
953 
+
958  int16_t setDio2AsRfSwitch(bool enable = true);
+
959 
+
964  float getDataRate() const;
+
965 
+
971  float getRSSI() override;
+
972 
+
978  float getRSSI(bool packet);
+
979 
+
984  float getSNR() override;
+
985 
+
993  float getFrequencyError();
+
994 
+
1000  size_t getPacketLength(bool update = true) override;
+
1001 
+
1008  size_t getPacketLength(bool update, uint8_t* offset);
+
1009 
+
1015  int16_t fixedPacketLengthMode(uint8_t len = RADIOLIB_SX126X_MAX_PACKET_LENGTH);
+
1016 
+
1022  int16_t variablePacketLengthMode(uint8_t maxLen = RADIOLIB_SX126X_MAX_PACKET_LENGTH);
+
1023 
+
1029  RadioLibTime_t getTimeOnAir(size_t len) override;
+
1030 
+
1036  RadioLibTime_t calculateRxTimeout(RadioLibTime_t timeoutUs) override;
+
1037 
+
1042  uint32_t getIrqFlags() override;
+
1043 
+
1049  int16_t setIrqFlags(uint32_t irq) override;
+
1050 
+
1056  int16_t clearIrqFlags(uint32_t irq) override;
+
1057 
+
1063  int16_t implicitHeader(size_t len);
+
1064 
+
1069  int16_t explicitHeader();
+
1070 
+
1075  int16_t setRegulatorLDO();
+
1076 
+
1081  int16_t setRegulatorDCDC();
+
1082 
+
1088  int16_t setEncoding(uint8_t encoding) override;
+
1089 
+
1091  void setRfSwitchPins(uint32_t rxEn, uint32_t txEn);
+
1092 
+
1094  void setRfSwitchTable(const uint32_t (&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[]);
+
1095 
+
1104  int16_t forceLDRO(bool enable);
+
1105 
+
1112  int16_t autoLDRO();
+
1113 
+
1118  uint8_t randomByte() override;
+
1119 
+
1125  int16_t invertIQ(bool enable) override;
+
1126 
+
1132  int16_t getModem(ModemType_t* modem) override;
+
1133 
+
1134  #if !RADIOLIB_EXCLUDE_DIRECT_RECEIVE
+
1139  void setDirectAction(void (*func)(void)) override;
+
1140 
+
1145  void readBit(uint32_t pin) override;
+
1146  #endif
+
1147 
+
1157  int16_t uploadPatch(const uint32_t* patch, size_t len, bool nonvolatile = true);
+
1158 
+
1166  int16_t spectralScanStart(uint16_t numSamples, uint8_t window = RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval = RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US);
+
1167 
+
1171  void spectralScanAbort();
+
1172 
+
1177  int16_t spectralScanGetStatus();
+
1178 
+
1184  int16_t spectralScanGetResult(uint16_t* results);
+
1185 
+
1197  int16_t setPaConfig(uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax = RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut = RADIOLIB_SX126X_PA_CONFIG_PA_LUT);
+
1198 
+
1206  int16_t calibrateImage(float freq);
+
1207 
+
1215  int16_t calibrateImageRejection(float freqMin, float freqMax);
+
1216 
+
1221  int16_t setPaRampTime(uint8_t rampTime);
+
1222 
+
1223 #if !RADIOLIB_GODMODE && !RADIOLIB_LOW_LEVEL
+
1224  protected:
+
1225 #endif
+
1226  Module* getMod() override;
+
1227 
+
1228  // SX126x SPI command implementations
+
1229  int16_t setFs();
+
1230  int16_t setTx(uint32_t timeout = 0);
+
1231  int16_t setRx(uint32_t timeout);
+
1232  int16_t setCad(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin, uint8_t exitMode, RadioLibTime_t timeout);
+
1233  int16_t writeRegister(uint16_t addr, uint8_t* data, uint8_t numBytes);
+
1234  int16_t readRegister(uint16_t addr, uint8_t* data, uint8_t numBytes);
+
1235  int16_t writeBuffer(uint8_t* data, uint8_t numBytes, uint8_t offset = 0x00);
+
1236  int16_t readBuffer(uint8_t* data, uint8_t numBytes, uint8_t offset = 0x00);
+
1237  int16_t setDioIrqParams(uint16_t irqMask, uint16_t dio1Mask, uint16_t dio2Mask = RADIOLIB_SX126X_IRQ_NONE, uint16_t dio3Mask = RADIOLIB_SX126X_IRQ_NONE);
+
1238  virtual int16_t clearIrqStatus(uint16_t clearIrqParams = RADIOLIB_SX126X_IRQ_ALL);
+
1239  int16_t setRfFrequency(uint32_t frf);
+
1240  int16_t calibrateImage(uint8_t* data);
+
1241  uint8_t getPacketType();
+
1242  int16_t setTxParams(uint8_t power, uint8_t rampTime);
+
1243  int16_t setModulationParams(uint8_t sf, uint8_t bw, uint8_t cr, uint8_t ldro);
+
1244  int16_t setModulationParamsFSK(uint32_t br, uint8_t sh, uint8_t rxBw, uint32_t freqDev);
+
1245  int16_t setPacketParams(uint16_t preambleLen, uint8_t crcType, uint8_t payloadLen, uint8_t hdrType, uint8_t invertIQ);
+
1246  int16_t setPacketParamsFSK(uint16_t preambleLen, uint8_t preambleDetectorLen, uint8_t crcType, uint8_t syncWordLen, uint8_t addrCmp, uint8_t whiten, uint8_t packType = RADIOLIB_SX126X_GFSK_PACKET_VARIABLE, uint8_t payloadLen = 0xFF);
+
1247  int16_t setBufferBaseAddress(uint8_t txBaseAddress = 0x00, uint8_t rxBaseAddress = 0x00);
+
1248  int16_t setRegulatorMode(uint8_t mode);
+
1249  uint8_t getStatus();
+
1250  uint32_t getPacketStatus();
+
1251  uint16_t getDeviceErrors();
+
1252  int16_t clearDeviceErrors();
+
1253 
+
1254 #if !RADIOLIB_GODMODE
+
1255  protected:
+
1256 #endif
+
1257  const char* chipType = NULL;
+
1258  uint8_t bandwidth = 0;
+
1259  float freqMHz = 0;
+
1260 
+
1261  // Allow subclasses to define different TX modes
+
1262  uint8_t txMode = Module::MODE_TX;
1263 
-
1264  uint8_t spreadingFactor = 0, codingRate = 0, ldrOptimize = 0, crcTypeLoRa = 0, headerType = 0;
-
1265  uint16_t preambleLengthLoRa = 0;
-
1266  float bandwidthKhz = 0;
-
1267  bool ldroAuto = true;
-
1268 
-
1269  uint32_t bitRate = 0, frequencyDev = 0;
-
1270  uint8_t preambleDetLength = 0, rxBandwidth = 0, pulseShape = 0, crcTypeFSK = 0, syncWordLength = 0, addrComp = 0, whitening = 0, packetType = 0;
-
1271  uint16_t preambleLengthFSK = 0;
-
1272  float rxBandwidthKhz = 0;
-
1273  uint8_t nodeAddr = 0;
+
1264  int16_t setFrequencyRaw(float freq);
+
1265  int16_t fixPaClamping(bool enable = true);
+
1266 
+
1267  // common low-level SPI interface
+
1268  static int16_t SPIparseStatus(uint8_t in);
+
1269 
+
1270 #if !RADIOLIB_GODMODE
+
1271  private:
+
1272 #endif
+
1273  Module* mod;
1274 
-
1275  float dataRateMeasured = 0;
-
1276 
-
1277  uint32_t tcxoDelay = 0;
-
1278  uint8_t pwr = 0;
-
1279  uint32_t frf = 0;
-
1280 
-
1281  size_t implicitLen = 0;
-
1282  uint8_t invertIQEnabled = RADIOLIB_SX126X_LORA_IQ_STANDARD;
-
1283 
-
1284  // LR-FHSS stuff - there's a lot of it because all the encoding happens in software
-
1285  uint8_t lrFhssCr = RADIOLIB_SX126X_LR_FHSS_CR_2_3;
-
1286  uint8_t lrFhssBw = RADIOLIB_SX126X_LR_FHSS_BW_722_66;
-
1287  uint8_t lrFhssHdrCount = 3;
-
1288  uint8_t lrFhssSyncWord[RADIOLIB_SX126X_LR_FHSS_SYNC_WORD_BYTES] = { 0x12, 0xAD, 0x10, 0x1B };
-
1289  bool lrFhssGridNonFcc = false;
-
1290  uint16_t lrFhssNgrid = 0;
-
1291  uint16_t lrFhssLfsrState = 0;
-
1292  uint16_t lrFhssPoly = 0;
-
1293  uint16_t lrFhssSeed = 0;
-
1294  uint16_t lrFhssHopSeqId = 0;
-
1295  size_t lrFhssFrameBitsRem = 0;
-
1296  size_t lrFhssFrameHopsRem = 0;
-
1297  size_t lrFhssHopNum = 0;
-
1298 
-
1299  int16_t modSetup(float tcxoVoltage, bool useRegulatorLDO, uint8_t modem);
-
1300  int16_t config(uint8_t modem);
-
1301  bool findChip(const char* verStr);
-
1302  int16_t startReceiveCommon(uint32_t timeout = RADIOLIB_SX126X_RX_TIMEOUT_INF, RadioLibIrqFlags_t irqFlags = RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask = RADIOLIB_IRQ_RX_DEFAULT_MASK);
-
1303  int16_t setPacketMode(uint8_t mode, uint8_t len);
-
1304  int16_t setHeaderType(uint8_t hdrType, size_t len = 0xFF);
-
1305  int16_t directMode();
-
1306  int16_t packetMode();
-
1307 
-
1308  // fixes to errata
-
1309  int16_t fixSensitivity();
-
1310  int16_t fixImplicitTimeout();
-
1311  int16_t fixInvertedIQ(uint8_t iqConfig);
-
1312 
-
1313  // LR-FHSS utilities
-
1314  int16_t buildLRFHSSPacket(const uint8_t* in, size_t in_len, uint8_t* out, size_t* out_len, size_t* out_bits, size_t* out_hops);
-
1315  int16_t resetLRFHSS();
-
1316  uint16_t stepLRFHSS();
-
1317  int16_t setLRFHSSHop(uint8_t index);
-
1318 
-
1319  void regdump();
-
1320  void effectEvalPre(uint8_t* buff, uint32_t start);
-
1321  void effectEvalPost(uint8_t* buff, uint32_t start);
-
1322  void effectEval();
-
1323 };
-
1324 
-
1325 #endif
-
1326 
-
1327 #endif
+
1275  uint8_t spreadingFactor = 0, codingRate = 0, ldrOptimize = 0, crcTypeLoRa = 0, headerType = 0;
+
1276  uint16_t preambleLengthLoRa = 0;
+
1277  float bandwidthKhz = 0;
+
1278  bool ldroAuto = true;
+
1279 
+
1280  uint32_t bitRate = 0, frequencyDev = 0;
+
1281  uint8_t preambleDetLength = 0, rxBandwidth = 0, pulseShape = 0, crcTypeFSK = 0, syncWordLength = 0, addrComp = 0, whitening = 0, packetType = 0;
+
1282  uint16_t preambleLengthFSK = 0;
+
1283  float rxBandwidthKhz = 0;
+
1284  uint8_t nodeAddr = 0;
+
1285 
+
1286  float dataRateMeasured = 0;
+
1287 
+
1288  uint32_t tcxoDelay = 0;
+
1289  uint8_t pwr = 0;
+
1290 
+
1291  size_t implicitLen = 0;
+
1292  uint8_t invertIQEnabled = RADIOLIB_SX126X_LORA_IQ_STANDARD;
+
1293 
+
1294  // LR-FHSS stuff - there's a lot of it because all the encoding happens in software
+
1295  uint8_t lrFhssCr = RADIOLIB_SX126X_LR_FHSS_CR_2_3;
+
1296  uint8_t lrFhssBw = RADIOLIB_SX126X_LR_FHSS_BW_722_66;
+
1297  uint8_t lrFhssHdrCount = 3;
+
1298  uint8_t lrFhssSyncWord[RADIOLIB_SX126X_LR_FHSS_SYNC_WORD_BYTES] = { 0x12, 0xAD, 0x10, 0x1B };
+
1299  bool lrFhssGridNonFcc = false;
+
1300  uint16_t lrFhssNgrid = 0;
+
1301  uint16_t lrFhssLfsrState = 0;
+
1302  uint16_t lrFhssPoly = 0;
+
1303  uint16_t lrFhssSeed = 0;
+
1304  uint16_t lrFhssHopSeqId = 0;
+
1305  size_t lrFhssFrameBitsRem = 0;
+
1306  size_t lrFhssFrameHopsRem = 0;
+
1307  size_t lrFhssHopNum = 0;
+
1308 
+
1309  int16_t modSetup(float tcxoVoltage, bool useRegulatorLDO, uint8_t modem);
+
1310  int16_t config(uint8_t modem);
+
1311  bool findChip(const char* verStr);
+
1312  int16_t startReceiveCommon(uint32_t timeout = RADIOLIB_SX126X_RX_TIMEOUT_INF, RadioLibIrqFlags_t irqFlags = RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask = RADIOLIB_IRQ_RX_DEFAULT_MASK);
+
1313  int16_t setPacketMode(uint8_t mode, uint8_t len);
+
1314  int16_t setHeaderType(uint8_t hdrType, size_t len = 0xFF);
+
1315  int16_t directMode();
+
1316  int16_t packetMode();
+
1317 
+
1318  // fixes to errata
+
1319  int16_t fixSensitivity();
+
1320  int16_t fixImplicitTimeout();
+
1321  int16_t fixInvertedIQ(uint8_t iqConfig);
+
1322 
+
1323  // LR-FHSS utilities
+
1324  int16_t buildLRFHSSPacket(const uint8_t* in, size_t in_len, uint8_t* out, size_t* out_len, size_t* out_bits, size_t* out_hops);
+
1325  int16_t resetLRFHSS();
+
1326  uint16_t stepLRFHSS();
+
1327  int16_t setLRFHSSHop(uint8_t index);
+
1328 
+
1329  void regdump();
+
1330  void effectEvalPre(uint8_t* buff, uint32_t start);
+
1331  void effectEvalPost(uint8_t* buff, uint32_t start);
+
1332  void effectEval();
+
1333 };
+
1334 
+
1335 #endif
+
1336 
+
1337 #endif
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
Module::RFSWITCH_MAX_PINS
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:75
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:112
@@ -883,7 +886,7 @@ $(document).ready(function(){initNavTree('_s_x126x_8h_source.html',''); initResi
PhysicalLayer::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:53
PhysicalLayer::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:148
PhysicalLayer::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:111
-
SX126x
Base class for SX126x series. All derived classes for SX126x (e.g. SX1262 or SX1268) inherit from thi...
Definition: SX126x.h:474
+
SX126x
Base class for SX126x series. All derived classes for SX126x (e.g. SX1262 or SX1268) inherit from thi...
Definition: SX126x.h:475
SX126x::startChannelScan
int16_t startChannelScan() override
Interrupt-driven channel activity detection method. DIO1 will be activated when LoRa preamble is dete...
Definition: SX126x.cpp:794
SX126x::getFrequencyError
float getFrequencyError()
Gets frequency error of the latest received packet. WARNING: This functionality is based on SX128x im...
Definition: SX126x.cpp:1425
SX126x::setRfSwitchPins
void setRfSwitchPins(uint32_t rxEn, uint32_t txEn)
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX126x.cpp:1598
@@ -900,6 +903,7 @@ $(document).ready(function(){initNavTree('_s_x126x_8h_source.html',''); initResi
SX126x::setRfSwitchTable
void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX126x.cpp:1602
SX126x::beginFSK
int16_t beginFSK(float br, float freqDev, float rxBw, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO=false)
Initialization method for FSK modem.
Definition: SX126x.cpp:68
SX126x::setBandwidth
int16_t setBandwidth(float bw)
Sets LoRa bandwidth. Allowed values are 7.8, 10.4, 15.6, 20.8, 31.25, 41.7, 62.5, 125....
Definition: SX126x.cpp:854
+
SX126x::calibrateImage
int16_t calibrateImage(float freq)
Perform image rejection calibration for the specified frequency. Will try to use Semtech-defined pres...
Definition: SX126x.cpp:1957
SX126x::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:206
SX126x::explicitHeader
int16_t explicitHeader()
Set explicit header mode for future reception/transmission.
Definition: SX126x.cpp:1582
SX126x::clearChannelScanAction
void clearChannelScanAction() override
Clears interrupt service routine to call when a channel scan is finished.
Definition: SX126x.cpp:507
@@ -936,7 +940,7 @@ $(document).ready(function(){initNavTree('_s_x126x_8h_source.html',''); initResi
SX126x::reset
int16_t reset(bool verify=true)
Reset method. Will reset the chip to the default state using RST pin.
Definition: SX126x.cpp:163
SX126x::setSyncWord
int16_t setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)
Sets LoRa sync word.
Definition: SX126x.cpp:931
SX126x::setLrFhssConfig
int16_t setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeqId=0x100)
Sets LR-FHSS configuration.
Definition: SX126x.cpp:150
-
SX126x::calibrateImageRejection
int16_t calibrateImageRejection(float freqMin, float freqMax)
Perform image rejection calibration for the specified frequency band. WARNING: Use at your own risk!...
Definition: SX126x.cpp:1957
+
SX126x::calibrateImageRejection
int16_t calibrateImageRejection(float freqMin, float freqMax)
Perform image rejection calibration for the specified frequency band. WARNING: Use at your own risk!...
Definition: SX126x.cpp:1994
SX126x::getCurrentLimit
float getCurrentLimit()
Reads current protection limit.
Definition: SX126x.cpp:955
SX126x::SX126x
SX126x(Module *mod)
Default constructor.
Definition: SX126x.cpp:6
SX126x::clearIrqFlags
int16_t clearIrqFlags(uint32_t irq) override
Clear interrupt on a specific IRQ bit (e.g. RxTimeout, CadDone).
Definition: SX126x.cpp:1574
@@ -954,15 +958,15 @@ $(document).ready(function(){initNavTree('_s_x126x_8h_source.html',''); initResi
SX126x::getDataRate
float getDataRate() const
Gets effective data rate for the last transmitted packet. The value is calculated only for payload by...
Definition: SX126x.cpp:1387
SX126x::startReceiveDutyCycleAuto
int16_t startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)
Calls startReceiveDutyCycle with rxPeriod and sleepPeriod set so the unit shouldn't miss any messages...
Definition: SX126x.cpp:684
SX126x::setPreambleLength
int16_t setPreambleLength(size_t preambleLength) override
Sets preamble length for LoRa or FSK modem. Allowed values range from 1 to 65535.
Definition: SX126x.cpp:964
-
SX126x::setPaRampTime
int16_t setPaRampTime(uint8_t rampTime)
Set PA ramp-up time. Set to 200us by default.
Definition: SX126x.cpp:1965
-
SX126x::XTAL
bool XTAL
Whether the module has an XTAL (true) or TCXO (false). Defaults to false.
Definition: SX126x.h:491
+
SX126x::setPaRampTime
int16_t setPaRampTime(uint8_t rampTime)
Set PA ramp-up time. Set to 200us by default.
Definition: SX126x.cpp:2002
+
SX126x::XTAL
bool XTAL
Whether the module has an XTAL (true) or TCXO (false). Defaults to false.
Definition: SX126x.h:492
SX126x::implicitHeader
int16_t implicitHeader(size_t len)
Set implicit header mode for future reception/transmission.
Definition: SX126x.cpp:1578
SX126x::setNodeAddress
int16_t setNodeAddress(uint8_t addr)
Sets node address. Calling this method will also enable address filtering for node address only.
Definition: SX126x.cpp:1245
SX126x::setDio2AsRfSwitch
int16_t setDio2AsRfSwitch(bool enable=true)
Set DIO2 to function as RF switch (default in Semtech example designs).
Definition: SX126x.cpp:1839
SX126x::spectralScanGetResult
int16_t spectralScanGetResult(uint16_t *results)
Read the result of spectral scan.
Definition: SX126x.cpp:1774
SX126x::setWhitening
int16_t setWhitening(bool enabled, uint16_t initial=0x01FF)
Sets FSK whitening parameters.
Definition: SX126x.cpp:1350
SX126x::setSpreadingFactor
int16_t setSpreadingFactor(uint8_t sf)
Sets LoRa spreading factor. Allowed values range from 5 to 12.
Definition: SX126x.cpp:905
-
SX126x::standbyXOSC
bool standbyXOSC
Whether to use XOSC (true) or RC (false) oscillator in standby mode. Defaults to false.
Definition: SX126x.h:496
+
SX126x::standbyXOSC
bool standbyXOSC
Whether to use XOSC (true) or RC (false) oscillator in standby mode. Defaults to false.
Definition: SX126x.h:497
SX126x::setChannelScanAction
void setChannelScanAction(void(*func)(void)) override
Sets interrupt service routine to call when a channel scan is finished.
Definition: SX126x.cpp:503
SX126x::setDataRate
int16_t setDataRate(DataRate_t dr) override
Set data.
Definition: SX126x.cpp:1027
SX126x::clearPacketSentAction
void clearPacketSentAction() override
Clears interrupt service routine to call when a packet is sent.
Definition: SX126x.cpp:499
diff --git a/class_l_l_c_c68-members.html b/class_l_l_c_c68-members.html index d6e152b6..580ad01b 100644 --- a/class_l_l_c_c68-members.html +++ b/class_l_l_c_c68-members.html @@ -98,125 +98,126 @@ $(document).ready(function(){initNavTree('class_l_l_c_c68.html',''); initResizab beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_SX126X_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_SX126X_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6, bool useRegulatorLDO=false)SX1262 SX126x::beginLRFHSS(uint8_t bw, uint8_t cr, bool narrowGrid, float tcxoVoltage, bool useRegulatorLDO=false)SX126x calculateRxTimeout(RadioLibTime_t timeoutUs) overrideSX126xvirtual - calibrateImageRejection(float freqMin, float freqMax)SX126x - checkDataRate(DataRate_t dr) overrideLLCC68virtual - checkIrq(RadioLibIrqType_t irq)PhysicalLayer - checkOutputPower(int8_t power, int8_t *clipped) overrideSX1262virtual - clearChannelScanAction() overrideSX126xvirtual - clearDio1Action()SX126x - clearIrq(RadioLibIrqFlags_t irq)PhysicalLayer - clearIrqFlags(uint32_t irq) overrideSX126xvirtual - clearPacketReceivedAction() overrideSX126xvirtual - clearPacketSentAction() overrideSX126xvirtual - disableAddressFiltering()SX126x - dropSync()PhysicalLayer - explicitHeader()SX126x - finishTransmit() overrideSX126xvirtual - fixedPacketLengthMode(uint8_t len=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x - forceLDRO(bool enable)SX126x - getChannelScanResult() overrideSX126xvirtual - getCurrentLimit()SX126x - getDataRate() constSX126x - getFreqStep() constPhysicalLayer - getFrequencyError()SX126x - getIrqFlags() overrideSX126xvirtual - getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer - getModem(ModemType_t *modem) overrideSX126xvirtual - getPacketLength(bool update=true) overrideSX126xvirtual - getPacketLength(bool update, uint8_t *offset)SX126x - getRSSI() overrideSX126xvirtual - getRSSI(bool packet)SX126x - getSNR() overrideSX126xvirtual - getTimeOnAir(size_t len) overrideSX126xvirtual - implicitHeader(size_t len)SX126x - invertIQ(bool enable) overrideSX126xvirtual - LLCC68(Module *mod)LLCC68 - PhysicalLayer(float step, size_t maxLen)PhysicalLayer - random(int32_t max)PhysicalLayer - random(int32_t min, int32_t max)PhysicalLayer - randomByte() overrideSX126xvirtual - read(bool drop=true)PhysicalLayer - readBit(uint32_t pin) overrideSX126xvirtual - readData(uint8_t *data, size_t len) overrideSX126xvirtual - readData(uint8_t *data, size_t len)SX126x - receive(uint8_t *data, size_t len) overrideSX126xvirtual - receive(uint8_t *data, size_t len)SX126x - receiveDirect() overrideSX126xvirtual - reset(bool verify=true)SX126x - scanChannel() overrideSX126xvirtual - scanChannel(const ChannelScanConfig_t &config) overrideSX126xvirtual - setBandwidth(float bw)LLCC68 - setBitRate(float br) overrideSX126xvirtual - setBroadcastAddress(uint8_t broadAddr)SX126x - setChannelScanAction(void(*func)(void)) overrideSX126xvirtual - 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 - setDataRate(DataRate_t dr) overrideLLCC68virtual - setDataShaping(uint8_t sh) overrideSX126xvirtual - setDio1Action(void(*func)(void))SX126x - setDio2AsRfSwitch(bool enable=true)SX126x - setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual - setDirectAction(void(*func)(void)) overrideSX126xvirtual - setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer - setEncoding(uint8_t encoding) overrideSX126xvirtual - setFrequency(float freq) overrideSX1262virtual - setFrequency(float freq, bool calibrate)SX1262 - setFrequencyDeviation(float freqDev) overrideSX126xvirtual - setIrq(RadioLibIrqFlags_t irq)PhysicalLayer - setIrqFlags(uint32_t irq) overrideSX126xvirtual - setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeqId=0x100)SX126x - setModem(ModemType_t modem) overrideLLCC68virtual - setNodeAddress(uint8_t addr)SX126x - setOutputPower(int8_t power) overrideSX1262virtual - setPacketReceivedAction(void(*func)(void)) overrideSX126xvirtual - setPacketSentAction(void(*func)(void)) overrideSX126xvirtual - setPaConfig(uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)SX126x - setPaRampTime(uint8_t rampTime)SX126x - setPreambleLength(size_t preambleLength) overrideSX126xvirtual - setRegulatorDCDC()SX126x - setRegulatorLDO()SX126x - setRfSwitchPins(uint32_t rxEn, uint32_t txEn)SX126x - setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])SX126x - setRxBandwidth(float rxBw)SX126x - setRxBoostedGainMode(bool rxbgm, bool persist=true)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, size_t len) overrideSX126xvirtual - setTCXO(float voltage, uint32_t delay=5000)SX126x - setWhitening(bool enabled, uint16_t initial=0x01FF)SX126x - sleep() overrideSX126xvirtual - sleep(bool retainConfig)SX126x - spectralScanAbort()SX126x - spectralScanGetResult(uint16_t *results)SX126x - spectralScanGetStatus()SX126x - spectralScanStart(uint16_t numSamples, uint8_t window=RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval=RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US)SX126x - standby() overrideSX126xvirtual - standby(uint8_t mode, bool wakeup=true)SX126x - PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual - standbyXOSCSX126x - startChannelScan() overrideSX126xvirtual - startChannelScan(const ChannelScanConfig_t &config) overrideSX126xvirtual - startDirect()PhysicalLayer - startReceive() overrideSX126xvirtual - startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0)SX126xvirtual - startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x - startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x - startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual - startTransmit(const char *str, uint8_t addr=0)SX126x - startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x - PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer - SX1262(Module *mod)SX1262 - SX126x(Module *mod)SX126xexplicit - transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual - transmit(const char *str, uint8_t addr=0)SX126x - transmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x - PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer - transmitDirect(uint32_t frf=0) overrideSX126xvirtual - uploadPatch(const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x - variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x - XTALSX126x + calibrateImage(float freq)SX126x + calibrateImageRejection(float freqMin, float freqMax)SX126x + checkDataRate(DataRate_t dr) overrideLLCC68virtual + checkIrq(RadioLibIrqType_t irq)PhysicalLayer + checkOutputPower(int8_t power, int8_t *clipped) overrideSX1262virtual + clearChannelScanAction() overrideSX126xvirtual + clearDio1Action()SX126x + clearIrq(RadioLibIrqFlags_t irq)PhysicalLayer + clearIrqFlags(uint32_t irq) overrideSX126xvirtual + clearPacketReceivedAction() overrideSX126xvirtual + clearPacketSentAction() overrideSX126xvirtual + disableAddressFiltering()SX126x + dropSync()PhysicalLayer + explicitHeader()SX126x + finishTransmit() overrideSX126xvirtual + fixedPacketLengthMode(uint8_t len=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x + forceLDRO(bool enable)SX126x + getChannelScanResult() overrideSX126xvirtual + getCurrentLimit()SX126x + getDataRate() constSX126x + getFreqStep() constPhysicalLayer + getFrequencyError()SX126x + getIrqFlags() overrideSX126xvirtual + getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer + getModem(ModemType_t *modem) overrideSX126xvirtual + getPacketLength(bool update=true) overrideSX126xvirtual + getPacketLength(bool update, uint8_t *offset)SX126x + getRSSI() overrideSX126xvirtual + getRSSI(bool packet)SX126x + getSNR() overrideSX126xvirtual + getTimeOnAir(size_t len) overrideSX126xvirtual + implicitHeader(size_t len)SX126x + invertIQ(bool enable) overrideSX126xvirtual + LLCC68(Module *mod)LLCC68 + PhysicalLayer(float step, size_t maxLen)PhysicalLayer + random(int32_t max)PhysicalLayer + random(int32_t min, int32_t max)PhysicalLayer + randomByte() overrideSX126xvirtual + read(bool drop=true)PhysicalLayer + readBit(uint32_t pin) overrideSX126xvirtual + readData(uint8_t *data, size_t len) overrideSX126xvirtual + readData(uint8_t *data, size_t len)SX126x + receive(uint8_t *data, size_t len) overrideSX126xvirtual + receive(uint8_t *data, size_t len)SX126x + receiveDirect() overrideSX126xvirtual + reset(bool verify=true)SX126x + scanChannel() overrideSX126xvirtual + scanChannel(const ChannelScanConfig_t &config) overrideSX126xvirtual + setBandwidth(float bw)LLCC68 + setBitRate(float br) overrideSX126xvirtual + setBroadcastAddress(uint8_t broadAddr)SX126x + setChannelScanAction(void(*func)(void)) overrideSX126xvirtual + 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 + setDataRate(DataRate_t dr) overrideLLCC68virtual + setDataShaping(uint8_t sh) overrideSX126xvirtual + setDio1Action(void(*func)(void))SX126x + setDio2AsRfSwitch(bool enable=true)SX126x + setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual + setDirectAction(void(*func)(void)) overrideSX126xvirtual + setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer + setEncoding(uint8_t encoding) overrideSX126xvirtual + setFrequency(float freq) overrideSX1262virtual + setFrequency(float freq, bool skipCalibration)SX1262 + setFrequencyDeviation(float freqDev) overrideSX126xvirtual + setIrq(RadioLibIrqFlags_t irq)PhysicalLayer + setIrqFlags(uint32_t irq) overrideSX126xvirtual + setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeqId=0x100)SX126x + setModem(ModemType_t modem) overrideLLCC68virtual + setNodeAddress(uint8_t addr)SX126x + setOutputPower(int8_t power) overrideSX1262virtual + setPacketReceivedAction(void(*func)(void)) overrideSX126xvirtual + setPacketSentAction(void(*func)(void)) overrideSX126xvirtual + setPaConfig(uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)SX126x + setPaRampTime(uint8_t rampTime)SX126x + setPreambleLength(size_t preambleLength) overrideSX126xvirtual + setRegulatorDCDC()SX126x + setRegulatorLDO()SX126x + setRfSwitchPins(uint32_t rxEn, uint32_t txEn)SX126x + setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])SX126x + setRxBandwidth(float rxBw)SX126x + setRxBoostedGainMode(bool rxbgm, bool persist=true)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, size_t len) overrideSX126xvirtual + setTCXO(float voltage, uint32_t delay=5000)SX126x + setWhitening(bool enabled, uint16_t initial=0x01FF)SX126x + sleep() overrideSX126xvirtual + sleep(bool retainConfig)SX126x + spectralScanAbort()SX126x + spectralScanGetResult(uint16_t *results)SX126x + spectralScanGetStatus()SX126x + spectralScanStart(uint16_t numSamples, uint8_t window=RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval=RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US)SX126x + standby() overrideSX126xvirtual + standby(uint8_t mode, bool wakeup=true)SX126x + PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual + standbyXOSCSX126x + startChannelScan() overrideSX126xvirtual + startChannelScan(const ChannelScanConfig_t &config) overrideSX126xvirtual + startDirect()PhysicalLayer + startReceive() overrideSX126xvirtual + startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0)SX126xvirtual + startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x + startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x + startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual + startTransmit(const char *str, uint8_t addr=0)SX126x + startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x + PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer + SX1262(Module *mod)SX1262 + SX126x(Module *mod)SX126xexplicit + transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual + transmit(const char *str, uint8_t addr=0)SX126x + transmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x + PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer + transmitDirect(uint32_t frf=0) overrideSX126xvirtual + uploadPatch(const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x + variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x + XTALSX126x diff --git a/class_l_l_c_c68.html b/class_l_l_c_c68.html index f2a1dbd3..46e6611b 100644 --- a/class_l_l_c_c68.html +++ b/class_l_l_c_c68.html @@ -143,11 +143,11 @@ Public Member Functions  Initialization method for LR-FHSS modem. This modem only supports transmission! More...
  int16_t setFrequency (float freq) override - Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. More...
+ Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_SX126X_CAL_IMG_FREQ_TRIG MHz. More...
  -int16_t setFrequency (float freq, bool calibrate) - Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. More...
-  +int16_t setFrequency (float freq, bool skipCalibration) + Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_SX126X_CAL_IMG_FREQ_TRIG_MHZ. More...
+  virtual int16_t setOutputPower (int8_t power) override  Sets output power. Allowed values are in range from -9 to 22 dBm. This method is virtual to allow override from the SX1261 class. More...
  @@ -436,6 +436,9 @@ void int16_t setPaConfig (uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)  Set the PA configuration. Allows user to optimize PA for a specific output power and matching network. Any calls to this method must be done after calling begin/beginFSK and/or setOutputPower. WARNING: Use at your own risk! Setting invalid values can and will lead to permanent damage! More...
  +int16_t calibrateImage (float freq) + Perform image rejection calibration for the specified frequency. Will try to use Semtech-defined presets first, and if none of them matches, custom iamge calibration will be attempted using calibrateImageRejection. More...
+  int16_t calibrateImageRejection (float freqMin, float freqMax)  Perform image rejection calibration for the specified frequency band. WARNING: Use at your own risk! Setting incorrect values may lead to decreased performance. More...
  diff --git a/class_l_r1110-members.html b/class_l_r1110-members.html index 7f4d962e..6670f89c 100644 --- a/class_l_r1110-members.html +++ b/class_l_r1110-members.html @@ -99,134 +99,135 @@ $(document).ready(function(){initNavTree('class_l_r1110.html',''); initResizable beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_LR11X0_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_LR11X0_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6)LR1110 LR11x0::beginLRFHSS(uint8_t bw, uint8_t cr, bool narrowGrid, float tcxoVoltage)LR11x0 calculateRxTimeout(RadioLibTime_t timeoutUs) overrideLR11x0virtual - checkDataRate(DataRate_t dr) overrideLR11x0virtual - checkIrq(RadioLibIrqType_t irq)PhysicalLayer - checkOutputPower(int8_t power, int8_t *clipped) overrideLR1110virtual - checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)LR1110 - clearChannelScanAction()PhysicalLayervirtual - clearIrqAction()LR11x0 - clearIrqFlags(uint32_t irq) overrideLR11x0virtual - clearPacketReceivedAction() overrideLR11x0virtual - clearPacketSentAction() overrideLR11x0virtual - clearWiFiScanAction()LR11x0 - disableAddressFiltering()LR11x0 - dropSync()PhysicalLayer - explicitHeader()LR11x0 - finishTransmit() overrideLR11x0virtual - fixedPacketLengthMode(uint8_t len=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)LR11x0 - forceLDRO(bool enable)LR11x0 - getChannelScanResult() overrideLR11x0virtual - getDataRate() constLR11x0 - getFreqStep() constPhysicalLayer - getFrequencyError()LR11x0 - getGnssAlmanacStatus(LR11x0GnssAlmanacStatus_t *stat)LR11x0 - getGnssPosition(LR11x0GnssPosition_t *pos, bool filtered=true)LR11x0 - getGnssSatellites(LR11x0GnssSatellite_t *sats, uint8_t numSats)LR11x0 - getIrqFlags() overrideLR11x0virtual - getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer - getIrqStatus()LR11x0 - getModem(ModemType_t *modem) overrideLR11x0virtual - getPacketLength(bool update=true) overrideLR11x0virtual - getPacketLength(bool update, uint8_t *offset)LR11x0 - getRSSI() overrideLR11x0virtual - getSNR() overrideLR11x0virtual - getTimeOnAir(size_t len) overrideLR11x0virtual - getVersionInfo(LR11x0VersionInfo_t *info)LR11x0 - getWifiScanResult(LR11x0WifiResult_t *result, uint8_t index, bool brief=false)LR11x0 - getWifiScanResultsCount(uint8_t *count)LR11x0 - gnssDelayUntilSubframe(LR11x0GnssAlmanacStatus_t *stat, uint8_t constellation)LR11x0 - gnssScan(LR11x0GnssResult_t *res=NULL)LR11x0 - implicitHeader(size_t len)LR11x0 - invertIQ(bool enable) overrideLR11x0virtual - isGnssScanCapable()LR11x0 - LR1110(Module *mod)LR1110 - LR11x0(Module *mod)LR11x0explicit - MODE_END_OF_TABLE enum valueLR11x0 - MODE_GNSS enum valueLR11x0 - MODE_RX enum valueLR11x0 - MODE_STBY enum valueLR11x0 - MODE_TX enum valueLR11x0 - MODE_TX_HF enum valueLR11x0 - MODE_TX_HP enum valueLR11x0 - MODE_WIFI enum valueLR11x0 - OpMode_t enum nameLR11x0 - PhysicalLayer(float step, size_t maxLen)PhysicalLayer - random(int32_t max)PhysicalLayer - random(int32_t min, int32_t max)PhysicalLayer - randomByte() overrideLR11x0virtual - read(bool drop=true)PhysicalLayer - readBit(uint32_t pin)PhysicalLayervirtual - readData(uint8_t *data, size_t len) overrideLR11x0virtual - readData(uint8_t *data, size_t len)LR11x0 - receive(uint8_t *data, size_t len) overrideLR11x0virtual - receive(uint8_t *data, size_t len)LR11x0 - receiveDirect() overrideLR11x0virtual - reset()LR11x0 - scanChannel() overrideLR11x0virtual - scanChannel(const ChannelScanConfig_t &config) overrideLR11x0virtual - setBandwidth(float bw, bool high=false)LR11x0 - setBitRate(float br) overrideLR11x0virtual - setBroadcastAddress(uint8_t broadAddr)LR11x0 - setChannelScanAction(void(*func)(void))PhysicalLayervirtual - setCodingRate(uint8_t cr, bool longInterleave=false)LR11x0 - setCRC(uint8_t len, uint32_t initial=0x00001D0FUL, uint32_t polynomial=0x00001021UL, bool inverted=true)LR11x0 - setDataRate(DataRate_t dr) overrideLR11x0virtual - setDataShaping(uint8_t sh) overrideLR11x0virtual - setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual - setDirectAction(void(*func)(void))PhysicalLayervirtual - setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer - setEncoding(uint8_t encoding) overrideLR11x0virtual - setFrequency(float freq) overrideLR1110virtual - setFrequency(float freq, bool calibrate, float band=4)LR1110 - setFrequencyDeviation(float freqDev) overrideLR11x0virtual - setIrq(RadioLibIrqFlags_t irq)PhysicalLayer - setIrqAction(void(*func)(void))LR11x0 - setIrqFlags(uint32_t irq) overrideLR11x0virtual - setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeed=0x13A)LR11x0 - setModem(ModemType_t modem) overrideLR1110virtual - setNodeAddress(uint8_t nodeAddr)LR11x0 - setOutputPower(int8_t power) overrideLR1110virtual - setOutputPower(int8_t power, bool forceHighPower)LR1110 - setPacketReceivedAction(void(*func)(void)) overrideLR11x0virtual - setPacketSentAction(void(*func)(void)) overrideLR11x0virtual - setPreambleLength(size_t preambleLength) overrideLR11x0virtual - setRegulatorDCDC()LR11x0 - setRegulatorLDO()LR11x0 - setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])LR11x0 - setRxBandwidth(float rxBw)LR11x0 - setRxBoostedGainMode(bool en)LR11x0 - setSpreadingFactor(uint8_t sf, bool legacy=false)LR11x0 - setSyncBits(uint8_t *syncWord, uint8_t bitsLen)LR11x0 - setSyncWord(uint32_t syncWord)LR11x0 - setSyncWord(uint8_t *syncWord, size_t len) overrideLR11x0virtual - setTCXO(float voltage, uint32_t delay=5000)LR11x0 - setWhitening(bool enabled, uint16_t initial=0x01FF)LR11x0 - setWiFiScanAction(void(*func)(void))LR11x0 - sleep() overrideLR11x0virtual - sleep(bool retainConfig, uint32_t sleepTime)LR11x0 - standby() overrideLR11x0virtual - standby(uint8_t mode, bool wakeup=true)LR11x0 - PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual - startChannelScan() overrideLR11x0virtual - startChannelScan(const ChannelScanConfig_t &config) overrideLR11x0virtual - startDirect()PhysicalLayer - startReceive() overrideLR11x0virtual - startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)LR11x0virtual - startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual - startTransmit(const char *str, uint8_t addr=0)LR11x0 - startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)LR11x0 - PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer - startWifiScan(char wifiType, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)LR11x0 - transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual - transmit(const char *str, uint8_t addr=0)LR11x0 - transmit(const uint8_t *data, size_t len, uint8_t addr=0)LR11x0 - PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer - transmitDirect(uint32_t frf=0) overrideLR11x0virtual - updateFirmware(const uint32_t *image, size_t size, bool nonvolatile=true)LR11x0 - updateGnssAlmanac(uint8_t constellation)LR11x0 - variablePacketLengthMode(uint8_t maxLen=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)LR11x0 - wifiScan(uint8_t wifiType, uint8_t *count, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)LR11x0 - XTALLR11x0 + calibrateImageRejection(float freqMin, float freqMax)LR11x0 + checkDataRate(DataRate_t dr) overrideLR11x0virtual + checkIrq(RadioLibIrqType_t irq)PhysicalLayer + checkOutputPower(int8_t power, int8_t *clipped) overrideLR1110virtual + checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)LR1110 + clearChannelScanAction()PhysicalLayervirtual + clearIrqAction()LR11x0 + clearIrqFlags(uint32_t irq) overrideLR11x0virtual + clearPacketReceivedAction() overrideLR11x0virtual + clearPacketSentAction() overrideLR11x0virtual + clearWiFiScanAction()LR11x0 + disableAddressFiltering()LR11x0 + dropSync()PhysicalLayer + explicitHeader()LR11x0 + finishTransmit() overrideLR11x0virtual + fixedPacketLengthMode(uint8_t len=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)LR11x0 + forceLDRO(bool enable)LR11x0 + getChannelScanResult() overrideLR11x0virtual + getDataRate() constLR11x0 + getFreqStep() constPhysicalLayer + getFrequencyError()LR11x0 + getGnssAlmanacStatus(LR11x0GnssAlmanacStatus_t *stat)LR11x0 + getGnssPosition(LR11x0GnssPosition_t *pos, bool filtered=true)LR11x0 + getGnssSatellites(LR11x0GnssSatellite_t *sats, uint8_t numSats)LR11x0 + getIrqFlags() overrideLR11x0virtual + getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer + getIrqStatus()LR11x0 + getModem(ModemType_t *modem) overrideLR11x0virtual + getPacketLength(bool update=true) overrideLR11x0virtual + getPacketLength(bool update, uint8_t *offset)LR11x0 + getRSSI() overrideLR11x0virtual + getSNR() overrideLR11x0virtual + getTimeOnAir(size_t len) overrideLR11x0virtual + getVersionInfo(LR11x0VersionInfo_t *info)LR11x0 + getWifiScanResult(LR11x0WifiResult_t *result, uint8_t index, bool brief=false)LR11x0 + getWifiScanResultsCount(uint8_t *count)LR11x0 + gnssDelayUntilSubframe(LR11x0GnssAlmanacStatus_t *stat, uint8_t constellation)LR11x0 + gnssScan(LR11x0GnssResult_t *res=NULL)LR11x0 + implicitHeader(size_t len)LR11x0 + invertIQ(bool enable) overrideLR11x0virtual + isGnssScanCapable()LR11x0 + LR1110(Module *mod)LR1110 + LR11x0(Module *mod)LR11x0explicit + MODE_END_OF_TABLE enum valueLR11x0 + MODE_GNSS enum valueLR11x0 + MODE_RX enum valueLR11x0 + MODE_STBY enum valueLR11x0 + MODE_TX enum valueLR11x0 + MODE_TX_HF enum valueLR11x0 + MODE_TX_HP enum valueLR11x0 + MODE_WIFI enum valueLR11x0 + OpMode_t enum nameLR11x0 + PhysicalLayer(float step, size_t maxLen)PhysicalLayer + random(int32_t max)PhysicalLayer + random(int32_t min, int32_t max)PhysicalLayer + randomByte() overrideLR11x0virtual + read(bool drop=true)PhysicalLayer + readBit(uint32_t pin)PhysicalLayervirtual + readData(uint8_t *data, size_t len) overrideLR11x0virtual + readData(uint8_t *data, size_t len)LR11x0 + receive(uint8_t *data, size_t len) overrideLR11x0virtual + receive(uint8_t *data, size_t len)LR11x0 + receiveDirect() overrideLR11x0virtual + reset()LR11x0 + scanChannel() overrideLR11x0virtual + scanChannel(const ChannelScanConfig_t &config) overrideLR11x0virtual + setBandwidth(float bw, bool high=false)LR11x0 + setBitRate(float br) overrideLR11x0virtual + setBroadcastAddress(uint8_t broadAddr)LR11x0 + setChannelScanAction(void(*func)(void))PhysicalLayervirtual + setCodingRate(uint8_t cr, bool longInterleave=false)LR11x0 + setCRC(uint8_t len, uint32_t initial=0x00001D0FUL, uint32_t polynomial=0x00001021UL, bool inverted=true)LR11x0 + setDataRate(DataRate_t dr) overrideLR11x0virtual + setDataShaping(uint8_t sh) overrideLR11x0virtual + setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual + setDirectAction(void(*func)(void))PhysicalLayervirtual + setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer + setEncoding(uint8_t encoding) overrideLR11x0virtual + setFrequency(float freq) overrideLR1110virtual + setFrequency(float freq, bool skipCalibration, float band=4)LR1110 + setFrequencyDeviation(float freqDev) overrideLR11x0virtual + setIrq(RadioLibIrqFlags_t irq)PhysicalLayer + setIrqAction(void(*func)(void))LR11x0 + setIrqFlags(uint32_t irq) overrideLR11x0virtual + setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeed=0x13A)LR11x0 + setModem(ModemType_t modem) overrideLR1110virtual + setNodeAddress(uint8_t nodeAddr)LR11x0 + setOutputPower(int8_t power) overrideLR1110virtual + setOutputPower(int8_t power, bool forceHighPower)LR1110 + setPacketReceivedAction(void(*func)(void)) overrideLR11x0virtual + setPacketSentAction(void(*func)(void)) overrideLR11x0virtual + setPreambleLength(size_t preambleLength) overrideLR11x0virtual + setRegulatorDCDC()LR11x0 + setRegulatorLDO()LR11x0 + setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])LR11x0 + setRxBandwidth(float rxBw)LR11x0 + setRxBoostedGainMode(bool en)LR11x0 + setSpreadingFactor(uint8_t sf, bool legacy=false)LR11x0 + setSyncBits(uint8_t *syncWord, uint8_t bitsLen)LR11x0 + setSyncWord(uint32_t syncWord)LR11x0 + setSyncWord(uint8_t *syncWord, size_t len) overrideLR11x0virtual + setTCXO(float voltage, uint32_t delay=5000)LR11x0 + setWhitening(bool enabled, uint16_t initial=0x01FF)LR11x0 + setWiFiScanAction(void(*func)(void))LR11x0 + sleep() overrideLR11x0virtual + sleep(bool retainConfig, uint32_t sleepTime)LR11x0 + standby() overrideLR11x0virtual + standby(uint8_t mode, bool wakeup=true)LR11x0 + PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual + startChannelScan() overrideLR11x0virtual + startChannelScan(const ChannelScanConfig_t &config) overrideLR11x0virtual + startDirect()PhysicalLayer + startReceive() overrideLR11x0virtual + startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)LR11x0virtual + startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual + startTransmit(const char *str, uint8_t addr=0)LR11x0 + startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)LR11x0 + PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer + startWifiScan(char wifiType, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)LR11x0 + transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual + transmit(const char *str, uint8_t addr=0)LR11x0 + transmit(const uint8_t *data, size_t len, uint8_t addr=0)LR11x0 + PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer + transmitDirect(uint32_t frf=0) overrideLR11x0virtual + updateFirmware(const uint32_t *image, size_t size, bool nonvolatile=true)LR11x0 + updateGnssAlmanac(uint8_t constellation)LR11x0 + variablePacketLengthMode(uint8_t maxLen=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)LR11x0 + wifiScan(uint8_t wifiType, uint8_t *count, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)LR11x0 + XTALLR11x0 diff --git a/class_l_r1110.html b/class_l_r1110.html index 1c48d2a8..4a48e7ea 100644 --- a/class_l_r1110.html +++ b/class_l_r1110.html @@ -120,11 +120,11 @@ Public Member Functions  Initialization method for LR-FHSS modem. More...
  int16_t setFrequency (float freq) override - Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will also perform calibrations. More...
+ Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_LR11X0_CAL_IMG_FREQ_TRIG MHz. More...
  -int16_t setFrequency (float freq, bool calibrate, float band=4) - Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. More...
-  +int16_t setFrequency (float freq, bool skipCalibration, float band=4) + Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_LR11X0_CAL_IMG_FREQ_TRIG MHz. More...
+  int16_t setOutputPower (int8_t power) override  Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (low-power PA). More...
  @@ -418,6 +418,9 @@ void int16_t getModem (ModemType_t *modem) override  Get modem currently in use by the radio. More...
  +int16_t calibrateImageRejection (float freqMin, float freqMax) + Perform image rejection calibration for the specified frequency band. WARNING: Use at your own risk! Setting incorrect values may lead to decreased performance. More...
+  int16_t transmit (const char *str, uint8_t addr=0)  C-string transmit method. More...
  @@ -892,7 +895,7 @@ bool  -

Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will also perform calibrations.

+

Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_LR11X0_CAL_IMG_FREQ_TRIG MHz.

Parameters
@@ -905,8 +908,8 @@ bool  - + @@ -937,11 +940,11 @@ bool  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
freqCarrier frequency to be set in MHz.
-

◆ setFrequency() [2/2]

+ +

◆ setFrequency() [2/2]

@@ -921,7 +924,7 @@ bool 
bool calibrate, skipCalibration,
-

Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz.

+

Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_LR11X0_CAL_IMG_FREQ_TRIG MHz.

Parameters
- +
freqCarrier frequency to be set in MHz.
calibrateRun image calibration.
skipCalibrationSkip automated image calibration.
bandHalf bandwidth for image calibration. For example, if carrier is 434 MHz and band is set to 4 MHz, then the image will be calibrate for band 430 - 438 MHz. Unused if calibrate is set to false, defaults to 4 MHz
diff --git a/class_l_r1110.js b/class_l_r1110.js index 86075f4f..8648973c 100644 --- a/class_l_r1110.js +++ b/class_l_r1110.js @@ -7,7 +7,7 @@ var class_l_r1110 = [ "checkOutputPower", "class_l_r1110.html#af1f6dddd12805fdecb55ef5703d23ef1", null ], [ "checkOutputPower", "class_l_r1110.html#ae084d4503b2abcdc508edef40b0cadb3", null ], [ "setFrequency", "class_l_r1110.html#ade94d20ea438cbd92c61e28d2232d7e8", null ], - [ "setFrequency", "class_l_r1110.html#a08c9ba9d02e7e3918f73f090c6d5ed33", null ], + [ "setFrequency", "class_l_r1110.html#a4f9272d078b79d76315be7a57be3e547", null ], [ "setModem", "class_l_r1110.html#a18f525740237b023056a8ca6f3671c6a", null ], [ "setOutputPower", "class_l_r1110.html#a65c08f0475f888537e55401b75e58b23", null ], [ "setOutputPower", "class_l_r1110.html#ae4eaaa6411bb1eeb131613fb3f43e5d1", null ] diff --git a/class_l_r1120-members.html b/class_l_r1120-members.html index aac03dd2..8c5c2908 100644 --- a/class_l_r1120-members.html +++ b/class_l_r1120-members.html @@ -99,134 +99,135 @@ $(document).ready(function(){initNavTree('class_l_r1120.html',''); initResizable
beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_LR11X0_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_LR11X0_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6)LR1120
LR11x0::beginLRFHSS(uint8_t bw, uint8_t cr, bool narrowGrid, float tcxoVoltage)LR11x0
calculateRxTimeout(RadioLibTime_t timeoutUs) overrideLR11x0virtual
checkDataRate(DataRate_t dr) overrideLR11x0virtual
checkIrq(RadioLibIrqType_t irq)PhysicalLayer
checkOutputPower(int8_t power, int8_t *clipped) overrideLR1120virtual
checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)LR1120
clearChannelScanAction()PhysicalLayervirtual
clearIrqAction()LR11x0
clearIrqFlags(uint32_t irq) overrideLR11x0virtual
clearPacketReceivedAction() overrideLR11x0virtual
clearPacketSentAction() overrideLR11x0virtual
clearWiFiScanAction()LR11x0
disableAddressFiltering()LR11x0
dropSync()PhysicalLayer
explicitHeader()LR11x0
finishTransmit() overrideLR11x0virtual
fixedPacketLengthMode(uint8_t len=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)LR11x0
forceLDRO(bool enable)LR11x0
getChannelScanResult() overrideLR11x0virtual
getDataRate() constLR11x0
getFreqStep() constPhysicalLayer
getFrequencyError()LR11x0
getGnssAlmanacStatus(LR11x0GnssAlmanacStatus_t *stat)LR11x0
getGnssPosition(LR11x0GnssPosition_t *pos, bool filtered=true)LR11x0
getGnssSatellites(LR11x0GnssSatellite_t *sats, uint8_t numSats)LR11x0
getIrqFlags() overrideLR11x0virtual
getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer
getIrqStatus()LR11x0
getModem(ModemType_t *modem) overrideLR11x0virtual
getPacketLength(bool update=true) overrideLR11x0virtual
getPacketLength(bool update, uint8_t *offset)LR11x0
getRSSI() overrideLR11x0virtual
getSNR() overrideLR11x0virtual
getTimeOnAir(size_t len) overrideLR11x0virtual
getVersionInfo(LR11x0VersionInfo_t *info)LR11x0
getWifiScanResult(LR11x0WifiResult_t *result, uint8_t index, bool brief=false)LR11x0
getWifiScanResultsCount(uint8_t *count)LR11x0
gnssDelayUntilSubframe(LR11x0GnssAlmanacStatus_t *stat, uint8_t constellation)LR11x0
gnssScan(LR11x0GnssResult_t *res=NULL)LR11x0
implicitHeader(size_t len)LR11x0
invertIQ(bool enable) overrideLR11x0virtual
isGnssScanCapable()LR11x0
LR1120(Module *mod)LR1120
LR11x0(Module *mod)LR11x0explicit
MODE_END_OF_TABLE enum valueLR11x0
MODE_GNSS enum valueLR11x0
MODE_RX enum valueLR11x0
MODE_STBY enum valueLR11x0
MODE_TX enum valueLR11x0
MODE_TX_HF enum valueLR11x0
MODE_TX_HP enum valueLR11x0
MODE_WIFI enum valueLR11x0
OpMode_t enum nameLR11x0
PhysicalLayer(float step, size_t maxLen)PhysicalLayer
random(int32_t max)PhysicalLayer
random(int32_t min, int32_t max)PhysicalLayer
randomByte() overrideLR11x0virtual
read(bool drop=true)PhysicalLayer
readBit(uint32_t pin)PhysicalLayervirtual
readData(uint8_t *data, size_t len) overrideLR11x0virtual
readData(uint8_t *data, size_t len)LR11x0
receive(uint8_t *data, size_t len) overrideLR11x0virtual
receive(uint8_t *data, size_t len)LR11x0
receiveDirect() overrideLR11x0virtual
reset()LR11x0
scanChannel() overrideLR11x0virtual
scanChannel(const ChannelScanConfig_t &config) overrideLR11x0virtual
setBandwidth(float bw, bool high=false)LR11x0
setBitRate(float br) overrideLR11x0virtual
setBroadcastAddress(uint8_t broadAddr)LR11x0
setChannelScanAction(void(*func)(void))PhysicalLayervirtual
setCodingRate(uint8_t cr, bool longInterleave=false)LR11x0
setCRC(uint8_t len, uint32_t initial=0x00001D0FUL, uint32_t polynomial=0x00001021UL, bool inverted=true)LR11x0
setDataRate(DataRate_t dr) overrideLR11x0virtual
setDataShaping(uint8_t sh) overrideLR11x0virtual
setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual
setDirectAction(void(*func)(void))PhysicalLayervirtual
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideLR11x0virtual
setFrequency(float freq) overrideLR1120virtual
setFrequency(float freq, bool calibrate, float band=4)LR1120
setFrequencyDeviation(float freqDev) overrideLR11x0virtual
setIrq(RadioLibIrqFlags_t irq)PhysicalLayer
setIrqAction(void(*func)(void))LR11x0
setIrqFlags(uint32_t irq) overrideLR11x0virtual
setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeed=0x13A)LR11x0
setModem(ModemType_t modem) overrideLR1120virtual
setNodeAddress(uint8_t nodeAddr)LR11x0
setOutputPower(int8_t power) overrideLR1120virtual
setOutputPower(int8_t power, bool forceHighPower)LR1120
setPacketReceivedAction(void(*func)(void)) overrideLR11x0virtual
setPacketSentAction(void(*func)(void)) overrideLR11x0virtual
setPreambleLength(size_t preambleLength) overrideLR11x0virtual
setRegulatorDCDC()LR11x0
setRegulatorLDO()LR11x0
setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])LR11x0
setRxBandwidth(float rxBw)LR11x0
setRxBoostedGainMode(bool en)LR11x0
setSpreadingFactor(uint8_t sf, bool legacy=false)LR11x0
setSyncBits(uint8_t *syncWord, uint8_t bitsLen)LR11x0
setSyncWord(uint32_t syncWord)LR11x0
setSyncWord(uint8_t *syncWord, size_t len) overrideLR11x0virtual
setTCXO(float voltage, uint32_t delay=5000)LR11x0
setWhitening(bool enabled, uint16_t initial=0x01FF)LR11x0
setWiFiScanAction(void(*func)(void))LR11x0
sleep() overrideLR11x0virtual
sleep(bool retainConfig, uint32_t sleepTime)LR11x0
standby() overrideLR11x0virtual
standby(uint8_t mode, bool wakeup=true)LR11x0
PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual
startChannelScan() overrideLR11x0virtual
startChannelScan(const ChannelScanConfig_t &config) overrideLR11x0virtual
startDirect()PhysicalLayer
startReceive() overrideLR11x0virtual
startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)LR11x0virtual
startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual
startTransmit(const char *str, uint8_t addr=0)LR11x0
startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)LR11x0
PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer
startWifiScan(char wifiType, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)LR11x0
transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual
transmit(const char *str, uint8_t addr=0)LR11x0
transmit(const uint8_t *data, size_t len, uint8_t addr=0)LR11x0
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideLR11x0virtual
updateFirmware(const uint32_t *image, size_t size, bool nonvolatile=true)LR11x0
updateGnssAlmanac(uint8_t constellation)LR11x0
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)LR11x0
wifiScan(uint8_t wifiType, uint8_t *count, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)LR11x0
XTALLR11x0
calibrateImageRejection(float freqMin, float freqMax)LR11x0
checkDataRate(DataRate_t dr) overrideLR11x0virtual
checkIrq(RadioLibIrqType_t irq)PhysicalLayer
checkOutputPower(int8_t power, int8_t *clipped) overrideLR1120virtual
checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)LR1120
clearChannelScanAction()PhysicalLayervirtual
clearIrqAction()LR11x0
clearIrqFlags(uint32_t irq) overrideLR11x0virtual
clearPacketReceivedAction() overrideLR11x0virtual
clearPacketSentAction() overrideLR11x0virtual
clearWiFiScanAction()LR11x0
disableAddressFiltering()LR11x0
dropSync()PhysicalLayer
explicitHeader()LR11x0
finishTransmit() overrideLR11x0virtual
fixedPacketLengthMode(uint8_t len=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)LR11x0
forceLDRO(bool enable)LR11x0
getChannelScanResult() overrideLR11x0virtual
getDataRate() constLR11x0
getFreqStep() constPhysicalLayer
getFrequencyError()LR11x0
getGnssAlmanacStatus(LR11x0GnssAlmanacStatus_t *stat)LR11x0
getGnssPosition(LR11x0GnssPosition_t *pos, bool filtered=true)LR11x0
getGnssSatellites(LR11x0GnssSatellite_t *sats, uint8_t numSats)LR11x0
getIrqFlags() overrideLR11x0virtual
getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer
getIrqStatus()LR11x0
getModem(ModemType_t *modem) overrideLR11x0virtual
getPacketLength(bool update=true) overrideLR11x0virtual
getPacketLength(bool update, uint8_t *offset)LR11x0
getRSSI() overrideLR11x0virtual
getSNR() overrideLR11x0virtual
getTimeOnAir(size_t len) overrideLR11x0virtual
getVersionInfo(LR11x0VersionInfo_t *info)LR11x0
getWifiScanResult(LR11x0WifiResult_t *result, uint8_t index, bool brief=false)LR11x0
getWifiScanResultsCount(uint8_t *count)LR11x0
gnssDelayUntilSubframe(LR11x0GnssAlmanacStatus_t *stat, uint8_t constellation)LR11x0
gnssScan(LR11x0GnssResult_t *res=NULL)LR11x0
implicitHeader(size_t len)LR11x0
invertIQ(bool enable) overrideLR11x0virtual
isGnssScanCapable()LR11x0
LR1120(Module *mod)LR1120
LR11x0(Module *mod)LR11x0explicit
MODE_END_OF_TABLE enum valueLR11x0
MODE_GNSS enum valueLR11x0
MODE_RX enum valueLR11x0
MODE_STBY enum valueLR11x0
MODE_TX enum valueLR11x0
MODE_TX_HF enum valueLR11x0
MODE_TX_HP enum valueLR11x0
MODE_WIFI enum valueLR11x0
OpMode_t enum nameLR11x0
PhysicalLayer(float step, size_t maxLen)PhysicalLayer
random(int32_t max)PhysicalLayer
random(int32_t min, int32_t max)PhysicalLayer
randomByte() overrideLR11x0virtual
read(bool drop=true)PhysicalLayer
readBit(uint32_t pin)PhysicalLayervirtual
readData(uint8_t *data, size_t len) overrideLR11x0virtual
readData(uint8_t *data, size_t len)LR11x0
receive(uint8_t *data, size_t len) overrideLR11x0virtual
receive(uint8_t *data, size_t len)LR11x0
receiveDirect() overrideLR11x0virtual
reset()LR11x0
scanChannel() overrideLR11x0virtual
scanChannel(const ChannelScanConfig_t &config) overrideLR11x0virtual
setBandwidth(float bw, bool high=false)LR11x0
setBitRate(float br) overrideLR11x0virtual
setBroadcastAddress(uint8_t broadAddr)LR11x0
setChannelScanAction(void(*func)(void))PhysicalLayervirtual
setCodingRate(uint8_t cr, bool longInterleave=false)LR11x0
setCRC(uint8_t len, uint32_t initial=0x00001D0FUL, uint32_t polynomial=0x00001021UL, bool inverted=true)LR11x0
setDataRate(DataRate_t dr) overrideLR11x0virtual
setDataShaping(uint8_t sh) overrideLR11x0virtual
setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual
setDirectAction(void(*func)(void))PhysicalLayervirtual
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideLR11x0virtual
setFrequency(float freq) overrideLR1120virtual
setFrequency(float freq, bool skipCalibration, float band=4)LR1120
setFrequencyDeviation(float freqDev) overrideLR11x0virtual
setIrq(RadioLibIrqFlags_t irq)PhysicalLayer
setIrqAction(void(*func)(void))LR11x0
setIrqFlags(uint32_t irq) overrideLR11x0virtual
setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeed=0x13A)LR11x0
setModem(ModemType_t modem) overrideLR1120virtual
setNodeAddress(uint8_t nodeAddr)LR11x0
setOutputPower(int8_t power) overrideLR1120virtual
setOutputPower(int8_t power, bool forceHighPower)LR1120
setPacketReceivedAction(void(*func)(void)) overrideLR11x0virtual
setPacketSentAction(void(*func)(void)) overrideLR11x0virtual
setPreambleLength(size_t preambleLength) overrideLR11x0virtual
setRegulatorDCDC()LR11x0
setRegulatorLDO()LR11x0
setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])LR11x0
setRxBandwidth(float rxBw)LR11x0
setRxBoostedGainMode(bool en)LR11x0
setSpreadingFactor(uint8_t sf, bool legacy=false)LR11x0
setSyncBits(uint8_t *syncWord, uint8_t bitsLen)LR11x0
setSyncWord(uint32_t syncWord)LR11x0
setSyncWord(uint8_t *syncWord, size_t len) overrideLR11x0virtual
setTCXO(float voltage, uint32_t delay=5000)LR11x0
setWhitening(bool enabled, uint16_t initial=0x01FF)LR11x0
setWiFiScanAction(void(*func)(void))LR11x0
sleep() overrideLR11x0virtual
sleep(bool retainConfig, uint32_t sleepTime)LR11x0
standby() overrideLR11x0virtual
standby(uint8_t mode, bool wakeup=true)LR11x0
PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual
startChannelScan() overrideLR11x0virtual
startChannelScan(const ChannelScanConfig_t &config) overrideLR11x0virtual
startDirect()PhysicalLayer
startReceive() overrideLR11x0virtual
startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)LR11x0virtual
startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual
startTransmit(const char *str, uint8_t addr=0)LR11x0
startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)LR11x0
PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer
startWifiScan(char wifiType, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)LR11x0
transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual
transmit(const char *str, uint8_t addr=0)LR11x0
transmit(const uint8_t *data, size_t len, uint8_t addr=0)LR11x0
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideLR11x0virtual
updateFirmware(const uint32_t *image, size_t size, bool nonvolatile=true)LR11x0
updateGnssAlmanac(uint8_t constellation)LR11x0
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)LR11x0
wifiScan(uint8_t wifiType, uint8_t *count, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)LR11x0
XTALLR11x0
diff --git a/class_l_r1120.html b/class_l_r1120.html index 78d50968..52219796 100644 --- a/class_l_r1120.html +++ b/class_l_r1120.html @@ -121,11 +121,11 @@ Public Member Functions  Initialization method for LR-FHSS modem.
More...
  int16_t setFrequency (float freq) override - Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will also perform calibrations. NOTE: When switching between sub-GHz and high-frequency bands, after changing the frequency, setOutputPower() must be called in order to set the correct power amplifier! More...
+ Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_LR11X0_CAL_IMG_FREQ_TRIG MHz. NOTE: When switching between sub-GHz and high-frequency bands, after changing the frequency, setOutputPower() must be called in order to set the correct power amplifier! More...
  -int16_t setFrequency (float freq, bool calibrate, float band=4) - Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will also perform calibrations. NOTE: When switching between sub-GHz and high-frequency bands, after changing the frequency, setOutputPower() must be called in order to set the correct power amplifier! More...
-  +int16_t setFrequency (float freq, bool skipCalibration, float band=4) + Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_LR11X0_CAL_IMG_FREQ_TRIG MHz. NOTE: When switching between sub-GHz and high-frequency bands, after changing the frequency, setOutputPower() must be called in order to set the correct power amplifier! More...
+  int16_t setOutputPower (int8_t power) override  Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (low-power PA). More...
  @@ -419,6 +419,9 @@ void int16_t getModem (ModemType_t *modem) override  Get modem currently in use by the radio. More...
  +int16_t calibrateImageRejection (float freqMin, float freqMax) + Perform image rejection calibration for the specified frequency band. WARNING: Use at your own risk! Setting incorrect values may lead to decreased performance. More...
+  int16_t transmit (const char *str, uint8_t addr=0)  C-string transmit method. More...
  @@ -893,7 +896,7 @@ bool  -

Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will also perform calibrations. NOTE: When switching between sub-GHz and high-frequency bands, after changing the frequency, setOutputPower() must be called in order to set the correct power amplifier!

+

Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_LR11X0_CAL_IMG_FREQ_TRIG MHz. NOTE: When switching between sub-GHz and high-frequency bands, after changing the frequency, setOutputPower() must be called in order to set the correct power amplifier!

Parameters
@@ -906,8 +909,8 @@ bool  - + @@ -938,11 +941,11 @@ bool  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
freqCarrier frequency to be set in MHz.
-

◆ setFrequency() [2/2]

+ +

◆ setFrequency() [2/2]

@@ -922,7 +925,7 @@ bool 
bool calibrate, skipCalibration,
-

Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will also perform calibrations. NOTE: When switching between sub-GHz and high-frequency bands, after changing the frequency, setOutputPower() must be called in order to set the correct power amplifier!

+

Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_LR11X0_CAL_IMG_FREQ_TRIG MHz. NOTE: When switching between sub-GHz and high-frequency bands, after changing the frequency, setOutputPower() must be called in order to set the correct power amplifier!

Parameters
- +
freqCarrier frequency to be set in MHz.
calibrateRun image calibration.
skipCalibrationSkip automated image calibration.
bandHalf bandwidth for image calibration. For example, if carrier is 434 MHz and band is set to 4 MHz, then the image will be calibrate for band 430 - 438 MHz. Unused if calibrate is set to false, defaults to 4 MHz
diff --git a/class_l_r1120.js b/class_l_r1120.js index e561905d..dd746544 100644 --- a/class_l_r1120.js +++ b/class_l_r1120.js @@ -7,7 +7,7 @@ var class_l_r1120 = [ "checkOutputPower", "class_l_r1120.html#acf6ea475643c6eba63133641a8681a8f", null ], [ "checkOutputPower", "class_l_r1120.html#a369b667c81e1ec724148b401c5aad79d", null ], [ "setFrequency", "class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb", null ], - [ "setFrequency", "class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2", null ], + [ "setFrequency", "class_l_r1120.html#ac34c2ec79e4a36cf0423acb308538811", null ], [ "setModem", "class_l_r1120.html#a6cd250e0145ed19f2f91ed96a57a825e", null ], [ "setOutputPower", "class_l_r1120.html#a1b1321eb695e4a6b583074bb92c33193", null ], [ "setOutputPower", "class_l_r1120.html#a2e2ea0a2f6d3a8d81e0f2be35848bbc7", null ] diff --git a/class_l_r1121-members.html b/class_l_r1121-members.html index a9881325..f1d61762 100644 --- a/class_l_r1121-members.html +++ b/class_l_r1121-members.html @@ -99,135 +99,136 @@ $(document).ready(function(){initNavTree('class_l_r1121.html',''); initResizable
beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_LR11X0_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_LR11X0_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6)LR1120
LR11x0::beginLRFHSS(uint8_t bw, uint8_t cr, bool narrowGrid, float tcxoVoltage)LR11x0
calculateRxTimeout(RadioLibTime_t timeoutUs) overrideLR11x0virtual
checkDataRate(DataRate_t dr) overrideLR11x0virtual
checkIrq(RadioLibIrqType_t irq)PhysicalLayer
checkOutputPower(int8_t power, int8_t *clipped) overrideLR1120virtual
checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)LR1120
clearChannelScanAction()PhysicalLayervirtual
clearIrqAction()LR11x0
clearIrqFlags(uint32_t irq) overrideLR11x0virtual
clearPacketReceivedAction() overrideLR11x0virtual
clearPacketSentAction() overrideLR11x0virtual
clearWiFiScanAction()LR11x0
disableAddressFiltering()LR11x0
dropSync()PhysicalLayer
explicitHeader()LR11x0
finishTransmit() overrideLR11x0virtual
fixedPacketLengthMode(uint8_t len=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)LR11x0
forceLDRO(bool enable)LR11x0
getChannelScanResult() overrideLR11x0virtual
getDataRate() constLR11x0
getFreqStep() constPhysicalLayer
getFrequencyError()LR11x0
getGnssAlmanacStatus(LR11x0GnssAlmanacStatus_t *stat)LR11x0
getGnssPosition(LR11x0GnssPosition_t *pos, bool filtered=true)LR11x0
getGnssSatellites(LR11x0GnssSatellite_t *sats, uint8_t numSats)LR11x0
getIrqFlags() overrideLR11x0virtual
getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer
getIrqStatus()LR11x0
getModem(ModemType_t *modem) overrideLR11x0virtual
getPacketLength(bool update=true) overrideLR11x0virtual
getPacketLength(bool update, uint8_t *offset)LR11x0
getRSSI() overrideLR11x0virtual
getSNR() overrideLR11x0virtual
getTimeOnAir(size_t len) overrideLR11x0virtual
getVersionInfo(LR11x0VersionInfo_t *info)LR11x0
getWifiScanResult(LR11x0WifiResult_t *result, uint8_t index, bool brief=false)LR11x0
getWifiScanResultsCount(uint8_t *count)LR11x0
gnssDelayUntilSubframe(LR11x0GnssAlmanacStatus_t *stat, uint8_t constellation)LR11x0
gnssScan(LR11x0GnssResult_t *res=NULL)LR11x0
implicitHeader(size_t len)LR11x0
invertIQ(bool enable) overrideLR11x0virtual
isGnssScanCapable()LR11x0
LR1120(Module *mod)LR1120
LR1121(Module *mod)LR1121
LR11x0(Module *mod)LR11x0explicit
MODE_END_OF_TABLE enum valueLR11x0
MODE_GNSS enum valueLR11x0
MODE_RX enum valueLR11x0
MODE_STBY enum valueLR11x0
MODE_TX enum valueLR11x0
MODE_TX_HF enum valueLR11x0
MODE_TX_HP enum valueLR11x0
MODE_WIFI enum valueLR11x0
OpMode_t enum nameLR11x0
PhysicalLayer(float step, size_t maxLen)PhysicalLayer
random(int32_t max)PhysicalLayer
random(int32_t min, int32_t max)PhysicalLayer
randomByte() overrideLR11x0virtual
read(bool drop=true)PhysicalLayer
readBit(uint32_t pin)PhysicalLayervirtual
readData(uint8_t *data, size_t len) overrideLR11x0virtual
readData(uint8_t *data, size_t len)LR11x0
receive(uint8_t *data, size_t len) overrideLR11x0virtual
receive(uint8_t *data, size_t len)LR11x0
receiveDirect() overrideLR11x0virtual
reset()LR11x0
scanChannel() overrideLR11x0virtual
scanChannel(const ChannelScanConfig_t &config) overrideLR11x0virtual
setBandwidth(float bw, bool high=false)LR11x0
setBitRate(float br) overrideLR11x0virtual
setBroadcastAddress(uint8_t broadAddr)LR11x0
setChannelScanAction(void(*func)(void))PhysicalLayervirtual
setCodingRate(uint8_t cr, bool longInterleave=false)LR11x0
setCRC(uint8_t len, uint32_t initial=0x00001D0FUL, uint32_t polynomial=0x00001021UL, bool inverted=true)LR11x0
setDataRate(DataRate_t dr) overrideLR11x0virtual
setDataShaping(uint8_t sh) overrideLR11x0virtual
setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual
setDirectAction(void(*func)(void))PhysicalLayervirtual
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideLR11x0virtual
setFrequency(float freq) overrideLR1120virtual
setFrequency(float freq, bool calibrate, float band=4)LR1120
setFrequencyDeviation(float freqDev) overrideLR11x0virtual
setIrq(RadioLibIrqFlags_t irq)PhysicalLayer
setIrqAction(void(*func)(void))LR11x0
setIrqFlags(uint32_t irq) overrideLR11x0virtual
setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeed=0x13A)LR11x0
setModem(ModemType_t modem) overrideLR1120virtual
setNodeAddress(uint8_t nodeAddr)LR11x0
setOutputPower(int8_t power) overrideLR1120virtual
setOutputPower(int8_t power, bool forceHighPower)LR1120
setPacketReceivedAction(void(*func)(void)) overrideLR11x0virtual
setPacketSentAction(void(*func)(void)) overrideLR11x0virtual
setPreambleLength(size_t preambleLength) overrideLR11x0virtual
setRegulatorDCDC()LR11x0
setRegulatorLDO()LR11x0
setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])LR11x0
setRxBandwidth(float rxBw)LR11x0
setRxBoostedGainMode(bool en)LR11x0
setSpreadingFactor(uint8_t sf, bool legacy=false)LR11x0
setSyncBits(uint8_t *syncWord, uint8_t bitsLen)LR11x0
setSyncWord(uint32_t syncWord)LR11x0
setSyncWord(uint8_t *syncWord, size_t len) overrideLR11x0virtual
setTCXO(float voltage, uint32_t delay=5000)LR11x0
setWhitening(bool enabled, uint16_t initial=0x01FF)LR11x0
setWiFiScanAction(void(*func)(void))LR11x0
sleep() overrideLR11x0virtual
sleep(bool retainConfig, uint32_t sleepTime)LR11x0
standby() overrideLR11x0virtual
standby(uint8_t mode, bool wakeup=true)LR11x0
PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual
startChannelScan() overrideLR11x0virtual
startChannelScan(const ChannelScanConfig_t &config) overrideLR11x0virtual
startDirect()PhysicalLayer
startReceive() overrideLR11x0virtual
startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)LR11x0virtual
startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual
startTransmit(const char *str, uint8_t addr=0)LR11x0
startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)LR11x0
PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer
startWifiScan(char wifiType, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)LR11x0
transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual
transmit(const char *str, uint8_t addr=0)LR11x0
transmit(const uint8_t *data, size_t len, uint8_t addr=0)LR11x0
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideLR11x0virtual
updateFirmware(const uint32_t *image, size_t size, bool nonvolatile=true)LR11x0
updateGnssAlmanac(uint8_t constellation)LR11x0
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)LR11x0
wifiScan(uint8_t wifiType, uint8_t *count, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)LR11x0
XTALLR11x0
calibrateImageRejection(float freqMin, float freqMax)LR11x0
checkDataRate(DataRate_t dr) overrideLR11x0virtual
checkIrq(RadioLibIrqType_t irq)PhysicalLayer
checkOutputPower(int8_t power, int8_t *clipped) overrideLR1120virtual
checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)LR1120
clearChannelScanAction()PhysicalLayervirtual
clearIrqAction()LR11x0
clearIrqFlags(uint32_t irq) overrideLR11x0virtual
clearPacketReceivedAction() overrideLR11x0virtual
clearPacketSentAction() overrideLR11x0virtual
clearWiFiScanAction()LR11x0
disableAddressFiltering()LR11x0
dropSync()PhysicalLayer
explicitHeader()LR11x0
finishTransmit() overrideLR11x0virtual
fixedPacketLengthMode(uint8_t len=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)LR11x0
forceLDRO(bool enable)LR11x0
getChannelScanResult() overrideLR11x0virtual
getDataRate() constLR11x0
getFreqStep() constPhysicalLayer
getFrequencyError()LR11x0
getGnssAlmanacStatus(LR11x0GnssAlmanacStatus_t *stat)LR11x0
getGnssPosition(LR11x0GnssPosition_t *pos, bool filtered=true)LR11x0
getGnssSatellites(LR11x0GnssSatellite_t *sats, uint8_t numSats)LR11x0
getIrqFlags() overrideLR11x0virtual
getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer
getIrqStatus()LR11x0
getModem(ModemType_t *modem) overrideLR11x0virtual
getPacketLength(bool update=true) overrideLR11x0virtual
getPacketLength(bool update, uint8_t *offset)LR11x0
getRSSI() overrideLR11x0virtual
getSNR() overrideLR11x0virtual
getTimeOnAir(size_t len) overrideLR11x0virtual
getVersionInfo(LR11x0VersionInfo_t *info)LR11x0
getWifiScanResult(LR11x0WifiResult_t *result, uint8_t index, bool brief=false)LR11x0
getWifiScanResultsCount(uint8_t *count)LR11x0
gnssDelayUntilSubframe(LR11x0GnssAlmanacStatus_t *stat, uint8_t constellation)LR11x0
gnssScan(LR11x0GnssResult_t *res=NULL)LR11x0
implicitHeader(size_t len)LR11x0
invertIQ(bool enable) overrideLR11x0virtual
isGnssScanCapable()LR11x0
LR1120(Module *mod)LR1120
LR1121(Module *mod)LR1121
LR11x0(Module *mod)LR11x0explicit
MODE_END_OF_TABLE enum valueLR11x0
MODE_GNSS enum valueLR11x0
MODE_RX enum valueLR11x0
MODE_STBY enum valueLR11x0
MODE_TX enum valueLR11x0
MODE_TX_HF enum valueLR11x0
MODE_TX_HP enum valueLR11x0
MODE_WIFI enum valueLR11x0
OpMode_t enum nameLR11x0
PhysicalLayer(float step, size_t maxLen)PhysicalLayer
random(int32_t max)PhysicalLayer
random(int32_t min, int32_t max)PhysicalLayer
randomByte() overrideLR11x0virtual
read(bool drop=true)PhysicalLayer
readBit(uint32_t pin)PhysicalLayervirtual
readData(uint8_t *data, size_t len) overrideLR11x0virtual
readData(uint8_t *data, size_t len)LR11x0
receive(uint8_t *data, size_t len) overrideLR11x0virtual
receive(uint8_t *data, size_t len)LR11x0
receiveDirect() overrideLR11x0virtual
reset()LR11x0
scanChannel() overrideLR11x0virtual
scanChannel(const ChannelScanConfig_t &config) overrideLR11x0virtual
setBandwidth(float bw, bool high=false)LR11x0
setBitRate(float br) overrideLR11x0virtual
setBroadcastAddress(uint8_t broadAddr)LR11x0
setChannelScanAction(void(*func)(void))PhysicalLayervirtual
setCodingRate(uint8_t cr, bool longInterleave=false)LR11x0
setCRC(uint8_t len, uint32_t initial=0x00001D0FUL, uint32_t polynomial=0x00001021UL, bool inverted=true)LR11x0
setDataRate(DataRate_t dr) overrideLR11x0virtual
setDataShaping(uint8_t sh) overrideLR11x0virtual
setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual
setDirectAction(void(*func)(void))PhysicalLayervirtual
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideLR11x0virtual
setFrequency(float freq) overrideLR1120virtual
setFrequency(float freq, bool skipCalibration, float band=4)LR1120
setFrequencyDeviation(float freqDev) overrideLR11x0virtual
setIrq(RadioLibIrqFlags_t irq)PhysicalLayer
setIrqAction(void(*func)(void))LR11x0
setIrqFlags(uint32_t irq) overrideLR11x0virtual
setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeed=0x13A)LR11x0
setModem(ModemType_t modem) overrideLR1120virtual
setNodeAddress(uint8_t nodeAddr)LR11x0
setOutputPower(int8_t power) overrideLR1120virtual
setOutputPower(int8_t power, bool forceHighPower)LR1120
setPacketReceivedAction(void(*func)(void)) overrideLR11x0virtual
setPacketSentAction(void(*func)(void)) overrideLR11x0virtual
setPreambleLength(size_t preambleLength) overrideLR11x0virtual
setRegulatorDCDC()LR11x0
setRegulatorLDO()LR11x0
setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])LR11x0
setRxBandwidth(float rxBw)LR11x0
setRxBoostedGainMode(bool en)LR11x0
setSpreadingFactor(uint8_t sf, bool legacy=false)LR11x0
setSyncBits(uint8_t *syncWord, uint8_t bitsLen)LR11x0
setSyncWord(uint32_t syncWord)LR11x0
setSyncWord(uint8_t *syncWord, size_t len) overrideLR11x0virtual
setTCXO(float voltage, uint32_t delay=5000)LR11x0
setWhitening(bool enabled, uint16_t initial=0x01FF)LR11x0
setWiFiScanAction(void(*func)(void))LR11x0
sleep() overrideLR11x0virtual
sleep(bool retainConfig, uint32_t sleepTime)LR11x0
standby() overrideLR11x0virtual
standby(uint8_t mode, bool wakeup=true)LR11x0
PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual
startChannelScan() overrideLR11x0virtual
startChannelScan(const ChannelScanConfig_t &config) overrideLR11x0virtual
startDirect()PhysicalLayer
startReceive() overrideLR11x0virtual
startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)LR11x0virtual
startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual
startTransmit(const char *str, uint8_t addr=0)LR11x0
startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)LR11x0
PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer
startWifiScan(char wifiType, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)LR11x0
transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual
transmit(const char *str, uint8_t addr=0)LR11x0
transmit(const uint8_t *data, size_t len, uint8_t addr=0)LR11x0
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideLR11x0virtual
updateFirmware(const uint32_t *image, size_t size, bool nonvolatile=true)LR11x0
updateGnssAlmanac(uint8_t constellation)LR11x0
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)LR11x0
wifiScan(uint8_t wifiType, uint8_t *count, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)LR11x0
XTALLR11x0
diff --git a/class_l_r1121.html b/class_l_r1121.html index 740b1c1a..f05ba551 100644 --- a/class_l_r1121.html +++ b/class_l_r1121.html @@ -125,11 +125,11 @@ Public Member Functions  Initialization method for LR-FHSS modem. More...
  int16_t setFrequency (float freq) override - Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will also perform calibrations. NOTE: When switching between sub-GHz and high-frequency bands, after changing the frequency, setOutputPower() must be called in order to set the correct power amplifier! More...
+ Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_LR11X0_CAL_IMG_FREQ_TRIG MHz. NOTE: When switching between sub-GHz and high-frequency bands, after changing the frequency, setOutputPower() must be called in order to set the correct power amplifier! More...
  -int16_t setFrequency (float freq, bool calibrate, float band=4) - Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will also perform calibrations. NOTE: When switching between sub-GHz and high-frequency bands, after changing the frequency, setOutputPower() must be called in order to set the correct power amplifier! More...
-  +int16_t setFrequency (float freq, bool skipCalibration, float band=4) + Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_LR11X0_CAL_IMG_FREQ_TRIG MHz. NOTE: When switching between sub-GHz and high-frequency bands, after changing the frequency, setOutputPower() must be called in order to set the correct power amplifier! More...
+  int16_t setOutputPower (int8_t power) override  Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (low-power PA). More...
  @@ -423,6 +423,9 @@ void int16_t getModem (ModemType_t *modem) override  Get modem currently in use by the radio. More...
  +int16_t calibrateImageRejection (float freqMin, float freqMax) + Perform image rejection calibration for the specified frequency band. WARNING: Use at your own risk! Setting incorrect values may lead to decreased performance. More...
+  int16_t transmit (const char *str, uint8_t addr=0)  C-string transmit method. More...
  diff --git a/class_l_r11x0-members.html b/class_l_r11x0-members.html index 765e4f72..712065ff 100644 --- a/class_l_r11x0-members.html +++ b/class_l_r11x0-members.html @@ -96,130 +96,131 @@ $(document).ready(function(){initNavTree('class_l_r11x0.html',''); initResizable beginGNSS(uint8_t constellations=RADIOLIB_LR11X0_GNSS_CONSTELLATION_GPS|RADIOLIB_LR11X0_GNSS_CONSTELLATION_BEIDOU, float tcxoVoltage=1.6)LR11x0 beginLRFHSS(uint8_t bw, uint8_t cr, bool narrowGrid, float tcxoVoltage)LR11x0 calculateRxTimeout(RadioLibTime_t timeoutUs) overrideLR11x0virtual - checkDataRate(DataRate_t dr) overrideLR11x0virtual - checkIrq(RadioLibIrqType_t irq)PhysicalLayer - checkOutputPower(int8_t power, int8_t *clipped)PhysicalLayervirtual - clearChannelScanAction()PhysicalLayervirtual - clearIrqAction()LR11x0 - clearIrqFlags(uint32_t irq) overrideLR11x0virtual - clearPacketReceivedAction() overrideLR11x0virtual - clearPacketSentAction() overrideLR11x0virtual - clearWiFiScanAction()LR11x0 - disableAddressFiltering()LR11x0 - dropSync()PhysicalLayer - explicitHeader()LR11x0 - finishTransmit() overrideLR11x0virtual - fixedPacketLengthMode(uint8_t len=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)LR11x0 - forceLDRO(bool enable)LR11x0 - getChannelScanResult() overrideLR11x0virtual - getDataRate() constLR11x0 - getFreqStep() constPhysicalLayer - getFrequencyError()LR11x0 - getGnssAlmanacStatus(LR11x0GnssAlmanacStatus_t *stat)LR11x0 - getGnssPosition(LR11x0GnssPosition_t *pos, bool filtered=true)LR11x0 - getGnssSatellites(LR11x0GnssSatellite_t *sats, uint8_t numSats)LR11x0 - getIrqFlags() overrideLR11x0virtual - getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer - getIrqStatus()LR11x0 - getModem(ModemType_t *modem) overrideLR11x0virtual - getPacketLength(bool update=true) overrideLR11x0virtual - getPacketLength(bool update, uint8_t *offset)LR11x0 - getRSSI() overrideLR11x0virtual - getSNR() overrideLR11x0virtual - getTimeOnAir(size_t len) overrideLR11x0virtual - getVersionInfo(LR11x0VersionInfo_t *info)LR11x0 - getWifiScanResult(LR11x0WifiResult_t *result, uint8_t index, bool brief=false)LR11x0 - getWifiScanResultsCount(uint8_t *count)LR11x0 - gnssDelayUntilSubframe(LR11x0GnssAlmanacStatus_t *stat, uint8_t constellation)LR11x0 - gnssScan(LR11x0GnssResult_t *res=NULL)LR11x0 - implicitHeader(size_t len)LR11x0 - invertIQ(bool enable) overrideLR11x0virtual - isGnssScanCapable()LR11x0 - LR11x0(Module *mod)LR11x0explicit - MODE_END_OF_TABLE enum valueLR11x0 - MODE_GNSS enum valueLR11x0 - MODE_RX enum valueLR11x0 - MODE_STBY enum valueLR11x0 - MODE_TX enum valueLR11x0 - MODE_TX_HF enum valueLR11x0 - MODE_TX_HP enum valueLR11x0 - MODE_WIFI enum valueLR11x0 - OpMode_t enum nameLR11x0 - PhysicalLayer(float step, size_t maxLen)PhysicalLayer - random(int32_t max)PhysicalLayer - random(int32_t min, int32_t max)PhysicalLayer - randomByte() overrideLR11x0virtual - read(bool drop=true)PhysicalLayer - readBit(uint32_t pin)PhysicalLayervirtual - readData(uint8_t *data, size_t len) overrideLR11x0virtual - readData(uint8_t *data, size_t len)LR11x0 - receive(uint8_t *data, size_t len) overrideLR11x0virtual - receive(uint8_t *data, size_t len)LR11x0 - receiveDirect() overrideLR11x0virtual - reset()LR11x0 - scanChannel() overrideLR11x0virtual - scanChannel(const ChannelScanConfig_t &config) overrideLR11x0virtual - setBandwidth(float bw, bool high=false)LR11x0 - setBitRate(float br) overrideLR11x0virtual - setBroadcastAddress(uint8_t broadAddr)LR11x0 - setChannelScanAction(void(*func)(void))PhysicalLayervirtual - setCodingRate(uint8_t cr, bool longInterleave=false)LR11x0 - setCRC(uint8_t len, uint32_t initial=0x00001D0FUL, uint32_t polynomial=0x00001021UL, bool inverted=true)LR11x0 - setDataRate(DataRate_t dr) overrideLR11x0virtual - setDataShaping(uint8_t sh) overrideLR11x0virtual - setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual - setDirectAction(void(*func)(void))PhysicalLayervirtual - setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer - setEncoding(uint8_t encoding) overrideLR11x0virtual - setFrequency(float freq)PhysicalLayervirtual - setFrequencyDeviation(float freqDev) overrideLR11x0virtual - setIrq(RadioLibIrqFlags_t irq)PhysicalLayer - setIrqAction(void(*func)(void))LR11x0 - setIrqFlags(uint32_t irq) overrideLR11x0virtual - setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeed=0x13A)LR11x0 - setModem(ModemType_t modem)PhysicalLayervirtual - setNodeAddress(uint8_t nodeAddr)LR11x0 - setOutputPower(int8_t power)PhysicalLayervirtual - setPacketReceivedAction(void(*func)(void)) overrideLR11x0virtual - setPacketSentAction(void(*func)(void)) overrideLR11x0virtual - setPreambleLength(size_t preambleLength) overrideLR11x0virtual - setRegulatorDCDC()LR11x0 - setRegulatorLDO()LR11x0 - setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])LR11x0 - setRxBandwidth(float rxBw)LR11x0 - setRxBoostedGainMode(bool en)LR11x0 - setSpreadingFactor(uint8_t sf, bool legacy=false)LR11x0 - setSyncBits(uint8_t *syncWord, uint8_t bitsLen)LR11x0 - setSyncWord(uint32_t syncWord)LR11x0 - setSyncWord(uint8_t *syncWord, size_t len) overrideLR11x0virtual - setTCXO(float voltage, uint32_t delay=5000)LR11x0 - setWhitening(bool enabled, uint16_t initial=0x01FF)LR11x0 - setWiFiScanAction(void(*func)(void))LR11x0 - sleep() overrideLR11x0virtual - sleep(bool retainConfig, uint32_t sleepTime)LR11x0 - standby() overrideLR11x0virtual - standby(uint8_t mode, bool wakeup=true)LR11x0 - PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual - startChannelScan() overrideLR11x0virtual - startChannelScan(const ChannelScanConfig_t &config) overrideLR11x0virtual - startDirect()PhysicalLayer - startReceive() overrideLR11x0virtual - startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)LR11x0virtual - startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual - startTransmit(const char *str, uint8_t addr=0)LR11x0 - startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)LR11x0 - PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer - startWifiScan(char wifiType, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)LR11x0 - transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual - transmit(const char *str, uint8_t addr=0)LR11x0 - transmit(const uint8_t *data, size_t len, uint8_t addr=0)LR11x0 - PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer - transmitDirect(uint32_t frf=0) overrideLR11x0virtual - updateFirmware(const uint32_t *image, size_t size, bool nonvolatile=true)LR11x0 - updateGnssAlmanac(uint8_t constellation)LR11x0 - variablePacketLengthMode(uint8_t maxLen=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)LR11x0 - wifiScan(uint8_t wifiType, uint8_t *count, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)LR11x0 - XTALLR11x0 + calibrateImageRejection(float freqMin, float freqMax)LR11x0 + checkDataRate(DataRate_t dr) overrideLR11x0virtual + checkIrq(RadioLibIrqType_t irq)PhysicalLayer + checkOutputPower(int8_t power, int8_t *clipped)PhysicalLayervirtual + clearChannelScanAction()PhysicalLayervirtual + clearIrqAction()LR11x0 + clearIrqFlags(uint32_t irq) overrideLR11x0virtual + clearPacketReceivedAction() overrideLR11x0virtual + clearPacketSentAction() overrideLR11x0virtual + clearWiFiScanAction()LR11x0 + disableAddressFiltering()LR11x0 + dropSync()PhysicalLayer + explicitHeader()LR11x0 + finishTransmit() overrideLR11x0virtual + fixedPacketLengthMode(uint8_t len=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)LR11x0 + forceLDRO(bool enable)LR11x0 + getChannelScanResult() overrideLR11x0virtual + getDataRate() constLR11x0 + getFreqStep() constPhysicalLayer + getFrequencyError()LR11x0 + getGnssAlmanacStatus(LR11x0GnssAlmanacStatus_t *stat)LR11x0 + getGnssPosition(LR11x0GnssPosition_t *pos, bool filtered=true)LR11x0 + getGnssSatellites(LR11x0GnssSatellite_t *sats, uint8_t numSats)LR11x0 + getIrqFlags() overrideLR11x0virtual + getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer + getIrqStatus()LR11x0 + getModem(ModemType_t *modem) overrideLR11x0virtual + getPacketLength(bool update=true) overrideLR11x0virtual + getPacketLength(bool update, uint8_t *offset)LR11x0 + getRSSI() overrideLR11x0virtual + getSNR() overrideLR11x0virtual + getTimeOnAir(size_t len) overrideLR11x0virtual + getVersionInfo(LR11x0VersionInfo_t *info)LR11x0 + getWifiScanResult(LR11x0WifiResult_t *result, uint8_t index, bool brief=false)LR11x0 + getWifiScanResultsCount(uint8_t *count)LR11x0 + gnssDelayUntilSubframe(LR11x0GnssAlmanacStatus_t *stat, uint8_t constellation)LR11x0 + gnssScan(LR11x0GnssResult_t *res=NULL)LR11x0 + implicitHeader(size_t len)LR11x0 + invertIQ(bool enable) overrideLR11x0virtual + isGnssScanCapable()LR11x0 + LR11x0(Module *mod)LR11x0explicit + MODE_END_OF_TABLE enum valueLR11x0 + MODE_GNSS enum valueLR11x0 + MODE_RX enum valueLR11x0 + MODE_STBY enum valueLR11x0 + MODE_TX enum valueLR11x0 + MODE_TX_HF enum valueLR11x0 + MODE_TX_HP enum valueLR11x0 + MODE_WIFI enum valueLR11x0 + OpMode_t enum nameLR11x0 + PhysicalLayer(float step, size_t maxLen)PhysicalLayer + random(int32_t max)PhysicalLayer + random(int32_t min, int32_t max)PhysicalLayer + randomByte() overrideLR11x0virtual + read(bool drop=true)PhysicalLayer + readBit(uint32_t pin)PhysicalLayervirtual + readData(uint8_t *data, size_t len) overrideLR11x0virtual + readData(uint8_t *data, size_t len)LR11x0 + receive(uint8_t *data, size_t len) overrideLR11x0virtual + receive(uint8_t *data, size_t len)LR11x0 + receiveDirect() overrideLR11x0virtual + reset()LR11x0 + scanChannel() overrideLR11x0virtual + scanChannel(const ChannelScanConfig_t &config) overrideLR11x0virtual + setBandwidth(float bw, bool high=false)LR11x0 + setBitRate(float br) overrideLR11x0virtual + setBroadcastAddress(uint8_t broadAddr)LR11x0 + setChannelScanAction(void(*func)(void))PhysicalLayervirtual + setCodingRate(uint8_t cr, bool longInterleave=false)LR11x0 + setCRC(uint8_t len, uint32_t initial=0x00001D0FUL, uint32_t polynomial=0x00001021UL, bool inverted=true)LR11x0 + setDataRate(DataRate_t dr) overrideLR11x0virtual + setDataShaping(uint8_t sh) overrideLR11x0virtual + setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual + setDirectAction(void(*func)(void))PhysicalLayervirtual + setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer + setEncoding(uint8_t encoding) overrideLR11x0virtual + setFrequency(float freq)PhysicalLayervirtual + setFrequencyDeviation(float freqDev) overrideLR11x0virtual + setIrq(RadioLibIrqFlags_t irq)PhysicalLayer + setIrqAction(void(*func)(void))LR11x0 + setIrqFlags(uint32_t irq) overrideLR11x0virtual + setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeed=0x13A)LR11x0 + setModem(ModemType_t modem)PhysicalLayervirtual + setNodeAddress(uint8_t nodeAddr)LR11x0 + setOutputPower(int8_t power)PhysicalLayervirtual + setPacketReceivedAction(void(*func)(void)) overrideLR11x0virtual + setPacketSentAction(void(*func)(void)) overrideLR11x0virtual + setPreambleLength(size_t preambleLength) overrideLR11x0virtual + setRegulatorDCDC()LR11x0 + setRegulatorLDO()LR11x0 + setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])LR11x0 + setRxBandwidth(float rxBw)LR11x0 + setRxBoostedGainMode(bool en)LR11x0 + setSpreadingFactor(uint8_t sf, bool legacy=false)LR11x0 + setSyncBits(uint8_t *syncWord, uint8_t bitsLen)LR11x0 + setSyncWord(uint32_t syncWord)LR11x0 + setSyncWord(uint8_t *syncWord, size_t len) overrideLR11x0virtual + setTCXO(float voltage, uint32_t delay=5000)LR11x0 + setWhitening(bool enabled, uint16_t initial=0x01FF)LR11x0 + setWiFiScanAction(void(*func)(void))LR11x0 + sleep() overrideLR11x0virtual + sleep(bool retainConfig, uint32_t sleepTime)LR11x0 + standby() overrideLR11x0virtual + standby(uint8_t mode, bool wakeup=true)LR11x0 + PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual + startChannelScan() overrideLR11x0virtual + startChannelScan(const ChannelScanConfig_t &config) overrideLR11x0virtual + startDirect()PhysicalLayer + startReceive() overrideLR11x0virtual + startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)LR11x0virtual + startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual + startTransmit(const char *str, uint8_t addr=0)LR11x0 + startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)LR11x0 + PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer + startWifiScan(char wifiType, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)LR11x0 + transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideLR11x0virtual + transmit(const char *str, uint8_t addr=0)LR11x0 + transmit(const uint8_t *data, size_t len, uint8_t addr=0)LR11x0 + PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer + transmitDirect(uint32_t frf=0) overrideLR11x0virtual + updateFirmware(const uint32_t *image, size_t size, bool nonvolatile=true)LR11x0 + updateGnssAlmanac(uint8_t constellation)LR11x0 + variablePacketLengthMode(uint8_t maxLen=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)LR11x0 + wifiScan(uint8_t wifiType, uint8_t *count, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)LR11x0 + XTALLR11x0 diff --git a/class_l_r11x0.html b/class_l_r11x0.html index 5045bffa..f37af023 100644 --- a/class_l_r11x0.html +++ b/class_l_r11x0.html @@ -405,6 +405,9 @@ void int16_t getModem (ModemType_t *modem) override  Get modem currently in use by the radio. More...
  +int16_t calibrateImageRejection (float freqMin, float freqMax) + Perform image rejection calibration for the specified frequency band. WARNING: Use at your own risk! Setting incorrect values may lead to decreased performance. More...
+  int16_t transmit (const char *str, uint8_t addr=0)  C-string transmit method. More...
  @@ -859,6 +862,44 @@ bool PhysicalLayer.

+ + + +

◆ calibrateImageRejection()

+ +
+
+ + + + + + + + + + + + + + + + + + +
int16_t LR11x0::calibrateImageRejection (float freqMin,
float freqMax 
)
+
+ +

Perform image rejection calibration for the specified frequency band. WARNING: Use at your own risk! Setting incorrect values may lead to decreased performance.

+
Parameters
+ + + +
freqMinFrequency band lower bound.
freqMaxFrequency band upper bound.
+
+
+
Returns
Status Codes
+
diff --git a/class_l_r11x0.js b/class_l_r11x0.js index 333def46..9db60fed 100644 --- a/class_l_r11x0.js +++ b/class_l_r11x0.js @@ -17,6 +17,7 @@ var class_l_r11x0 = [ "beginGNSS", "class_l_r11x0.html#ad7f31060cbab41ad53ee6fa7126cd17b", null ], [ "beginLRFHSS", "class_l_r11x0.html#a244ee48075d44c7064b454eb9c4afdb8", null ], [ "calculateRxTimeout", "class_l_r11x0.html#a260c7f4ee4739e532ddb465a276205d3", null ], + [ "calibrateImageRejection", "class_l_r11x0.html#adc8fbcfff7cd3b801dcee22e87bc2598", null ], [ "checkDataRate", "class_l_r11x0.html#a4d18ad719be79c083f2b0ce77bbaa448", null ], [ "clearIrqAction", "class_l_r11x0.html#ab167c4dc14e80d19f8b33d68c3f90d98", null ], [ "clearIrqFlags", "class_l_r11x0.html#aa524b0be7b8d125c24319072d6178e74", null ], diff --git a/class_s_t_m32_w_lx-members.html b/class_s_t_m32_w_lx-members.html index 3366da74..b50f3b64 100644 --- a/class_s_t_m32_w_lx-members.html +++ b/class_s_t_m32_w_lx-members.html @@ -98,132 +98,133 @@ $(document).ready(function(){initNavTree('class_s_t_m32_w_lx.html',''); initResi beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_SX126X_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_SX126X_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6, bool useRegulatorLDO=false)SX1262 SX126x::beginLRFHSS(uint8_t bw, uint8_t cr, bool narrowGrid, float tcxoVoltage, bool useRegulatorLDO=false)SX126x calculateRxTimeout(RadioLibTime_t timeoutUs) overrideSX126xvirtual - calibrateImageRejection(float freqMin, float freqMax)SX126x - checkDataRate(DataRate_t dr) overrideSX126xvirtual - checkIrq(RadioLibIrqType_t irq)PhysicalLayer - checkOutputPower(int8_t power, int8_t *clipped) overrideSX1262virtual - clearChannelScanAction() overrideSTM32WLxvirtual - clearDio1Action()STM32WLx - clearIrq(RadioLibIrqFlags_t irq)PhysicalLayer - clearIrqFlags(uint32_t irq) overrideSX126xvirtual - clearPacketReceivedAction() overrideSTM32WLxvirtual - clearPacketSentAction() overrideSTM32WLxvirtual - disableAddressFiltering()SX126x - dropSync()PhysicalLayer - explicitHeader()SX126x - finishTransmit() overrideSX126xvirtual - fixedPacketLengthMode(uint8_t len=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x - forceLDRO(bool enable)SX126x - getChannelScanResult() overrideSX126xvirtual - getCurrentLimit()SX126x - getDataRate() constSX126x - getFreqStep() constPhysicalLayer - getFrequencyError()SX126x - getIrqFlags() overrideSX126xvirtual - getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer - getModem(ModemType_t *modem) overrideSX126xvirtual - getPacketLength(bool update=true) overrideSX126xvirtual - getPacketLength(bool update, uint8_t *offset)SX126x - getRSSI() overrideSX126xvirtual - getRSSI(bool packet)SX126x - getSNR() overrideSX126xvirtual - getTimeOnAir(size_t len) overrideSX126xvirtual - implicitHeader(size_t len)SX126x - invertIQ(bool enable) overrideSX126xvirtual - MODE_END_OF_TABLE enum valueSTM32WLx - MODE_IDLE enum valueSTM32WLx - MODE_RX enum valueSTM32WLx - MODE_TX_HP enum valueSTM32WLx - MODE_TX_LP enum valueSTM32WLx - OpMode_t enum nameSTM32WLx - PhysicalLayer(float step, size_t maxLen)PhysicalLayer - random(int32_t max)PhysicalLayer - random(int32_t min, int32_t max)PhysicalLayer - randomByte() overrideSX126xvirtual - read(bool drop=true)PhysicalLayer - readBit(uint32_t pin) overrideSX126xvirtual - readData(uint8_t *data, size_t len) overrideSX126xvirtual - readData(uint8_t *data, size_t len)SX126x - receive(uint8_t *data, size_t len) overrideSX126xvirtual - receive(uint8_t *data, size_t len)SX126x - receiveDirect() overrideSX126xvirtual - reset(bool verify=true)SX126x - scanChannel() overrideSX126xvirtual - scanChannel(const ChannelScanConfig_t &config) overrideSX126xvirtual - setBandwidth(float bw)SX126x - setBitRate(float br) overrideSX126xvirtual - setBroadcastAddress(uint8_t broadAddr)SX126x - setChannelScanAction(void(*func)(void)) overrideSTM32WLxvirtual - 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 - setDataRate(DataRate_t dr) overrideSX126xvirtual - setDataShaping(uint8_t sh) overrideSX126xvirtual - setDio1Action(void(*func)(void))STM32WLx - setDio2AsRfSwitch(bool enable=true)SX126x - setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual - setDirectAction(void(*func)(void)) overrideSX126xvirtual - setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer - setEncoding(uint8_t encoding) overrideSX126xvirtual - setFrequency(float freq) overrideSX1262virtual - setFrequency(float freq, bool calibrate)SX1262 - setFrequencyDeviation(float freqDev) overrideSX126xvirtual - setIrq(RadioLibIrqFlags_t irq)PhysicalLayer - setIrqFlags(uint32_t irq) overrideSX126xvirtual - setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeqId=0x100)SX126x - setModem(ModemType_t modem) overrideSX1262virtual - setNodeAddress(uint8_t addr)SX126x - setOutputPower(int8_t power) overrideSTM32WLxvirtual - setPacketReceivedAction(void(*func)(void)) overrideSTM32WLxvirtual - setPacketSentAction(void(*func)(void)) overrideSTM32WLxvirtual - setPaConfig(uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)SX126x - setPaRampTime(uint8_t rampTime)SX126x - setPreambleLength(size_t preambleLength) overrideSX126xvirtual - setRegulatorDCDC()SX126x - setRegulatorLDO()SX126x - setRfSwitchPins(uint32_t rxEn, uint32_t txEn)SX126x - setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])STM32WLx - SX1262::setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])SX126x - setRxBandwidth(float rxBw)SX126x - setRxBoostedGainMode(bool rxbgm, bool persist=true)SX126x - setSpreadingFactor(uint8_t sf)SX126x - setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x - setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x - setSyncWord(uint8_t *syncWord, size_t len) overrideSX126xvirtual - setTCXO(float voltage, uint32_t delay=5000)SX126x - setWhitening(bool enabled, uint16_t initial=0x01FF)SX126x - sleep() overrideSX126xvirtual - sleep(bool retainConfig)SX126x - spectralScanAbort()SX126x - spectralScanGetResult(uint16_t *results)SX126x - spectralScanGetStatus()SX126x - spectralScanStart(uint16_t numSamples, uint8_t window=RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval=RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US)SX126x - standby() overrideSX126xvirtual - standby(uint8_t mode, bool wakeup=true)SX126x - PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual - standbyXOSCSX126x - startChannelScan() overrideSX126xvirtual - startChannelScan(const ChannelScanConfig_t &config) overrideSX126xvirtual - startDirect()PhysicalLayer - startReceive() overrideSX126xvirtual - startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0)SX126xvirtual - startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x - startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x - startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual - startTransmit(const char *str, uint8_t addr=0)SX126x - startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x - PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer - STM32WLx(STM32WLx_Module *mod)STM32WLx - SX1262(Module *mod)SX1262 - SX126x(Module *mod)SX126xexplicit - transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual - transmit(const char *str, uint8_t addr=0)SX126x - transmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x - PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer - transmitDirect(uint32_t frf=0) overrideSX126xvirtual - uploadPatch(const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x - variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x - XTALSX126x + calibrateImage(float freq)SX126x + calibrateImageRejection(float freqMin, float freqMax)SX126x + checkDataRate(DataRate_t dr) overrideSX126xvirtual + checkIrq(RadioLibIrqType_t irq)PhysicalLayer + checkOutputPower(int8_t power, int8_t *clipped) overrideSX1262virtual + clearChannelScanAction() overrideSTM32WLxvirtual + clearDio1Action()STM32WLx + clearIrq(RadioLibIrqFlags_t irq)PhysicalLayer + clearIrqFlags(uint32_t irq) overrideSX126xvirtual + clearPacketReceivedAction() overrideSTM32WLxvirtual + clearPacketSentAction() overrideSTM32WLxvirtual + disableAddressFiltering()SX126x + dropSync()PhysicalLayer + explicitHeader()SX126x + finishTransmit() overrideSX126xvirtual + fixedPacketLengthMode(uint8_t len=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x + forceLDRO(bool enable)SX126x + getChannelScanResult() overrideSX126xvirtual + getCurrentLimit()SX126x + getDataRate() constSX126x + getFreqStep() constPhysicalLayer + getFrequencyError()SX126x + getIrqFlags() overrideSX126xvirtual + getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer + getModem(ModemType_t *modem) overrideSX126xvirtual + getPacketLength(bool update=true) overrideSX126xvirtual + getPacketLength(bool update, uint8_t *offset)SX126x + getRSSI() overrideSX126xvirtual + getRSSI(bool packet)SX126x + getSNR() overrideSX126xvirtual + getTimeOnAir(size_t len) overrideSX126xvirtual + implicitHeader(size_t len)SX126x + invertIQ(bool enable) overrideSX126xvirtual + MODE_END_OF_TABLE enum valueSTM32WLx + MODE_IDLE enum valueSTM32WLx + MODE_RX enum valueSTM32WLx + MODE_TX_HP enum valueSTM32WLx + MODE_TX_LP enum valueSTM32WLx + OpMode_t enum nameSTM32WLx + PhysicalLayer(float step, size_t maxLen)PhysicalLayer + random(int32_t max)PhysicalLayer + random(int32_t min, int32_t max)PhysicalLayer + randomByte() overrideSX126xvirtual + read(bool drop=true)PhysicalLayer + readBit(uint32_t pin) overrideSX126xvirtual + readData(uint8_t *data, size_t len) overrideSX126xvirtual + readData(uint8_t *data, size_t len)SX126x + receive(uint8_t *data, size_t len) overrideSX126xvirtual + receive(uint8_t *data, size_t len)SX126x + receiveDirect() overrideSX126xvirtual + reset(bool verify=true)SX126x + scanChannel() overrideSX126xvirtual + scanChannel(const ChannelScanConfig_t &config) overrideSX126xvirtual + setBandwidth(float bw)SX126x + setBitRate(float br) overrideSX126xvirtual + setBroadcastAddress(uint8_t broadAddr)SX126x + setChannelScanAction(void(*func)(void)) overrideSTM32WLxvirtual + 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 + setDataRate(DataRate_t dr) overrideSX126xvirtual + setDataShaping(uint8_t sh) overrideSX126xvirtual + setDio1Action(void(*func)(void))STM32WLx + setDio2AsRfSwitch(bool enable=true)SX126x + setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual + setDirectAction(void(*func)(void)) overrideSX126xvirtual + setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer + setEncoding(uint8_t encoding) overrideSX126xvirtual + setFrequency(float freq) overrideSX1262virtual + setFrequency(float freq, bool skipCalibration)SX1262 + setFrequencyDeviation(float freqDev) overrideSX126xvirtual + setIrq(RadioLibIrqFlags_t irq)PhysicalLayer + setIrqFlags(uint32_t irq) overrideSX126xvirtual + setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeqId=0x100)SX126x + setModem(ModemType_t modem) overrideSX1262virtual + setNodeAddress(uint8_t addr)SX126x + setOutputPower(int8_t power) overrideSTM32WLxvirtual + setPacketReceivedAction(void(*func)(void)) overrideSTM32WLxvirtual + setPacketSentAction(void(*func)(void)) overrideSTM32WLxvirtual + setPaConfig(uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)SX126x + setPaRampTime(uint8_t rampTime)SX126x + setPreambleLength(size_t preambleLength) overrideSX126xvirtual + setRegulatorDCDC()SX126x + setRegulatorLDO()SX126x + setRfSwitchPins(uint32_t rxEn, uint32_t txEn)SX126x + setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])STM32WLx + SX1262::setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])SX126x + setRxBandwidth(float rxBw)SX126x + setRxBoostedGainMode(bool rxbgm, bool persist=true)SX126x + setSpreadingFactor(uint8_t sf)SX126x + setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x + setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x + setSyncWord(uint8_t *syncWord, size_t len) overrideSX126xvirtual + setTCXO(float voltage, uint32_t delay=5000)SX126x + setWhitening(bool enabled, uint16_t initial=0x01FF)SX126x + sleep() overrideSX126xvirtual + sleep(bool retainConfig)SX126x + spectralScanAbort()SX126x + spectralScanGetResult(uint16_t *results)SX126x + spectralScanGetStatus()SX126x + spectralScanStart(uint16_t numSamples, uint8_t window=RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval=RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US)SX126x + standby() overrideSX126xvirtual + standby(uint8_t mode, bool wakeup=true)SX126x + PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual + standbyXOSCSX126x + startChannelScan() overrideSX126xvirtual + startChannelScan(const ChannelScanConfig_t &config) overrideSX126xvirtual + startDirect()PhysicalLayer + startReceive() overrideSX126xvirtual + startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0)SX126xvirtual + startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x + startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x + startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual + startTransmit(const char *str, uint8_t addr=0)SX126x + startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x + PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer + STM32WLx(STM32WLx_Module *mod)STM32WLx + SX1262(Module *mod)SX1262 + SX126x(Module *mod)SX126xexplicit + transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual + transmit(const char *str, uint8_t addr=0)SX126x + transmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x + PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer + transmitDirect(uint32_t frf=0) overrideSX126xvirtual + uploadPatch(const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x + variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x + XTALSX126x diff --git a/class_s_t_m32_w_lx.html b/class_s_t_m32_w_lx.html index bcddee92..2208cf32 100644 --- a/class_s_t_m32_w_lx.html +++ b/class_s_t_m32_w_lx.html @@ -180,11 +180,11 @@ void  Initialization method for LR-FHSS modem. This modem only supports transmission! More...
  int16_t setFrequency (float freq) override - Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. More...
+ Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_SX126X_CAL_IMG_FREQ_TRIG MHz. More...
  -int16_t setFrequency (float freq, bool calibrate) - Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. More...
-  +int16_t setFrequency (float freq, bool skipCalibration) + Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_SX126X_CAL_IMG_FREQ_TRIG_MHZ. More...
+  int16_t checkOutputPower (int8_t power, int8_t *clipped) override  Check if output power is configurable. More...
  @@ -470,6 +470,9 @@ void int16_t setPaConfig (uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)  Set the PA configuration. Allows user to optimize PA for a specific output power and matching network. Any calls to this method must be done after calling begin/beginFSK and/or setOutputPower. WARNING: Use at your own risk! Setting invalid values can and will lead to permanent damage! More...
  +int16_t calibrateImage (float freq) + Perform image rejection calibration for the specified frequency. Will try to use Semtech-defined presets first, and if none of them matches, custom iamge calibration will be attempted using calibrateImageRejection. More...
+  int16_t calibrateImageRejection (float freqMin, float freqMax)  Perform image rejection calibration for the specified frequency band. WARNING: Use at your own risk! Setting incorrect values may lead to decreased performance. More...
  diff --git a/class_s_x1261-members.html b/class_s_x1261-members.html index 96e9593b..10085e49 100644 --- a/class_s_x1261-members.html +++ b/class_s_x1261-members.html @@ -98,125 +98,126 @@ $(document).ready(function(){initNavTree('class_s_x1261.html',''); initResizable beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_SX126X_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_SX126X_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6, bool useRegulatorLDO=false)SX1262 SX126x::beginLRFHSS(uint8_t bw, uint8_t cr, bool narrowGrid, float tcxoVoltage, bool useRegulatorLDO=false)SX126x calculateRxTimeout(RadioLibTime_t timeoutUs) overrideSX126xvirtual - calibrateImageRejection(float freqMin, float freqMax)SX126x - checkDataRate(DataRate_t dr) overrideSX126xvirtual - checkIrq(RadioLibIrqType_t irq)PhysicalLayer - checkOutputPower(int8_t power, int8_t *clipped) overrideSX1261virtual - clearChannelScanAction() overrideSX126xvirtual - clearDio1Action()SX126x - clearIrq(RadioLibIrqFlags_t irq)PhysicalLayer - clearIrqFlags(uint32_t irq) overrideSX126xvirtual - clearPacketReceivedAction() overrideSX126xvirtual - clearPacketSentAction() overrideSX126xvirtual - disableAddressFiltering()SX126x - dropSync()PhysicalLayer - explicitHeader()SX126x - finishTransmit() overrideSX126xvirtual - fixedPacketLengthMode(uint8_t len=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x - forceLDRO(bool enable)SX126x - getChannelScanResult() overrideSX126xvirtual - getCurrentLimit()SX126x - getDataRate() constSX126x - getFreqStep() constPhysicalLayer - getFrequencyError()SX126x - getIrqFlags() overrideSX126xvirtual - getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer - getModem(ModemType_t *modem) overrideSX126xvirtual - getPacketLength(bool update=true) overrideSX126xvirtual - getPacketLength(bool update, uint8_t *offset)SX126x - getRSSI() overrideSX126xvirtual - getRSSI(bool packet)SX126x - getSNR() overrideSX126xvirtual - getTimeOnAir(size_t len) overrideSX126xvirtual - implicitHeader(size_t len)SX126x - invertIQ(bool enable) overrideSX126xvirtual - PhysicalLayer(float step, size_t maxLen)PhysicalLayer - random(int32_t max)PhysicalLayer - random(int32_t min, int32_t max)PhysicalLayer - randomByte() overrideSX126xvirtual - read(bool drop=true)PhysicalLayer - readBit(uint32_t pin) overrideSX126xvirtual - readData(uint8_t *data, size_t len) overrideSX126xvirtual - readData(uint8_t *data, size_t len)SX126x - receive(uint8_t *data, size_t len) overrideSX126xvirtual - receive(uint8_t *data, size_t len)SX126x - receiveDirect() overrideSX126xvirtual - reset(bool verify=true)SX126x - scanChannel() overrideSX126xvirtual - scanChannel(const ChannelScanConfig_t &config) overrideSX126xvirtual - setBandwidth(float bw)SX126x - setBitRate(float br) overrideSX126xvirtual - setBroadcastAddress(uint8_t broadAddr)SX126x - setChannelScanAction(void(*func)(void)) overrideSX126xvirtual - 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 - setDataRate(DataRate_t dr) overrideSX126xvirtual - setDataShaping(uint8_t sh) overrideSX126xvirtual - setDio1Action(void(*func)(void))SX126x - setDio2AsRfSwitch(bool enable=true)SX126x - setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual - setDirectAction(void(*func)(void)) overrideSX126xvirtual - setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer - setEncoding(uint8_t encoding) overrideSX126xvirtual - setFrequency(float freq) overrideSX1262virtual - setFrequency(float freq, bool calibrate)SX1262 - setFrequencyDeviation(float freqDev) overrideSX126xvirtual - setIrq(RadioLibIrqFlags_t irq)PhysicalLayer - setIrqFlags(uint32_t irq) overrideSX126xvirtual - setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeqId=0x100)SX126x - setModem(ModemType_t modem) overrideSX1262virtual - setNodeAddress(uint8_t addr)SX126x - setOutputPower(int8_t power) overrideSX1261virtual - setPacketReceivedAction(void(*func)(void)) overrideSX126xvirtual - setPacketSentAction(void(*func)(void)) overrideSX126xvirtual - setPaConfig(uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)SX126x - setPaRampTime(uint8_t rampTime)SX126x - setPreambleLength(size_t preambleLength) overrideSX126xvirtual - setRegulatorDCDC()SX126x - setRegulatorLDO()SX126x - setRfSwitchPins(uint32_t rxEn, uint32_t txEn)SX126x - setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])SX126x - setRxBandwidth(float rxBw)SX126x - setRxBoostedGainMode(bool rxbgm, bool persist=true)SX126x - setSpreadingFactor(uint8_t sf)SX126x - setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x - setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x - setSyncWord(uint8_t *syncWord, size_t len) overrideSX126xvirtual - setTCXO(float voltage, uint32_t delay=5000)SX126x - setWhitening(bool enabled, uint16_t initial=0x01FF)SX126x - sleep() overrideSX126xvirtual - sleep(bool retainConfig)SX126x - spectralScanAbort()SX126x - spectralScanGetResult(uint16_t *results)SX126x - spectralScanGetStatus()SX126x - spectralScanStart(uint16_t numSamples, uint8_t window=RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval=RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US)SX126x - standby() overrideSX126xvirtual - standby(uint8_t mode, bool wakeup=true)SX126x - PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual - standbyXOSCSX126x - startChannelScan() overrideSX126xvirtual - startChannelScan(const ChannelScanConfig_t &config) overrideSX126xvirtual - startDirect()PhysicalLayer - startReceive() overrideSX126xvirtual - startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0)SX126xvirtual - startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x - startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x - startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual - startTransmit(const char *str, uint8_t addr=0)SX126x - startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x - PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer - SX1261(Module *mod)SX1261 - SX1262(Module *mod)SX1262 - SX126x(Module *mod)SX126xexplicit - transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual - transmit(const char *str, uint8_t addr=0)SX126x - transmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x - PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer - transmitDirect(uint32_t frf=0) overrideSX126xvirtual - uploadPatch(const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x - variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x - XTALSX126x + calibrateImage(float freq)SX126x + calibrateImageRejection(float freqMin, float freqMax)SX126x + checkDataRate(DataRate_t dr) overrideSX126xvirtual + checkIrq(RadioLibIrqType_t irq)PhysicalLayer + checkOutputPower(int8_t power, int8_t *clipped) overrideSX1261virtual + clearChannelScanAction() overrideSX126xvirtual + clearDio1Action()SX126x + clearIrq(RadioLibIrqFlags_t irq)PhysicalLayer + clearIrqFlags(uint32_t irq) overrideSX126xvirtual + clearPacketReceivedAction() overrideSX126xvirtual + clearPacketSentAction() overrideSX126xvirtual + disableAddressFiltering()SX126x + dropSync()PhysicalLayer + explicitHeader()SX126x + finishTransmit() overrideSX126xvirtual + fixedPacketLengthMode(uint8_t len=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x + forceLDRO(bool enable)SX126x + getChannelScanResult() overrideSX126xvirtual + getCurrentLimit()SX126x + getDataRate() constSX126x + getFreqStep() constPhysicalLayer + getFrequencyError()SX126x + getIrqFlags() overrideSX126xvirtual + getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer + getModem(ModemType_t *modem) overrideSX126xvirtual + getPacketLength(bool update=true) overrideSX126xvirtual + getPacketLength(bool update, uint8_t *offset)SX126x + getRSSI() overrideSX126xvirtual + getRSSI(bool packet)SX126x + getSNR() overrideSX126xvirtual + getTimeOnAir(size_t len) overrideSX126xvirtual + implicitHeader(size_t len)SX126x + invertIQ(bool enable) overrideSX126xvirtual + PhysicalLayer(float step, size_t maxLen)PhysicalLayer + random(int32_t max)PhysicalLayer + random(int32_t min, int32_t max)PhysicalLayer + randomByte() overrideSX126xvirtual + read(bool drop=true)PhysicalLayer + readBit(uint32_t pin) overrideSX126xvirtual + readData(uint8_t *data, size_t len) overrideSX126xvirtual + readData(uint8_t *data, size_t len)SX126x + receive(uint8_t *data, size_t len) overrideSX126xvirtual + receive(uint8_t *data, size_t len)SX126x + receiveDirect() overrideSX126xvirtual + reset(bool verify=true)SX126x + scanChannel() overrideSX126xvirtual + scanChannel(const ChannelScanConfig_t &config) overrideSX126xvirtual + setBandwidth(float bw)SX126x + setBitRate(float br) overrideSX126xvirtual + setBroadcastAddress(uint8_t broadAddr)SX126x + setChannelScanAction(void(*func)(void)) overrideSX126xvirtual + 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 + setDataRate(DataRate_t dr) overrideSX126xvirtual + setDataShaping(uint8_t sh) overrideSX126xvirtual + setDio1Action(void(*func)(void))SX126x + setDio2AsRfSwitch(bool enable=true)SX126x + setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual + setDirectAction(void(*func)(void)) overrideSX126xvirtual + setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer + setEncoding(uint8_t encoding) overrideSX126xvirtual + setFrequency(float freq) overrideSX1262virtual + setFrequency(float freq, bool skipCalibration)SX1262 + setFrequencyDeviation(float freqDev) overrideSX126xvirtual + setIrq(RadioLibIrqFlags_t irq)PhysicalLayer + setIrqFlags(uint32_t irq) overrideSX126xvirtual + setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeqId=0x100)SX126x + setModem(ModemType_t modem) overrideSX1262virtual + setNodeAddress(uint8_t addr)SX126x + setOutputPower(int8_t power) overrideSX1261virtual + setPacketReceivedAction(void(*func)(void)) overrideSX126xvirtual + setPacketSentAction(void(*func)(void)) overrideSX126xvirtual + setPaConfig(uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)SX126x + setPaRampTime(uint8_t rampTime)SX126x + setPreambleLength(size_t preambleLength) overrideSX126xvirtual + setRegulatorDCDC()SX126x + setRegulatorLDO()SX126x + setRfSwitchPins(uint32_t rxEn, uint32_t txEn)SX126x + setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])SX126x + setRxBandwidth(float rxBw)SX126x + setRxBoostedGainMode(bool rxbgm, bool persist=true)SX126x + setSpreadingFactor(uint8_t sf)SX126x + setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x + setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x + setSyncWord(uint8_t *syncWord, size_t len) overrideSX126xvirtual + setTCXO(float voltage, uint32_t delay=5000)SX126x + setWhitening(bool enabled, uint16_t initial=0x01FF)SX126x + sleep() overrideSX126xvirtual + sleep(bool retainConfig)SX126x + spectralScanAbort()SX126x + spectralScanGetResult(uint16_t *results)SX126x + spectralScanGetStatus()SX126x + spectralScanStart(uint16_t numSamples, uint8_t window=RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval=RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US)SX126x + standby() overrideSX126xvirtual + standby(uint8_t mode, bool wakeup=true)SX126x + PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual + standbyXOSCSX126x + startChannelScan() overrideSX126xvirtual + startChannelScan(const ChannelScanConfig_t &config) overrideSX126xvirtual + startDirect()PhysicalLayer + startReceive() overrideSX126xvirtual + startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0)SX126xvirtual + startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x + startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x + startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual + startTransmit(const char *str, uint8_t addr=0)SX126x + startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x + PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer + SX1261(Module *mod)SX1261 + SX1262(Module *mod)SX1262 + SX126x(Module *mod)SX126xexplicit + transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual + transmit(const char *str, uint8_t addr=0)SX126x + transmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x + PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer + transmitDirect(uint32_t frf=0) overrideSX126xvirtual + uploadPatch(const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x + variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x + XTALSX126x diff --git a/class_s_x1261.html b/class_s_x1261.html index 443bf999..e1c77713 100644 --- a/class_s_x1261.html +++ b/class_s_x1261.html @@ -131,11 +131,11 @@ Public Member Functions  Initialization method for LR-FHSS modem. This modem only supports transmission! More...
  int16_t setFrequency (float freq) override - Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. More...
+ Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_SX126X_CAL_IMG_FREQ_TRIG MHz. More...
  -int16_t setFrequency (float freq, bool calibrate) - Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. More...
-  +int16_t setFrequency (float freq, bool skipCalibration) + Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_SX126X_CAL_IMG_FREQ_TRIG_MHZ. More...
+  int16_t checkOutputPower (int8_t power, int8_t *clipped) override  Check if output power is configurable. More...
  @@ -421,6 +421,9 @@ void int16_t setPaConfig (uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)  Set the PA configuration. Allows user to optimize PA for a specific output power and matching network. Any calls to this method must be done after calling begin/beginFSK and/or setOutputPower. WARNING: Use at your own risk! Setting invalid values can and will lead to permanent damage! More...
  +int16_t calibrateImage (float freq) + Perform image rejection calibration for the specified frequency. Will try to use Semtech-defined presets first, and if none of them matches, custom iamge calibration will be attempted using calibrateImageRejection. More...
+  int16_t calibrateImageRejection (float freqMin, float freqMax)  Perform image rejection calibration for the specified frequency band. WARNING: Use at your own risk! Setting incorrect values may lead to decreased performance. More...
  diff --git a/class_s_x1262-members.html b/class_s_x1262-members.html index ff18e20b..c696718a 100644 --- a/class_s_x1262-members.html +++ b/class_s_x1262-members.html @@ -98,124 +98,125 @@ $(document).ready(function(){initNavTree('class_s_x1262.html',''); initResizable beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_SX126X_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_SX126X_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6, bool useRegulatorLDO=false)SX1262 SX126x::beginLRFHSS(uint8_t bw, uint8_t cr, bool narrowGrid, float tcxoVoltage, bool useRegulatorLDO=false)SX126x calculateRxTimeout(RadioLibTime_t timeoutUs) overrideSX126xvirtual - calibrateImageRejection(float freqMin, float freqMax)SX126x - checkDataRate(DataRate_t dr) overrideSX126xvirtual - checkIrq(RadioLibIrqType_t irq)PhysicalLayer - checkOutputPower(int8_t power, int8_t *clipped) overrideSX1262virtual - clearChannelScanAction() overrideSX126xvirtual - clearDio1Action()SX126x - clearIrq(RadioLibIrqFlags_t irq)PhysicalLayer - clearIrqFlags(uint32_t irq) overrideSX126xvirtual - clearPacketReceivedAction() overrideSX126xvirtual - clearPacketSentAction() overrideSX126xvirtual - disableAddressFiltering()SX126x - dropSync()PhysicalLayer - explicitHeader()SX126x - finishTransmit() overrideSX126xvirtual - fixedPacketLengthMode(uint8_t len=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x - forceLDRO(bool enable)SX126x - getChannelScanResult() overrideSX126xvirtual - getCurrentLimit()SX126x - getDataRate() constSX126x - getFreqStep() constPhysicalLayer - getFrequencyError()SX126x - getIrqFlags() overrideSX126xvirtual - getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer - getModem(ModemType_t *modem) overrideSX126xvirtual - getPacketLength(bool update=true) overrideSX126xvirtual - getPacketLength(bool update, uint8_t *offset)SX126x - getRSSI() overrideSX126xvirtual - getRSSI(bool packet)SX126x - getSNR() overrideSX126xvirtual - getTimeOnAir(size_t len) overrideSX126xvirtual - implicitHeader(size_t len)SX126x - invertIQ(bool enable) overrideSX126xvirtual - PhysicalLayer(float step, size_t maxLen)PhysicalLayer - random(int32_t max)PhysicalLayer - random(int32_t min, int32_t max)PhysicalLayer - randomByte() overrideSX126xvirtual - read(bool drop=true)PhysicalLayer - readBit(uint32_t pin) overrideSX126xvirtual - readData(uint8_t *data, size_t len) overrideSX126xvirtual - readData(uint8_t *data, size_t len)SX126x - receive(uint8_t *data, size_t len) overrideSX126xvirtual - receive(uint8_t *data, size_t len)SX126x - receiveDirect() overrideSX126xvirtual - reset(bool verify=true)SX126x - scanChannel() overrideSX126xvirtual - scanChannel(const ChannelScanConfig_t &config) overrideSX126xvirtual - setBandwidth(float bw)SX126x - setBitRate(float br) overrideSX126xvirtual - setBroadcastAddress(uint8_t broadAddr)SX126x - setChannelScanAction(void(*func)(void)) overrideSX126xvirtual - 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 - setDataRate(DataRate_t dr) overrideSX126xvirtual - setDataShaping(uint8_t sh) overrideSX126xvirtual - setDio1Action(void(*func)(void))SX126x - setDio2AsRfSwitch(bool enable=true)SX126x - setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual - setDirectAction(void(*func)(void)) overrideSX126xvirtual - setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer - setEncoding(uint8_t encoding) overrideSX126xvirtual - setFrequency(float freq) overrideSX1262virtual - setFrequency(float freq, bool calibrate)SX1262 - setFrequencyDeviation(float freqDev) overrideSX126xvirtual - setIrq(RadioLibIrqFlags_t irq)PhysicalLayer - setIrqFlags(uint32_t irq) overrideSX126xvirtual - setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeqId=0x100)SX126x - setModem(ModemType_t modem) overrideSX1262virtual - setNodeAddress(uint8_t addr)SX126x - setOutputPower(int8_t power) overrideSX1262virtual - setPacketReceivedAction(void(*func)(void)) overrideSX126xvirtual - setPacketSentAction(void(*func)(void)) overrideSX126xvirtual - setPaConfig(uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)SX126x - setPaRampTime(uint8_t rampTime)SX126x - setPreambleLength(size_t preambleLength) overrideSX126xvirtual - setRegulatorDCDC()SX126x - setRegulatorLDO()SX126x - setRfSwitchPins(uint32_t rxEn, uint32_t txEn)SX126x - setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])SX126x - setRxBandwidth(float rxBw)SX126x - setRxBoostedGainMode(bool rxbgm, bool persist=true)SX126x - setSpreadingFactor(uint8_t sf)SX126x - setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x - setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x - setSyncWord(uint8_t *syncWord, size_t len) overrideSX126xvirtual - setTCXO(float voltage, uint32_t delay=5000)SX126x - setWhitening(bool enabled, uint16_t initial=0x01FF)SX126x - sleep() overrideSX126xvirtual - sleep(bool retainConfig)SX126x - spectralScanAbort()SX126x - spectralScanGetResult(uint16_t *results)SX126x - spectralScanGetStatus()SX126x - spectralScanStart(uint16_t numSamples, uint8_t window=RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval=RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US)SX126x - standby() overrideSX126xvirtual - standby(uint8_t mode, bool wakeup=true)SX126x - PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual - standbyXOSCSX126x - startChannelScan() overrideSX126xvirtual - startChannelScan(const ChannelScanConfig_t &config) overrideSX126xvirtual - startDirect()PhysicalLayer - startReceive() overrideSX126xvirtual - startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0)SX126xvirtual - startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x - startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x - startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual - startTransmit(const char *str, uint8_t addr=0)SX126x - startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x - PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer - SX1262(Module *mod)SX1262 - SX126x(Module *mod)SX126xexplicit - transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual - transmit(const char *str, uint8_t addr=0)SX126x - transmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x - PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer - transmitDirect(uint32_t frf=0) overrideSX126xvirtual - uploadPatch(const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x - variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x - XTALSX126x + calibrateImage(float freq)SX126x + calibrateImageRejection(float freqMin, float freqMax)SX126x + checkDataRate(DataRate_t dr) overrideSX126xvirtual + checkIrq(RadioLibIrqType_t irq)PhysicalLayer + checkOutputPower(int8_t power, int8_t *clipped) overrideSX1262virtual + clearChannelScanAction() overrideSX126xvirtual + clearDio1Action()SX126x + clearIrq(RadioLibIrqFlags_t irq)PhysicalLayer + clearIrqFlags(uint32_t irq) overrideSX126xvirtual + clearPacketReceivedAction() overrideSX126xvirtual + clearPacketSentAction() overrideSX126xvirtual + disableAddressFiltering()SX126x + dropSync()PhysicalLayer + explicitHeader()SX126x + finishTransmit() overrideSX126xvirtual + fixedPacketLengthMode(uint8_t len=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x + forceLDRO(bool enable)SX126x + getChannelScanResult() overrideSX126xvirtual + getCurrentLimit()SX126x + getDataRate() constSX126x + getFreqStep() constPhysicalLayer + getFrequencyError()SX126x + getIrqFlags() overrideSX126xvirtual + getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer + getModem(ModemType_t *modem) overrideSX126xvirtual + getPacketLength(bool update=true) overrideSX126xvirtual + getPacketLength(bool update, uint8_t *offset)SX126x + getRSSI() overrideSX126xvirtual + getRSSI(bool packet)SX126x + getSNR() overrideSX126xvirtual + getTimeOnAir(size_t len) overrideSX126xvirtual + implicitHeader(size_t len)SX126x + invertIQ(bool enable) overrideSX126xvirtual + PhysicalLayer(float step, size_t maxLen)PhysicalLayer + random(int32_t max)PhysicalLayer + random(int32_t min, int32_t max)PhysicalLayer + randomByte() overrideSX126xvirtual + read(bool drop=true)PhysicalLayer + readBit(uint32_t pin) overrideSX126xvirtual + readData(uint8_t *data, size_t len) overrideSX126xvirtual + readData(uint8_t *data, size_t len)SX126x + receive(uint8_t *data, size_t len) overrideSX126xvirtual + receive(uint8_t *data, size_t len)SX126x + receiveDirect() overrideSX126xvirtual + reset(bool verify=true)SX126x + scanChannel() overrideSX126xvirtual + scanChannel(const ChannelScanConfig_t &config) overrideSX126xvirtual + setBandwidth(float bw)SX126x + setBitRate(float br) overrideSX126xvirtual + setBroadcastAddress(uint8_t broadAddr)SX126x + setChannelScanAction(void(*func)(void)) overrideSX126xvirtual + 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 + setDataRate(DataRate_t dr) overrideSX126xvirtual + setDataShaping(uint8_t sh) overrideSX126xvirtual + setDio1Action(void(*func)(void))SX126x + setDio2AsRfSwitch(bool enable=true)SX126x + setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual + setDirectAction(void(*func)(void)) overrideSX126xvirtual + setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer + setEncoding(uint8_t encoding) overrideSX126xvirtual + setFrequency(float freq) overrideSX1262virtual + setFrequency(float freq, bool skipCalibration)SX1262 + setFrequencyDeviation(float freqDev) overrideSX126xvirtual + setIrq(RadioLibIrqFlags_t irq)PhysicalLayer + setIrqFlags(uint32_t irq) overrideSX126xvirtual + setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeqId=0x100)SX126x + setModem(ModemType_t modem) overrideSX1262virtual + setNodeAddress(uint8_t addr)SX126x + setOutputPower(int8_t power) overrideSX1262virtual + setPacketReceivedAction(void(*func)(void)) overrideSX126xvirtual + setPacketSentAction(void(*func)(void)) overrideSX126xvirtual + setPaConfig(uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)SX126x + setPaRampTime(uint8_t rampTime)SX126x + setPreambleLength(size_t preambleLength) overrideSX126xvirtual + setRegulatorDCDC()SX126x + setRegulatorLDO()SX126x + setRfSwitchPins(uint32_t rxEn, uint32_t txEn)SX126x + setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])SX126x + setRxBandwidth(float rxBw)SX126x + setRxBoostedGainMode(bool rxbgm, bool persist=true)SX126x + setSpreadingFactor(uint8_t sf)SX126x + setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x + setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x + setSyncWord(uint8_t *syncWord, size_t len) overrideSX126xvirtual + setTCXO(float voltage, uint32_t delay=5000)SX126x + setWhitening(bool enabled, uint16_t initial=0x01FF)SX126x + sleep() overrideSX126xvirtual + sleep(bool retainConfig)SX126x + spectralScanAbort()SX126x + spectralScanGetResult(uint16_t *results)SX126x + spectralScanGetStatus()SX126x + spectralScanStart(uint16_t numSamples, uint8_t window=RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval=RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US)SX126x + standby() overrideSX126xvirtual + standby(uint8_t mode, bool wakeup=true)SX126x + PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual + standbyXOSCSX126x + startChannelScan() overrideSX126xvirtual + startChannelScan(const ChannelScanConfig_t &config) overrideSX126xvirtual + startDirect()PhysicalLayer + startReceive() overrideSX126xvirtual + startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0)SX126xvirtual + startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x + startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x + startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual + startTransmit(const char *str, uint8_t addr=0)SX126x + startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x + PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer + SX1262(Module *mod)SX1262 + SX126x(Module *mod)SX126xexplicit + transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual + transmit(const char *str, uint8_t addr=0)SX126x + transmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x + PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer + transmitDirect(uint32_t frf=0) overrideSX126xvirtual + uploadPatch(const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x + variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x + XTALSX126x diff --git a/class_s_x1262.html b/class_s_x1262.html index d5bfd111..7b21bfa8 100644 --- a/class_s_x1262.html +++ b/class_s_x1262.html @@ -123,11 +123,11 @@ Public Member Functions  Initialization method for LR-FHSS modem. This modem only supports transmission! More...
  int16_t setFrequency (float freq) override - Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. More...
+ Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_SX126X_CAL_IMG_FREQ_TRIG MHz. More...
  -int16_t setFrequency (float freq, bool calibrate) - Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. More...
-  +int16_t setFrequency (float freq, bool skipCalibration) + Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_SX126X_CAL_IMG_FREQ_TRIG_MHZ. More...
+  virtual int16_t setOutputPower (int8_t power) override  Sets output power. Allowed values are in range from -9 to 22 dBm. This method is virtual to allow override from the SX1261 class. More...
  @@ -416,6 +416,9 @@ void int16_t setPaConfig (uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)  Set the PA configuration. Allows user to optimize PA for a specific output power and matching network. Any calls to this method must be done after calling begin/beginFSK and/or setOutputPower. WARNING: Use at your own risk! Setting invalid values can and will lead to permanent damage! More...
  +int16_t calibrateImage (float freq) + Perform image rejection calibration for the specified frequency. Will try to use Semtech-defined presets first, and if none of them matches, custom iamge calibration will be attempted using calibrateImageRejection. More...
+  int16_t calibrateImageRejection (float freqMin, float freqMax)  Perform image rejection calibration for the specified frequency band. WARNING: Use at your own risk! Setting incorrect values may lead to decreased performance. More...
  @@ -848,7 +851,7 @@ bool  -

Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz.

+

Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_SX126X_CAL_IMG_FREQ_TRIG MHz.

Parameters
@@ -861,8 +864,8 @@ bool  - + @@ -887,11 +890,11 @@ bool  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
freqCarrier frequency to be set in MHz.
-

◆ setFrequency() [2/2]

+ +

◆ setFrequency() [2/2]

@@ -877,7 +880,7 @@ bool 
bool calibrate skipCalibration 
-

Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz.

+

Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_SX126X_CAL_IMG_FREQ_TRIG_MHZ.

Parameters
- +
freqCarrier frequency to be set in MHz.
calibrateRun image calibration.
skipCalibrationSkip automated image calibration.
diff --git a/class_s_x1262.js b/class_s_x1262.js index d08eccff..9ca021aa 100644 --- a/class_s_x1262.js +++ b/class_s_x1262.js @@ -6,7 +6,7 @@ var class_s_x1262 = [ "beginLRFHSS", "class_s_x1262.html#aeeea8315c04afccc8cae8ec0dba2e426", null ], [ "checkOutputPower", "class_s_x1262.html#a33c304c19634a905c7318d9ca88f4e93", null ], [ "setFrequency", "class_s_x1262.html#a2122feee1a3bffaaa20e85b24dc8a899", null ], - [ "setFrequency", "class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6", null ], + [ "setFrequency", "class_s_x1262.html#a87e496bf7f1ac2857e3f67438ea754db", null ], [ "setModem", "class_s_x1262.html#a7cdbfc39c779b3846aa5fd04d50d3eb8", null ], [ "setOutputPower", "class_s_x1262.html#aa455a7f0e69abdcca55cf35388d9dc52", null ] ]; \ No newline at end of file diff --git a/class_s_x1268-members.html b/class_s_x1268-members.html index 957ab58e..eb463815 100644 --- a/class_s_x1268-members.html +++ b/class_s_x1268-members.html @@ -98,124 +98,125 @@ $(document).ready(function(){initNavTree('class_s_x1268.html',''); initResizable
beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_SX126X_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_SX126X_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6, bool useRegulatorLDO=false)SX1268
SX126x::beginLRFHSS(uint8_t bw, uint8_t cr, bool narrowGrid, float tcxoVoltage, bool useRegulatorLDO=false)SX126x
calculateRxTimeout(RadioLibTime_t timeoutUs) overrideSX126xvirtual
calibrateImageRejection(float freqMin, float freqMax)SX126x
checkDataRate(DataRate_t dr) overrideSX126xvirtual
checkIrq(RadioLibIrqType_t irq)PhysicalLayer
checkOutputPower(int8_t power, int8_t *clipped) overrideSX1268virtual
clearChannelScanAction() overrideSX126xvirtual
clearDio1Action()SX126x
clearIrq(RadioLibIrqFlags_t irq)PhysicalLayer
clearIrqFlags(uint32_t irq) overrideSX126xvirtual
clearPacketReceivedAction() overrideSX126xvirtual
clearPacketSentAction() overrideSX126xvirtual
disableAddressFiltering()SX126x
dropSync()PhysicalLayer
explicitHeader()SX126x
finishTransmit() overrideSX126xvirtual
fixedPacketLengthMode(uint8_t len=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
forceLDRO(bool enable)SX126x
getChannelScanResult() overrideSX126xvirtual
getCurrentLimit()SX126x
getDataRate() constSX126x
getFreqStep() constPhysicalLayer
getFrequencyError()SX126x
getIrqFlags() overrideSX126xvirtual
getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer
getModem(ModemType_t *modem) overrideSX126xvirtual
getPacketLength(bool update=true) overrideSX126xvirtual
getPacketLength(bool update, uint8_t *offset)SX126x
getRSSI() overrideSX126xvirtual
getRSSI(bool packet)SX126x
getSNR() overrideSX126xvirtual
getTimeOnAir(size_t len) overrideSX126xvirtual
implicitHeader(size_t len)SX126x
invertIQ(bool enable) overrideSX126xvirtual
PhysicalLayer(float step, size_t maxLen)PhysicalLayer
random(int32_t max)PhysicalLayer
random(int32_t min, int32_t max)PhysicalLayer
randomByte() overrideSX126xvirtual
read(bool drop=true)PhysicalLayer
readBit(uint32_t pin) overrideSX126xvirtual
readData(uint8_t *data, size_t len) overrideSX126xvirtual
readData(uint8_t *data, size_t len)SX126x
receive(uint8_t *data, size_t len) overrideSX126xvirtual
receive(uint8_t *data, size_t len)SX126x
receiveDirect() overrideSX126xvirtual
reset(bool verify=true)SX126x
scanChannel() overrideSX126xvirtual
scanChannel(const ChannelScanConfig_t &config) overrideSX126xvirtual
setBandwidth(float bw)SX126x
setBitRate(float br) overrideSX126xvirtual
setBroadcastAddress(uint8_t broadAddr)SX126x
setChannelScanAction(void(*func)(void)) overrideSX126xvirtual
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
setDataRate(DataRate_t dr) overrideSX126xvirtual
setDataShaping(uint8_t sh) overrideSX126xvirtual
setDio1Action(void(*func)(void))SX126x
setDio2AsRfSwitch(bool enable=true)SX126x
setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual
setDirectAction(void(*func)(void)) overrideSX126xvirtual
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideSX126xvirtual
setFrequency(float freq) overrideSX1268virtual
setFrequency(float freq, bool calibrate)SX1268
setFrequencyDeviation(float freqDev) overrideSX126xvirtual
setIrq(RadioLibIrqFlags_t irq)PhysicalLayer
setIrqFlags(uint32_t irq) overrideSX126xvirtual
setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeqId=0x100)SX126x
setModem(ModemType_t modem) overrideSX1268virtual
setNodeAddress(uint8_t addr)SX126x
setOutputPower(int8_t power) overrideSX1268virtual
setPacketReceivedAction(void(*func)(void)) overrideSX126xvirtual
setPacketSentAction(void(*func)(void)) overrideSX126xvirtual
setPaConfig(uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)SX126x
setPaRampTime(uint8_t rampTime)SX126x
setPreambleLength(size_t preambleLength) overrideSX126xvirtual
setRegulatorDCDC()SX126x
setRegulatorLDO()SX126x
setRfSwitchPins(uint32_t rxEn, uint32_t txEn)SX126x
setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])SX126x
setRxBandwidth(float rxBw)SX126x
setRxBoostedGainMode(bool rxbgm, bool persist=true)SX126x
setSpreadingFactor(uint8_t sf)SX126x
setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x
setSyncWord(uint8_t *syncWord, size_t len) overrideSX126xvirtual
setTCXO(float voltage, uint32_t delay=5000)SX126x
setWhitening(bool enabled, uint16_t initial=0x01FF)SX126x
sleep() overrideSX126xvirtual
sleep(bool retainConfig)SX126x
spectralScanAbort()SX126x
spectralScanGetResult(uint16_t *results)SX126x
spectralScanGetStatus()SX126x
spectralScanStart(uint16_t numSamples, uint8_t window=RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval=RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US)SX126x
standby() overrideSX126xvirtual
standby(uint8_t mode, bool wakeup=true)SX126x
PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual
standbyXOSCSX126x
startChannelScan() overrideSX126xvirtual
startChannelScan(const ChannelScanConfig_t &config) overrideSX126xvirtual
startDirect()PhysicalLayer
startReceive() overrideSX126xvirtual
startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0)SX126xvirtual
startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x
startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x
startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual
startTransmit(const char *str, uint8_t addr=0)SX126x
startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x
PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer
SX1268(Module *mod)SX1268
SX126x(Module *mod)SX126xexplicit
transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual
transmit(const char *str, uint8_t addr=0)SX126x
transmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX126xvirtual
uploadPatch(const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
XTALSX126x
calibrateImage(float freq)SX126x
calibrateImageRejection(float freqMin, float freqMax)SX126x
checkDataRate(DataRate_t dr) overrideSX126xvirtual
checkIrq(RadioLibIrqType_t irq)PhysicalLayer
checkOutputPower(int8_t power, int8_t *clipped) overrideSX1268virtual
clearChannelScanAction() overrideSX126xvirtual
clearDio1Action()SX126x
clearIrq(RadioLibIrqFlags_t irq)PhysicalLayer
clearIrqFlags(uint32_t irq) overrideSX126xvirtual
clearPacketReceivedAction() overrideSX126xvirtual
clearPacketSentAction() overrideSX126xvirtual
disableAddressFiltering()SX126x
dropSync()PhysicalLayer
explicitHeader()SX126x
finishTransmit() overrideSX126xvirtual
fixedPacketLengthMode(uint8_t len=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
forceLDRO(bool enable)SX126x
getChannelScanResult() overrideSX126xvirtual
getCurrentLimit()SX126x
getDataRate() constSX126x
getFreqStep() constPhysicalLayer
getFrequencyError()SX126x
getIrqFlags() overrideSX126xvirtual
getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer
getModem(ModemType_t *modem) overrideSX126xvirtual
getPacketLength(bool update=true) overrideSX126xvirtual
getPacketLength(bool update, uint8_t *offset)SX126x
getRSSI() overrideSX126xvirtual
getRSSI(bool packet)SX126x
getSNR() overrideSX126xvirtual
getTimeOnAir(size_t len) overrideSX126xvirtual
implicitHeader(size_t len)SX126x
invertIQ(bool enable) overrideSX126xvirtual
PhysicalLayer(float step, size_t maxLen)PhysicalLayer
random(int32_t max)PhysicalLayer
random(int32_t min, int32_t max)PhysicalLayer
randomByte() overrideSX126xvirtual
read(bool drop=true)PhysicalLayer
readBit(uint32_t pin) overrideSX126xvirtual
readData(uint8_t *data, size_t len) overrideSX126xvirtual
readData(uint8_t *data, size_t len)SX126x
receive(uint8_t *data, size_t len) overrideSX126xvirtual
receive(uint8_t *data, size_t len)SX126x
receiveDirect() overrideSX126xvirtual
reset(bool verify=true)SX126x
scanChannel() overrideSX126xvirtual
scanChannel(const ChannelScanConfig_t &config) overrideSX126xvirtual
setBandwidth(float bw)SX126x
setBitRate(float br) overrideSX126xvirtual
setBroadcastAddress(uint8_t broadAddr)SX126x
setChannelScanAction(void(*func)(void)) overrideSX126xvirtual
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
setDataRate(DataRate_t dr) overrideSX126xvirtual
setDataShaping(uint8_t sh) overrideSX126xvirtual
setDio1Action(void(*func)(void))SX126x
setDio2AsRfSwitch(bool enable=true)SX126x
setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual
setDirectAction(void(*func)(void)) overrideSX126xvirtual
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideSX126xvirtual
setFrequency(float freq) overrideSX1268virtual
setFrequency(float freq, bool skipCalibration)SX1268
setFrequencyDeviation(float freqDev) overrideSX126xvirtual
setIrq(RadioLibIrqFlags_t irq)PhysicalLayer
setIrqFlags(uint32_t irq) overrideSX126xvirtual
setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeqId=0x100)SX126x
setModem(ModemType_t modem) overrideSX1268virtual
setNodeAddress(uint8_t addr)SX126x
setOutputPower(int8_t power) overrideSX1268virtual
setPacketReceivedAction(void(*func)(void)) overrideSX126xvirtual
setPacketSentAction(void(*func)(void)) overrideSX126xvirtual
setPaConfig(uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)SX126x
setPaRampTime(uint8_t rampTime)SX126x
setPreambleLength(size_t preambleLength) overrideSX126xvirtual
setRegulatorDCDC()SX126x
setRegulatorLDO()SX126x
setRfSwitchPins(uint32_t rxEn, uint32_t txEn)SX126x
setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])SX126x
setRxBandwidth(float rxBw)SX126x
setRxBoostedGainMode(bool rxbgm, bool persist=true)SX126x
setSpreadingFactor(uint8_t sf)SX126x
setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x
setSyncWord(uint8_t *syncWord, size_t len) overrideSX126xvirtual
setTCXO(float voltage, uint32_t delay=5000)SX126x
setWhitening(bool enabled, uint16_t initial=0x01FF)SX126x
sleep() overrideSX126xvirtual
sleep(bool retainConfig)SX126x
spectralScanAbort()SX126x
spectralScanGetResult(uint16_t *results)SX126x
spectralScanGetStatus()SX126x
spectralScanStart(uint16_t numSamples, uint8_t window=RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval=RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US)SX126x
standby() overrideSX126xvirtual
standby(uint8_t mode, bool wakeup=true)SX126x
PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual
standbyXOSCSX126x
startChannelScan() overrideSX126xvirtual
startChannelScan(const ChannelScanConfig_t &config) overrideSX126xvirtual
startDirect()PhysicalLayer
startReceive() overrideSX126xvirtual
startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0)SX126xvirtual
startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x
startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x
startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual
startTransmit(const char *str, uint8_t addr=0)SX126x
startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x
PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer
SX1268(Module *mod)SX1268
SX126x(Module *mod)SX126xexplicit
transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual
transmit(const char *str, uint8_t addr=0)SX126x
transmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX126xvirtual
uploadPatch(const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
XTALSX126x
diff --git a/class_s_x1268.html b/class_s_x1268.html index 7452c84c..2779f13c 100644 --- a/class_s_x1268.html +++ b/class_s_x1268.html @@ -120,11 +120,11 @@ Public Member Functions  Initialization method for LR-FHSS modem. This modem only supports transmission!
More...
  int16_t setFrequency (float freq) override - Sets carrier frequency. Allowed values are in range from 410.0 to 810.0 MHz. More...
+ Sets carrier frequency. Allowed values are in range from 410.0 to 810.0 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_SX126X_CAL_IMG_FREQ_TRIG MHz. More...
  -int16_t setFrequency (float freq, bool calibrate) - Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. More...
-  +int16_t setFrequency (float freq, bool skipCalibration) + Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_SX126X_CAL_IMG_FREQ_TRIG_MHZ. More...
+  int16_t setOutputPower (int8_t power) override  Sets output power. Allowed values are in range from -9 to 22 dBm. More...
  @@ -413,6 +413,9 @@ void int16_t setPaConfig (uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)  Set the PA configuration. Allows user to optimize PA for a specific output power and matching network. Any calls to this method must be done after calling begin/beginFSK and/or setOutputPower. WARNING: Use at your own risk! Setting invalid values can and will lead to permanent damage! More...
  +int16_t calibrateImage (float freq) + Perform image rejection calibration for the specified frequency. Will try to use Semtech-defined presets first, and if none of them matches, custom iamge calibration will be attempted using calibrateImageRejection. More...
+  int16_t calibrateImageRejection (float freqMin, float freqMax)  Perform image rejection calibration for the specified frequency band. WARNING: Use at your own risk! Setting incorrect values may lead to decreased performance. More...
  @@ -845,7 +848,7 @@ bool  -

Sets carrier frequency. Allowed values are in range from 410.0 to 810.0 MHz.

+

Sets carrier frequency. Allowed values are in range from 410.0 to 810.0 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_SX126X_CAL_IMG_FREQ_TRIG MHz.

Parameters
@@ -858,8 +861,8 @@ bool  - + @@ -884,11 +887,11 @@ bool  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
freqCarrier frequency to be set in MHz.
-

◆ setFrequency() [2/2]

+ +

◆ setFrequency() [2/2]

@@ -874,7 +877,7 @@ bool 
bool calibrate skipCalibration 
-

Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz.

+

Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_SX126X_CAL_IMG_FREQ_TRIG_MHZ.

Parameters
- +
freqCarrier frequency to be set in MHz.
calibrateRun image calibration.
skipCalibrationSkip automated image calibration.
diff --git a/class_s_x1268.js b/class_s_x1268.js index de941df8..7d487526 100644 --- a/class_s_x1268.js +++ b/class_s_x1268.js @@ -6,7 +6,7 @@ var class_s_x1268 = [ "beginLRFHSS", "class_s_x1268.html#a4f990f9e58d35cefa560c4fc767198fd", null ], [ "checkOutputPower", "class_s_x1268.html#ae1b1f56336fcef9ce31d9408fbbbfe3c", null ], [ "setFrequency", "class_s_x1268.html#af412a9361fe413b2d0c426100056d8c2", null ], - [ "setFrequency", "class_s_x1268.html#a59b538f4971525849b7aaa3456de9929", null ], + [ "setFrequency", "class_s_x1268.html#ad721d6feb4a8f62f2651049a68fe019b", null ], [ "setModem", "class_s_x1268.html#ae66e37a6897315f36a13c8d5cefe521b", null ], [ "setOutputPower", "class_s_x1268.html#a6b6adaee1c8d76c3d766225298d84709", null ] ]; \ No newline at end of file diff --git a/class_s_x126x-members.html b/class_s_x126x-members.html index 11b80eee..7412897b 100644 --- a/class_s_x126x-members.html +++ b/class_s_x126x-members.html @@ -95,122 +95,123 @@ $(document).ready(function(){initNavTree('class_s_x126x.html',''); initResizable
beginFSK(float br, float freqDev, float rxBw, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO=false)SX126x
beginLRFHSS(uint8_t bw, uint8_t cr, bool narrowGrid, float tcxoVoltage, bool useRegulatorLDO=false)SX126x
calculateRxTimeout(RadioLibTime_t timeoutUs) overrideSX126xvirtual
calibrateImageRejection(float freqMin, float freqMax)SX126x
checkDataRate(DataRate_t dr) overrideSX126xvirtual
checkIrq(RadioLibIrqType_t irq)PhysicalLayer
checkOutputPower(int8_t power, int8_t *clipped)PhysicalLayervirtual
clearChannelScanAction() overrideSX126xvirtual
clearDio1Action()SX126x
clearIrq(RadioLibIrqFlags_t irq)PhysicalLayer
clearIrqFlags(uint32_t irq) overrideSX126xvirtual
clearPacketReceivedAction() overrideSX126xvirtual
clearPacketSentAction() overrideSX126xvirtual
disableAddressFiltering()SX126x
dropSync()PhysicalLayer
explicitHeader()SX126x
finishTransmit() overrideSX126xvirtual
fixedPacketLengthMode(uint8_t len=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
forceLDRO(bool enable)SX126x
getChannelScanResult() overrideSX126xvirtual
getCurrentLimit()SX126x
getDataRate() constSX126x
getFreqStep() constPhysicalLayer
getFrequencyError()SX126x
getIrqFlags() overrideSX126xvirtual
getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer
getModem(ModemType_t *modem) overrideSX126xvirtual
getPacketLength(bool update=true) overrideSX126xvirtual
getPacketLength(bool update, uint8_t *offset)SX126x
getRSSI() overrideSX126xvirtual
getRSSI(bool packet)SX126x
getSNR() overrideSX126xvirtual
getTimeOnAir(size_t len) overrideSX126xvirtual
implicitHeader(size_t len)SX126x
invertIQ(bool enable) overrideSX126xvirtual
PhysicalLayer(float step, size_t maxLen)PhysicalLayer
random(int32_t max)PhysicalLayer
random(int32_t min, int32_t max)PhysicalLayer
randomByte() overrideSX126xvirtual
read(bool drop=true)PhysicalLayer
readBit(uint32_t pin) overrideSX126xvirtual
readData(uint8_t *data, size_t len) overrideSX126xvirtual
readData(uint8_t *data, size_t len)SX126x
receive(uint8_t *data, size_t len) overrideSX126xvirtual
receive(uint8_t *data, size_t len)SX126x
receiveDirect() overrideSX126xvirtual
reset(bool verify=true)SX126x
scanChannel() overrideSX126xvirtual
scanChannel(const ChannelScanConfig_t &config) overrideSX126xvirtual
setBandwidth(float bw)SX126x
setBitRate(float br) overrideSX126xvirtual
setBroadcastAddress(uint8_t broadAddr)SX126x
setChannelScanAction(void(*func)(void)) overrideSX126xvirtual
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
setDataRate(DataRate_t dr) overrideSX126xvirtual
setDataShaping(uint8_t sh) overrideSX126xvirtual
setDio1Action(void(*func)(void))SX126x
setDio2AsRfSwitch(bool enable=true)SX126x
setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual
setDirectAction(void(*func)(void)) overrideSX126xvirtual
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideSX126xvirtual
setFrequency(float freq)PhysicalLayervirtual
setFrequencyDeviation(float freqDev) overrideSX126xvirtual
setIrq(RadioLibIrqFlags_t irq)PhysicalLayer
setIrqFlags(uint32_t irq) overrideSX126xvirtual
setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeqId=0x100)SX126x
setModem(ModemType_t modem)PhysicalLayervirtual
setNodeAddress(uint8_t addr)SX126x
setOutputPower(int8_t power)PhysicalLayervirtual
setPacketReceivedAction(void(*func)(void)) overrideSX126xvirtual
setPacketSentAction(void(*func)(void)) overrideSX126xvirtual
setPaConfig(uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)SX126x
setPaRampTime(uint8_t rampTime)SX126x
setPreambleLength(size_t preambleLength) overrideSX126xvirtual
setRegulatorDCDC()SX126x
setRegulatorLDO()SX126x
setRfSwitchPins(uint32_t rxEn, uint32_t txEn)SX126x
setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])SX126x
setRxBandwidth(float rxBw)SX126x
setRxBoostedGainMode(bool rxbgm, bool persist=true)SX126x
setSpreadingFactor(uint8_t sf)SX126x
setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x
setSyncWord(uint8_t *syncWord, size_t len) overrideSX126xvirtual
setTCXO(float voltage, uint32_t delay=5000)SX126x
setWhitening(bool enabled, uint16_t initial=0x01FF)SX126x
sleep() overrideSX126xvirtual
sleep(bool retainConfig)SX126x
spectralScanAbort()SX126x
spectralScanGetResult(uint16_t *results)SX126x
spectralScanGetStatus()SX126x
spectralScanStart(uint16_t numSamples, uint8_t window=RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval=RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US)SX126x
standby() overrideSX126xvirtual
standby(uint8_t mode, bool wakeup=true)SX126x
PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual
standbyXOSCSX126x
startChannelScan() overrideSX126xvirtual
startChannelScan(const ChannelScanConfig_t &config) overrideSX126xvirtual
startDirect()PhysicalLayer
startReceive() overrideSX126xvirtual
startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0)SX126xvirtual
startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x
startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x
startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual
startTransmit(const char *str, uint8_t addr=0)SX126x
startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x
PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer
SX126x(Module *mod)SX126xexplicit
transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual
transmit(const char *str, uint8_t addr=0)SX126x
transmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX126xvirtual
uploadPatch(const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
XTALSX126x
calibrateImage(float freq)SX126x
calibrateImageRejection(float freqMin, float freqMax)SX126x
checkDataRate(DataRate_t dr) overrideSX126xvirtual
checkIrq(RadioLibIrqType_t irq)PhysicalLayer
checkOutputPower(int8_t power, int8_t *clipped)PhysicalLayervirtual
clearChannelScanAction() overrideSX126xvirtual
clearDio1Action()SX126x
clearIrq(RadioLibIrqFlags_t irq)PhysicalLayer
clearIrqFlags(uint32_t irq) overrideSX126xvirtual
clearPacketReceivedAction() overrideSX126xvirtual
clearPacketSentAction() overrideSX126xvirtual
disableAddressFiltering()SX126x
dropSync()PhysicalLayer
explicitHeader()SX126x
finishTransmit() overrideSX126xvirtual
fixedPacketLengthMode(uint8_t len=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
forceLDRO(bool enable)SX126x
getChannelScanResult() overrideSX126xvirtual
getCurrentLimit()SX126x
getDataRate() constSX126x
getFreqStep() constPhysicalLayer
getFrequencyError()SX126x
getIrqFlags() overrideSX126xvirtual
getIrqMapped(RadioLibIrqFlags_t irq)PhysicalLayer
getModem(ModemType_t *modem) overrideSX126xvirtual
getPacketLength(bool update=true) overrideSX126xvirtual
getPacketLength(bool update, uint8_t *offset)SX126x
getRSSI() overrideSX126xvirtual
getRSSI(bool packet)SX126x
getSNR() overrideSX126xvirtual
getTimeOnAir(size_t len) overrideSX126xvirtual
implicitHeader(size_t len)SX126x
invertIQ(bool enable) overrideSX126xvirtual
PhysicalLayer(float step, size_t maxLen)PhysicalLayer
random(int32_t max)PhysicalLayer
random(int32_t min, int32_t max)PhysicalLayer
randomByte() overrideSX126xvirtual
read(bool drop=true)PhysicalLayer
readBit(uint32_t pin) overrideSX126xvirtual
readData(uint8_t *data, size_t len) overrideSX126xvirtual
readData(uint8_t *data, size_t len)SX126x
receive(uint8_t *data, size_t len) overrideSX126xvirtual
receive(uint8_t *data, size_t len)SX126x
receiveDirect() overrideSX126xvirtual
reset(bool verify=true)SX126x
scanChannel() overrideSX126xvirtual
scanChannel(const ChannelScanConfig_t &config) overrideSX126xvirtual
setBandwidth(float bw)SX126x
setBitRate(float br) overrideSX126xvirtual
setBroadcastAddress(uint8_t broadAddr)SX126x
setChannelScanAction(void(*func)(void)) overrideSX126xvirtual
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
setDataRate(DataRate_t dr) overrideSX126xvirtual
setDataShaping(uint8_t sh) overrideSX126xvirtual
setDio1Action(void(*func)(void))SX126x
setDio2AsRfSwitch(bool enable=true)SX126x
setDIOMapping(uint32_t pin, uint32_t value)PhysicalLayervirtual
setDirectAction(void(*func)(void)) overrideSX126xvirtual
setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer
setEncoding(uint8_t encoding) overrideSX126xvirtual
setFrequency(float freq)PhysicalLayervirtual
setFrequencyDeviation(float freqDev) overrideSX126xvirtual
setIrq(RadioLibIrqFlags_t irq)PhysicalLayer
setIrqFlags(uint32_t irq) overrideSX126xvirtual
setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeqId=0x100)SX126x
setModem(ModemType_t modem)PhysicalLayervirtual
setNodeAddress(uint8_t addr)SX126x
setOutputPower(int8_t power)PhysicalLayervirtual
setPacketReceivedAction(void(*func)(void)) overrideSX126xvirtual
setPacketSentAction(void(*func)(void)) overrideSX126xvirtual
setPaConfig(uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)SX126x
setPaRampTime(uint8_t rampTime)SX126x
setPreambleLength(size_t preambleLength) overrideSX126xvirtual
setRegulatorDCDC()SX126x
setRegulatorLDO()SX126x
setRfSwitchPins(uint32_t rxEn, uint32_t txEn)SX126x
setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])SX126x
setRxBandwidth(float rxBw)SX126x
setRxBoostedGainMode(bool rxbgm, bool persist=true)SX126x
setSpreadingFactor(uint8_t sf)SX126x
setSyncBits(uint8_t *syncWord, uint8_t bitsLen)SX126x
setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)SX126x
setSyncWord(uint8_t *syncWord, size_t len) overrideSX126xvirtual
setTCXO(float voltage, uint32_t delay=5000)SX126x
setWhitening(bool enabled, uint16_t initial=0x01FF)SX126x
sleep() overrideSX126xvirtual
sleep(bool retainConfig)SX126x
spectralScanAbort()SX126x
spectralScanGetResult(uint16_t *results)SX126x
spectralScanGetStatus()SX126x
spectralScanStart(uint16_t numSamples, uint8_t window=RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval=RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US)SX126x
standby() overrideSX126xvirtual
standby(uint8_t mode, bool wakeup=true)SX126x
PhysicalLayer::standby(uint8_t mode)PhysicalLayervirtual
standbyXOSCSX126x
startChannelScan() overrideSX126xvirtual
startChannelScan(const ChannelScanConfig_t &config) overrideSX126xvirtual
startDirect()PhysicalLayer
startReceive() overrideSX126xvirtual
startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0)SX126xvirtual
startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x
startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK)SX126x
startTransmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual
startTransmit(const char *str, uint8_t addr=0)SX126x
startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x
PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)PhysicalLayer
SX126x(Module *mod)SX126xexplicit
transmit(const uint8_t *data, size_t len, uint8_t addr=0) overrideSX126xvirtual
transmit(const char *str, uint8_t addr=0)SX126x
transmit(const uint8_t *data, size_t len, uint8_t addr=0)SX126x
PhysicalLayer::transmit(const char *str, uint8_t addr=0)PhysicalLayer
transmitDirect(uint32_t frf=0) overrideSX126xvirtual
uploadPatch(const uint32_t *patch, size_t len, bool nonvolatile=true)SX126x
variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)SX126x
XTALSX126x
diff --git a/class_s_x126x.html b/class_s_x126x.html index 5272021d..c9b504de 100644 --- a/class_s_x126x.html +++ b/class_s_x126x.html @@ -390,6 +390,9 @@ void 
int16_t setPaConfig (uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)  Set the PA configuration. Allows user to optimize PA for a specific output power and matching network. Any calls to this method must be done after calling begin/beginFSK and/or setOutputPower. WARNING: Use at your own risk! Setting invalid values can and will lead to permanent damage! More...
  +int16_t calibrateImage (float freq) + Perform image rejection calibration for the specified frequency. Will try to use Semtech-defined presets first, and if none of them matches, custom iamge calibration will be attempted using calibrateImageRejection. More...
+  int16_t calibrateImageRejection (float freqMin, float freqMax)  Perform image rejection calibration for the specified frequency band. WARNING: Use at your own risk! Setting incorrect values may lead to decreased performance. More...
  @@ -768,6 +771,33 @@ bool PhysicalLayer.

+ + + +

◆ calibrateImage()

+ +
+
+ + + + + + + + +
int16_t SX126x::calibrateImage (float freq)
+
+ +

Perform image rejection calibration for the specified frequency. Will try to use Semtech-defined presets first, and if none of them matches, custom iamge calibration will be attempted using calibrateImageRejection.

+
Parameters
+ + +
freqFrequency to perform the calibration for.
+
+
+
Returns
Status Codes
+
diff --git a/class_s_x126x.js b/class_s_x126x.js index 78a0a0f0..05fa3759 100644 --- a/class_s_x126x.js +++ b/class_s_x126x.js @@ -6,6 +6,7 @@ var class_s_x126x = [ "beginFSK", "class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c", null ], [ "beginLRFHSS", "class_s_x126x.html#af404471ef9d379c58b5b08757593fe6d", null ], [ "calculateRxTimeout", "class_s_x126x.html#a19f3c26d7a7959e302fc8174fc88a6d4", null ], + [ "calibrateImage", "class_s_x126x.html#a356052e39138cabc41358f5728bbbe70", null ], [ "calibrateImageRejection", "class_s_x126x.html#aa3c90f19cd141738ff013ae72f78f1bb", null ], [ "checkDataRate", "class_s_x126x.html#a75c8d32cee712e0c940163446b98e587", null ], [ "clearChannelScanAction", "class_s_x126x.html#a37dab0ab3c4cab82e367971fc31588a6", null ], diff --git a/functions_c.html b/functions_c.html index dc486bd0..dcfcf956 100644 --- a/functions_c.html +++ b/functions_c.html @@ -97,8 +97,12 @@ $(document).ready(function(){initNavTree('functions_c.html',''); initResizable() , SX126x , SX127x +
  • calibrateImage() +: SX126x +
  • calibrateImageRejection() -: SX126x +: LR11x0 +, SX126x
  • CC1101() : CC1101 @@ -122,7 +126,7 @@ $(document).ready(function(){initNavTree('functions_c.html',''); initResizable()
  • checkOutputPower() : CC1101 , LR1110 -, LR1120 +, LR1120 , PhysicalLayer , SX1261 , SX1262 diff --git a/functions_func_c.html b/functions_func_c.html index 9e3fd77b..1c4fd1d2 100644 --- a/functions_func_c.html +++ b/functions_func_c.html @@ -91,8 +91,12 @@ $(document).ready(function(){initNavTree('functions_func_c.html',''); initResiza , SX126x , SX127x
  • +
  • calibrateImage() +: SX126x +
  • calibrateImageRejection() -: SX126x +: LR11x0 +, SX126x
  • CC1101() : CC1101 @@ -113,12 +117,12 @@ $(document).ready(function(){initNavTree('functions_func_c.html',''); initResiza
  • checkOutputPower() : CC1101 , LR1110 -, LR1120 +, LR1120 , PhysicalLayer , SX1261 , SX1262 , SX1268 -, SX1272 +, SX1272 , SX1278 , SX128x
  • diff --git a/functions_func_g.html b/functions_func_g.html index 5ae695e0..6517221f 100644 --- a/functions_func_g.html +++ b/functions_func_g.html @@ -171,13 +171,13 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza : LR11x0 , PhysicalLayer , SX126x +, SX127x
  • getIRQFlags() : SX127x
  • getIrqFlags() -: SX127x -, SX128x +: SX128x
  • getIrqMapped() : PhysicalLayer diff --git a/functions_func_s.html b/functions_func_s.html index 7f919a91..e33b3e34 100644 --- a/functions_func_s.html +++ b/functions_func_s.html @@ -331,8 +331,8 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza , RF69 , Si4430 , Si4432 -, SX1262 -, SX1268 +, SX1262 +, SX1268 , SX1272 , SX1276 , SX1277 diff --git a/functions_g.html b/functions_g.html index 74e76766..42593b19 100644 --- a/functions_g.html +++ b/functions_g.html @@ -171,13 +171,13 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable() : LR11x0 , PhysicalLayer , SX126x -, SX127x
  • getIRQFlags() : SX127x
  • getIrqFlags() -: SX128x +: SX127x +, SX128x
  • getIrqMapped() : PhysicalLayer diff --git a/navtreedata.js b/navtreedata.js index 30c5edde..51ccc0e1 100644 --- a/navtreedata.js +++ b/navtreedata.js @@ -56,12 +56,12 @@ var NAVTREEINDEX = [ "_a_f_s_k_8h_source.html", "class_l_l_c_c68.html", -"class_physical_layer.html#a2f4f9b428d9ea9af886ca85e5088ed7b", -"class_radio_lib_hal.html#a6b5341c59728a1932e33216feee04ea5", -"class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e", -"class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3", -"group__status__codes.html#ga633e2f826e44d4575ca67459fda5d660", -"struct_lo_ra_w_a_n_event__t.html#a49eebe64d351bb2e91901ef8fae044ff" +"class_physical_layer.html#a2c7dd4704e3df353265010710bd26e83", +"class_radio_lib_hal.html#a68d9271c76f8c96afb734a4634bf92e9", +"class_s_x1277.html#aef5d9e27edc2173d1b4cc1cb0d9733bc", +"class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99", +"group__status__codes.html#ga5d11e8ce64fb412c2169d0f30b9e9c62", +"struct_lo_ra_w_a_n_event__t.html#a09079dc76b5367d23766e357d2ddb794" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/navtreeindex1.js b/navtreeindex1.js index 37bc72e0..ca5eedd1 100644 --- a/navtreeindex1.js +++ b/navtreeindex1.js @@ -9,9 +9,9 @@ var NAVTREEINDEX1 = "class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4":[3,0,16,6], "class_l_l_c_c68.html#aee4457d48c708f05154e931eed05c691":[3,0,16,5], "class_l_r1110.html":[3,0,26], -"class_l_r1110.html#a08c9ba9d02e7e3918f73f090c6d5ed33":[3,0,26,7], "class_l_r1110.html#a18f525740237b023056a8ca6f3671c6a":[3,0,26,8], "class_l_r1110.html#a4e492901900ad1d85c818ec473b3d123":[3,0,26,0], +"class_l_r1110.html#a4f9272d078b79d76315be7a57be3e547":[3,0,26,7], "class_l_r1110.html#a65c08f0475f888537e55401b75e58b23":[3,0,26,9], "class_l_r1110.html#a7656fe337a859388247708aa143d50af":[3,0,26,1], "class_l_r1110.html#acc15335d41446254c3b9a87572080388":[3,0,26,3], @@ -25,31 +25,31 @@ var NAVTREEINDEX1 = "class_l_r1120.html#a1b1321eb695e4a6b583074bb92c33193":[3,0,27,9], "class_l_r1120.html#a2e2ea0a2f6d3a8d81e0f2be35848bbc7":[3,0,27,10], "class_l_r1120.html#a369b667c81e1ec724148b401c5aad79d":[3,0,27,5], -"class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2":[3,0,27,7], "class_l_r1120.html#a4c6b867146f00de5c45aeb4164d51cc5":[3,0,27,2], "class_l_r1120.html#a6cd250e0145ed19f2f91ed96a57a825e":[3,0,27,8], "class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb":[3,0,27,6], +"class_l_r1120.html#ac34c2ec79e4a36cf0423acb308538811":[3,0,27,7], "class_l_r1120.html#acf6ea475643c6eba63133641a8681a8f":[3,0,27,4], "class_l_r1120.html#ad49ce378101cf0c3894297808ae27f3a":[3,0,27,3], "class_l_r1120.html#ae652f10ebc1e4b8245eb5a0c97765257":[3,0,27,0], "class_l_r1121.html":[3,0,28], "class_l_r1121.html#a0015ed8c0fde10a072b5f1317779f59a":[3,0,28,0], "class_l_r11x0.html":[3,0,29], -"class_l_r11x0.html#a004782e6e5c6ad213c3b0c677bb8642d":[3,0,29,31], -"class_l_r11x0.html#a0309154558a0d88e2e8957e4dbf6a2f8":[3,0,29,26], -"class_l_r11x0.html#a056e65c58ff8fb18bd84917512790ee6":[3,0,29,55], -"class_l_r11x0.html#a1981f0dfceca2b6175a69530ea13d643":[3,0,29,68], -"class_l_r11x0.html#a19a4b4a138dbd0e5c8f980de0f6419e4":[3,0,29,23], -"class_l_r11x0.html#a1ad485f14a333f06b642f2d60aacf76c":[3,0,29,66], -"class_l_r11x0.html#a1ae2cddeb7671d9b71e9c83bf020820f":[3,0,29,19], -"class_l_r11x0.html#a1ec81f3625fdc8a3ef6c54a3804c3aa9":[3,0,29,20], -"class_l_r11x0.html#a20279f1b267e936991f47fd703924833":[3,0,29,43], -"class_l_r11x0.html#a205364e65d54f3f87b9b8f5972cdcb99":[3,0,29,25], -"class_l_r11x0.html#a21e865665318dece7d95336a275dd973":[3,0,29,92], +"class_l_r11x0.html#a004782e6e5c6ad213c3b0c677bb8642d":[3,0,29,32], +"class_l_r11x0.html#a0309154558a0d88e2e8957e4dbf6a2f8":[3,0,29,27], +"class_l_r11x0.html#a056e65c58ff8fb18bd84917512790ee6":[3,0,29,56], +"class_l_r11x0.html#a1981f0dfceca2b6175a69530ea13d643":[3,0,29,69], +"class_l_r11x0.html#a19a4b4a138dbd0e5c8f980de0f6419e4":[3,0,29,24], +"class_l_r11x0.html#a1ad485f14a333f06b642f2d60aacf76c":[3,0,29,67], +"class_l_r11x0.html#a1ae2cddeb7671d9b71e9c83bf020820f":[3,0,29,20], +"class_l_r11x0.html#a1ec81f3625fdc8a3ef6c54a3804c3aa9":[3,0,29,21], +"class_l_r11x0.html#a20279f1b267e936991f47fd703924833":[3,0,29,44], +"class_l_r11x0.html#a205364e65d54f3f87b9b8f5972cdcb99":[3,0,29,26], +"class_l_r11x0.html#a21e865665318dece7d95336a275dd973":[3,0,29,93], "class_l_r11x0.html#a244ee48075d44c7064b454eb9c4afdb8":[3,0,29,6], -"class_l_r11x0.html#a25f5ee68b3c2638ae613c87ed1c3fc64":[3,0,29,69], +"class_l_r11x0.html#a25f5ee68b3c2638ae613c87ed1c3fc64":[3,0,29,70], "class_l_r11x0.html#a260c7f4ee4739e532ddb465a276205d3":[3,0,29,7], -"class_l_r11x0.html#a288bcc309d3676bc0bbe620b7d89d994":[3,0,29,47], +"class_l_r11x0.html#a288bcc309d3676bc0bbe620b7d89d994":[3,0,29,48], "class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7":[3,0,29,0], "class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a005b9c110df839cd001f82f4660762fd":[3,0,29,0,4], "class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a2398f9003962c8dc6d199e69ba850917":[3,0,29,0,0], @@ -59,89 +59,90 @@ var NAVTREEINDEX1 = "class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a98f8232e13745eec261cd755c457c034":[3,0,29,0,2], "class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7ab223e6d6104d722d61e1d2aa22231012":[3,0,29,0,1], "class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7acbbc5768e10e22bfdf776faffbfced46":[3,0,29,0,5], -"class_l_r11x0.html#a2d682ec2ca0ddf4da41a93dd8e728665":[3,0,29,81], -"class_l_r11x0.html#a3498e0e621f341e415145879989e0948":[3,0,29,89], -"class_l_r11x0.html#a3563453988a83d22dd07d4691543a300":[3,0,29,42], -"class_l_r11x0.html#a3693359e5d106d6f57c23247c528cdd5":[3,0,29,15], -"class_l_r11x0.html#a377c287f18c939c2b4da3241d8329e58":[3,0,29,45], -"class_l_r11x0.html#a3ccfd35d26960457214d2a0192d6b312":[3,0,29,98], -"class_l_r11x0.html#a457f5dfe25385a329127f07abc4631a6":[3,0,29,34], -"class_l_r11x0.html#a459825c5b46a2ca515e62042d605aa67":[3,0,29,88], -"class_l_r11x0.html#a49116d006b60128fe6f73a6a868a6d18":[3,0,29,59], -"class_l_r11x0.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,29,90], -"class_l_r11x0.html#a4d18ad719be79c083f2b0ce77bbaa448":[3,0,29,8], -"class_l_r11x0.html#a4f3bc362530b85dd643669705f03998d":[3,0,29,82], -"class_l_r11x0.html#a551b82787288b0b14e4d3124e6744dc3":[3,0,29,54], +"class_l_r11x0.html#a2d682ec2ca0ddf4da41a93dd8e728665":[3,0,29,82], +"class_l_r11x0.html#a3498e0e621f341e415145879989e0948":[3,0,29,90], +"class_l_r11x0.html#a3563453988a83d22dd07d4691543a300":[3,0,29,43], +"class_l_r11x0.html#a3693359e5d106d6f57c23247c528cdd5":[3,0,29,16], +"class_l_r11x0.html#a377c287f18c939c2b4da3241d8329e58":[3,0,29,46], +"class_l_r11x0.html#a3ccfd35d26960457214d2a0192d6b312":[3,0,29,99], +"class_l_r11x0.html#a457f5dfe25385a329127f07abc4631a6":[3,0,29,35], +"class_l_r11x0.html#a459825c5b46a2ca515e62042d605aa67":[3,0,29,89], +"class_l_r11x0.html#a49116d006b60128fe6f73a6a868a6d18":[3,0,29,60], +"class_l_r11x0.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,29,91], +"class_l_r11x0.html#a4d18ad719be79c083f2b0ce77bbaa448":[3,0,29,9], +"class_l_r11x0.html#a4f3bc362530b85dd643669705f03998d":[3,0,29,83], +"class_l_r11x0.html#a551b82787288b0b14e4d3124e6744dc3":[3,0,29,55], "class_l_r11x0.html#a562f34a054e3374b812556df3b6eb421":[3,0,29,1], -"class_l_r11x0.html#a583f2d5ed601a98c609dbf0d57f2f541":[3,0,29,53], -"class_l_r11x0.html#a5a33df702da3f5b010e07d5e6fac7aa6":[3,0,29,56], -"class_l_r11x0.html#a5df4c1ed45bf59aa25bc400bcb5dc1ba":[3,0,29,17], -"class_l_r11x0.html#a5e8f21878bdab1439805aea1e9da168d":[3,0,29,49], -"class_l_r11x0.html#a5ef83caa291e2d310d260a8ea140bc8e":[3,0,29,35], -"class_l_r11x0.html#a605f5c74ce523abad256866abe133d2e":[3,0,29,62], -"class_l_r11x0.html#a62c715ab18ea8a2e08a2791d3e764ee9":[3,0,29,60], -"class_l_r11x0.html#a6501ef362df1a5b71927cfe4e43c202d":[3,0,29,72], -"class_l_r11x0.html#a6a3034c91f5bce70c853ab1620725b3c":[3,0,29,48], -"class_l_r11x0.html#a6cd2b2363501b2de064c9d1f32fabaa3":[3,0,29,30], -"class_l_r11x0.html#a70d9849eb8e5ce2090e4e332252753d7":[3,0,29,50], -"class_l_r11x0.html#a748d30cb7a0b419066f6361a966b306f":[3,0,29,22], -"class_l_r11x0.html#a74c3f3f8409f1fd0f41347b7d3c7dc24":[3,0,29,80], -"class_l_r11x0.html#a79818dae19d69d33a5a1facbb91c3774":[3,0,29,40], -"class_l_r11x0.html#a7ffa48f1b6aaaa3f48e4b51f8ada59d8":[3,0,29,73], -"class_l_r11x0.html#a89b16d2231f588b67dc3aab0c0a467f4":[3,0,29,41], -"class_l_r11x0.html#a8ae178a17f6e41b545b79cfffd3e2864":[3,0,29,57], -"class_l_r11x0.html#a8c1def9a01021a52f5bb82c119a9ad35":[3,0,29,61], -"class_l_r11x0.html#a92299e41f839590008b4e344776838a1":[3,0,29,64], -"class_l_r11x0.html#a923654706eff5118ef6e84214e837f27":[3,0,29,86], -"class_l_r11x0.html#a92ae10630cc327f441809ac1406737fd":[3,0,29,67], -"class_l_r11x0.html#a95ddec84ae2fb19989c333d42d4dc5fa":[3,0,29,12], -"class_l_r11x0.html#a96aa9566399e46fc03f2b73b44058e3f":[3,0,29,95], -"class_l_r11x0.html#a96e4a220bbd3487423acfd217b479fe3":[3,0,29,11], -"class_l_r11x0.html#a971b4ccd1d5479e9d72aa9649e8fef55":[3,0,29,75], -"class_l_r11x0.html#a97a3f23b796257135a9afd33c28e8ed5":[3,0,29,24], +"class_l_r11x0.html#a583f2d5ed601a98c609dbf0d57f2f541":[3,0,29,54], +"class_l_r11x0.html#a5a33df702da3f5b010e07d5e6fac7aa6":[3,0,29,57], +"class_l_r11x0.html#a5df4c1ed45bf59aa25bc400bcb5dc1ba":[3,0,29,18], +"class_l_r11x0.html#a5e8f21878bdab1439805aea1e9da168d":[3,0,29,50], +"class_l_r11x0.html#a5ef83caa291e2d310d260a8ea140bc8e":[3,0,29,36], +"class_l_r11x0.html#a605f5c74ce523abad256866abe133d2e":[3,0,29,63], +"class_l_r11x0.html#a62c715ab18ea8a2e08a2791d3e764ee9":[3,0,29,61], +"class_l_r11x0.html#a6501ef362df1a5b71927cfe4e43c202d":[3,0,29,73], +"class_l_r11x0.html#a6a3034c91f5bce70c853ab1620725b3c":[3,0,29,49], +"class_l_r11x0.html#a6cd2b2363501b2de064c9d1f32fabaa3":[3,0,29,31], +"class_l_r11x0.html#a70d9849eb8e5ce2090e4e332252753d7":[3,0,29,51], +"class_l_r11x0.html#a748d30cb7a0b419066f6361a966b306f":[3,0,29,23], +"class_l_r11x0.html#a74c3f3f8409f1fd0f41347b7d3c7dc24":[3,0,29,81], +"class_l_r11x0.html#a79818dae19d69d33a5a1facbb91c3774":[3,0,29,41], +"class_l_r11x0.html#a7ffa48f1b6aaaa3f48e4b51f8ada59d8":[3,0,29,74], +"class_l_r11x0.html#a89b16d2231f588b67dc3aab0c0a467f4":[3,0,29,42], +"class_l_r11x0.html#a8ae178a17f6e41b545b79cfffd3e2864":[3,0,29,58], +"class_l_r11x0.html#a8c1def9a01021a52f5bb82c119a9ad35":[3,0,29,62], +"class_l_r11x0.html#a92299e41f839590008b4e344776838a1":[3,0,29,65], +"class_l_r11x0.html#a923654706eff5118ef6e84214e837f27":[3,0,29,87], +"class_l_r11x0.html#a92ae10630cc327f441809ac1406737fd":[3,0,29,68], +"class_l_r11x0.html#a95ddec84ae2fb19989c333d42d4dc5fa":[3,0,29,13], +"class_l_r11x0.html#a96aa9566399e46fc03f2b73b44058e3f":[3,0,29,96], +"class_l_r11x0.html#a96e4a220bbd3487423acfd217b479fe3":[3,0,29,12], +"class_l_r11x0.html#a971b4ccd1d5479e9d72aa9649e8fef55":[3,0,29,76], +"class_l_r11x0.html#a97a3f23b796257135a9afd33c28e8ed5":[3,0,29,25], "class_l_r11x0.html#aa2b69f68ff6171b11a1141c8615240fd":[3,0,29,3], -"class_l_r11x0.html#aa524b0be7b8d125c24319072d6178e74":[3,0,29,10], -"class_l_r11x0.html#aa5d7ae65666f8f9abcb7e9b169884a4a":[3,0,29,65], -"class_l_r11x0.html#aa6ce285cc1b76ce028db6442a421ed8d":[3,0,29,84], +"class_l_r11x0.html#aa524b0be7b8d125c24319072d6178e74":[3,0,29,11], +"class_l_r11x0.html#aa5d7ae65666f8f9abcb7e9b169884a4a":[3,0,29,66], +"class_l_r11x0.html#aa6ce285cc1b76ce028db6442a421ed8d":[3,0,29,85], "class_l_r11x0.html#aa9a8db401189ba0ce5117512b5db6a58":[3,0,29,2], -"class_l_r11x0.html#aaff9a5b9b7636693c98bd1c93a5863e5":[3,0,29,16], -"class_l_r11x0.html#ab073ade3f6b9bbb383e388904812f575":[3,0,29,83], -"class_l_r11x0.html#ab0cf34cc0b67484fbf0f258bff7e9a9a":[3,0,29,70], -"class_l_r11x0.html#ab167c4dc14e80d19f8b33d68c3f90d98":[3,0,29,9], -"class_l_r11x0.html#ab1954e4733a7fbea4129d9a2de2285d9":[3,0,29,51], -"class_l_r11x0.html#ab2820cc2b740d6d42a079bbd8bd45b85":[3,0,29,94], -"class_l_r11x0.html#ab2dbab0fe3433e914c19a8d03fe32358":[3,0,29,36], -"class_l_r11x0.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,29,44], -"class_l_r11x0.html#ab8c54b1b105605ffe0908c5ff9362932":[3,0,29,74], -"class_l_r11x0.html#aba13921d2cf29cc1bc8a648e1f330aa9":[3,0,29,38], +"class_l_r11x0.html#aaff9a5b9b7636693c98bd1c93a5863e5":[3,0,29,17], +"class_l_r11x0.html#ab073ade3f6b9bbb383e388904812f575":[3,0,29,84], +"class_l_r11x0.html#ab0cf34cc0b67484fbf0f258bff7e9a9a":[3,0,29,71], +"class_l_r11x0.html#ab167c4dc14e80d19f8b33d68c3f90d98":[3,0,29,10], +"class_l_r11x0.html#ab1954e4733a7fbea4129d9a2de2285d9":[3,0,29,52], +"class_l_r11x0.html#ab2820cc2b740d6d42a079bbd8bd45b85":[3,0,29,95], +"class_l_r11x0.html#ab2dbab0fe3433e914c19a8d03fe32358":[3,0,29,37], +"class_l_r11x0.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,29,45], +"class_l_r11x0.html#ab8c54b1b105605ffe0908c5ff9362932":[3,0,29,75], +"class_l_r11x0.html#aba13921d2cf29cc1bc8a648e1f330aa9":[3,0,29,39], "class_l_r11x0.html#abcc4c776d1a09bb002226ac95574766d":[3,0,29,4], -"class_l_r11x0.html#abccf5dc80aab71090a5f19bfffa0201d":[3,0,29,32], -"class_l_r11x0.html#ac003cfe3a4dbd9bad1f01fd0147031d1":[3,0,29,58], -"class_l_r11x0.html#ac1f541bdee1d983126ceae47940b8f9d":[3,0,29,29], -"class_l_r11x0.html#ac2a8ece736198c966e3870dac09f4e87":[3,0,29,63], -"class_l_r11x0.html#ac6b6b460ba12cd92a08df16e1fe33779":[3,0,29,33], -"class_l_r11x0.html#ad2786a2f17af5769c772ebc73df88e1f":[3,0,29,79], -"class_l_r11x0.html#ad5876b44020a0bd59f73186a912dbb60":[3,0,29,13], -"class_l_r11x0.html#ad5dde79f751bbd7ea277872e237f2a69":[3,0,29,78], +"class_l_r11x0.html#abccf5dc80aab71090a5f19bfffa0201d":[3,0,29,33], +"class_l_r11x0.html#ac003cfe3a4dbd9bad1f01fd0147031d1":[3,0,29,59], +"class_l_r11x0.html#ac1f541bdee1d983126ceae47940b8f9d":[3,0,29,30], +"class_l_r11x0.html#ac2a8ece736198c966e3870dac09f4e87":[3,0,29,64], +"class_l_r11x0.html#ac6b6b460ba12cd92a08df16e1fe33779":[3,0,29,34], +"class_l_r11x0.html#ad2786a2f17af5769c772ebc73df88e1f":[3,0,29,80], +"class_l_r11x0.html#ad5876b44020a0bd59f73186a912dbb60":[3,0,29,14], +"class_l_r11x0.html#ad5dde79f751bbd7ea277872e237f2a69":[3,0,29,79], "class_l_r11x0.html#ad7f31060cbab41ad53ee6fa7126cd17b":[3,0,29,5], -"class_l_r11x0.html#ad9046bccdb4ef60718e2e8ed2bd7f036":[3,0,29,21], -"class_l_r11x0.html#ad9bfaf0bdd7045f5d41f18f3f953c294":[3,0,29,37], -"class_l_r11x0.html#ada508497ee2e70170da3afe078e2fe0e":[3,0,29,91], -"class_l_r11x0.html#adcd56cf63e91449b6cd03782a69c3451":[3,0,29,96], -"class_l_r11x0.html#adcde55b8660c24cf5783942a4132786d":[3,0,29,76], -"class_l_r11x0.html#ade5478296ebc7e02281c95609d5d75ab":[3,0,29,97], -"class_l_r11x0.html#adf6895cbf7af7e00ea06c5b2b5040cb4":[3,0,29,71], -"class_l_r11x0.html#ae077957969f6274a53f63b314b6f1359":[3,0,29,93], -"class_l_r11x0.html#ae0a47e772fe24c7b3f3d3288c4cd0941":[3,0,29,18], -"class_l_r11x0.html#ae1a8e8eda78113c47f1a865e63051bb5":[3,0,29,46], -"class_l_r11x0.html#ae565dc2423ca7df13bf7ae48cce9ac8b":[3,0,29,14], -"class_l_r11x0.html#ae79c42c4ceceb7a6897731d01d365281":[3,0,29,85], -"class_l_r11x0.html#af24ba794f71c4e37cd13d2f4dbec5bf7":[3,0,29,52], -"class_l_r11x0.html#af79757dbbd62e080c1bad2e608ab940c":[3,0,29,87], -"class_l_r11x0.html#af85c16956c2250dbf338a298c074d28c":[3,0,29,39], -"class_l_r11x0.html#af96883b2ca7a36a8921ee1cd222adebf":[3,0,29,28], -"class_l_r11x0.html#afe8684b336a8137cde591283297a869c":[3,0,29,27], -"class_l_r11x0.html#aff6060e116701c60e078d3d930723b4b":[3,0,29,77], +"class_l_r11x0.html#ad9046bccdb4ef60718e2e8ed2bd7f036":[3,0,29,22], +"class_l_r11x0.html#ad9bfaf0bdd7045f5d41f18f3f953c294":[3,0,29,38], +"class_l_r11x0.html#ada508497ee2e70170da3afe078e2fe0e":[3,0,29,92], +"class_l_r11x0.html#adc8fbcfff7cd3b801dcee22e87bc2598":[3,0,29,8], +"class_l_r11x0.html#adcd56cf63e91449b6cd03782a69c3451":[3,0,29,97], +"class_l_r11x0.html#adcde55b8660c24cf5783942a4132786d":[3,0,29,77], +"class_l_r11x0.html#ade5478296ebc7e02281c95609d5d75ab":[3,0,29,98], +"class_l_r11x0.html#adf6895cbf7af7e00ea06c5b2b5040cb4":[3,0,29,72], +"class_l_r11x0.html#ae077957969f6274a53f63b314b6f1359":[3,0,29,94], +"class_l_r11x0.html#ae0a47e772fe24c7b3f3d3288c4cd0941":[3,0,29,19], +"class_l_r11x0.html#ae1a8e8eda78113c47f1a865e63051bb5":[3,0,29,47], +"class_l_r11x0.html#ae565dc2423ca7df13bf7ae48cce9ac8b":[3,0,29,15], +"class_l_r11x0.html#ae79c42c4ceceb7a6897731d01d365281":[3,0,29,86], +"class_l_r11x0.html#af24ba794f71c4e37cd13d2f4dbec5bf7":[3,0,29,53], +"class_l_r11x0.html#af79757dbbd62e080c1bad2e608ab940c":[3,0,29,88], +"class_l_r11x0.html#af85c16956c2250dbf338a298c074d28c":[3,0,29,40], +"class_l_r11x0.html#af96883b2ca7a36a8921ee1cd222adebf":[3,0,29,29], +"class_l_r11x0.html#afe8684b336a8137cde591283297a869c":[3,0,29,28], +"class_l_r11x0.html#aff6060e116701c60e078d3d930723b4b":[3,0,29,78], "class_lo_ra_w_a_n_node.html":[3,0,25], "class_lo_ra_w_a_n_node.html#a07ab107de181bde59c2731a5a64a1e2e":[3,0,25,23], "class_lo_ra_w_a_n_node.html#a0feeaed200d8f94ad94c3ed49f404847":[3,0,25,5], @@ -248,6 +249,5 @@ var NAVTREEINDEX1 = "class_physical_layer.html#a1784cb227d04b3f2846625fda6797536":[3,0,44,5], "class_physical_layer.html#a18664ad615c5507ff1690baaca90b094":[3,0,44,57], "class_physical_layer.html#a1a5985308904261dd431f373d47ddee4":[3,0,44,25], -"class_physical_layer.html#a1de26f68b939f5af79ec29cc34c7be18":[3,0,44,12], -"class_physical_layer.html#a2c7dd4704e3df353265010710bd26e83":[3,0,44,4] +"class_physical_layer.html#a1de26f68b939f5af79ec29cc34c7be18":[3,0,44,12] }; diff --git a/navtreeindex2.js b/navtreeindex2.js index 0a9a5ad6..1e25d0d3 100644 --- a/navtreeindex2.js +++ b/navtreeindex2.js @@ -1,5 +1,6 @@ var NAVTREEINDEX2 = { +"class_physical_layer.html#a2c7dd4704e3df353265010710bd26e83":[3,0,44,4], "class_physical_layer.html#a2f4f9b428d9ea9af886ca85e5088ed7b":[3,0,44,42], "class_physical_layer.html#a2fe95169b5cdc8cabe1f2af66cad6ef6":[3,0,44,18], "class_physical_layer.html#a32b512b34f6575b2109ae3c3f35d1369":[3,0,44,48], @@ -248,6 +249,5 @@ var NAVTREEINDEX2 = "class_radio_lib_hal.html#a4b8e36ccf8fe372c259b963666513d37":[3,0,51,9], "class_radio_lib_hal.html#a4db0c60f2f6f64003f04cf0e03fea7ab":[3,0,51,6], "class_radio_lib_hal.html#a62c9032e834ba420d81dc3e69df64e17":[3,0,51,20], -"class_radio_lib_hal.html#a64d98b48668ced5ba1014f272606f370":[3,0,51,8], -"class_radio_lib_hal.html#a68d9271c76f8c96afb734a4634bf92e9":[3,0,51,17] +"class_radio_lib_hal.html#a64d98b48668ced5ba1014f272606f370":[3,0,51,8] }; diff --git a/navtreeindex3.js b/navtreeindex3.js index 4a98bc11..a1a921af 100644 --- a/navtreeindex3.js +++ b/navtreeindex3.js @@ -1,5 +1,6 @@ var NAVTREEINDEX3 = { +"class_radio_lib_hal.html#a68d9271c76f8c96afb734a4634bf92e9":[3,0,51,17], "class_radio_lib_hal.html#a6b5341c59728a1932e33216feee04ea5":[3,0,51,10], "class_radio_lib_hal.html#a7ff9f3c608d68575dfc8962ba3669851":[3,0,51,23], "class_radio_lib_hal.html#aa1f8e5cd323e53ef9fa977734a05d030":[3,0,51,14], @@ -80,126 +81,127 @@ var NAVTREEINDEX3 = "class_s_x1261.html#ae8e9968a9ee1c2199ed9f968d8f4e3b1":[3,0,74,1], "class_s_x1262.html":[3,0,75], "class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d":[3,0,75,0], -"class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6":[3,0,75,6], "class_s_x1262.html#a2122feee1a3bffaaa20e85b24dc8a899":[3,0,75,5], "class_s_x1262.html#a33c304c19634a905c7318d9ca88f4e93":[3,0,75,4], "class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1":[3,0,75,2], "class_s_x1262.html#a7cdbfc39c779b3846aa5fd04d50d3eb8":[3,0,75,7], +"class_s_x1262.html#a87e496bf7f1ac2857e3f67438ea754db":[3,0,75,6], "class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc":[3,0,75,1], "class_s_x1262.html#aa455a7f0e69abdcca55cf35388d9dc52":[3,0,75,8], "class_s_x1262.html#aeeea8315c04afccc8cae8ec0dba2e426":[3,0,75,3], "class_s_x1268.html":[3,0,76], "class_s_x1268.html#a4f990f9e58d35cefa560c4fc767198fd":[3,0,76,3], -"class_s_x1268.html#a59b538f4971525849b7aaa3456de9929":[3,0,76,6], "class_s_x1268.html#a6b6adaee1c8d76c3d766225298d84709":[3,0,76,8], "class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f":[3,0,76,0], +"class_s_x1268.html#ad721d6feb4a8f62f2651049a68fe019b":[3,0,76,6], "class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71":[3,0,76,1], "class_s_x1268.html#ae1b1f56336fcef9ce31d9408fbbbfe3c":[3,0,76,4], "class_s_x1268.html#ae66e37a6897315f36a13c8d5cefe521b":[3,0,76,7], "class_s_x1268.html#af412a9361fe413b2d0c426100056d8c2":[3,0,76,5], "class_s_x1268.html#af6b041392136b599eec57085e2067a6f":[3,0,76,2], "class_s_x126x.html":[3,0,77], -"class_s_x126x.html#a001c4637f01ed6f0216cd6c4d7e10da3":[3,0,77,84], -"class_s_x126x.html#a068d709ffb79ae66d718ffb76ffae997":[3,0,77,21], -"class_s_x126x.html#a09a8fe05c23c652c7ace2e2f1bf51d93":[3,0,77,85], -"class_s_x126x.html#a0a0df468eacc71c1b2a093ac06bfff51":[3,0,77,66], -"class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d":[3,0,77,51], -"class_s_x126x.html#a121a0c8bc8548b58019c9ccbbe5181c9":[3,0,77,24], -"class_s_x126x.html#a1623e7d5450c97ca092913ad79d62208":[3,0,77,61], -"class_s_x126x.html#a16eb0bdb051f3cf288db752d18182ae2":[3,0,77,29], -"class_s_x126x.html#a187a616285c5872f9603a86c122deaf2":[3,0,77,32], +"class_s_x126x.html#a001c4637f01ed6f0216cd6c4d7e10da3":[3,0,77,85], +"class_s_x126x.html#a068d709ffb79ae66d718ffb76ffae997":[3,0,77,22], +"class_s_x126x.html#a09a8fe05c23c652c7ace2e2f1bf51d93":[3,0,77,86], +"class_s_x126x.html#a0a0df468eacc71c1b2a093ac06bfff51":[3,0,77,67], +"class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d":[3,0,77,52], +"class_s_x126x.html#a121a0c8bc8548b58019c9ccbbe5181c9":[3,0,77,25], +"class_s_x126x.html#a1623e7d5450c97ca092913ad79d62208":[3,0,77,62], +"class_s_x126x.html#a16eb0bdb051f3cf288db752d18182ae2":[3,0,77,30], +"class_s_x126x.html#a187a616285c5872f9603a86c122deaf2":[3,0,77,33], "class_s_x126x.html#a19f3c26d7a7959e302fc8174fc88a6d4":[3,0,77,5], -"class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676":[3,0,77,50], -"class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2":[3,0,77,65], -"class_s_x126x.html#a269c8e4ae0d21af88e9422ccf9708c1e":[3,0,77,31], -"class_s_x126x.html#a2af78b744b3e61d3857bed93c3b1bde1":[3,0,77,97], -"class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60":[3,0,77,54], -"class_s_x126x.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7":[3,0,77,67], +"class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676":[3,0,77,51], +"class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2":[3,0,77,66], +"class_s_x126x.html#a269c8e4ae0d21af88e9422ccf9708c1e":[3,0,77,32], +"class_s_x126x.html#a2af78b744b3e61d3857bed93c3b1bde1":[3,0,77,98], +"class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60":[3,0,77,55], +"class_s_x126x.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7":[3,0,77,68], "class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c":[3,0,77,3], -"class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08":[3,0,77,42], -"class_s_x126x.html#a2fa0384a529746811e2dcb2eeb4188ec":[3,0,77,83], -"class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2":[3,0,77,35], -"class_s_x126x.html#a3563453988a83d22dd07d4691543a300":[3,0,77,34], -"class_s_x126x.html#a373012fb3276872238f654b66879a710":[3,0,77,41], -"class_s_x126x.html#a3765f534418d4e0540c179621c019138":[3,0,77,14], -"class_s_x126x.html#a37dab0ab3c4cab82e367971fc31588a6":[3,0,77,8], -"class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8":[3,0,77,17], -"class_s_x126x.html#a44856b641060cff8e9e2019901cd4751":[3,0,77,87], -"class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,77,93], -"class_s_x126x.html#a4f514b341b8982650526c6d8e20fd1a4":[3,0,77,53], -"class_s_x126x.html#a50e757c2a63e5c7da5b0d0d6c00f91b5":[3,0,77,56], -"class_s_x126x.html#a5595fff99d76d50d711b8cdad98527c4":[3,0,77,80], -"class_s_x126x.html#a56f88f6a2b88ae6dbd3ad04b1950e7b2":[3,0,77,11], -"class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6":[3,0,77,74], -"class_s_x126x.html#a59b761a67d15cdbfdccd6a759f464d00":[3,0,77,28], -"class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22":[3,0,77,68], -"class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8":[3,0,77,64], -"class_s_x126x.html#a5fa48e147ee54e1b0fc4d28ef5247180":[3,0,77,95], -"class_s_x126x.html#a66ad433561b02fe61b09afd735ce56cc":[3,0,77,86], -"class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd":[3,0,77,9], -"class_s_x126x.html#a75c8d32cee712e0c940163446b98e587":[3,0,77,7], -"class_s_x126x.html#a7603aa60ae8d975eb262a4b7e2aed1d0":[3,0,77,59], -"class_s_x126x.html#a782a2e4ab7779369c0dc0cb4779fda81":[3,0,77,26], -"class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71":[3,0,77,82], -"class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3":[3,0,77,55], -"class_s_x126x.html#a827a4754ea53388513d263e5d9171395":[3,0,77,72], -"class_s_x126x.html#a865397e1cca38bec2d055c047825ea07":[3,0,77,78], -"class_s_x126x.html#a867b111d21308319e117695051e157ae":[3,0,77,23], -"class_s_x126x.html#a882cec40d9aa98a0d536e6afb65b1719":[3,0,77,76], -"class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435":[3,0,77,38], -"class_s_x126x.html#a8a3ad4e12df862ab18b326d9dba26d66":[3,0,77,81], -"class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e":[3,0,77,15], -"class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e":[3,0,77,48], -"class_s_x126x.html#a920aa76ff5f0f579424ef6de92e588c8":[3,0,77,69], -"class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b":[3,0,77,96], -"class_s_x126x.html#a923654706eff5118ef6e84214e837f27":[3,0,77,90], -"class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d":[3,0,77,98], +"class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08":[3,0,77,43], +"class_s_x126x.html#a2fa0384a529746811e2dcb2eeb4188ec":[3,0,77,84], +"class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2":[3,0,77,36], +"class_s_x126x.html#a356052e39138cabc41358f5728bbbe70":[3,0,77,6], +"class_s_x126x.html#a3563453988a83d22dd07d4691543a300":[3,0,77,35], +"class_s_x126x.html#a373012fb3276872238f654b66879a710":[3,0,77,42], +"class_s_x126x.html#a3765f534418d4e0540c179621c019138":[3,0,77,15], +"class_s_x126x.html#a37dab0ab3c4cab82e367971fc31588a6":[3,0,77,9], +"class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8":[3,0,77,18], +"class_s_x126x.html#a44856b641060cff8e9e2019901cd4751":[3,0,77,88], +"class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,77,94], +"class_s_x126x.html#a4f514b341b8982650526c6d8e20fd1a4":[3,0,77,54], +"class_s_x126x.html#a50e757c2a63e5c7da5b0d0d6c00f91b5":[3,0,77,57], +"class_s_x126x.html#a5595fff99d76d50d711b8cdad98527c4":[3,0,77,81], +"class_s_x126x.html#a56f88f6a2b88ae6dbd3ad04b1950e7b2":[3,0,77,12], +"class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6":[3,0,77,75], +"class_s_x126x.html#a59b761a67d15cdbfdccd6a759f464d00":[3,0,77,29], +"class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22":[3,0,77,69], +"class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8":[3,0,77,65], +"class_s_x126x.html#a5fa48e147ee54e1b0fc4d28ef5247180":[3,0,77,96], +"class_s_x126x.html#a66ad433561b02fe61b09afd735ce56cc":[3,0,77,87], +"class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd":[3,0,77,10], +"class_s_x126x.html#a75c8d32cee712e0c940163446b98e587":[3,0,77,8], +"class_s_x126x.html#a7603aa60ae8d975eb262a4b7e2aed1d0":[3,0,77,60], +"class_s_x126x.html#a782a2e4ab7779369c0dc0cb4779fda81":[3,0,77,27], +"class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71":[3,0,77,83], +"class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3":[3,0,77,56], +"class_s_x126x.html#a827a4754ea53388513d263e5d9171395":[3,0,77,73], +"class_s_x126x.html#a865397e1cca38bec2d055c047825ea07":[3,0,77,79], +"class_s_x126x.html#a867b111d21308319e117695051e157ae":[3,0,77,24], +"class_s_x126x.html#a882cec40d9aa98a0d536e6afb65b1719":[3,0,77,77], +"class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435":[3,0,77,39], +"class_s_x126x.html#a8a3ad4e12df862ab18b326d9dba26d66":[3,0,77,82], +"class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e":[3,0,77,16], +"class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e":[3,0,77,49], +"class_s_x126x.html#a920aa76ff5f0f579424ef6de92e588c8":[3,0,77,70], +"class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b":[3,0,77,97], +"class_s_x126x.html#a923654706eff5118ef6e84214e837f27":[3,0,77,91], +"class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d":[3,0,77,99], "class_s_x126x.html#a936a40038e05740a528f2b53f8e17010":[3,0,77,2], -"class_s_x126x.html#a95007639c2648a1dbb614493224606f1":[3,0,77,47], -"class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f":[3,0,77,39], -"class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f":[3,0,77,73], -"class_s_x126x.html#aa1e7777fc8237e2c9d933cd4b6304e28":[3,0,77,57], -"class_s_x126x.html#aa3c90f19cd141738ff013ae72f78f1bb":[3,0,77,6], -"class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab":[3,0,77,19], +"class_s_x126x.html#a95007639c2648a1dbb614493224606f1":[3,0,77,48], +"class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f":[3,0,77,40], +"class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f":[3,0,77,74], +"class_s_x126x.html#aa1e7777fc8237e2c9d933cd4b6304e28":[3,0,77,58], +"class_s_x126x.html#aa3c90f19cd141738ff013ae72f78f1bb":[3,0,77,7], +"class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab":[3,0,77,20], "class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8":[3,0,77,0], -"class_s_x126x.html#aad7e4df3e1ca20d524e1d776047e1013":[3,0,77,77], -"class_s_x126x.html#ab4c29619a38391805a11231c67424847":[3,0,77,10], -"class_s_x126x.html#ab4f9b0c6496a796211e9816bf92146a7":[3,0,77,22], -"class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,77,36], +"class_s_x126x.html#aad7e4df3e1ca20d524e1d776047e1013":[3,0,77,78], +"class_s_x126x.html#ab4c29619a38391805a11231c67424847":[3,0,77,11], +"class_s_x126x.html#ab4f9b0c6496a796211e9816bf92146a7":[3,0,77,23], +"class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,77,37], "class_s_x126x.html#ab9ce38cfeaa36ddcc2d82b2974d7088c":[3,0,77,1], -"class_s_x126x.html#ab9db47423cf4e09ab126669d9fecbf0e":[3,0,77,27], -"class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5":[3,0,77,16], -"class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034":[3,0,77,44], -"class_s_x126x.html#ac38a19db6b8b9aff438d6e23051d487d":[3,0,77,43], -"class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987":[3,0,77,25], -"class_s_x126x.html#ac594fbb30c5010658c970a64654c7162":[3,0,77,71], -"class_s_x126x.html#ac79f7ebab97ae91fff6933be3207c873":[3,0,77,60], -"class_s_x126x.html#acb1a1c51f207439880ae537f5ffeb17c":[3,0,77,33], -"class_s_x126x.html#acb8611a9c3862dd1bfa73ef47b8f9b20":[3,0,77,40], -"class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9":[3,0,77,20], -"class_s_x126x.html#ad0f95b62ee987010b00f4be75bf9ab4e":[3,0,77,89], -"class_s_x126x.html#ad6274222ccf534e98e3cd17dfa1520d4":[3,0,77,63], -"class_s_x126x.html#ad90a56cb55c5bb64037a0d412d84a80d":[3,0,77,62], -"class_s_x126x.html#ada0fe6c3d31885952b439135cf0c18f1":[3,0,77,100], -"class_s_x126x.html#ada508497ee2e70170da3afe078e2fe0e":[3,0,77,94], -"class_s_x126x.html#adec09cba71494bd927ad1da786606ca6":[3,0,77,30], -"class_s_x126x.html#adf06ca0d64a61ce16a0a2f4f9a7d6a86":[3,0,77,92], -"class_s_x126x.html#adf54f7b83aa47ad0b803147622b3c580":[3,0,77,58], -"class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0":[3,0,77,37], -"class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf":[3,0,77,52], -"class_s_x126x.html#ae473773e5bed4b08452e80311bdb26f2":[3,0,77,79], -"class_s_x126x.html#ae500bad45638a47264b7e5955a93107d":[3,0,77,75], -"class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d":[3,0,77,70], -"class_s_x126x.html#ae731568798d03d9722a440fd6a23faf2":[3,0,77,99], -"class_s_x126x.html#aed0e7dcd60479c9db3d7a3408e7f396d":[3,0,77,45], -"class_s_x126x.html#af30a581d31feae6f50c0591d1ee113f1":[3,0,77,49], -"class_s_x126x.html#af38ba3d27ab2ac10c703eefa1c428913":[3,0,77,12], +"class_s_x126x.html#ab9db47423cf4e09ab126669d9fecbf0e":[3,0,77,28], +"class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5":[3,0,77,17], +"class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034":[3,0,77,45], +"class_s_x126x.html#ac38a19db6b8b9aff438d6e23051d487d":[3,0,77,44], +"class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987":[3,0,77,26], +"class_s_x126x.html#ac594fbb30c5010658c970a64654c7162":[3,0,77,72], +"class_s_x126x.html#ac79f7ebab97ae91fff6933be3207c873":[3,0,77,61], +"class_s_x126x.html#acb1a1c51f207439880ae537f5ffeb17c":[3,0,77,34], +"class_s_x126x.html#acb8611a9c3862dd1bfa73ef47b8f9b20":[3,0,77,41], +"class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9":[3,0,77,21], +"class_s_x126x.html#ad0f95b62ee987010b00f4be75bf9ab4e":[3,0,77,90], +"class_s_x126x.html#ad6274222ccf534e98e3cd17dfa1520d4":[3,0,77,64], +"class_s_x126x.html#ad90a56cb55c5bb64037a0d412d84a80d":[3,0,77,63], +"class_s_x126x.html#ada0fe6c3d31885952b439135cf0c18f1":[3,0,77,101], +"class_s_x126x.html#ada508497ee2e70170da3afe078e2fe0e":[3,0,77,95], +"class_s_x126x.html#adec09cba71494bd927ad1da786606ca6":[3,0,77,31], +"class_s_x126x.html#adf06ca0d64a61ce16a0a2f4f9a7d6a86":[3,0,77,93], +"class_s_x126x.html#adf54f7b83aa47ad0b803147622b3c580":[3,0,77,59], +"class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0":[3,0,77,38], +"class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf":[3,0,77,53], +"class_s_x126x.html#ae473773e5bed4b08452e80311bdb26f2":[3,0,77,80], +"class_s_x126x.html#ae500bad45638a47264b7e5955a93107d":[3,0,77,76], +"class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d":[3,0,77,71], +"class_s_x126x.html#ae731568798d03d9722a440fd6a23faf2":[3,0,77,100], +"class_s_x126x.html#aed0e7dcd60479c9db3d7a3408e7f396d":[3,0,77,46], +"class_s_x126x.html#af30a581d31feae6f50c0591d1ee113f1":[3,0,77,50], +"class_s_x126x.html#af38ba3d27ab2ac10c703eefa1c428913":[3,0,77,13], "class_s_x126x.html#af404471ef9d379c58b5b08757593fe6d":[3,0,77,4], -"class_s_x126x.html#af79757dbbd62e080c1bad2e608ab940c":[3,0,77,91], -"class_s_x126x.html#af9352e49d893151d68a314109140fe29":[3,0,77,88], -"class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2":[3,0,77,13], -"class_s_x126x.html#afd3113858966e878e9c67a1e710bd586":[3,0,77,46], -"class_s_x126x.html#afdd901c5eac2ca8773d0977e2c493317":[3,0,77,18], +"class_s_x126x.html#af79757dbbd62e080c1bad2e608ab940c":[3,0,77,92], +"class_s_x126x.html#af9352e49d893151d68a314109140fe29":[3,0,77,89], +"class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2":[3,0,77,14], +"class_s_x126x.html#afd3113858966e878e9c67a1e710bd586":[3,0,77,47], +"class_s_x126x.html#afdd901c5eac2ca8773d0977e2c493317":[3,0,77,19], "class_s_x1272.html":[3,0,78], "class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659":[3,0,78,24], "class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac":[3,0,78,12], @@ -247,7 +249,5 @@ var NAVTREEINDEX3 = "class_s_x1277.html#ac4bfae9258662381e685e46c803c984c":[3,0,81,4], "class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44":[3,0,81,2], "class_s_x1277.html#ad68ea24b46d9e7d3f82282cdccd20e00":[3,0,81,5], -"class_s_x1277.html#aec55de7c6622936ff48384bb33424b84":[3,0,81,6], -"class_s_x1277.html#aef5d9e27edc2173d1b4cc1cb0d9733bc":[3,0,81,3], -"class_s_x1278.html":[3,0,82] +"class_s_x1277.html#aec55de7c6622936ff48384bb33424b84":[3,0,81,6] }; diff --git a/navtreeindex4.js b/navtreeindex4.js index 6479ad7f..30c842ff 100644 --- a/navtreeindex4.js +++ b/navtreeindex4.js @@ -1,5 +1,7 @@ var NAVTREEINDEX4 = { +"class_s_x1277.html#aef5d9e27edc2173d1b4cc1cb0d9733bc":[3,0,81,3], +"class_s_x1278.html":[3,0,82], "class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e":[3,0,82,0], "class_s_x1278.html#a0fcdc2962d1cf3410be208154d98ae4b":[3,0,82,9], "class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4":[3,0,82,19], @@ -247,7 +249,5 @@ var NAVTREEINDEX4 = "class_si443x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,65,39], "class_si443x.html#a4fdc84341b1ec602f89ad00c7ca20f26":[3,0,65,4], "class_si443x.html#a51e6b7c677e82042224798114f311175":[3,0,65,29], -"class_si443x.html#a55252bda74e8c67636a8c1fa0e9f58d3":[3,0,65,7], -"class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99":[3,0,65,42], -"class_si443x.html#a616eb24c4b11c5d39caaade160be8092":[3,0,65,9] +"class_si443x.html#a55252bda74e8c67636a8c1fa0e9f58d3":[3,0,65,7] }; diff --git a/navtreeindex5.js b/navtreeindex5.js index 35a1e307..b04cc1f3 100644 --- a/navtreeindex5.js +++ b/navtreeindex5.js @@ -1,5 +1,7 @@ var NAVTREEINDEX5 = { +"class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99":[3,0,65,42], +"class_si443x.html#a616eb24c4b11c5d39caaade160be8092":[3,0,65,9], "class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3":[3,0,65,5], "class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66":[3,0,65,22], "class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726":[3,0,65,23], @@ -142,8 +144,8 @@ var NAVTREEINDEX5 = "functions_enum.html":[3,3,4], "functions_eval.html":[3,3,5], "functions_f.html":[3,3,0,5], -"functions_func.html":[3,3,1], "functions_func.html":[3,3,1,0], +"functions_func.html":[3,3,1], "functions_func_b.html":[3,3,1,1], "functions_func_c.html":[3,3,1,2], "functions_func_d.html":[3,3,1,3], @@ -247,7 +249,5 @@ var NAVTREEINDEX5 = "group__status__codes.html#ga5529b54dc67d5ccdc2a29989ebf43711":[2,6,46], "group__status__codes.html#ga5584a219fcb1a8e1789142b18a3a511e":[2,6,62], "group__status__codes.html#ga55da4b2ee0661872a37f1c57fc61c666":[2,6,45], -"group__status__codes.html#ga58ff08f4dba334cf8e26474ec2d3facd":[2,6,91], -"group__status__codes.html#ga5d11e8ce64fb412c2169d0f30b9e9c62":[2,6,5], -"group__status__codes.html#ga5d57c9ea944fdad3760fa54ed033ace5":[2,6,59] +"group__status__codes.html#ga58ff08f4dba334cf8e26474ec2d3facd":[2,6,91] }; diff --git a/navtreeindex6.js b/navtreeindex6.js index 6b69acc2..eae5f1cd 100644 --- a/navtreeindex6.js +++ b/navtreeindex6.js @@ -1,5 +1,7 @@ var NAVTREEINDEX6 = { +"group__status__codes.html#ga5d11e8ce64fb412c2169d0f30b9e9c62":[2,6,5], +"group__status__codes.html#ga5d57c9ea944fdad3760fa54ed033ace5":[2,6,59], "group__status__codes.html#ga633e2f826e44d4575ca67459fda5d660":[2,6,93], "group__status__codes.html#ga684497ce1c94442b5fe0396ea4ec930d":[2,6,50], "group__status__codes.html#ga68c7f7b8c699dbd6524da685be476fca":[2,6,65], @@ -63,8 +65,8 @@ var NAVTREEINDEX6 = "group__typedefs.html#ga210f31dd2bff7fb80563275648a5bbbd":[2,7,1], "group__typedefs.html#gafaf66becf1112a55ba8ad7402b802b77":[2,7,0], "hierarchy.html":[3,2], -"index.html":[0], "index.html":[], +"index.html":[0], "libtock_hal_8h_source.html":[4,0,0,0,4,0], "lr1110__transceiver__0303_8h_source.html":[4,0,0,1,2,0,0], "lr1110__transceiver__0304_8h_source.html":[4,0,0,1,2,0,1], @@ -247,7 +249,5 @@ var NAVTREEINDEX6 = "struct_lo_ra_w_a_n_channel_span__t.html#a958f8056a2611c7a503169457278541e":[3,0,21,4], "struct_lo_ra_w_a_n_channel_span__t.html#ab613b4ca3a2c99ef0aa53f8132f54535":[3,0,21,2], "struct_lo_ra_w_a_n_event__t.html":[3,0,22], -"struct_lo_ra_w_a_n_event__t.html#a01e1843dcd39911a0fbbb86cdca35d33":[3,0,22,6], -"struct_lo_ra_w_a_n_event__t.html#a09079dc76b5367d23766e357d2ddb794":[3,0,22,0], -"struct_lo_ra_w_a_n_event__t.html#a14f360e64ae4a6090c04333567f1a513":[3,0,22,5] +"struct_lo_ra_w_a_n_event__t.html#a01e1843dcd39911a0fbbb86cdca35d33":[3,0,22,6] }; diff --git a/navtreeindex7.js b/navtreeindex7.js index 0102d303..51b6957b 100644 --- a/navtreeindex7.js +++ b/navtreeindex7.js @@ -1,5 +1,7 @@ var NAVTREEINDEX7 = { +"struct_lo_ra_w_a_n_event__t.html#a09079dc76b5367d23766e357d2ddb794":[3,0,22,0], +"struct_lo_ra_w_a_n_event__t.html#a14f360e64ae4a6090c04333567f1a513":[3,0,22,5], "struct_lo_ra_w_a_n_event__t.html#a49eebe64d351bb2e91901ef8fae044ff":[3,0,22,9], "struct_lo_ra_w_a_n_event__t.html#a506755c4731be16d126bdef873c420f8":[3,0,22,1], "struct_lo_ra_w_a_n_event__t.html#a56281d98efee007a0c03e6a6ae8a592b":[3,0,22,2], diff --git a/search/all_10.js b/search/all_10.js index d46a0f4c..b1a33d8e 100644 --- a/search/all_10.js +++ b/search/all_10.js @@ -1,185 +1,185 @@ var searchData= [ - ['scanchannel_489',['scanChannel',['../class_l_r11x0.html#a6a3034c91f5bce70c853ab1620725b3c',1,'LR11x0::scanChannel()'],['../class_physical_layer.html#af788cf83ceb0222cd0fa4a1323b9041b',1,'PhysicalLayer::scanChannel(const ChannelScanConfig_t &config)'],['../class_physical_layer.html#abd9e39cc745acbf084cfa0d3f4d10718',1,'PhysicalLayer::scanChannel()'],['../class_s_x128x.html#ab55112682432f369fb17f8107ba5158b',1,'SX128x::scanChannel(const ChannelScanConfig_t &config) override'],['../class_s_x128x.html#a2f8427103d6609f3ac44b23fcca4f301',1,'SX128x::scanChannel() override'],['../class_s_x127x.html#a13ae97e18744dc617bc9326cfbaad3a3',1,'SX127x::scanChannel()'],['../class_s_x126x.html#a373012fb3276872238f654b66879a710',1,'SX126x::scanChannel(const ChannelScanConfig_t &config) override'],['../class_s_x126x.html#acb8611a9c3862dd1bfa73ef47b8f9b20',1,'SX126x::scanChannel() override'],['../class_l_r11x0.html#a5e8f21878bdab1439805aea1e9da168d',1,'LR11x0::scanChannel()']]], - ['scanguard_490',['scanGuard',['../class_lo_ra_w_a_n_node.html#a2176aa3d546e6b00e870a7e1e310c403',1,'LoRaWANNode']]], - ['scanpixellen_491',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]], - ['scheduletransmission_492',['scheduleTransmission',['../class_lo_ra_w_a_n_node.html#a16c7ae2edfe324e11498b13aa042665f',1,'LoRaWANNode']]], - ['sendframe_493',['sendFrame',['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()'],['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()']]], - ['sendheader_494',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]], - ['sendline_495',['sendLine',['../class_s_s_t_v_client.html#ab8579712e82e806960ced7bf2750d9c6',1,'SSTVClient']]], - ['sendmaccommandreq_496',['sendMacCommandReq',['../class_lo_ra_w_a_n_node.html#adef05650cf4eb92042ca5e2688c1e164',1,'LoRaWANNode']]], - ['sendmice_497',['sendMicE',['../class_a_p_r_s_client.html#af8f28eba026b0f0a25c8ba54a96f4743',1,'APRSClient']]], - ['sendposition_498',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]], - ['sendreceive_499',['sendReceive',['../class_lo_ra_w_a_n_node.html#a7123f9a907df9224b9b01282c12af459',1,'LoRaWANNode::sendReceive(uint8_t *dataUp, size_t lenUp, uint8_t fPort=1, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a11c2fbe631063da69355f8d74f4bf3b8',1,'LoRaWANNode::sendReceive(const char *strUp, uint8_t fPort, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a85cf006ffd97ece3b2d2974b715540cb',1,'LoRaWANNode::sendReceive(const char *strUp, uint8_t fPort, uint8_t *dataDown, size_t *lenDown, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a07ab107de181bde59c2731a5a64a1e2e',1,'LoRaWANNode::sendReceive(uint8_t *dataUp, size_t lenUp, uint8_t fPort, uint8_t *dataDown, size_t *lenDown, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)']]], - ['sendseqnumber_500',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]], - ['sendtone_501',['sendTone',['../class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111',1,'PagerClient']]], - ['seqctrl_502',['seqCtrl',['../struct_l_r11x0_wifi_result_extended__t.html#ad86cb8ec2fca8dc1858a4fe6b0e1e9cf',1,'LR11x0WifiResultExtended_t']]], - ['service_503',['service',['../struct_l_r11x0_wifi_result_extended__t.html#a4ffbb47fb23051dfeb2fe7ae52ae6dea',1,'LR11x0WifiResultExtended_t']]], - ['setaccessaddress_504',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]], - ['setaddresswidth_505',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]], - ['setadr_506',['setADR',['../class_lo_ra_w_a_n_node.html#ae222275f807f472083ea6100c23c75ff',1,'LoRaWANNode']]], - ['setaeskey_507',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]], - ['setafc_508',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]], - ['setafcagctrigger_509',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]], - ['setafcbandwidth_510',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], - ['setambienttemperature_511',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], - ['setautoack_512',['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_513',['setBandwidth',['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::setBandwidth()'],['../class_l_r11x0.html#a70d9849eb8e5ce2090e4e332252753d7',1,'LR11x0::setBandwidth()'],['../class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08',1,'SX126x::setBandwidth()'],['../class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b',1,'SX1272::setBandwidth()'],['../class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6',1,'SX1278::setBandwidth()'],['../class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a',1,'SX128x::setBandwidth()']]], - ['setbitrate_514',['setBitRate',['../class_c_c1101.html#a6fd22cdec29e1e34a92aa9854b90fdc9',1,'CC1101::setBitRate()'],['../classn_r_f24.html#a760d3f47f58ddacdf41975447484a47c',1,'nRF24::setBitRate()'],['../class_r_f69.html#aa3bfb830901728e9a3c140036aa91c56',1,'RF69::setBitRate()'],['../class_si443x.html#afcba86e79d229b3fd7268dcbd7c47b62',1,'Si443x::setBitRate()'],['../class_s_x1233.html#a98e0248cfcca7158261f7ebb31e0aa9f',1,'SX1233::setBitRate()'],['../class_s_x126x.html#ac38a19db6b8b9aff438d6e23051d487d',1,'SX126x::setBitRate()'],['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()'],['../class_s_x128x.html#ad6570f33bae09bc8b7617f9da39033ac',1,'SX128x::setBitRate()'],['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_l_r11x0.html#ab1954e4733a7fbea4129d9a2de2285d9',1,'LR11x0::setBitRate()']]], - ['setbitratetolerance_515',['setBitRateTolerance',['../class_c_c1101.html#adc76af01dbc9171b3fdd7570624a4d4f',1,'CC1101']]], - ['setbroadcastaddress_516',['setBroadcastAddress',['../class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40',1,'SX127x::setBroadcastAddress()'],['../class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034',1,'SX126x::setBroadcastAddress()'],['../class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8',1,'RF69::setBroadcastAddress()'],['../class_l_r11x0.html#af24ba794f71c4e37cd13d2f4dbec5bf7',1,'LR11x0::setBroadcastAddress()']]], - ['setbuffernonces_517',['setBufferNonces',['../class_lo_ra_w_a_n_node.html#a11701081ac6bd39a8a2b4bdbc248fac2',1,'LoRaWANNode']]], - ['setbuffersession_518',['setBufferSession',['../class_lo_ra_w_a_n_node.html#aadebe7a412aec8043aa2f8f57a202f49',1,'LoRaWANNode']]], - ['setchannelscanaction_519',['setChannelScanAction',['../class_s_t_m32_w_lx.html#a119ad225f9eba91e7c38f82cf0f1c89d',1,'STM32WLx::setChannelScanAction()'],['../class_s_x126x.html#aed0e7dcd60479c9db3d7a3408e7f396d',1,'SX126x::setChannelScanAction()'],['../class_s_x127x.html#ac23c2b384ae8611d59e10ef6a14fe7e4',1,'SX127x::setChannelScanAction()'],['../class_physical_layer.html#ae11c191a7edf3116bf468b9153237260',1,'PhysicalLayer::setChannelScanAction()']]], - ['setcodingrate_520',['setCodingRate',['../class_l_r11x0.html#a583f2d5ed601a98c609dbf0d57f2f541',1,'LR11x0::setCodingRate()'],['../class_s_x126x.html#afd3113858966e878e9c67a1e710bd586',1,'SX126x::setCodingRate()'],['../class_s_x1272.html#a960913438feccad4c1913a9222384a5f',1,'SX1272::setCodingRate()'],['../class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1',1,'SX1278::setCodingRate()'],['../class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a',1,'SX128x::setCodingRate()']]], - ['setcorrection_521',['setCorrection',['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client::setCorrection()'],['../class_bell_client.html#a90f3f33a09a4cf8d544ca1e9a23beae2',1,'BellClient::setCorrection()'],['../class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e',1,'SSTVClient::setCorrection()'],['../class_f_s_k4_client.html#aab85cb6519e5448dc332bf17bd60f90a',1,'FSK4Client::setCorrection()']]], - ['setcrc_522',['setCRC',['../class_l_r11x0.html#a551b82787288b0b14e4d3124e6744dc3',1,'LR11x0::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_523',['setCrcFiltering',['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#ab531ad461b250a060e92d9c744e79070',1,'SX127x::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_c_c1101.html#a60695681fc74a37f2a31a9638552e877',1,'CC1101::setCrcFiltering()']]], - ['setcsma_524',['setCSMA',['../class_lo_ra_w_a_n_node.html#a2d9a53560ebfbaf006eefd9761424d80',1,'LoRaWANNode']]], - ['setcurrentlimit_525',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]], - ['setdatarate_526',['setDataRate',['../class_l_l_c_c68.html#ac630770441cadc547892173bde7504f9',1,'LLCC68']]], - ['setdatarate_527',['setDatarate',['../class_lo_ra_w_a_n_node.html#a14e8a8a098df28ff5ee294f235500499',1,'LoRaWANNode']]], - ['setdatarate_528',['setDataRate',['../class_physical_layer.html#a6ee1fed6bbb8d3571974153ac6f26751',1,'PhysicalLayer::setDataRate()'],['../class_s_x128x.html#adbf5a9ac62460efb1c709e51260dbe3d',1,'SX128x::setDataRate()'],['../class_s_x1278.html#a286f1ee00e2c7f2ab1bd06b66196c3f9',1,'SX1278::setDataRate()'],['../class_s_x1277.html#ac4bfae9258662381e685e46c803c984c',1,'SX1277::setDataRate()'],['../class_s_x1273.html#acaffc772f70e7db371cbe736dc4a19ab',1,'SX1273::setDataRate()'],['../class_s_x1272.html#a5b79b7cd20c4c3cd1f486f777b3457d1',1,'SX1272::setDataRate()'],['../class_s_x126x.html#af30a581d31feae6f50c0591d1ee113f1',1,'SX126x::setDataRate()'],['../class_l_r11x0.html#a056e65c58ff8fb18bd84917512790ee6',1,'LR11x0::setDataRate()']]], - ['setdatashaping_529',['setDataShaping',['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()'],['../class_l_r11x0.html#a5a33df702da3f5b010e07d5e6fac7aa6',1,'LR11x0::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::setDataShaping()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::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_external_radio.html#abe0bfb0f178783eff28bdc867e9324fd',1,'ExternalRadio::setDataShaping()'],['../class_physical_layer.html#aeba04366a0cf05ff3d8227c4f7c8e1e9',1,'PhysicalLayer::setDataShaping()'],['../class_si443x.html#ade08c79074c7e4414d34eefa25cee168',1,'Si443x::setDataShaping()']]], - ['setdatashapingook_530',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]], - ['setdevicestatus_531',['setDeviceStatus',['../class_lo_ra_w_a_n_node.html#a5449e301634dff1838a1b024b4067034',1,'LoRaWANNode']]], - ['setdio0action_532',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ae75bc48cc74a407370cd9f4bf95e9e30',1,'SX127x::setDio0Action()']]], - ['setdio1action_533',['setDio1Action',['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()'],['../class_s_x127x.html#a7b4bce81839b105c464ebf922602e58b',1,'SX127x::setDio1Action()'],['../class_s_t_m32_w_lx.html#a63d61bc5057e9da3d0ea12feae67122e',1,'STM32WLx::setDio1Action()'],['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()']]], - ['setdio2asrfswitch_534',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], - ['setdiomapping_535',['setDIOMapping',['../class_c_c1101.html#a544bb8d7be9c0e1ff7f7103b30925862',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a7243b3396edc1e6e67575894a5033afe',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#af7d373bc93e99790912cebe8d5ae6403',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()']]], - ['setdiopreambledetect_536',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]], - ['setdirectaction_537',['setDirectAction',['../class_c_c1101.html#a24f4b059cc56238499c6117b88cd5505',1,'CC1101::setDirectAction()'],['../class_r_f69.html#a9852fe520aec018d2bb4aff0cd17de77',1,'RF69::setDirectAction()'],['../class_si443x.html#a48a59ff1ddc7c8ec820328174955de43',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#a4f514b341b8982650526c6d8e20fd1a4',1,'SX126x::setDirectAction()'],['../class_s_x127x.html#ae4b99d1bc67ac2c81eeb11dd6793a8c5',1,'SX127x::setDirectAction()'],['../class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966',1,'PhysicalLayer::setDirectAction()'],['../class_s_x128x.html#a2326cf28c385b8dd709cb62c9f665000',1,'SX128x::setDirectAction()']]], - ['setdirectsyncword_538',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], - ['setdutycycle_539',['setDutyCycle',['../class_lo_ra_w_a_n_node.html#a3d4bbd6d382496838954ab4ac1168b77',1,'LoRaWANNode']]], - ['setdwelltime_540',['setDwellTime',['../class_lo_ra_w_a_n_node.html#a62bfe68f6fe63c2e408dccbff6a34a4f',1,'LoRaWANNode']]], - ['setencoding_541',['setEncoding',['../class_physical_layer.html#acb45b2342400a03a914a91d2ac7fb488',1,'PhysicalLayer::setEncoding()'],['../class_external_radio.html#ae619f011daea49a97098d2897e5a3c2c',1,'ExternalRadio::setEncoding()'],['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()'],['../class_l_r11x0.html#a8ae178a17f6e41b545b79cfffd3e2864',1,'LR11x0::setEncoding()'],['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()']]], - ['setfhsshoppingperiod_542',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]], - ['setfifoemptyaction_543',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction(void(*func)(void))']]], - ['setfifofullaction_544',['setFifoFullAction',['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()'],['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()']]], - ['setfrequency_545',['setFrequency',['../class_c_c1101.html#ad428d7e6fc9ac119101bb0716fa80bee',1,'CC1101::setFrequency()'],['../class_l_r1110.html#ade94d20ea438cbd92c61e28d2232d7e8',1,'LR1110::setFrequency(float freq) override'],['../class_l_r1110.html#a08c9ba9d02e7e3918f73f090c6d5ed33',1,'LR1110::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb',1,'LR1120::setFrequency(float freq) override'],['../class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2',1,'LR1120::setFrequency(float freq, bool calibrate, float band=4)'],['../classn_r_f24.html#a18f24764b2ecffc076e72dce0b036116',1,'nRF24::setFrequency()'],['../class_r_f69.html#aa7f47c37eec6c7e3ebf6e6d30ebd5532',1,'RF69::setFrequency()'],['../class_si4430.html#a3959e91bcae77b8240e9e447985e05b3',1,'Si4430::setFrequency()'],['../class_s_x1262.html#a2122feee1a3bffaaa20e85b24dc8a899',1,'SX1262::setFrequency()'],['../class_si4432.html#aed3561abdb30b4eaad52d984366aadf1',1,'Si4432::setFrequency()'],['../class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e',1,'PhysicalLayer::setFrequency()'],['../class_s_x128x.html#ab9e16231c2c6bd0e4b4c6c2900b5b332',1,'SX128x::setFrequency()'],['../class_s_x1279.html#ab60691d073ca75ef09dab7a8f28fb7fb',1,'SX1279::setFrequency()'],['../class_s_x1278.html#adb4d95d3b2798cf8ea94890ae71dcc59',1,'SX1278::setFrequency()'],['../class_s_x1277.html#ad68ea24b46d9e7d3f82282cdccd20e00',1,'SX1277::setFrequency()'],['../class_s_x1276.html#a981b59110e514b7dcaec8490e1c4320c',1,'SX1276::setFrequency()'],['../class_s_x1272.html#ac1467a23e1f1bfdbd02f6d30654ed850',1,'SX1272::setFrequency()'],['../class_s_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::setFrequency(float freq, bool calibrate)'],['../class_s_x1268.html#af412a9361fe413b2d0c426100056d8c2',1,'SX1268::setFrequency(float freq) override'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency()']]], - ['setfrequencydeviation_546',['setFrequencyDeviation',['../class_physical_layer.html#a2f4f9b428d9ea9af886ca85e5088ed7b',1,'PhysicalLayer::setFrequencyDeviation()'],['../class_external_radio.html#a02928a19eab0eab615c02180cedda3eb',1,'ExternalRadio::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../class_l_r11x0.html#ac003cfe3a4dbd9bad1f01fd0147031d1',1,'LR11x0::setFrequencyDeviation()'],['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()']]], - ['setgain_547',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], - ['setgaincontrol_548',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]], - ['setgdo0action_549',['setGdo0Action',['../class_c_c1101.html#a9bee13612cf4da067faeb57d18ee2eb7',1,'CC1101']]], - ['setgdo2action_550',['setGdo2Action',['../class_c_c1101.html#ad71efbe54590e4431f3286ab99536fe9',1,'CC1101']]], - ['sethighsensitivitymode_551',['setHighSensitivityMode',['../class_s_x128x.html#a6e45fbfaec7063e52e188f47a3a585a5',1,'SX128x']]], - ['setinversion_552',['setInversion',['../class_hell_client.html#ae43025b9d55ee21a322bb5d7ee1065b0',1,'HellClient']]], - ['setirq_553',['setIrq',['../class_physical_layer.html#a8564f9834a0247e93e7620c23559ceb8',1,'PhysicalLayer']]], - ['setirqaction_554',['setIrqAction',['../class_l_r11x0.html#a49116d006b60128fe6f73a6a868a6d18',1,'LR11x0::setIrqAction()'],['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]], - ['setirqflags_555',['setIrqFlags',['../class_l_r11x0.html#a62c715ab18ea8a2e08a2791d3e764ee9',1,'LR11x0::setIrqFlags()'],['../class_s_x126x.html#a50e757c2a63e5c7da5b0d0d6c00f91b5',1,'SX126x::setIrqFlags()'],['../class_s_x127x.html#aae42b94ab2ecf729f29f101222e97666',1,'SX127x::setIrqFlags()'],['../class_s_x128x.html#a6a2ec5d316975f390f20b4e0a2e11e98',1,'SX128x::setIrqFlags()'],['../class_physical_layer.html#af88dcb54dc8e9a1edaf9f1c3e5ee2b74',1,'PhysicalLayer::setIrqFlags()']]], - ['setlnatestboost_556',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]], - ['setlowbatterythreshold_557',['setLowBatteryThreshold',['../class_s_x127x.html#a9ca9aa18e13e8390ec437e249e1d2472',1,'SX127x']]], - ['setlrfhssconfig_558',['setLrFhssConfig',['../class_l_r11x0.html#a8c1def9a01021a52f5bb82c119a9ad35',1,'LR11x0::setLrFhssConfig()'],['../class_s_x126x.html#aa1e7777fc8237e2c9d933cd4b6304e28',1,'SX126x::setLrFhssConfig()']]], - ['setmodem_559',['setModem',['../class_physical_layer.html#a77415bf4ed34be18c92c0cf4b2de7149',1,'PhysicalLayer::setModem()'],['../class_bell_client.html#a163f65f3fcce87d9bea558b34c19bd47',1,'BellClient::setModem()'],['../class_s_x128x.html#a209d69e710a785da2c69474f94fdccf3',1,'SX128x::setModem()'],['../class_s_x1279.html#aea8bd74e7c5d7b97d4fe4a8182680d5c',1,'SX1279::setModem()'],['../class_s_x1278.html#a609dd3faf2036e8c2d046fd191e0137d',1,'SX1278::setModem()'],['../class_s_x1277.html#aec55de7c6622936ff48384bb33424b84',1,'SX1277::setModem()'],['../class_s_x1276.html#a36a526b6c8540cda36d058fb47a9e099',1,'SX1276::setModem()'],['../class_s_x1273.html#af9f0969764fde3e12b6b05409718fa83',1,'SX1273::setModem()'],['../class_s_x1272.html#a2c99afea2bb3bbb1146c8a4536b4843c',1,'SX1272::setModem()'],['../class_s_x1268.html#ae66e37a6897315f36a13c8d5cefe521b',1,'SX1268::setModem()'],['../class_s_x1262.html#a7cdbfc39c779b3846aa5fd04d50d3eb8',1,'SX1262::setModem()'],['../class_l_r1120.html#a6cd250e0145ed19f2f91ed96a57a825e',1,'LR1120::setModem()'],['../class_l_r1110.html#a18f525740237b023056a8ca6f3671c6a',1,'LR1110::setModem()'],['../class_l_l_c_c68.html#aee4457d48c708f05154e931eed05c691',1,'LLCC68::setModem()']]], - ['setnodeaddress_560',['setNodeAddress',['../class_l_r11x0.html#a605f5c74ce523abad256866abe133d2e',1,'LR11x0::setNodeAddress()'],['../class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c',1,'RF69::setNodeAddress()'],['../class_s_x126x.html#adf54f7b83aa47ad0b803147622b3c580',1,'SX126x::setNodeAddress()'],['../class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95',1,'SX127x::setNodeAddress()'],['../class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8',1,'CC1101::setNodeAddress(uint8_t nodeAddr, uint8_t numBroadcastAddrs=0)']]], - ['setook_561',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a465df5a2e1f924f6d3ba4eae765847b7',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK(bool enableOOK)']]], - ['setookfixedorfloorthreshold_562',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]], - ['setookfixedthreshold_563',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]], - ['setookpeakthresholddecrement_564',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement(uint8_t value)']]], - ['setookpeakthresholdstep_565',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]], - ['setookthresholdtype_566',['setOokThresholdType',['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()'],['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()']]], - ['setoutputpower_567',['setOutputPower',['../class_c_c1101.html#a5d6dce30fc7da668975b6da663784cdf',1,'CC1101::setOutputPower()'],['../class_l_r1110.html#a65c08f0475f888537e55401b75e58b23',1,'LR1110::setOutputPower(int8_t power) override'],['../class_l_r1110.html#ae4eaaa6411bb1eeb131613fb3f43e5d1',1,'LR1110::setOutputPower(int8_t power, bool forceHighPower)'],['../class_l_r1120.html#a1b1321eb695e4a6b583074bb92c33193',1,'LR1120::setOutputPower(int8_t power) override'],['../class_l_r1120.html#a2e2ea0a2f6d3a8d81e0f2be35848bbc7',1,'LR1120::setOutputPower(int8_t power, bool forceHighPower)'],['../classn_r_f24.html#a4fa66ce5fb6d7b22bbb439c2f9103bf3',1,'nRF24::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',1,'RF69::setOutputPower()'],['../class_si4430.html#ab1303e014a4b8d2307a2b1deb061fdeb',1,'Si4430::setOutputPower()'],['../class_si4431.html#ad1538dbe67ed5d3682591d1d780ab0e9',1,'Si4431::setOutputPower()'],['../class_si4432.html#a5e3017bce6d66d35b867e7878d108c68',1,'Si4432::setOutputPower()'],['../class_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::setOutputPower()'],['../class_s_x1261.html#a3d197bb8a301f3594c7bfa1c9375aef1',1,'SX1261::setOutputPower()'],['../class_s_x1262.html#aa455a7f0e69abdcca55cf35388d9dc52',1,'SX1262::setOutputPower()'],['../class_s_x1272.html#aec51f08c0902145ff5f11e27e7cab638',1,'SX1272::setOutputPower(int8_t power) override'],['../class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659',1,'SX1272::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1278.html#a69abc18e7fa0055e6b80024e8cde7db4',1,'SX1278::setOutputPower(int8_t power) override'],['../class_s_x1278.html#aca58a6c2e8fcef6414fdf3bc1eb62082',1,'SX1278::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x128x.html#a1bc3372c47a4e3c81ef15bee448ba6b6',1,'SX128x::setOutputPower()'],['../class_physical_layer.html#ad2286dc78dbf8e3084f38e9159b99ae5',1,'PhysicalLayer::setOutputPower()'],['../class_s_x1268.html#a6b6adaee1c8d76c3d766225298d84709',1,'SX1268::setOutputPower()']]], - ['setpacketreceivedaction_568',['setPacketReceivedAction',['../class_s_x127x.html#ae236a467095fb5364d0fc4a98d85f96e',1,'SX127x::setPacketReceivedAction()'],['../class_physical_layer.html#aec928bb26f65752aa20cd236fbabb95c',1,'PhysicalLayer::setPacketReceivedAction()'],['../class_s_x128x.html#ad98c4526ef971f9aadb30e351a37eaf9',1,'SX128x::setPacketReceivedAction()'],['../class_s_x126x.html#a7603aa60ae8d975eb262a4b7e2aed1d0',1,'SX126x::setPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#ad23dafdeb21b97165be74ef8f093866c',1,'STM32WLx::setPacketReceivedAction()'],['../class_si443x.html#a0e098ea9aa3945f0c38f59efe43b147e',1,'Si443x::setPacketReceivedAction()'],['../class_r_f69.html#a74962c069e08890ac9566d48634c778e',1,'RF69::setPacketReceivedAction()'],['../classn_r_f24.html#a60df9afa489eabe3a3ca193ab7709165',1,'nRF24::setPacketReceivedAction()'],['../class_l_r11x0.html#ac2a8ece736198c966e3870dac09f4e87',1,'LR11x0::setPacketReceivedAction()'],['../class_c_c1101.html#a29a16e8ed85432c6fae8d9e45399de6e',1,'CC1101::setPacketReceivedAction(void(*func)(void)) override']]], - ['setpacketsentaction_569',['setPacketSentAction',['../class_c_c1101.html#a336999da23e554073a9fa628131883f5',1,'CC1101::setPacketSentAction()'],['../class_l_r11x0.html#a92299e41f839590008b4e344776838a1',1,'LR11x0::setPacketSentAction()'],['../classn_r_f24.html#a26b5f873db167733df143a0608eea3ac',1,'nRF24::setPacketSentAction()'],['../class_r_f69.html#a97603856caada65676ff4b11630c7f72',1,'RF69::setPacketSentAction()'],['../class_si443x.html#af2d36121ca94736ef3ecb4c09aded753',1,'Si443x::setPacketSentAction()'],['../class_s_t_m32_w_lx.html#a7c0e3aef03f0b6834d0465d8f8568c32',1,'STM32WLx::setPacketSentAction()'],['../class_s_x126x.html#ac79f7ebab97ae91fff6933be3207c873',1,'SX126x::setPacketSentAction()'],['../class_s_x127x.html#a3530e8e19cfe4d96fe49ca4e6386b099',1,'SX127x::setPacketSentAction()'],['../class_s_x128x.html#a1e6f938ce715dad9a6609bf56626a50d',1,'SX128x::setPacketSentAction()'],['../class_physical_layer.html#a32b512b34f6575b2109ae3c3f35d1369',1,'PhysicalLayer::setPacketSentAction()']]], - ['setpaconfig_570',['setPaConfig',['../class_s_x126x.html#a1623e7d5450c97ca092913ad79d62208',1,'SX126x']]], - ['setparamptime_571',['setPaRampTime',['../class_s_x126x.html#ad90a56cb55c5bb64037a0d412d84a80d',1,'SX126x']]], - ['setpreamblelength_572',['setPreambleLength',['../class_c_c1101.html#ae77c828c9c7cc12012fe011e8c4d3570',1,'CC1101::setPreambleLength()'],['../class_l_r11x0.html#aa5d7ae65666f8f9abcb7e9b169884a4a',1,'LR11x0::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_s_x126x.html#ad6274222ccf534e98e3cd17dfa1520d4',1,'SX126x::setPreambleLength()'],['../class_s_x127x.html#a844499bace6ae001446d71bee2877656',1,'SX127x::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()'],['../class_physical_layer.html#a85db1ff64e6c56e054f276c511194633',1,'PhysicalLayer::setPreambleLength()']]], - ['setpromiscuousmode_573',['setPromiscuousMode',['../class_c_c1101.html#ac1155543b27e46fa27aa4c9180da18bb',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#ae004326d663a9d6a9c30e792aa368b49',1,'RF69::setPromiscuousMode()']]], - ['setreceivepipe_574',['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_575',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]], - ['setregulatordcdc_576',['setRegulatorDCDC',['../class_l_r11x0.html#a1ad485f14a333f06b642f2d60aacf76c',1,'LR11x0::setRegulatorDCDC()'],['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x::setRegulatorDCDC()']]], - ['setregulatorldo_577',['setRegulatorLDO',['../class_l_r11x0.html#a92ae10630cc327f441809ac1406737fd',1,'LR11x0::setRegulatorLDO()'],['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x::setRegulatorLDO()']]], - ['setrepeaters_578',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]], - ['setrfswitchpins_579',['setRfSwitchPins',['../class_module.html#a7d3adea64acab11c47c804afc74bd4f3',1,'Module::setRfSwitchPins()'],['../class_c_c1101.html#a5ef45183690bb1879f106af079b01140',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#ac341945538a84430c61f80f610a94411',1,'RF69::setRfSwitchPins()'],['../class_si443x.html#a43e7ceeff9114b35ab89f1d69916b375',1,'Si443x::setRfSwitchPins()'],['../class_s_x126x.html#a0a0df468eacc71c1b2a093ac06bfff51',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#a8ca9edcae05060cce3ff7ee58faeb4e2',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5ba683fbc4a46418ce3736f224fb55f2',1,'SX128x::setRfSwitchPins()']]], - ['setrfswitchstate_580',['setRfSwitchState',['../class_module.html#afbed643f082286012bf44bba22381ae6',1,'Module']]], - ['setrfswitchtable_581',['setRfSwitchTable',['../class_module.html#ac308fa817a5c36c5dc724a0d15cefd4d',1,'Module::setRfSwitchTable()'],['../class_l_r11x0.html#a1981f0dfceca2b6175a69530ea13d643',1,'LR11x0::setRfSwitchTable()'],['../class_r_f69.html#afff64ceef5f496ce035ff6d12d6bcc3c',1,'RF69::setRfSwitchTable()'],['../class_si443x.html#a8898f11cf9dabd9a5ad717376fdbffa6',1,'Si443x::setRfSwitchTable()'],['../class_s_x126x.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'SX126x::setRfSwitchTable()'],['../class_s_x127x.html#ab9625a5246a45112267ce441ac2de254',1,'SX127x::setRfSwitchTable()'],['../class_s_x128x.html#ad5789bd27d46b24f54aac9ca55ec9958',1,'SX128x::setRfSwitchTable()'],['../class_s_t_m32_w_lx.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'STM32WLx::setRfSwitchTable()'],['../class_c_c1101.html#a7b401995be4bc136063a035ce1820634',1,'CC1101::setRfSwitchTable()']]], - ['setrssiconfig_582',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], - ['setrssithreshold_583',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]], - ['setrx2dr_584',['setRx2Dr',['../class_lo_ra_w_a_n_node.html#addfd8ac3d0bfe5a273e9ba10e51f8025',1,'LoRaWANNode']]], - ['setrxbandwidth_585',['setRxBandwidth',['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()'],['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_l_r11x0.html#a25f5ee68b3c2638ae613c87ed1c3fc64',1,'LR11x0::setRxBandwidth()'],['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()']]], - ['setrxboostedgainmode_586',['setRxBoostedGainMode',['../class_l_r11x0.html#ab0cf34cc0b67484fbf0f258bff7e9a9a',1,'LR11x0::setRxBoostedGainMode()'],['../class_s_x126x.html#a920aa76ff5f0f579424ef6de92e588c8',1,'SX126x::setRxBoostedGainMode()']]], - ['setsendsequence_587',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], - ['setspreadingfactor_588',['setSpreadingFactor',['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_l_r11x0.html#adf6895cbf7af7e00ea06c5b2b5040cb4',1,'LR11x0::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_589',['setSyncBits',['../class_l_r11x0.html#a6501ef362df1a5b71927cfe4e43c202d',1,'LR11x0::setSyncBits()'],['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x::setSyncBits()']]], - ['setsyncword_590',['setSyncWord',['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord()'],['../class_physical_layer.html#a6c71cdc1238e1368274670758431a977',1,'PhysicalLayer::setSyncWord()'],['../class_s_x128x.html#ad9584464d2e4cc09686cf4e83e65d3e0',1,'SX128x::setSyncWord()'],['../class_s_x127x.html#aaf400f33e17c1679c0b55cd70bef90b0',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len) override'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x126x.html#a827a4754ea53388513d263e5d9171395',1,'SX126x::setSyncWord()'],['../class_si443x.html#af257fb09afaa6162e1506cfe87b219b3',1,'Si443x::setSyncWord()'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_l_r11x0.html#ab8c54b1b105605ffe0908c5ff9362932',1,'LR11x0::setSyncWord(uint8_t *syncWord, size_t len) override'],['../class_l_r11x0.html#a7ffa48f1b6aaaa3f48e4b51f8ada59d8',1,'LR11x0::setSyncWord(uint32_t syncWord)'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord(uint8_t *syncWord, uint8_t len, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord()']]], - ['settcxo_591',['setTCXO',['../class_l_r11x0.html#a971b4ccd1d5479e9d72aa9649e8fef55',1,'LR11x0::setTCXO()'],['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x::setTCXO()']]], - ['settransmitpipe_592',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]], - ['settxpower_593',['setTxPower',['../class_lo_ra_w_a_n_node.html#a9af613f7d923e7bdcfdbd020132c6d4b',1,'LoRaWANNode']]], - ['setwhitening_594',['setWhitening',['../class_l_r11x0.html#adcde55b8660c24cf5783942a4132786d',1,'LR11x0::setWhitening()'],['../class_s_x126x.html#ae500bad45638a47264b7e5955a93107d',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]], - ['setwifiscanaction_595',['setWiFiScanAction',['../class_l_r11x0.html#aff6060e116701c60e078d3d930723b4b',1,'LR11x0']]], - ['si4430_596',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430::Si4430()'],['../class_si4430.html',1,'Si4430']]], - ['si4431_597',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431::Si4431()'],['../class_si4431.html',1,'Si4431']]], - ['si4432_598',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432::Si4432()'],['../class_si4432.html',1,'Si4432']]], - ['si443x_599',['Si443x',['../class_si443x.html',1,'Si443x'],['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x::Si443x()']]], - ['size_600',['size',['../class_radio_lib_c_r_c.html#ad09b067c00cda1cc676c13602dee2f5a',1,'RadioLibCRC']]], - ['sleep_601',['sleep',['../class_s_x128x.html#ab0c26aebd432d36974b3066055df6b01',1,'SX128x::sleep()'],['../class_l_r11x0.html#ad5dde79f751bbd7ea277872e237f2a69',1,'LR11x0::sleep() override'],['../class_l_r11x0.html#ad2786a2f17af5769c772ebc73df88e1f',1,'LR11x0::sleep(bool retainConfig, uint32_t sleepTime)'],['../classn_r_f24.html#a69b75e0889c609099487a43c8c3b6721',1,'nRF24::sleep()'],['../class_r_f69.html#adec9debf69f5ee846a5b6e34831ade3c',1,'RF69::sleep()'],['../class_si443x.html#ab0cc51d6b4264acf8e3e49a3a490dee9',1,'Si443x::sleep()'],['../class_s_x126x.html#a882cec40d9aa98a0d536e6afb65b1719',1,'SX126x::sleep() override'],['../class_s_x126x.html#aad7e4df3e1ca20d524e1d776047e1013',1,'SX126x::sleep(bool retainConfig)'],['../class_s_x127x.html#a1ff85ee7979da08b4e66316f1ba2c6a9',1,'SX127x::sleep()'],['../class_s_x128x.html#a98ef7dc21647642b40baf8c0194788c4',1,'SX128x::sleep()'],['../class_physical_layer.html#af1bb9a5da26da8829795ebb72e9c666e',1,'PhysicalLayer::sleep()']]], - ['spectralscanabort_602',['spectralScanAbort',['../class_s_x126x.html#a865397e1cca38bec2d055c047825ea07',1,'SX126x']]], - ['spectralscangetresult_603',['spectralScanGetResult',['../class_s_x126x.html#ae473773e5bed4b08452e80311bdb26f2',1,'SX126x']]], - ['spectralscangetstatus_604',['spectralScanGetStatus',['../class_s_x126x.html#a5595fff99d76d50d711b8cdad98527c4',1,'SX126x']]], - ['spectralscanstart_605',['spectralScanStart',['../class_s_x126x.html#a8a3ad4e12df862ab18b326d9dba26d66',1,'SX126x']]], - ['spibegin_606',['spiBegin',['../class_esp_hal.html#a960996535b8a28b59c8b72aeffff1826',1,'EspHal::spiBegin()'],['../class_pi_hal.html#a40d237c2f5f4ead26c39f33481b4d7e3',1,'PiHal::spiBegin()'],['../class_pico_hal.html#a414de51bef859659b8cac66df32bdb5a',1,'PicoHal::spiBegin()'],['../class_tock_hal.html#a04cc3c2c2c2554812557466ab5c0edc9',1,'TockHal::spiBegin()'],['../class_radio_lib_hal.html#aa1f8e5cd323e53ef9fa977734a05d030',1,'RadioLibHal::spiBegin()']]], - ['spibegintransaction_607',['spiBeginTransaction',['../class_pi_hal.html#ab8c97e2b1c42368793d48d08b815fd69',1,'PiHal::spiBeginTransaction()'],['../class_esp_hal.html#a1a552e8a34dcbe532171efd4f1d08ec9',1,'EspHal::spiBeginTransaction()'],['../class_pico_hal.html#a2b6136b2c90e83c1ab94bd92ef32805c',1,'PicoHal::spiBeginTransaction()'],['../class_tock_hal.html#a89091e5e7ed86cc7320f80e9a01713a6',1,'TockHal::spiBeginTransaction()'],['../class_radio_lib_hal.html#abe787d5e556190eef2c63e1581235460',1,'RadioLibHal::spiBeginTransaction()']]], - ['spicheckstatuscb_5ft_608',['SPIcheckStatusCb_t',['../class_module.html#a1ad7bef7d380d3b6b88dca99bd35d640',1,'Module']]], - ['spicheckstream_609',['SPIcheckStream',['../class_module.html#a5efa7ae78cab1d7f43005e965923f769',1,'Module']]], - ['spiclk_5ft_610',['spiClk_t',['../unionspi_clk__t.html',1,'']]], - ['spiconfig_611',['spiConfig',['../class_module.html#a3a4fc4101fb3f134152b458c447b8ecb',1,'Module']]], - ['spiconfig_5ft_612',['SPIConfig_t',['../struct_module_1_1_s_p_i_config__t.html',1,'Module']]], - ['spiend_613',['spiEnd',['../class_radio_lib_hal.html#a41c85e560155d644f5b4ce8444dd8b64',1,'RadioLibHal::spiEnd()'],['../class_tock_hal.html#a1d4520f65f5c7a7e2e188d32d2c001e2',1,'TockHal::spiEnd()'],['../class_pico_hal.html#ac932d26b6a31a0cd7f577d4f8812896c',1,'PicoHal::spiEnd()'],['../class_pi_hal.html#a6b0d64ed834b91f67b3344ce8c573d7b',1,'PiHal::spiEnd()'],['../class_esp_hal.html#ae0c2bcd6d667e475bbaf9ddfc6ebaede',1,'EspHal::spiEnd()']]], - ['spiendtransaction_614',['spiEndTransaction',['../class_esp_hal.html#a213a813fd83d86105977e1c781381510',1,'EspHal::spiEndTransaction()'],['../class_pi_hal.html#a7debfa73095e727950831af2e8aab5f7',1,'PiHal::spiEndTransaction()'],['../class_pico_hal.html#ae6773c6f0aac24774614a3179a4da475',1,'PicoHal::spiEndTransaction()'],['../class_tock_hal.html#ae4cef7494b98e3d0fc0b1788d3f283c4',1,'TockHal::spiEndTransaction()'],['../class_radio_lib_hal.html#a68d9271c76f8c96afb734a4634bf92e9',1,'RadioLibHal::spiEndTransaction()']]], - ['spigetregvalue_615',['SPIgetRegValue',['../class_module.html#a369e916626c821ecec85f25d5b46d752',1,'Module']]], - ['spiparsestatuscb_5ft_616',['SPIparseStatusCb_t',['../class_module.html#a9393088249856eab568126aeb2493e4a',1,'Module']]], - ['spireadregister_617',['SPIreadRegister',['../class_module.html#ab250eb929068e0c890e16e8e6d7cd7e6',1,'Module']]], - ['spireadregisterburst_618',['SPIreadRegisterBurst',['../class_module.html#ac993ab8e2ea0f5aa93339d1f6ffb54ee',1,'Module']]], - ['spireadstream_619',['SPIreadStream',['../class_module.html#adacceb57ecfecb09150c135b2b44436f',1,'Module::SPIreadStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a085415b49ff72238f118b937ad896cbd',1,'Module::SPIreadStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]], - ['spisetregvalue_620',['SPIsetRegValue',['../class_module.html#ade75c5403a05156b43cc7562563ae2d7',1,'Module']]], - ['spitransfer_621',['SPItransfer',['../class_module.html#aa6df70520aa015dd3a1bccdceae67232',1,'Module']]], + ['scanchannel_490',['scanChannel',['../class_l_r11x0.html#a6a3034c91f5bce70c853ab1620725b3c',1,'LR11x0::scanChannel()'],['../class_physical_layer.html#af788cf83ceb0222cd0fa4a1323b9041b',1,'PhysicalLayer::scanChannel(const ChannelScanConfig_t &config)'],['../class_physical_layer.html#abd9e39cc745acbf084cfa0d3f4d10718',1,'PhysicalLayer::scanChannel()'],['../class_s_x128x.html#ab55112682432f369fb17f8107ba5158b',1,'SX128x::scanChannel(const ChannelScanConfig_t &config) override'],['../class_s_x128x.html#a2f8427103d6609f3ac44b23fcca4f301',1,'SX128x::scanChannel() override'],['../class_s_x127x.html#a13ae97e18744dc617bc9326cfbaad3a3',1,'SX127x::scanChannel()'],['../class_s_x126x.html#a373012fb3276872238f654b66879a710',1,'SX126x::scanChannel(const ChannelScanConfig_t &config) override'],['../class_s_x126x.html#acb8611a9c3862dd1bfa73ef47b8f9b20',1,'SX126x::scanChannel() override'],['../class_l_r11x0.html#a5e8f21878bdab1439805aea1e9da168d',1,'LR11x0::scanChannel()']]], + ['scanguard_491',['scanGuard',['../class_lo_ra_w_a_n_node.html#a2176aa3d546e6b00e870a7e1e310c403',1,'LoRaWANNode']]], + ['scanpixellen_492',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]], + ['scheduletransmission_493',['scheduleTransmission',['../class_lo_ra_w_a_n_node.html#a16c7ae2edfe324e11498b13aa042665f',1,'LoRaWANNode']]], + ['sendframe_494',['sendFrame',['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()'],['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()']]], + ['sendheader_495',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]], + ['sendline_496',['sendLine',['../class_s_s_t_v_client.html#ab8579712e82e806960ced7bf2750d9c6',1,'SSTVClient']]], + ['sendmaccommandreq_497',['sendMacCommandReq',['../class_lo_ra_w_a_n_node.html#adef05650cf4eb92042ca5e2688c1e164',1,'LoRaWANNode']]], + ['sendmice_498',['sendMicE',['../class_a_p_r_s_client.html#af8f28eba026b0f0a25c8ba54a96f4743',1,'APRSClient']]], + ['sendposition_499',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]], + ['sendreceive_500',['sendReceive',['../class_lo_ra_w_a_n_node.html#a7123f9a907df9224b9b01282c12af459',1,'LoRaWANNode::sendReceive(uint8_t *dataUp, size_t lenUp, uint8_t fPort=1, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a11c2fbe631063da69355f8d74f4bf3b8',1,'LoRaWANNode::sendReceive(const char *strUp, uint8_t fPort, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a85cf006ffd97ece3b2d2974b715540cb',1,'LoRaWANNode::sendReceive(const char *strUp, uint8_t fPort, uint8_t *dataDown, size_t *lenDown, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a07ab107de181bde59c2731a5a64a1e2e',1,'LoRaWANNode::sendReceive(uint8_t *dataUp, size_t lenUp, uint8_t fPort, uint8_t *dataDown, size_t *lenDown, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)']]], + ['sendseqnumber_501',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]], + ['sendtone_502',['sendTone',['../class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111',1,'PagerClient']]], + ['seqctrl_503',['seqCtrl',['../struct_l_r11x0_wifi_result_extended__t.html#ad86cb8ec2fca8dc1858a4fe6b0e1e9cf',1,'LR11x0WifiResultExtended_t']]], + ['service_504',['service',['../struct_l_r11x0_wifi_result_extended__t.html#a4ffbb47fb23051dfeb2fe7ae52ae6dea',1,'LR11x0WifiResultExtended_t']]], + ['setaccessaddress_505',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]], + ['setaddresswidth_506',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]], + ['setadr_507',['setADR',['../class_lo_ra_w_a_n_node.html#ae222275f807f472083ea6100c23c75ff',1,'LoRaWANNode']]], + ['setaeskey_508',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]], + ['setafc_509',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]], + ['setafcagctrigger_510',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]], + ['setafcbandwidth_511',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], + ['setambienttemperature_512',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], + ['setautoack_513',['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_514',['setBandwidth',['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::setBandwidth()'],['../class_l_r11x0.html#a70d9849eb8e5ce2090e4e332252753d7',1,'LR11x0::setBandwidth()'],['../class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08',1,'SX126x::setBandwidth()'],['../class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b',1,'SX1272::setBandwidth()'],['../class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6',1,'SX1278::setBandwidth()'],['../class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a',1,'SX128x::setBandwidth()']]], + ['setbitrate_515',['setBitRate',['../class_c_c1101.html#a6fd22cdec29e1e34a92aa9854b90fdc9',1,'CC1101::setBitRate()'],['../classn_r_f24.html#a760d3f47f58ddacdf41975447484a47c',1,'nRF24::setBitRate()'],['../class_r_f69.html#aa3bfb830901728e9a3c140036aa91c56',1,'RF69::setBitRate()'],['../class_si443x.html#afcba86e79d229b3fd7268dcbd7c47b62',1,'Si443x::setBitRate()'],['../class_s_x1233.html#a98e0248cfcca7158261f7ebb31e0aa9f',1,'SX1233::setBitRate()'],['../class_s_x126x.html#ac38a19db6b8b9aff438d6e23051d487d',1,'SX126x::setBitRate()'],['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()'],['../class_s_x128x.html#ad6570f33bae09bc8b7617f9da39033ac',1,'SX128x::setBitRate()'],['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_l_r11x0.html#ab1954e4733a7fbea4129d9a2de2285d9',1,'LR11x0::setBitRate()']]], + ['setbitratetolerance_516',['setBitRateTolerance',['../class_c_c1101.html#adc76af01dbc9171b3fdd7570624a4d4f',1,'CC1101']]], + ['setbroadcastaddress_517',['setBroadcastAddress',['../class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40',1,'SX127x::setBroadcastAddress()'],['../class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034',1,'SX126x::setBroadcastAddress()'],['../class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8',1,'RF69::setBroadcastAddress()'],['../class_l_r11x0.html#af24ba794f71c4e37cd13d2f4dbec5bf7',1,'LR11x0::setBroadcastAddress()']]], + ['setbuffernonces_518',['setBufferNonces',['../class_lo_ra_w_a_n_node.html#a11701081ac6bd39a8a2b4bdbc248fac2',1,'LoRaWANNode']]], + ['setbuffersession_519',['setBufferSession',['../class_lo_ra_w_a_n_node.html#aadebe7a412aec8043aa2f8f57a202f49',1,'LoRaWANNode']]], + ['setchannelscanaction_520',['setChannelScanAction',['../class_s_t_m32_w_lx.html#a119ad225f9eba91e7c38f82cf0f1c89d',1,'STM32WLx::setChannelScanAction()'],['../class_s_x126x.html#aed0e7dcd60479c9db3d7a3408e7f396d',1,'SX126x::setChannelScanAction()'],['../class_s_x127x.html#ac23c2b384ae8611d59e10ef6a14fe7e4',1,'SX127x::setChannelScanAction()'],['../class_physical_layer.html#ae11c191a7edf3116bf468b9153237260',1,'PhysicalLayer::setChannelScanAction()']]], + ['setcodingrate_521',['setCodingRate',['../class_l_r11x0.html#a583f2d5ed601a98c609dbf0d57f2f541',1,'LR11x0::setCodingRate()'],['../class_s_x126x.html#afd3113858966e878e9c67a1e710bd586',1,'SX126x::setCodingRate()'],['../class_s_x1272.html#a960913438feccad4c1913a9222384a5f',1,'SX1272::setCodingRate()'],['../class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1',1,'SX1278::setCodingRate()'],['../class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a',1,'SX128x::setCodingRate()']]], + ['setcorrection_522',['setCorrection',['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client::setCorrection()'],['../class_bell_client.html#a90f3f33a09a4cf8d544ca1e9a23beae2',1,'BellClient::setCorrection()'],['../class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e',1,'SSTVClient::setCorrection()'],['../class_f_s_k4_client.html#aab85cb6519e5448dc332bf17bd60f90a',1,'FSK4Client::setCorrection()']]], + ['setcrc_523',['setCRC',['../class_l_r11x0.html#a551b82787288b0b14e4d3124e6744dc3',1,'LR11x0::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_524',['setCrcFiltering',['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#ab531ad461b250a060e92d9c744e79070',1,'SX127x::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_c_c1101.html#a60695681fc74a37f2a31a9638552e877',1,'CC1101::setCrcFiltering()']]], + ['setcsma_525',['setCSMA',['../class_lo_ra_w_a_n_node.html#a2d9a53560ebfbaf006eefd9761424d80',1,'LoRaWANNode']]], + ['setcurrentlimit_526',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]], + ['setdatarate_527',['setDataRate',['../class_l_l_c_c68.html#ac630770441cadc547892173bde7504f9',1,'LLCC68']]], + ['setdatarate_528',['setDatarate',['../class_lo_ra_w_a_n_node.html#a14e8a8a098df28ff5ee294f235500499',1,'LoRaWANNode']]], + ['setdatarate_529',['setDataRate',['../class_physical_layer.html#a6ee1fed6bbb8d3571974153ac6f26751',1,'PhysicalLayer::setDataRate()'],['../class_s_x128x.html#adbf5a9ac62460efb1c709e51260dbe3d',1,'SX128x::setDataRate()'],['../class_s_x1278.html#a286f1ee00e2c7f2ab1bd06b66196c3f9',1,'SX1278::setDataRate()'],['../class_s_x1277.html#ac4bfae9258662381e685e46c803c984c',1,'SX1277::setDataRate()'],['../class_s_x1273.html#acaffc772f70e7db371cbe736dc4a19ab',1,'SX1273::setDataRate()'],['../class_s_x1272.html#a5b79b7cd20c4c3cd1f486f777b3457d1',1,'SX1272::setDataRate()'],['../class_s_x126x.html#af30a581d31feae6f50c0591d1ee113f1',1,'SX126x::setDataRate()'],['../class_l_r11x0.html#a056e65c58ff8fb18bd84917512790ee6',1,'LR11x0::setDataRate()']]], + ['setdatashaping_530',['setDataShaping',['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()'],['../class_l_r11x0.html#a5a33df702da3f5b010e07d5e6fac7aa6',1,'LR11x0::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::setDataShaping()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::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_external_radio.html#abe0bfb0f178783eff28bdc867e9324fd',1,'ExternalRadio::setDataShaping()'],['../class_physical_layer.html#aeba04366a0cf05ff3d8227c4f7c8e1e9',1,'PhysicalLayer::setDataShaping()'],['../class_si443x.html#ade08c79074c7e4414d34eefa25cee168',1,'Si443x::setDataShaping()']]], + ['setdatashapingook_531',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]], + ['setdevicestatus_532',['setDeviceStatus',['../class_lo_ra_w_a_n_node.html#a5449e301634dff1838a1b024b4067034',1,'LoRaWANNode']]], + ['setdio0action_533',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ae75bc48cc74a407370cd9f4bf95e9e30',1,'SX127x::setDio0Action()']]], + ['setdio1action_534',['setDio1Action',['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()'],['../class_s_x127x.html#a7b4bce81839b105c464ebf922602e58b',1,'SX127x::setDio1Action()'],['../class_s_t_m32_w_lx.html#a63d61bc5057e9da3d0ea12feae67122e',1,'STM32WLx::setDio1Action()'],['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()']]], + ['setdio2asrfswitch_535',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], + ['setdiomapping_536',['setDIOMapping',['../class_c_c1101.html#a544bb8d7be9c0e1ff7f7103b30925862',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a7243b3396edc1e6e67575894a5033afe',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#af7d373bc93e99790912cebe8d5ae6403',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()']]], + ['setdiopreambledetect_537',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]], + ['setdirectaction_538',['setDirectAction',['../class_c_c1101.html#a24f4b059cc56238499c6117b88cd5505',1,'CC1101::setDirectAction()'],['../class_r_f69.html#a9852fe520aec018d2bb4aff0cd17de77',1,'RF69::setDirectAction()'],['../class_si443x.html#a48a59ff1ddc7c8ec820328174955de43',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#a4f514b341b8982650526c6d8e20fd1a4',1,'SX126x::setDirectAction()'],['../class_s_x127x.html#ae4b99d1bc67ac2c81eeb11dd6793a8c5',1,'SX127x::setDirectAction()'],['../class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966',1,'PhysicalLayer::setDirectAction()'],['../class_s_x128x.html#a2326cf28c385b8dd709cb62c9f665000',1,'SX128x::setDirectAction()']]], + ['setdirectsyncword_539',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], + ['setdutycycle_540',['setDutyCycle',['../class_lo_ra_w_a_n_node.html#a3d4bbd6d382496838954ab4ac1168b77',1,'LoRaWANNode']]], + ['setdwelltime_541',['setDwellTime',['../class_lo_ra_w_a_n_node.html#a62bfe68f6fe63c2e408dccbff6a34a4f',1,'LoRaWANNode']]], + ['setencoding_542',['setEncoding',['../class_physical_layer.html#acb45b2342400a03a914a91d2ac7fb488',1,'PhysicalLayer::setEncoding()'],['../class_external_radio.html#ae619f011daea49a97098d2897e5a3c2c',1,'ExternalRadio::setEncoding()'],['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()'],['../class_l_r11x0.html#a8ae178a17f6e41b545b79cfffd3e2864',1,'LR11x0::setEncoding()'],['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()']]], + ['setfhsshoppingperiod_543',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]], + ['setfifoemptyaction_544',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction(void(*func)(void))']]], + ['setfifofullaction_545',['setFifoFullAction',['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()'],['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()']]], + ['setfrequency_546',['setFrequency',['../class_c_c1101.html#ad428d7e6fc9ac119101bb0716fa80bee',1,'CC1101::setFrequency()'],['../class_l_r1110.html#ade94d20ea438cbd92c61e28d2232d7e8',1,'LR1110::setFrequency(float freq) override'],['../class_l_r1110.html#a4f9272d078b79d76315be7a57be3e547',1,'LR1110::setFrequency(float freq, bool skipCalibration, float band=4)'],['../class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb',1,'LR1120::setFrequency(float freq) override'],['../class_l_r1120.html#ac34c2ec79e4a36cf0423acb308538811',1,'LR1120::setFrequency(float freq, bool skipCalibration, float band=4)'],['../classn_r_f24.html#a18f24764b2ecffc076e72dce0b036116',1,'nRF24::setFrequency()'],['../class_r_f69.html#aa7f47c37eec6c7e3ebf6e6d30ebd5532',1,'RF69::setFrequency()'],['../class_si4430.html#a3959e91bcae77b8240e9e447985e05b3',1,'Si4430::setFrequency()'],['../class_s_x1262.html#a2122feee1a3bffaaa20e85b24dc8a899',1,'SX1262::setFrequency()'],['../class_si4432.html#aed3561abdb30b4eaad52d984366aadf1',1,'Si4432::setFrequency()'],['../class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e',1,'PhysicalLayer::setFrequency()'],['../class_s_x128x.html#ab9e16231c2c6bd0e4b4c6c2900b5b332',1,'SX128x::setFrequency()'],['../class_s_x1279.html#ab60691d073ca75ef09dab7a8f28fb7fb',1,'SX1279::setFrequency()'],['../class_s_x1278.html#adb4d95d3b2798cf8ea94890ae71dcc59',1,'SX1278::setFrequency()'],['../class_s_x1277.html#ad68ea24b46d9e7d3f82282cdccd20e00',1,'SX1277::setFrequency()'],['../class_s_x1276.html#a981b59110e514b7dcaec8490e1c4320c',1,'SX1276::setFrequency()'],['../class_s_x1272.html#ac1467a23e1f1bfdbd02f6d30654ed850',1,'SX1272::setFrequency()'],['../class_s_x1268.html#ad721d6feb4a8f62f2651049a68fe019b',1,'SX1268::setFrequency(float freq, bool skipCalibration)'],['../class_s_x1268.html#af412a9361fe413b2d0c426100056d8c2',1,'SX1268::setFrequency(float freq) override'],['../class_s_x1262.html#a87e496bf7f1ac2857e3f67438ea754db',1,'SX1262::setFrequency()']]], + ['setfrequencydeviation_547',['setFrequencyDeviation',['../class_physical_layer.html#a2f4f9b428d9ea9af886ca85e5088ed7b',1,'PhysicalLayer::setFrequencyDeviation()'],['../class_external_radio.html#a02928a19eab0eab615c02180cedda3eb',1,'ExternalRadio::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../class_l_r11x0.html#ac003cfe3a4dbd9bad1f01fd0147031d1',1,'LR11x0::setFrequencyDeviation()'],['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()']]], + ['setgain_548',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], + ['setgaincontrol_549',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]], + ['setgdo0action_550',['setGdo0Action',['../class_c_c1101.html#a9bee13612cf4da067faeb57d18ee2eb7',1,'CC1101']]], + ['setgdo2action_551',['setGdo2Action',['../class_c_c1101.html#ad71efbe54590e4431f3286ab99536fe9',1,'CC1101']]], + ['sethighsensitivitymode_552',['setHighSensitivityMode',['../class_s_x128x.html#a6e45fbfaec7063e52e188f47a3a585a5',1,'SX128x']]], + ['setinversion_553',['setInversion',['../class_hell_client.html#ae43025b9d55ee21a322bb5d7ee1065b0',1,'HellClient']]], + ['setirq_554',['setIrq',['../class_physical_layer.html#a8564f9834a0247e93e7620c23559ceb8',1,'PhysicalLayer']]], + ['setirqaction_555',['setIrqAction',['../class_l_r11x0.html#a49116d006b60128fe6f73a6a868a6d18',1,'LR11x0::setIrqAction()'],['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]], + ['setirqflags_556',['setIrqFlags',['../class_l_r11x0.html#a62c715ab18ea8a2e08a2791d3e764ee9',1,'LR11x0::setIrqFlags()'],['../class_s_x126x.html#a50e757c2a63e5c7da5b0d0d6c00f91b5',1,'SX126x::setIrqFlags()'],['../class_s_x127x.html#aae42b94ab2ecf729f29f101222e97666',1,'SX127x::setIrqFlags()'],['../class_s_x128x.html#a6a2ec5d316975f390f20b4e0a2e11e98',1,'SX128x::setIrqFlags()'],['../class_physical_layer.html#af88dcb54dc8e9a1edaf9f1c3e5ee2b74',1,'PhysicalLayer::setIrqFlags()']]], + ['setlnatestboost_557',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]], + ['setlowbatterythreshold_558',['setLowBatteryThreshold',['../class_s_x127x.html#a9ca9aa18e13e8390ec437e249e1d2472',1,'SX127x']]], + ['setlrfhssconfig_559',['setLrFhssConfig',['../class_l_r11x0.html#a8c1def9a01021a52f5bb82c119a9ad35',1,'LR11x0::setLrFhssConfig()'],['../class_s_x126x.html#aa1e7777fc8237e2c9d933cd4b6304e28',1,'SX126x::setLrFhssConfig()']]], + ['setmodem_560',['setModem',['../class_physical_layer.html#a77415bf4ed34be18c92c0cf4b2de7149',1,'PhysicalLayer::setModem()'],['../class_bell_client.html#a163f65f3fcce87d9bea558b34c19bd47',1,'BellClient::setModem()'],['../class_s_x128x.html#a209d69e710a785da2c69474f94fdccf3',1,'SX128x::setModem()'],['../class_s_x1279.html#aea8bd74e7c5d7b97d4fe4a8182680d5c',1,'SX1279::setModem()'],['../class_s_x1278.html#a609dd3faf2036e8c2d046fd191e0137d',1,'SX1278::setModem()'],['../class_s_x1277.html#aec55de7c6622936ff48384bb33424b84',1,'SX1277::setModem()'],['../class_s_x1276.html#a36a526b6c8540cda36d058fb47a9e099',1,'SX1276::setModem()'],['../class_s_x1273.html#af9f0969764fde3e12b6b05409718fa83',1,'SX1273::setModem()'],['../class_s_x1272.html#a2c99afea2bb3bbb1146c8a4536b4843c',1,'SX1272::setModem()'],['../class_s_x1268.html#ae66e37a6897315f36a13c8d5cefe521b',1,'SX1268::setModem()'],['../class_s_x1262.html#a7cdbfc39c779b3846aa5fd04d50d3eb8',1,'SX1262::setModem()'],['../class_l_r1120.html#a6cd250e0145ed19f2f91ed96a57a825e',1,'LR1120::setModem()'],['../class_l_r1110.html#a18f525740237b023056a8ca6f3671c6a',1,'LR1110::setModem()'],['../class_l_l_c_c68.html#aee4457d48c708f05154e931eed05c691',1,'LLCC68::setModem()']]], + ['setnodeaddress_561',['setNodeAddress',['../class_l_r11x0.html#a605f5c74ce523abad256866abe133d2e',1,'LR11x0::setNodeAddress()'],['../class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c',1,'RF69::setNodeAddress()'],['../class_s_x126x.html#adf54f7b83aa47ad0b803147622b3c580',1,'SX126x::setNodeAddress()'],['../class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95',1,'SX127x::setNodeAddress()'],['../class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8',1,'CC1101::setNodeAddress(uint8_t nodeAddr, uint8_t numBroadcastAddrs=0)']]], + ['setook_562',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a465df5a2e1f924f6d3ba4eae765847b7',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK(bool enableOOK)']]], + ['setookfixedorfloorthreshold_563',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]], + ['setookfixedthreshold_564',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]], + ['setookpeakthresholddecrement_565',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement(uint8_t value)']]], + ['setookpeakthresholdstep_566',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]], + ['setookthresholdtype_567',['setOokThresholdType',['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()'],['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()']]], + ['setoutputpower_568',['setOutputPower',['../class_c_c1101.html#a5d6dce30fc7da668975b6da663784cdf',1,'CC1101::setOutputPower()'],['../class_l_r1110.html#a65c08f0475f888537e55401b75e58b23',1,'LR1110::setOutputPower(int8_t power) override'],['../class_l_r1110.html#ae4eaaa6411bb1eeb131613fb3f43e5d1',1,'LR1110::setOutputPower(int8_t power, bool forceHighPower)'],['../class_l_r1120.html#a1b1321eb695e4a6b583074bb92c33193',1,'LR1120::setOutputPower(int8_t power) override'],['../class_l_r1120.html#a2e2ea0a2f6d3a8d81e0f2be35848bbc7',1,'LR1120::setOutputPower(int8_t power, bool forceHighPower)'],['../classn_r_f24.html#a4fa66ce5fb6d7b22bbb439c2f9103bf3',1,'nRF24::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',1,'RF69::setOutputPower()'],['../class_si4430.html#ab1303e014a4b8d2307a2b1deb061fdeb',1,'Si4430::setOutputPower()'],['../class_si4431.html#ad1538dbe67ed5d3682591d1d780ab0e9',1,'Si4431::setOutputPower()'],['../class_si4432.html#a5e3017bce6d66d35b867e7878d108c68',1,'Si4432::setOutputPower()'],['../class_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::setOutputPower()'],['../class_s_x1261.html#a3d197bb8a301f3594c7bfa1c9375aef1',1,'SX1261::setOutputPower()'],['../class_s_x1262.html#aa455a7f0e69abdcca55cf35388d9dc52',1,'SX1262::setOutputPower()'],['../class_s_x1272.html#aec51f08c0902145ff5f11e27e7cab638',1,'SX1272::setOutputPower(int8_t power) override'],['../class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659',1,'SX1272::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1278.html#a69abc18e7fa0055e6b80024e8cde7db4',1,'SX1278::setOutputPower(int8_t power) override'],['../class_s_x1278.html#aca58a6c2e8fcef6414fdf3bc1eb62082',1,'SX1278::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x128x.html#a1bc3372c47a4e3c81ef15bee448ba6b6',1,'SX128x::setOutputPower()'],['../class_physical_layer.html#ad2286dc78dbf8e3084f38e9159b99ae5',1,'PhysicalLayer::setOutputPower()'],['../class_s_x1268.html#a6b6adaee1c8d76c3d766225298d84709',1,'SX1268::setOutputPower()']]], + ['setpacketreceivedaction_569',['setPacketReceivedAction',['../class_s_x127x.html#ae236a467095fb5364d0fc4a98d85f96e',1,'SX127x::setPacketReceivedAction()'],['../class_physical_layer.html#aec928bb26f65752aa20cd236fbabb95c',1,'PhysicalLayer::setPacketReceivedAction()'],['../class_s_x128x.html#ad98c4526ef971f9aadb30e351a37eaf9',1,'SX128x::setPacketReceivedAction()'],['../class_s_x126x.html#a7603aa60ae8d975eb262a4b7e2aed1d0',1,'SX126x::setPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#ad23dafdeb21b97165be74ef8f093866c',1,'STM32WLx::setPacketReceivedAction()'],['../class_si443x.html#a0e098ea9aa3945f0c38f59efe43b147e',1,'Si443x::setPacketReceivedAction()'],['../class_r_f69.html#a74962c069e08890ac9566d48634c778e',1,'RF69::setPacketReceivedAction()'],['../classn_r_f24.html#a60df9afa489eabe3a3ca193ab7709165',1,'nRF24::setPacketReceivedAction()'],['../class_l_r11x0.html#ac2a8ece736198c966e3870dac09f4e87',1,'LR11x0::setPacketReceivedAction()'],['../class_c_c1101.html#a29a16e8ed85432c6fae8d9e45399de6e',1,'CC1101::setPacketReceivedAction(void(*func)(void)) override']]], + ['setpacketsentaction_570',['setPacketSentAction',['../class_c_c1101.html#a336999da23e554073a9fa628131883f5',1,'CC1101::setPacketSentAction()'],['../class_l_r11x0.html#a92299e41f839590008b4e344776838a1',1,'LR11x0::setPacketSentAction()'],['../classn_r_f24.html#a26b5f873db167733df143a0608eea3ac',1,'nRF24::setPacketSentAction()'],['../class_r_f69.html#a97603856caada65676ff4b11630c7f72',1,'RF69::setPacketSentAction()'],['../class_si443x.html#af2d36121ca94736ef3ecb4c09aded753',1,'Si443x::setPacketSentAction()'],['../class_s_t_m32_w_lx.html#a7c0e3aef03f0b6834d0465d8f8568c32',1,'STM32WLx::setPacketSentAction()'],['../class_s_x126x.html#ac79f7ebab97ae91fff6933be3207c873',1,'SX126x::setPacketSentAction()'],['../class_s_x127x.html#a3530e8e19cfe4d96fe49ca4e6386b099',1,'SX127x::setPacketSentAction()'],['../class_s_x128x.html#a1e6f938ce715dad9a6609bf56626a50d',1,'SX128x::setPacketSentAction()'],['../class_physical_layer.html#a32b512b34f6575b2109ae3c3f35d1369',1,'PhysicalLayer::setPacketSentAction()']]], + ['setpaconfig_571',['setPaConfig',['../class_s_x126x.html#a1623e7d5450c97ca092913ad79d62208',1,'SX126x']]], + ['setparamptime_572',['setPaRampTime',['../class_s_x126x.html#ad90a56cb55c5bb64037a0d412d84a80d',1,'SX126x']]], + ['setpreamblelength_573',['setPreambleLength',['../class_c_c1101.html#ae77c828c9c7cc12012fe011e8c4d3570',1,'CC1101::setPreambleLength()'],['../class_l_r11x0.html#aa5d7ae65666f8f9abcb7e9b169884a4a',1,'LR11x0::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_s_x126x.html#ad6274222ccf534e98e3cd17dfa1520d4',1,'SX126x::setPreambleLength()'],['../class_s_x127x.html#a844499bace6ae001446d71bee2877656',1,'SX127x::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()'],['../class_physical_layer.html#a85db1ff64e6c56e054f276c511194633',1,'PhysicalLayer::setPreambleLength()']]], + ['setpromiscuousmode_574',['setPromiscuousMode',['../class_c_c1101.html#ac1155543b27e46fa27aa4c9180da18bb',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#ae004326d663a9d6a9c30e792aa368b49',1,'RF69::setPromiscuousMode()']]], + ['setreceivepipe_575',['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_576',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]], + ['setregulatordcdc_577',['setRegulatorDCDC',['../class_l_r11x0.html#a1ad485f14a333f06b642f2d60aacf76c',1,'LR11x0::setRegulatorDCDC()'],['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x::setRegulatorDCDC()']]], + ['setregulatorldo_578',['setRegulatorLDO',['../class_l_r11x0.html#a92ae10630cc327f441809ac1406737fd',1,'LR11x0::setRegulatorLDO()'],['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x::setRegulatorLDO()']]], + ['setrepeaters_579',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]], + ['setrfswitchpins_580',['setRfSwitchPins',['../class_module.html#a7d3adea64acab11c47c804afc74bd4f3',1,'Module::setRfSwitchPins()'],['../class_c_c1101.html#a5ef45183690bb1879f106af079b01140',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#ac341945538a84430c61f80f610a94411',1,'RF69::setRfSwitchPins()'],['../class_si443x.html#a43e7ceeff9114b35ab89f1d69916b375',1,'Si443x::setRfSwitchPins()'],['../class_s_x126x.html#a0a0df468eacc71c1b2a093ac06bfff51',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#a8ca9edcae05060cce3ff7ee58faeb4e2',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5ba683fbc4a46418ce3736f224fb55f2',1,'SX128x::setRfSwitchPins()']]], + ['setrfswitchstate_581',['setRfSwitchState',['../class_module.html#afbed643f082286012bf44bba22381ae6',1,'Module']]], + ['setrfswitchtable_582',['setRfSwitchTable',['../class_module.html#ac308fa817a5c36c5dc724a0d15cefd4d',1,'Module::setRfSwitchTable()'],['../class_l_r11x0.html#a1981f0dfceca2b6175a69530ea13d643',1,'LR11x0::setRfSwitchTable()'],['../class_r_f69.html#afff64ceef5f496ce035ff6d12d6bcc3c',1,'RF69::setRfSwitchTable()'],['../class_si443x.html#a8898f11cf9dabd9a5ad717376fdbffa6',1,'Si443x::setRfSwitchTable()'],['../class_s_x126x.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'SX126x::setRfSwitchTable()'],['../class_s_x127x.html#ab9625a5246a45112267ce441ac2de254',1,'SX127x::setRfSwitchTable()'],['../class_s_x128x.html#ad5789bd27d46b24f54aac9ca55ec9958',1,'SX128x::setRfSwitchTable()'],['../class_s_t_m32_w_lx.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'STM32WLx::setRfSwitchTable()'],['../class_c_c1101.html#a7b401995be4bc136063a035ce1820634',1,'CC1101::setRfSwitchTable()']]], + ['setrssiconfig_583',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], + ['setrssithreshold_584',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]], + ['setrx2dr_585',['setRx2Dr',['../class_lo_ra_w_a_n_node.html#addfd8ac3d0bfe5a273e9ba10e51f8025',1,'LoRaWANNode']]], + ['setrxbandwidth_586',['setRxBandwidth',['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()'],['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_l_r11x0.html#a25f5ee68b3c2638ae613c87ed1c3fc64',1,'LR11x0::setRxBandwidth()'],['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()']]], + ['setrxboostedgainmode_587',['setRxBoostedGainMode',['../class_l_r11x0.html#ab0cf34cc0b67484fbf0f258bff7e9a9a',1,'LR11x0::setRxBoostedGainMode()'],['../class_s_x126x.html#a920aa76ff5f0f579424ef6de92e588c8',1,'SX126x::setRxBoostedGainMode()']]], + ['setsendsequence_588',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], + ['setspreadingfactor_589',['setSpreadingFactor',['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_l_r11x0.html#adf6895cbf7af7e00ea06c5b2b5040cb4',1,'LR11x0::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_590',['setSyncBits',['../class_l_r11x0.html#a6501ef362df1a5b71927cfe4e43c202d',1,'LR11x0::setSyncBits()'],['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x::setSyncBits()']]], + ['setsyncword_591',['setSyncWord',['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord()'],['../class_physical_layer.html#a6c71cdc1238e1368274670758431a977',1,'PhysicalLayer::setSyncWord()'],['../class_s_x128x.html#ad9584464d2e4cc09686cf4e83e65d3e0',1,'SX128x::setSyncWord()'],['../class_s_x127x.html#aaf400f33e17c1679c0b55cd70bef90b0',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len) override'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x126x.html#a827a4754ea53388513d263e5d9171395',1,'SX126x::setSyncWord()'],['../class_si443x.html#af257fb09afaa6162e1506cfe87b219b3',1,'Si443x::setSyncWord()'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_l_r11x0.html#ab8c54b1b105605ffe0908c5ff9362932',1,'LR11x0::setSyncWord(uint8_t *syncWord, size_t len) override'],['../class_l_r11x0.html#a7ffa48f1b6aaaa3f48e4b51f8ada59d8',1,'LR11x0::setSyncWord(uint32_t syncWord)'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord(uint8_t *syncWord, uint8_t len, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord()']]], + ['settcxo_592',['setTCXO',['../class_l_r11x0.html#a971b4ccd1d5479e9d72aa9649e8fef55',1,'LR11x0::setTCXO()'],['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x::setTCXO()']]], + ['settransmitpipe_593',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]], + ['settxpower_594',['setTxPower',['../class_lo_ra_w_a_n_node.html#a9af613f7d923e7bdcfdbd020132c6d4b',1,'LoRaWANNode']]], + ['setwhitening_595',['setWhitening',['../class_l_r11x0.html#adcde55b8660c24cf5783942a4132786d',1,'LR11x0::setWhitening()'],['../class_s_x126x.html#ae500bad45638a47264b7e5955a93107d',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]], + ['setwifiscanaction_596',['setWiFiScanAction',['../class_l_r11x0.html#aff6060e116701c60e078d3d930723b4b',1,'LR11x0']]], + ['si4430_597',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430::Si4430()'],['../class_si4430.html',1,'Si4430']]], + ['si4431_598',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431::Si4431()'],['../class_si4431.html',1,'Si4431']]], + ['si4432_599',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432::Si4432()'],['../class_si4432.html',1,'Si4432']]], + ['si443x_600',['Si443x',['../class_si443x.html',1,'Si443x'],['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x::Si443x()']]], + ['size_601',['size',['../class_radio_lib_c_r_c.html#ad09b067c00cda1cc676c13602dee2f5a',1,'RadioLibCRC']]], + ['sleep_602',['sleep',['../class_s_x128x.html#ab0c26aebd432d36974b3066055df6b01',1,'SX128x::sleep()'],['../class_l_r11x0.html#ad5dde79f751bbd7ea277872e237f2a69',1,'LR11x0::sleep() override'],['../class_l_r11x0.html#ad2786a2f17af5769c772ebc73df88e1f',1,'LR11x0::sleep(bool retainConfig, uint32_t sleepTime)'],['../classn_r_f24.html#a69b75e0889c609099487a43c8c3b6721',1,'nRF24::sleep()'],['../class_r_f69.html#adec9debf69f5ee846a5b6e34831ade3c',1,'RF69::sleep()'],['../class_si443x.html#ab0cc51d6b4264acf8e3e49a3a490dee9',1,'Si443x::sleep()'],['../class_s_x126x.html#a882cec40d9aa98a0d536e6afb65b1719',1,'SX126x::sleep() override'],['../class_s_x126x.html#aad7e4df3e1ca20d524e1d776047e1013',1,'SX126x::sleep(bool retainConfig)'],['../class_s_x127x.html#a1ff85ee7979da08b4e66316f1ba2c6a9',1,'SX127x::sleep()'],['../class_s_x128x.html#a98ef7dc21647642b40baf8c0194788c4',1,'SX128x::sleep()'],['../class_physical_layer.html#af1bb9a5da26da8829795ebb72e9c666e',1,'PhysicalLayer::sleep()']]], + ['spectralscanabort_603',['spectralScanAbort',['../class_s_x126x.html#a865397e1cca38bec2d055c047825ea07',1,'SX126x']]], + ['spectralscangetresult_604',['spectralScanGetResult',['../class_s_x126x.html#ae473773e5bed4b08452e80311bdb26f2',1,'SX126x']]], + ['spectralscangetstatus_605',['spectralScanGetStatus',['../class_s_x126x.html#a5595fff99d76d50d711b8cdad98527c4',1,'SX126x']]], + ['spectralscanstart_606',['spectralScanStart',['../class_s_x126x.html#a8a3ad4e12df862ab18b326d9dba26d66',1,'SX126x']]], + ['spibegin_607',['spiBegin',['../class_esp_hal.html#a960996535b8a28b59c8b72aeffff1826',1,'EspHal::spiBegin()'],['../class_pi_hal.html#a40d237c2f5f4ead26c39f33481b4d7e3',1,'PiHal::spiBegin()'],['../class_pico_hal.html#a414de51bef859659b8cac66df32bdb5a',1,'PicoHal::spiBegin()'],['../class_tock_hal.html#a04cc3c2c2c2554812557466ab5c0edc9',1,'TockHal::spiBegin()'],['../class_radio_lib_hal.html#aa1f8e5cd323e53ef9fa977734a05d030',1,'RadioLibHal::spiBegin()']]], + ['spibegintransaction_608',['spiBeginTransaction',['../class_pi_hal.html#ab8c97e2b1c42368793d48d08b815fd69',1,'PiHal::spiBeginTransaction()'],['../class_esp_hal.html#a1a552e8a34dcbe532171efd4f1d08ec9',1,'EspHal::spiBeginTransaction()'],['../class_pico_hal.html#a2b6136b2c90e83c1ab94bd92ef32805c',1,'PicoHal::spiBeginTransaction()'],['../class_tock_hal.html#a89091e5e7ed86cc7320f80e9a01713a6',1,'TockHal::spiBeginTransaction()'],['../class_radio_lib_hal.html#abe787d5e556190eef2c63e1581235460',1,'RadioLibHal::spiBeginTransaction()']]], + ['spicheckstatuscb_5ft_609',['SPIcheckStatusCb_t',['../class_module.html#a1ad7bef7d380d3b6b88dca99bd35d640',1,'Module']]], + ['spicheckstream_610',['SPIcheckStream',['../class_module.html#a5efa7ae78cab1d7f43005e965923f769',1,'Module']]], + ['spiclk_5ft_611',['spiClk_t',['../unionspi_clk__t.html',1,'']]], + ['spiconfig_612',['spiConfig',['../class_module.html#a3a4fc4101fb3f134152b458c447b8ecb',1,'Module']]], + ['spiconfig_5ft_613',['SPIConfig_t',['../struct_module_1_1_s_p_i_config__t.html',1,'Module']]], + ['spiend_614',['spiEnd',['../class_radio_lib_hal.html#a41c85e560155d644f5b4ce8444dd8b64',1,'RadioLibHal::spiEnd()'],['../class_tock_hal.html#a1d4520f65f5c7a7e2e188d32d2c001e2',1,'TockHal::spiEnd()'],['../class_pico_hal.html#ac932d26b6a31a0cd7f577d4f8812896c',1,'PicoHal::spiEnd()'],['../class_pi_hal.html#a6b0d64ed834b91f67b3344ce8c573d7b',1,'PiHal::spiEnd()'],['../class_esp_hal.html#ae0c2bcd6d667e475bbaf9ddfc6ebaede',1,'EspHal::spiEnd()']]], + ['spiendtransaction_615',['spiEndTransaction',['../class_esp_hal.html#a213a813fd83d86105977e1c781381510',1,'EspHal::spiEndTransaction()'],['../class_pi_hal.html#a7debfa73095e727950831af2e8aab5f7',1,'PiHal::spiEndTransaction()'],['../class_pico_hal.html#ae6773c6f0aac24774614a3179a4da475',1,'PicoHal::spiEndTransaction()'],['../class_tock_hal.html#ae4cef7494b98e3d0fc0b1788d3f283c4',1,'TockHal::spiEndTransaction()'],['../class_radio_lib_hal.html#a68d9271c76f8c96afb734a4634bf92e9',1,'RadioLibHal::spiEndTransaction()']]], + ['spigetregvalue_616',['SPIgetRegValue',['../class_module.html#a369e916626c821ecec85f25d5b46d752',1,'Module']]], + ['spiparsestatuscb_5ft_617',['SPIparseStatusCb_t',['../class_module.html#a9393088249856eab568126aeb2493e4a',1,'Module']]], + ['spireadregister_618',['SPIreadRegister',['../class_module.html#ab250eb929068e0c890e16e8e6d7cd7e6',1,'Module']]], + ['spireadregisterburst_619',['SPIreadRegisterBurst',['../class_module.html#ac993ab8e2ea0f5aa93339d1f6ffb54ee',1,'Module']]], + ['spireadstream_620',['SPIreadStream',['../class_module.html#adacceb57ecfecb09150c135b2b44436f',1,'Module::SPIreadStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a085415b49ff72238f118b937ad896cbd',1,'Module::SPIreadStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]], + ['spisetregvalue_621',['SPIsetRegValue',['../class_module.html#ade75c5403a05156b43cc7562563ae2d7',1,'Module']]], ['spitransfer_622',['spiTransfer',['../class_esp_hal.html#afe94bf2e29c22898916b59c00a3dd23f',1,'EspHal::spiTransfer()'],['../class_pi_hal.html#a96a0f36efd8e23893add3242bdef8be4',1,'PiHal::spiTransfer()'],['../class_pico_hal.html#acc961bf30af621d0dfec2b3f7e25cf5c',1,'PicoHal::spiTransfer()'],['../class_tock_hal.html#a55bab852d0b8c31a15050efdc28afe33',1,'TockHal::spiTransfer()'],['../class_radio_lib_hal.html#aebcaaf0cefdaaf5b572d4261e472ac8a',1,'RadioLibHal::spiTransfer()']]], - ['spitransferstream_623',['SPItransferStream',['../class_module.html#a4174159e476de5cef6ea3f89c883cb5e',1,'Module']]], - ['spiwriteregister_624',['SPIwriteRegister',['../class_module.html#a60ca6b4cae98f7d935191a569d519913',1,'Module']]], - ['spiwriteregisterburst_625',['SPIwriteRegisterBurst',['../class_module.html#a2826f0fa116eb0a4dd18ddb9b21e4caf',1,'Module']]], - ['spiwritestream_626',['SPIwriteStream',['../class_module.html#af99b0e74e67417a88f500ab7261ddd20',1,'Module::SPIwriteStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a7acbe601ebe6398781d0f2de5177305e',1,'Module::SPIwriteStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]], - ['spreadingfactor_627',['spreadingFactor',['../struct_lo_ra_rate__t.html#a24fcb6220c0577f985478dc109750076',1,'LoRaRate_t']]], - ['srccallsign_628',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]], - ['srcssid_629',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]], - ['ssid_630',['ssid',['../struct_l_r11x0_wifi_result_extended__t.html#a640fdd5b33e6ab2f6867cd63da567147',1,'LR11x0WifiResultExtended_t']]], - ['sstvclient_631',['SSTVClient',['../class_s_s_t_v_client.html#af15cf501c00172270d2d2c43d7a7100a',1,'SSTVClient::SSTVClient(PhysicalLayer *phy)'],['../class_s_s_t_v_client.html#a99e46bec8403dfc36b9e5b102b1f7cf1',1,'SSTVClient::SSTVClient(AFSKClient *audio)'],['../class_s_s_t_v_client.html',1,'SSTVClient']]], - ['sstvmode_5ft_632',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]], - ['standby_633',['standby',['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby() override'],['../class_c_c1101.html#af374ad0ecd820a01baef7d177a30132a',1,'CC1101::standby(uint8_t mode) override'],['../class_l_r11x0.html#a2d682ec2ca0ddf4da41a93dd8e728665',1,'LR11x0::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()'],['../class_physical_layer.html#a7d5da4311092e3df6b193ff303a0c5e8',1,'PhysicalLayer::standby(uint8_t mode)'],['../class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018',1,'PhysicalLayer::standby()'],['../class_f_s_k4_client.html#a8b5765371ebbf68a21bc0bbfdf9f82ac',1,'FSK4Client::standby()'],['../class_bell_client.html#a57c19c733b0dfe80bd321f23b18c1e80',1,'BellClient::standby()'],['../class_s_x128x.html#a389aab93e24ec8c7cc9c14de90e5dfae',1,'SX128x::standby(uint8_t mode, bool wakeup=false)'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x127x.html#aa565bbff460e487672953dc05d335cb0',1,'SX127x::standby(uint8_t mode) override'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby() override'],['../class_s_x126x.html#a2fa0384a529746811e2dcb2eeb4188ec',1,'SX126x::standby(uint8_t mode, bool wakeup=true)'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby() override'],['../class_si443x.html#acbc0f95f32ca961294666405596ff529',1,'Si443x::standby(uint8_t mode) override'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby() override'],['../class_r_f69.html#a6e3002ab0c58e2087a7d101eda7afa82',1,'RF69::standby(uint8_t mode) override'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby() override'],['../classn_r_f24.html#a03e9ae7fbd0d55887acf1996df28ed5b',1,'nRF24::standby(uint8_t mode) override'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby() override'],['../class_l_r11x0.html#a74c3f3f8409f1fd0f41347b7d3c7dc24',1,'LR11x0::standby()']]], - ['standby_20mode_20type_20aliases_2e_634',['Standby mode type aliases.',['../group__config__standby.html',1,'']]], - ['standbyxosc_635',['standbyXOSC',['../class_s_x126x.html#ae731568798d03d9722a440fd6a23faf2',1,'SX126x']]], - ['start_636',['start',['../struct_l_r11x0_gnss_almanac_status__t.html#a2228a69fda1002c027b7b487aa579afb',1,'LR11x0GnssAlmanacStatus_t']]], - ['startchannelscan_637',['startChannelScan',['../class_s_x128x.html#a948156af6e886bc46a6c6c5fb10a087a',1,'SX128x::startChannelScan()'],['../class_s_x127x.html#a6fa5723724393576ed597509200e17d1',1,'SX127x::startChannelScan()'],['../class_s_x126x.html#a09a8fe05c23c652c7ace2e2f1bf51d93',1,'SX126x::startChannelScan(const ChannelScanConfig_t &config) override'],['../class_s_x126x.html#a001c4637f01ed6f0216cd6c4d7e10da3',1,'SX126x::startChannelScan() override'],['../class_l_r11x0.html#ab073ade3f6b9bbb383e388904812f575',1,'LR11x0::startChannelScan(const ChannelScanConfig_t &config) override'],['../class_l_r11x0.html#a4f3bc362530b85dd643669705f03998d',1,'LR11x0::startChannelScan() override'],['../class_s_x128x.html#acdee68d9be73509f464226722551c4d9',1,'SX128x::startChannelScan()'],['../class_physical_layer.html#ae30dfbb5445bb674898fc54f5f90b2f9',1,'PhysicalLayer::startChannelScan()'],['../class_physical_layer.html#a82a52062d9259c2c546d7bf8072b7a72',1,'PhysicalLayer::startChannelScan(const ChannelScanConfig_t &config)']]], - ['startdirect_638',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], - ['startranging_639',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]], - ['startreceive_640',['startReceive',['../class_c_c1101.html#ae71e947abf6a07b194c6c6d64fd3eb19',1,'CC1101::startReceive()'],['../class_s_x127x.html#acaab95d4bf57bf33f6269d2f099e48e0',1,'SX127x::startReceive()'],['../class_c_c1101.html#abf153c8fcf2a0d60439426b03692642e',1,'CC1101::startReceive()'],['../class_l_r11x0.html#aa6ce285cc1b76ce028db6442a421ed8d',1,'LR11x0::startReceive() override'],['../class_l_r11x0.html#ae79c42c4ceceb7a6897731d01d365281',1,'LR11x0::startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)'],['../classn_r_f24.html#a3c6aa3622c887118fb8d8cb2689fdff2',1,'nRF24::startReceive() override'],['../classn_r_f24.html#a38b0084ad11090f918f4f370b9df7514',1,'nRF24::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_r_f69.html#a3bece228d369dcc1aab6a5b29d0685a8',1,'RF69::startReceive() override'],['../class_r_f69.html#a21ae7524fe573f1a7e74dee342418222',1,'RF69::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_si443x.html#ae188dec3175a3aec96844a613e911500',1,'Si443x::startReceive() override'],['../class_si443x.html#ad5adec16d570b0d1b09420919dbe77e4',1,'Si443x::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_s_x126x.html#a66ad433561b02fe61b09afd735ce56cc',1,'SX126x::startReceive() override'],['../class_s_x126x.html#a44856b641060cff8e9e2019901cd4751',1,'SX126x::startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0)'],['../class_s_x127x.html#abbe1076252a366c3c4aa323fdff7d40c',1,'SX127x::startReceive()'],['../class_s_x128x.html#a299dd5c01a6f7d2f8a96becd4fff1f09',1,'SX128x::startReceive()'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive(uint32_t pin, uint32_t addr, uint32_t mask=0xFFFFF)'],['../class_pager_client.html#a9c0f13846fbc333a35a16a98b6575ca6',1,'PagerClient::startReceive(uint32_t pin, uint32_t *addrs, uint32_t *masks, size_t numAddress)'],['../class_physical_layer.html#a18664ad615c5507ff1690baaca90b094',1,'PhysicalLayer::startReceive()'],['../class_physical_layer.html#ac88f9185b5e9fdc1d89df9797dcdd9b7',1,'PhysicalLayer::startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags, RadioLibIrqFlags_t irqMask, size_t len)'],['../class_s_x128x.html#a803eaca8bb7fdfa3570cf4aa95f8e729',1,'SX128x::startReceive()']]], - ['startreceivedutycycle_641',['startReceiveDutyCycle',['../class_s_x126x.html#af9352e49d893151d68a314109140fe29',1,'SX126x']]], - ['startreceivedutycycleauto_642',['startReceiveDutyCycleAuto',['../class_s_x126x.html#ad0f95b62ee987010b00f4be75bf9ab4e',1,'SX126x']]], - ['startsignal_643',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], - ['starttransmit_644',['startTransmit',['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af79757dbbd62e080c1bad2e608ab940c',1,'PhysicalLayer::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a46fff7c4b2bb0eed3fd313d6413dc4e9',1,'SX128x::startTransmit()'],['../class_s_x127x.html#ae0902a990203ec67c628e5d006cbaa96',1,'SX127x::startTransmit()'],['../class_s_x126x.html#adf06ca0d64a61ce16a0a2f4f9a7d6a86',1,'SX126x::startTransmit()'],['../class_si443x.html#a187ea9ee96a67cd48e5b28be5b237c95',1,'Si443x::startTransmit()'],['../class_r_f69.html#af645f6b5d37812f6bb9ec11788e12066',1,'RF69::startTransmit()'],['../classn_r_f24.html#a8b2365ad11840d1d05b0e17b37ddacd2',1,'nRF24::startTransmit()'],['../class_l_r11x0.html#a459825c5b46a2ca515e62042d605aa67',1,'LR11x0::startTransmit()'],['../class_c_c1101.html#a6ff7e4066d189482c142e05384a38df0',1,'CC1101::startTransmit()'],['../class_si443x.html#a923654706eff5118ef6e84214e837f27',1,'Si443x::startTransmit()'],['../class_c_c1101.html#a923654706eff5118ef6e84214e837f27',1,'CC1101::startTransmit(const char *str, uint8_t addr=0)'],['../class_c_c1101.html#af79757dbbd62e080c1bad2e608ab940c',1,'CC1101::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_l_r11x0.html#a923654706eff5118ef6e84214e837f27',1,'LR11x0::startTransmit(const char *str, uint8_t addr=0)'],['../class_l_r11x0.html#af79757dbbd62e080c1bad2e608ab940c',1,'LR11x0::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../classn_r_f24.html#a923654706eff5118ef6e84214e837f27',1,'nRF24::startTransmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#af79757dbbd62e080c1bad2e608ab940c',1,'nRF24::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_r_f69.html#a923654706eff5118ef6e84214e837f27',1,'RF69::startTransmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#af79757dbbd62e080c1bad2e608ab940c',1,'RF69::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#af79757dbbd62e080c1bad2e608ab940c',1,'Si443x::startTransmit()'],['../class_s_x126x.html#a923654706eff5118ef6e84214e837f27',1,'SX126x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX126x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x127x.html#a923654706eff5118ef6e84214e837f27',1,'SX127x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX127x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a923654706eff5118ef6e84214e837f27',1,'SX128x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX128x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)']]], - ['startwifiscan_645',['startWifiScan',['../class_l_r11x0.html#a3498e0e621f341e415145879989e0948',1,'LR11x0']]], - ['status_20codes_646',['Status Codes',['../group__status__codes.html',1,'']]], - ['statuspos_647',['statusPos',['../struct_module_1_1_s_p_i_config__t.html#a5b689d2722b8980a211a562ed394d23e',1,'Module::SPIConfig_t']]], - ['stm32wlx_648',['STM32WLx',['../class_s_t_m32_w_lx.html',1,'STM32WLx'],['../class_s_t_m32_w_lx.html#ac0e8787dbb8e8aaa172b089ace6eaa09',1,'STM32WLx::STM32WLx()']]], - ['stm32wlx_5fmodule_649',['STM32WLx_Module',['../class_s_t_m32_w_lx___module.html',1,'']]], - ['stm32wlxhal_650',['Stm32wlxHal',['../class_stm32wlx_hal.html',1,'']]], - ['stream_651',['stream',['../struct_module_1_1_s_p_i_config__t.html#a1a088c02ed02361746621ffbc2526681',1,'Module::SPIConfig_t']]], - ['svid_652',['svId',['../struct_l_r11x0_gnss_satellite__t.html#a0513395fd04c052b862c443dfbe75e84',1,'LR11x0GnssSatellite_t']]], - ['sx1231_653',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231::SX1231()'],['../class_s_x1231.html',1,'SX1231']]], - ['sx1233_654',['SX1233',['../class_s_x1233.html#a23d2fbf2473e48d46e341e6afe31f82f',1,'SX1233::SX1233()'],['../class_s_x1233.html',1,'SX1233']]], - ['sx1261_655',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261::SX1261()'],['../class_s_x1261.html',1,'SX1261']]], - ['sx1262_656',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262::SX1262()'],['../class_s_x1262.html',1,'SX1262']]], - ['sx1268_657',['SX1268',['../class_s_x1268.html',1,'SX1268'],['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268::SX1268()']]], - ['sx126x_658',['SX126x',['../class_s_x126x.html',1,'SX126x'],['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x::SX126x()']]], - ['sx1272_659',['SX1272',['../class_s_x1272.html',1,'SX1272'],['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272::SX1272()']]], - ['sx1273_660',['SX1273',['../class_s_x1273.html',1,'SX1273'],['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273::SX1273()']]], - ['sx1276_661',['SX1276',['../class_s_x1276.html',1,'SX1276'],['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276::SX1276()']]], - ['sx1277_662',['SX1277',['../class_s_x1277.html',1,'SX1277'],['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277::SX1277()']]], - ['sx1278_663',['SX1278',['../class_s_x1278.html',1,'SX1278'],['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278::SX1278()']]], - ['sx1279_664',['SX1279',['../class_s_x1279.html',1,'SX1279'],['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279::SX1279()']]], - ['sx127x_665',['SX127x',['../class_s_x127x.html',1,'SX127x'],['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x::SX127x()']]], - ['sx1280_666',['SX1280',['../class_s_x1280.html',1,'SX1280'],['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280::SX1280()']]], - ['sx1281_667',['SX1281',['../class_s_x1281.html',1,'SX1281'],['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281::SX1281()']]], - ['sx1282_668',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282::SX1282()'],['../class_s_x1282.html',1,'SX1282']]], - ['sx128x_669',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x::SX128x()'],['../class_s_x128x.html',1,'SX128x']]], - ['symnum_670',['symNum',['../struct_c_a_d_scan_config__t.html#a5cb000f071f740c8cc81ea2f04dd9b60',1,'CADScanConfig_t']]] + ['spitransfer_623',['SPItransfer',['../class_module.html#aa6df70520aa015dd3a1bccdceae67232',1,'Module']]], + ['spitransferstream_624',['SPItransferStream',['../class_module.html#a4174159e476de5cef6ea3f89c883cb5e',1,'Module']]], + ['spiwriteregister_625',['SPIwriteRegister',['../class_module.html#a60ca6b4cae98f7d935191a569d519913',1,'Module']]], + ['spiwriteregisterburst_626',['SPIwriteRegisterBurst',['../class_module.html#a2826f0fa116eb0a4dd18ddb9b21e4caf',1,'Module']]], + ['spiwritestream_627',['SPIwriteStream',['../class_module.html#af99b0e74e67417a88f500ab7261ddd20',1,'Module::SPIwriteStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a7acbe601ebe6398781d0f2de5177305e',1,'Module::SPIwriteStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]], + ['spreadingfactor_628',['spreadingFactor',['../struct_lo_ra_rate__t.html#a24fcb6220c0577f985478dc109750076',1,'LoRaRate_t']]], + ['srccallsign_629',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]], + ['srcssid_630',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]], + ['ssid_631',['ssid',['../struct_l_r11x0_wifi_result_extended__t.html#a640fdd5b33e6ab2f6867cd63da567147',1,'LR11x0WifiResultExtended_t']]], + ['sstvclient_632',['SSTVClient',['../class_s_s_t_v_client.html#af15cf501c00172270d2d2c43d7a7100a',1,'SSTVClient::SSTVClient(PhysicalLayer *phy)'],['../class_s_s_t_v_client.html#a99e46bec8403dfc36b9e5b102b1f7cf1',1,'SSTVClient::SSTVClient(AFSKClient *audio)'],['../class_s_s_t_v_client.html',1,'SSTVClient']]], + ['sstvmode_5ft_633',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]], + ['standby_634',['standby',['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby() override'],['../class_c_c1101.html#af374ad0ecd820a01baef7d177a30132a',1,'CC1101::standby(uint8_t mode) override'],['../class_l_r11x0.html#a2d682ec2ca0ddf4da41a93dd8e728665',1,'LR11x0::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()'],['../class_physical_layer.html#a7d5da4311092e3df6b193ff303a0c5e8',1,'PhysicalLayer::standby(uint8_t mode)'],['../class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018',1,'PhysicalLayer::standby()'],['../class_f_s_k4_client.html#a8b5765371ebbf68a21bc0bbfdf9f82ac',1,'FSK4Client::standby()'],['../class_bell_client.html#a57c19c733b0dfe80bd321f23b18c1e80',1,'BellClient::standby()'],['../class_s_x128x.html#a389aab93e24ec8c7cc9c14de90e5dfae',1,'SX128x::standby(uint8_t mode, bool wakeup=false)'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x127x.html#aa565bbff460e487672953dc05d335cb0',1,'SX127x::standby(uint8_t mode) override'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby() override'],['../class_s_x126x.html#a2fa0384a529746811e2dcb2eeb4188ec',1,'SX126x::standby(uint8_t mode, bool wakeup=true)'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby() override'],['../class_si443x.html#acbc0f95f32ca961294666405596ff529',1,'Si443x::standby(uint8_t mode) override'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby() override'],['../class_r_f69.html#a6e3002ab0c58e2087a7d101eda7afa82',1,'RF69::standby(uint8_t mode) override'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby() override'],['../classn_r_f24.html#a03e9ae7fbd0d55887acf1996df28ed5b',1,'nRF24::standby(uint8_t mode) override'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby() override'],['../class_l_r11x0.html#a74c3f3f8409f1fd0f41347b7d3c7dc24',1,'LR11x0::standby()']]], + ['standby_20mode_20type_20aliases_2e_635',['Standby mode type aliases.',['../group__config__standby.html',1,'']]], + ['standbyxosc_636',['standbyXOSC',['../class_s_x126x.html#ae731568798d03d9722a440fd6a23faf2',1,'SX126x']]], + ['start_637',['start',['../struct_l_r11x0_gnss_almanac_status__t.html#a2228a69fda1002c027b7b487aa579afb',1,'LR11x0GnssAlmanacStatus_t']]], + ['startchannelscan_638',['startChannelScan',['../class_s_x128x.html#a948156af6e886bc46a6c6c5fb10a087a',1,'SX128x::startChannelScan()'],['../class_s_x127x.html#a6fa5723724393576ed597509200e17d1',1,'SX127x::startChannelScan()'],['../class_s_x126x.html#a09a8fe05c23c652c7ace2e2f1bf51d93',1,'SX126x::startChannelScan(const ChannelScanConfig_t &config) override'],['../class_s_x126x.html#a001c4637f01ed6f0216cd6c4d7e10da3',1,'SX126x::startChannelScan() override'],['../class_l_r11x0.html#ab073ade3f6b9bbb383e388904812f575',1,'LR11x0::startChannelScan(const ChannelScanConfig_t &config) override'],['../class_l_r11x0.html#a4f3bc362530b85dd643669705f03998d',1,'LR11x0::startChannelScan() override'],['../class_s_x128x.html#acdee68d9be73509f464226722551c4d9',1,'SX128x::startChannelScan()'],['../class_physical_layer.html#ae30dfbb5445bb674898fc54f5f90b2f9',1,'PhysicalLayer::startChannelScan()'],['../class_physical_layer.html#a82a52062d9259c2c546d7bf8072b7a72',1,'PhysicalLayer::startChannelScan(const ChannelScanConfig_t &config)']]], + ['startdirect_639',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], + ['startranging_640',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]], + ['startreceive_641',['startReceive',['../class_c_c1101.html#ae71e947abf6a07b194c6c6d64fd3eb19',1,'CC1101::startReceive()'],['../class_s_x127x.html#acaab95d4bf57bf33f6269d2f099e48e0',1,'SX127x::startReceive()'],['../class_c_c1101.html#abf153c8fcf2a0d60439426b03692642e',1,'CC1101::startReceive()'],['../class_l_r11x0.html#aa6ce285cc1b76ce028db6442a421ed8d',1,'LR11x0::startReceive() override'],['../class_l_r11x0.html#ae79c42c4ceceb7a6897731d01d365281',1,'LR11x0::startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)'],['../classn_r_f24.html#a3c6aa3622c887118fb8d8cb2689fdff2',1,'nRF24::startReceive() override'],['../classn_r_f24.html#a38b0084ad11090f918f4f370b9df7514',1,'nRF24::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_r_f69.html#a3bece228d369dcc1aab6a5b29d0685a8',1,'RF69::startReceive() override'],['../class_r_f69.html#a21ae7524fe573f1a7e74dee342418222',1,'RF69::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_si443x.html#ae188dec3175a3aec96844a613e911500',1,'Si443x::startReceive() override'],['../class_si443x.html#ad5adec16d570b0d1b09420919dbe77e4',1,'Si443x::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_s_x126x.html#a66ad433561b02fe61b09afd735ce56cc',1,'SX126x::startReceive() override'],['../class_s_x126x.html#a44856b641060cff8e9e2019901cd4751',1,'SX126x::startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0)'],['../class_s_x127x.html#abbe1076252a366c3c4aa323fdff7d40c',1,'SX127x::startReceive()'],['../class_s_x128x.html#a299dd5c01a6f7d2f8a96becd4fff1f09',1,'SX128x::startReceive()'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive(uint32_t pin, uint32_t addr, uint32_t mask=0xFFFFF)'],['../class_pager_client.html#a9c0f13846fbc333a35a16a98b6575ca6',1,'PagerClient::startReceive(uint32_t pin, uint32_t *addrs, uint32_t *masks, size_t numAddress)'],['../class_physical_layer.html#a18664ad615c5507ff1690baaca90b094',1,'PhysicalLayer::startReceive()'],['../class_physical_layer.html#ac88f9185b5e9fdc1d89df9797dcdd9b7',1,'PhysicalLayer::startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags, RadioLibIrqFlags_t irqMask, size_t len)'],['../class_s_x128x.html#a803eaca8bb7fdfa3570cf4aa95f8e729',1,'SX128x::startReceive()']]], + ['startreceivedutycycle_642',['startReceiveDutyCycle',['../class_s_x126x.html#af9352e49d893151d68a314109140fe29',1,'SX126x']]], + ['startreceivedutycycleauto_643',['startReceiveDutyCycleAuto',['../class_s_x126x.html#ad0f95b62ee987010b00f4be75bf9ab4e',1,'SX126x']]], + ['startsignal_644',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], + ['starttransmit_645',['startTransmit',['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af79757dbbd62e080c1bad2e608ab940c',1,'PhysicalLayer::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a46fff7c4b2bb0eed3fd313d6413dc4e9',1,'SX128x::startTransmit()'],['../class_s_x127x.html#ae0902a990203ec67c628e5d006cbaa96',1,'SX127x::startTransmit()'],['../class_s_x126x.html#adf06ca0d64a61ce16a0a2f4f9a7d6a86',1,'SX126x::startTransmit()'],['../class_si443x.html#a187ea9ee96a67cd48e5b28be5b237c95',1,'Si443x::startTransmit()'],['../class_r_f69.html#af645f6b5d37812f6bb9ec11788e12066',1,'RF69::startTransmit()'],['../classn_r_f24.html#a8b2365ad11840d1d05b0e17b37ddacd2',1,'nRF24::startTransmit()'],['../class_l_r11x0.html#a459825c5b46a2ca515e62042d605aa67',1,'LR11x0::startTransmit()'],['../class_c_c1101.html#a6ff7e4066d189482c142e05384a38df0',1,'CC1101::startTransmit()'],['../class_si443x.html#a923654706eff5118ef6e84214e837f27',1,'Si443x::startTransmit()'],['../class_c_c1101.html#a923654706eff5118ef6e84214e837f27',1,'CC1101::startTransmit(const char *str, uint8_t addr=0)'],['../class_c_c1101.html#af79757dbbd62e080c1bad2e608ab940c',1,'CC1101::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_l_r11x0.html#a923654706eff5118ef6e84214e837f27',1,'LR11x0::startTransmit(const char *str, uint8_t addr=0)'],['../class_l_r11x0.html#af79757dbbd62e080c1bad2e608ab940c',1,'LR11x0::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../classn_r_f24.html#a923654706eff5118ef6e84214e837f27',1,'nRF24::startTransmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#af79757dbbd62e080c1bad2e608ab940c',1,'nRF24::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_r_f69.html#a923654706eff5118ef6e84214e837f27',1,'RF69::startTransmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#af79757dbbd62e080c1bad2e608ab940c',1,'RF69::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#af79757dbbd62e080c1bad2e608ab940c',1,'Si443x::startTransmit()'],['../class_s_x126x.html#a923654706eff5118ef6e84214e837f27',1,'SX126x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX126x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x127x.html#a923654706eff5118ef6e84214e837f27',1,'SX127x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX127x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a923654706eff5118ef6e84214e837f27',1,'SX128x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX128x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)']]], + ['startwifiscan_646',['startWifiScan',['../class_l_r11x0.html#a3498e0e621f341e415145879989e0948',1,'LR11x0']]], + ['status_20codes_647',['Status Codes',['../group__status__codes.html',1,'']]], + ['statuspos_648',['statusPos',['../struct_module_1_1_s_p_i_config__t.html#a5b689d2722b8980a211a562ed394d23e',1,'Module::SPIConfig_t']]], + ['stm32wlx_649',['STM32WLx',['../class_s_t_m32_w_lx.html',1,'STM32WLx'],['../class_s_t_m32_w_lx.html#ac0e8787dbb8e8aaa172b089ace6eaa09',1,'STM32WLx::STM32WLx()']]], + ['stm32wlx_5fmodule_650',['STM32WLx_Module',['../class_s_t_m32_w_lx___module.html',1,'']]], + ['stm32wlxhal_651',['Stm32wlxHal',['../class_stm32wlx_hal.html',1,'']]], + ['stream_652',['stream',['../struct_module_1_1_s_p_i_config__t.html#a1a088c02ed02361746621ffbc2526681',1,'Module::SPIConfig_t']]], + ['svid_653',['svId',['../struct_l_r11x0_gnss_satellite__t.html#a0513395fd04c052b862c443dfbe75e84',1,'LR11x0GnssSatellite_t']]], + ['sx1231_654',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231::SX1231()'],['../class_s_x1231.html',1,'SX1231']]], + ['sx1233_655',['SX1233',['../class_s_x1233.html#a23d2fbf2473e48d46e341e6afe31f82f',1,'SX1233::SX1233()'],['../class_s_x1233.html',1,'SX1233']]], + ['sx1261_656',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261::SX1261()'],['../class_s_x1261.html',1,'SX1261']]], + ['sx1262_657',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262::SX1262()'],['../class_s_x1262.html',1,'SX1262']]], + ['sx1268_658',['SX1268',['../class_s_x1268.html',1,'SX1268'],['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268::SX1268()']]], + ['sx126x_659',['SX126x',['../class_s_x126x.html',1,'SX126x'],['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x::SX126x()']]], + ['sx1272_660',['SX1272',['../class_s_x1272.html',1,'SX1272'],['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272::SX1272()']]], + ['sx1273_661',['SX1273',['../class_s_x1273.html',1,'SX1273'],['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273::SX1273()']]], + ['sx1276_662',['SX1276',['../class_s_x1276.html',1,'SX1276'],['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276::SX1276()']]], + ['sx1277_663',['SX1277',['../class_s_x1277.html',1,'SX1277'],['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277::SX1277()']]], + ['sx1278_664',['SX1278',['../class_s_x1278.html',1,'SX1278'],['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278::SX1278()']]], + ['sx1279_665',['SX1279',['../class_s_x1279.html',1,'SX1279'],['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279::SX1279()']]], + ['sx127x_666',['SX127x',['../class_s_x127x.html',1,'SX127x'],['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x::SX127x()']]], + ['sx1280_667',['SX1280',['../class_s_x1280.html',1,'SX1280'],['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280::SX1280()']]], + ['sx1281_668',['SX1281',['../class_s_x1281.html',1,'SX1281'],['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281::SX1281()']]], + ['sx1282_669',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282::SX1282()'],['../class_s_x1282.html',1,'SX1282']]], + ['sx128x_670',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x::SX128x()'],['../class_s_x128x.html',1,'SX128x']]], + ['symnum_671',['symNum',['../struct_c_a_d_scan_config__t.html#a5cb000f071f740c8cc81ea2f04dd9b60',1,'CADScanConfig_t']]] ]; diff --git a/search/all_11.js b/search/all_11.js index 8917971f..f2dc5f89 100644 --- a/search/all_11.js +++ b/search/all_11.js @@ -1,25 +1,25 @@ var searchData= [ - ['term_671',['term',['../class_esp_hal.html#a698f840f9ba329d0fb1cc70a9228e2a9',1,'EspHal::term()'],['../class_pi_hal.html#ae5821694030ae6364012be3a34ef584d',1,'PiHal::term()'],['../class_pico_hal.html#a27803b7a0b53dca9fd1c74eadb15755a',1,'PicoHal::term()'],['../class_tock_hal.html#a42dcea862b480024119c2730270d8f1e',1,'TockHal::term()'],['../class_radio_lib_hal.html#aa4f2bd49aea5a19aa9f85c720b4a883e',1,'RadioLibHal::term()'],['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module::term()']]], - ['timeout_672',['timeout',['../struct_module_1_1_s_p_i_config__t.html#a56ecc0b9c1207d655c581e90faa77bb5',1,'Module::SPIConfig_t::timeout()'],['../struct_c_a_d_scan_config__t.html#a44223617e2d046318e75f863c618e26c',1,'CADScanConfig_t::timeout()']]], - ['timestamp_673',['timestamp',['../struct_l_r11x0_wifi_result_full__t.html#a4fbd2bfd834c890da47ab94c6f688738',1,'LR11x0WifiResultFull_t']]], - ['timeuntiluplink_674',['timeUntilUplink',['../class_lo_ra_w_a_n_node.html#a49e690c14858b46692e4ce9aa5a2566a',1,'LoRaWANNode']]], - ['tockhal_675',['TockHal',['../class_tock_hal.html',1,'']]], - ['todistributionsystem_676',['toDistributionSystem',['../struct_l_r11x0_wifi_result_full__t.html#abe8e8b5e22a75ac988de6f98afa5fd61',1,'LR11x0WifiResultFull_t']]], - ['todo_20list_677',['Todo List',['../todo.html',1,'']]], - ['tone_678',['tone',['../class_pi_hal.html#a95856f347434694b018d0ad18126e041',1,'PiHal::tone()'],['../class_pico_hal.html#abfa0319db88b4c015edf67a9c9b671be',1,'PicoHal::tone()'],['../class_radio_lib_hal.html#a62c9032e834ba420d81dc3e69df64e17',1,'RadioLibHal::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]], - ['tone_5ft_679',['tone_t',['../structtone__t.html',1,'']]], - ['tones_680',['tones',['../struct_s_s_t_v_mode__t.html#a7993c913a63cda9d927938fe0b08b8ea',1,'SSTVMode_t']]], - ['transmit_681',['transmit',['../class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX127x::transmit()'],['../class_s_x128x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX128x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX128x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX127x::transmit()'],['../class_c_c1101.html#a5086eb8a27aa842e94d1df54f385c39b',1,'CC1101::transmit()'],['../class_s_x126x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX126x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX126x::transmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#ada508497ee2e70170da3afe078e2fe0e',1,'Si443x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#a492b2d057dd803c3884fa1adc8e22534',1,'Si443x::transmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#ada508497ee2e70170da3afe078e2fe0e',1,'RF69::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534',1,'RF69::transmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#ada508497ee2e70170da3afe078e2fe0e',1,'nRF24::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534',1,'nRF24::transmit(const char *str, uint8_t addr=0)'],['../class_l_r11x0.html#ada508497ee2e70170da3afe078e2fe0e',1,'LR11x0::transmit()'],['../class_c_c1101.html#ada508497ee2e70170da3afe078e2fe0e',1,'CC1101::transmit()'],['../class_l_r11x0.html#a21e865665318dece7d95336a275dd973',1,'LR11x0::transmit()'],['../classn_r_f24.html#af7c4cf05b992d8a97331b9888e95fc2f',1,'nRF24::transmit()'],['../class_r_f69.html#a8d68f041b20ed765f2ff2fbdff06171f',1,'RF69::transmit()'],['../class_si443x.html#a379fb39c9ab79aa67601c84736b1fec4',1,'Si443x::transmit()'],['../class_s_x126x.html#a5fa48e147ee54e1b0fc4d28ef5247180',1,'SX126x::transmit()'],['../class_s_x127x.html#a75cb0d8810a5ce025d3bf5b51ca263d6',1,'SX127x::transmit()'],['../class_s_x128x.html#a45f4ac293d869a35ad737032efa8e884',1,'SX128x::transmit()'],['../class_pager_client.html#adbab4e162a5719bd4407a42a85d26ff6',1,'PagerClient::transmit()'],['../class_l_r11x0.html#a492b2d057dd803c3884fa1adc8e22534',1,'LR11x0::transmit()'],['../class_c_c1101.html#a492b2d057dd803c3884fa1adc8e22534',1,'CC1101::transmit()'],['../class_physical_layer.html#ada508497ee2e70170da3afe078e2fe0e',1,'PhysicalLayer::transmit()'],['../class_pager_client.html#aa9df7f8675170affc5256a896168601b',1,'PagerClient::transmit()'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit()'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit()']]], - ['transmitdirect_682',['transmitDirect',['../class_l_r11x0.html#ae077957969f6274a53f63b314b6f1359',1,'LR11x0::transmitDirect()'],['../class_physical_layer.html#aa4c99ac794ee653c2061be4201724b65',1,'PhysicalLayer::transmitDirect()'],['../class_external_radio.html#a25be77aea48cfbdcae05ed32b660daef',1,'ExternalRadio::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect(uint32_t frf=0) override']]], - ['transmitdirectasync_683',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]], - ['ts009_684',['TS009',['../class_lo_ra_w_a_n_node.html#a8226f4d0329d15da9ffc706e5781403a',1,'LoRaWANNode']]], - ['txack_685',['txAck',['../struct_lo_ra_w_a_n_band__t.html#a709fdad617bd9138eef52bc7220c29f2',1,'LoRaWANBand_t']]], - ['txfreqs_686',['txFreqs',['../struct_lo_ra_w_a_n_band__t.html#a9bd952022473cb08e067c763325d689c',1,'LoRaWANBand_t']]], - ['txjoinreq_687',['txJoinReq',['../struct_lo_ra_w_a_n_band__t.html#a9f6f43346f7c2e281b90d58a44565d38',1,'LoRaWANBand_t']]], - ['txparamsupported_688',['txParamSupported',['../struct_lo_ra_w_a_n_band__t.html#a4bbc7445702c32199f0bbd011d6f4da6',1,'LoRaWANBand_t']]], - ['txspans_689',['txSpans',['../struct_lo_ra_w_a_n_band__t.html#aa37a3cae13a68c2deb2968de26ad9bd3',1,'LoRaWANBand_t']]], - ['txwor_690',['txWoR',['../struct_lo_ra_w_a_n_band__t.html#a918f643c1fc6df722efd8f969c68cf7e',1,'LoRaWANBand_t']]], - ['type_691',['type',['../struct_l_r11x0_wifi_result__t.html#a7750bb14648b6ee4e96b73cd76a1ca2a',1,'LR11x0WifiResult_t::type()'],['../structtone__t.html#abc1079d3ec7d98466dc948930a348d65',1,'tone_t::type()']]], - ['type_20aliases_20used_20by_20radiolib_2e_692',['Type aliases used by RadioLib.',['../group__typedefs.html',1,'']]] + ['term_672',['term',['../class_esp_hal.html#a698f840f9ba329d0fb1cc70a9228e2a9',1,'EspHal::term()'],['../class_pi_hal.html#ae5821694030ae6364012be3a34ef584d',1,'PiHal::term()'],['../class_pico_hal.html#a27803b7a0b53dca9fd1c74eadb15755a',1,'PicoHal::term()'],['../class_tock_hal.html#a42dcea862b480024119c2730270d8f1e',1,'TockHal::term()'],['../class_radio_lib_hal.html#aa4f2bd49aea5a19aa9f85c720b4a883e',1,'RadioLibHal::term()'],['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module::term()']]], + ['timeout_673',['timeout',['../struct_module_1_1_s_p_i_config__t.html#a56ecc0b9c1207d655c581e90faa77bb5',1,'Module::SPIConfig_t::timeout()'],['../struct_c_a_d_scan_config__t.html#a44223617e2d046318e75f863c618e26c',1,'CADScanConfig_t::timeout()']]], + ['timestamp_674',['timestamp',['../struct_l_r11x0_wifi_result_full__t.html#a4fbd2bfd834c890da47ab94c6f688738',1,'LR11x0WifiResultFull_t']]], + ['timeuntiluplink_675',['timeUntilUplink',['../class_lo_ra_w_a_n_node.html#a49e690c14858b46692e4ce9aa5a2566a',1,'LoRaWANNode']]], + ['tockhal_676',['TockHal',['../class_tock_hal.html',1,'']]], + ['todistributionsystem_677',['toDistributionSystem',['../struct_l_r11x0_wifi_result_full__t.html#abe8e8b5e22a75ac988de6f98afa5fd61',1,'LR11x0WifiResultFull_t']]], + ['todo_20list_678',['Todo List',['../todo.html',1,'']]], + ['tone_679',['tone',['../class_pi_hal.html#a95856f347434694b018d0ad18126e041',1,'PiHal::tone()'],['../class_pico_hal.html#abfa0319db88b4c015edf67a9c9b671be',1,'PicoHal::tone()'],['../class_radio_lib_hal.html#a62c9032e834ba420d81dc3e69df64e17',1,'RadioLibHal::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]], + ['tone_5ft_680',['tone_t',['../structtone__t.html',1,'']]], + ['tones_681',['tones',['../struct_s_s_t_v_mode__t.html#a7993c913a63cda9d927938fe0b08b8ea',1,'SSTVMode_t']]], + ['transmit_682',['transmit',['../class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX127x::transmit()'],['../class_s_x128x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX128x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX128x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX127x::transmit()'],['../class_c_c1101.html#a5086eb8a27aa842e94d1df54f385c39b',1,'CC1101::transmit()'],['../class_s_x126x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX126x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX126x::transmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#ada508497ee2e70170da3afe078e2fe0e',1,'Si443x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#a492b2d057dd803c3884fa1adc8e22534',1,'Si443x::transmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#ada508497ee2e70170da3afe078e2fe0e',1,'RF69::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534',1,'RF69::transmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#ada508497ee2e70170da3afe078e2fe0e',1,'nRF24::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534',1,'nRF24::transmit(const char *str, uint8_t addr=0)'],['../class_l_r11x0.html#ada508497ee2e70170da3afe078e2fe0e',1,'LR11x0::transmit()'],['../class_c_c1101.html#ada508497ee2e70170da3afe078e2fe0e',1,'CC1101::transmit()'],['../class_l_r11x0.html#a21e865665318dece7d95336a275dd973',1,'LR11x0::transmit()'],['../classn_r_f24.html#af7c4cf05b992d8a97331b9888e95fc2f',1,'nRF24::transmit()'],['../class_r_f69.html#a8d68f041b20ed765f2ff2fbdff06171f',1,'RF69::transmit()'],['../class_si443x.html#a379fb39c9ab79aa67601c84736b1fec4',1,'Si443x::transmit()'],['../class_s_x126x.html#a5fa48e147ee54e1b0fc4d28ef5247180',1,'SX126x::transmit()'],['../class_s_x127x.html#a75cb0d8810a5ce025d3bf5b51ca263d6',1,'SX127x::transmit()'],['../class_s_x128x.html#a45f4ac293d869a35ad737032efa8e884',1,'SX128x::transmit()'],['../class_pager_client.html#adbab4e162a5719bd4407a42a85d26ff6',1,'PagerClient::transmit()'],['../class_l_r11x0.html#a492b2d057dd803c3884fa1adc8e22534',1,'LR11x0::transmit()'],['../class_c_c1101.html#a492b2d057dd803c3884fa1adc8e22534',1,'CC1101::transmit()'],['../class_physical_layer.html#ada508497ee2e70170da3afe078e2fe0e',1,'PhysicalLayer::transmit()'],['../class_pager_client.html#aa9df7f8675170affc5256a896168601b',1,'PagerClient::transmit()'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit()'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit()']]], + ['transmitdirect_683',['transmitDirect',['../class_l_r11x0.html#ae077957969f6274a53f63b314b6f1359',1,'LR11x0::transmitDirect()'],['../class_physical_layer.html#aa4c99ac794ee653c2061be4201724b65',1,'PhysicalLayer::transmitDirect()'],['../class_external_radio.html#a25be77aea48cfbdcae05ed32b660daef',1,'ExternalRadio::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect(uint32_t frf=0) override']]], + ['transmitdirectasync_684',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]], + ['ts009_685',['TS009',['../class_lo_ra_w_a_n_node.html#a8226f4d0329d15da9ffc706e5781403a',1,'LoRaWANNode']]], + ['txack_686',['txAck',['../struct_lo_ra_w_a_n_band__t.html#a709fdad617bd9138eef52bc7220c29f2',1,'LoRaWANBand_t']]], + ['txfreqs_687',['txFreqs',['../struct_lo_ra_w_a_n_band__t.html#a9bd952022473cb08e067c763325d689c',1,'LoRaWANBand_t']]], + ['txjoinreq_688',['txJoinReq',['../struct_lo_ra_w_a_n_band__t.html#a9f6f43346f7c2e281b90d58a44565d38',1,'LoRaWANBand_t']]], + ['txparamsupported_689',['txParamSupported',['../struct_lo_ra_w_a_n_band__t.html#a4bbc7445702c32199f0bbd011d6f4da6',1,'LoRaWANBand_t']]], + ['txspans_690',['txSpans',['../struct_lo_ra_w_a_n_band__t.html#aa37a3cae13a68c2deb2968de26ad9bd3',1,'LoRaWANBand_t']]], + ['txwor_691',['txWoR',['../struct_lo_ra_w_a_n_band__t.html#a918f643c1fc6df722efd8f969c68cf7e',1,'LoRaWANBand_t']]], + ['type_692',['type',['../struct_l_r11x0_wifi_result__t.html#a7750bb14648b6ee4e96b73cd76a1ca2a',1,'LR11x0WifiResult_t::type()'],['../structtone__t.html#abc1079d3ec7d98466dc948930a348d65',1,'tone_t::type()']]], + ['type_20aliases_20used_20by_20radiolib_2e_693',['Type aliases used by RadioLib.',['../group__typedefs.html',1,'']]] ]; diff --git a/search/all_12.js b/search/all_12.js index 8876b1cf..3da893e1 100644 --- a/search/all_12.js +++ b/search/all_12.js @@ -1,8 +1,8 @@ var searchData= [ - ['updatefirmware_693',['updateFirmware',['../class_l_r11x0.html#ab2820cc2b740d6d42a079bbd8bd45b85',1,'LR11x0']]], - ['updategnssalmanac_694',['updateGnssAlmanac',['../class_l_r11x0.html#a96aa9566399e46fc03f2b73b44058e3f',1,'LR11x0']]], - ['uploadpatch_695',['uploadPatch',['../class_s_x126x.html#a2af78b744b3e61d3857bed93c3b1bde1',1,'SX126x']]], - ['user_696',['user',['../struct_lo_ra_w_a_n_mac_command__t.html#a269530a63c3e2a66393fb10286a3b5b6',1,'LoRaWANMacCommand_t']]], - ['userepeaters_697',['useRepeaters',['../class_a_p_r_s_client.html#a454fb0a3423f75e909b16640b27b176a',1,'APRSClient']]] + ['updatefirmware_694',['updateFirmware',['../class_l_r11x0.html#ab2820cc2b740d6d42a079bbd8bd45b85',1,'LR11x0']]], + ['updategnssalmanac_695',['updateGnssAlmanac',['../class_l_r11x0.html#a96aa9566399e46fc03f2b73b44058e3f',1,'LR11x0']]], + ['uploadpatch_696',['uploadPatch',['../class_s_x126x.html#a2af78b744b3e61d3857bed93c3b1bde1',1,'SX126x']]], + ['user_697',['user',['../struct_lo_ra_w_a_n_mac_command__t.html#a269530a63c3e2a66393fb10286a3b5b6',1,'LoRaWANMacCommand_t']]], + ['userepeaters_698',['useRepeaters',['../class_a_p_r_s_client.html#a454fb0a3423f75e909b16640b27b176a',1,'APRSClient']]] ]; diff --git a/search/all_13.js b/search/all_13.js index 3b00c5e8..3a068139 100644 --- a/search/all_13.js +++ b/search/all_13.js @@ -1,7 +1,7 @@ var searchData= [ - ['values_698',['values',['../struct_module_1_1_rf_switch_mode__t.html#a694fecae172f868d8ca400319920ed66',1,'Module::RfSwitchMode_t']]], - ['variablepacketlengthmode_699',['variablePacketLengthMode',['../class_c_c1101.html#a50b9e73d2d82a4cd03841f465825b73f',1,'CC1101::variablePacketLengthMode()'],['../class_l_r11x0.html#adcd56cf63e91449b6cd03782a69c3451',1,'LR11x0::variablePacketLengthMode()'],['../class_r_f69.html#af434c67aabe02258ee6696a59973617b',1,'RF69::variablePacketLengthMode()'],['../class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a',1,'Si443x::variablePacketLengthMode()'],['../class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c',1,'SX127x::variablePacketLengthMode()']]], - ['verifycmac_700',['verifyCMAC',['../class_radio_lib_a_e_s128.html#a235daad00bd77a406d7fc187bcb2192e',1,'RadioLibAES128']]], - ['viscode_701',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]] + ['values_699',['values',['../struct_module_1_1_rf_switch_mode__t.html#a694fecae172f868d8ca400319920ed66',1,'Module::RfSwitchMode_t']]], + ['variablepacketlengthmode_700',['variablePacketLengthMode',['../class_c_c1101.html#a50b9e73d2d82a4cd03841f465825b73f',1,'CC1101::variablePacketLengthMode()'],['../class_l_r11x0.html#adcd56cf63e91449b6cd03782a69c3451',1,'LR11x0::variablePacketLengthMode()'],['../class_r_f69.html#af434c67aabe02258ee6696a59973617b',1,'RF69::variablePacketLengthMode()'],['../class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a',1,'Si443x::variablePacketLengthMode()'],['../class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c',1,'SX127x::variablePacketLengthMode()']]], + ['verifycmac_701',['verifyCMAC',['../class_radio_lib_a_e_s128.html#a235daad00bd77a406d7fc187bcb2192e',1,'RadioLibAES128']]], + ['viscode_702',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]] ]; diff --git a/search/all_14.js b/search/all_14.js index e508d388..3a23b440 100644 --- a/search/all_14.js +++ b/search/all_14.js @@ -1,8 +1,8 @@ var searchData= [ - ['waitformicroseconds_702',['waitForMicroseconds',['../class_module.html#a7df4c687249c07af2594a5f7ad0a946f',1,'Module']]], - ['width_703',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]], - ['widths_704',['widths',['../struct_module_1_1_s_p_i_config__t.html#a8cd88af331563749f10ac69b63e1755a',1,'Module::SPIConfig_t']]], - ['wifiscan_705',['wifiScan',['../class_l_r11x0.html#ade5478296ebc7e02281c95609d5d75ab',1,'LR11x0']]], - ['write_706',['write',['../class_bell_client.html#a69bd78bf3be2724b4f34c80c2bd3a6df',1,'BellClient::write()'],['../class_f_s_k4_client.html#aa59fb42d3eeafe5ab3f0437ef5567ec2',1,'FSK4Client::write(uint8_t *buff, size_t len)'],['../class_f_s_k4_client.html#a31218736d4f9a3412ee9009a4c4f5a22',1,'FSK4Client::write(uint8_t b)'],['../class_hell_client.html#af557774ad72c24a94faff8c2be30f0d1',1,'HellClient::write()'],['../class_morse_client.html#a4a9cf8bf1a8bd270417a1a9fca660ef1',1,'MorseClient::write()'],['../class_r_t_t_y_client.html#a23220f58b7bda1f24b6343875561586a',1,'RTTYClient::write()']]] + ['waitformicroseconds_703',['waitForMicroseconds',['../class_module.html#a7df4c687249c07af2594a5f7ad0a946f',1,'Module']]], + ['width_704',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]], + ['widths_705',['widths',['../struct_module_1_1_s_p_i_config__t.html#a8cd88af331563749f10ac69b63e1755a',1,'Module::SPIConfig_t']]], + ['wifiscan_706',['wifiScan',['../class_l_r11x0.html#ade5478296ebc7e02281c95609d5d75ab',1,'LR11x0']]], + ['write_707',['write',['../class_bell_client.html#a69bd78bf3be2724b4f34c80c2bd3a6df',1,'BellClient::write()'],['../class_f_s_k4_client.html#aa59fb42d3eeafe5ab3f0437ef5567ec2',1,'FSK4Client::write(uint8_t *buff, size_t len)'],['../class_f_s_k4_client.html#a31218736d4f9a3412ee9009a4c4f5a22',1,'FSK4Client::write(uint8_t b)'],['../class_hell_client.html#af557774ad72c24a94faff8c2be30f0d1',1,'HellClient::write()'],['../class_morse_client.html#a4a9cf8bf1a8bd270417a1a9fca660ef1',1,'MorseClient::write()'],['../class_r_t_t_y_client.html#a23220f58b7bda1f24b6343875561586a',1,'RTTYClient::write()']]] ]; diff --git a/search/all_15.js b/search/all_15.js index 0e782f55..f79d40f3 100644 --- a/search/all_15.js +++ b/search/all_15.js @@ -1,4 +1,4 @@ var searchData= [ - ['xtal_707',['XTAL',['../class_l_r11x0.html#a3ccfd35d26960457214d2a0192d6b312',1,'LR11x0::XTAL()'],['../class_s_x126x.html#ada0fe6c3d31885952b439135cf0c18f1',1,'SX126x::XTAL()']]] + ['xtal_708',['XTAL',['../class_l_r11x0.html#a3ccfd35d26960457214d2a0192d6b312',1,'LR11x0::XTAL()'],['../class_s_x126x.html#ada0fe6c3d31885952b439135cf0c18f1',1,'SX126x::XTAL()']]] ]; diff --git a/search/all_16.js b/search/all_16.js index 48e7086f..8d938a30 100644 --- a/search/all_16.js +++ b/search/all_16.js @@ -1,4 +1,4 @@ var searchData= [ - ['yield_708',['yield',['../class_pi_hal.html#af0aca7bc69d8b31783656213e8a8873d',1,'PiHal::yield()'],['../class_pico_hal.html#add7d8e380c51f7fa2312aea2982878c2',1,'PicoHal::yield()'],['../class_tock_hal.html#a805835621f56279e4f6fa4b5370178d2',1,'TockHal::yield()'],['../class_radio_lib_hal.html#a1bd9d614f66b374ec820ce31b167fdb2',1,'RadioLibHal::yield()']]] + ['yield_709',['yield',['../class_pi_hal.html#af0aca7bc69d8b31783656213e8a8873d',1,'PiHal::yield()'],['../class_pico_hal.html#add7d8e380c51f7fa2312aea2982878c2',1,'PicoHal::yield()'],['../class_tock_hal.html#a805835621f56279e4f6fa4b5370178d2',1,'TockHal::yield()'],['../class_radio_lib_hal.html#a1bd9d614f66b374ec820ce31b167fdb2',1,'RadioLibHal::yield()']]] ]; diff --git a/search/all_17.js b/search/all_17.js index c7f6c41e..0559026f 100644 --- a/search/all_17.js +++ b/search/all_17.js @@ -1,7 +1,7 @@ var searchData= [ - ['_7eax25frame_709',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]], - ['_7eexternalradio_710',['~ExternalRadio',['../class_external_radio.html#a46f76689b07d29a626faf917ad264ad0',1,'ExternalRadio']]], - ['_7eita2string_711',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]], - ['_7eradiolibbch_712',['~RadioLibBCH',['../class_radio_lib_b_c_h.html#ac4ceca6f132ff2047e2ca13d8d00a9e5',1,'RadioLibBCH']]] + ['_7eax25frame_710',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]], + ['_7eexternalradio_711',['~ExternalRadio',['../class_external_radio.html#a46f76689b07d29a626faf917ad264ad0',1,'ExternalRadio']]], + ['_7eita2string_712',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]], + ['_7eradiolibbch_713',['~RadioLibBCH',['../class_radio_lib_b_c_h.html#ac4ceca6f132ff2047e2ca13d8d00a9e5',1,'RadioLibBCH']]] ]; diff --git a/search/all_2.js b/search/all_2.js index 281eb78a..c050158e 100644 --- a/search/all_2.js +++ b/search/all_2.js @@ -4,37 +4,38 @@ var searchData= ['cad_34',['cad',['../union_channel_scan_config__t.html#ad9cdc4ce1a4664a12802d1e652c9e098',1,'ChannelScanConfig_t']]], ['cadscanconfig_5ft_35',['CADScanConfig_t',['../struct_c_a_d_scan_config__t.html',1,'']]], ['calculaterxtimeout_36',['calculateRxTimeout',['../class_l_r11x0.html#a260c7f4ee4739e532ddb465a276205d3',1,'LR11x0::calculateRxTimeout()'],['../class_s_x126x.html#a19f3c26d7a7959e302fc8174fc88a6d4',1,'SX126x::calculateRxTimeout()'],['../class_s_x127x.html#adbc4021380dc557114625dc51262cf90',1,'SX127x::calculateRxTimeout()'],['../class_physical_layer.html#a7f8d12a90158864a8ebc471b0ec89dc9',1,'PhysicalLayer::calculateRxTimeout()']]], - ['calibrateimagerejection_37',['calibrateImageRejection',['../class_s_x126x.html#aa3c90f19cd141738ff013ae72f78f1bb',1,'SX126x']]], - ['cc1101_38',['CC1101',['../class_c_c1101.html',1,'CC1101'],['../class_c_c1101.html#a6807e4254c4b55fa8d393b2bf8f2db3e',1,'CC1101::CC1101()']]], - ['channelfreq_39',['channelFreq',['../struct_l_r11x0_wifi_result__t.html#a520382420ad088ac1ace3754192cbfeb',1,'LR11x0WifiResult_t']]], - ['channelscanconfig_5ft_40',['ChannelScanConfig_t',['../union_channel_scan_config__t.html',1,'']]], - ['checkdatarate_41',['checkDataRate',['../class_l_r11x0.html#a4d18ad719be79c083f2b0ce77bbaa448',1,'LR11x0::checkDataRate()'],['../class_s_x126x.html#a75c8d32cee712e0c940163446b98e587',1,'SX126x::checkDataRate()'],['../class_s_x1272.html#a2a36487740f15731c6e508428e4b11f0',1,'SX1272::checkDataRate()'],['../class_s_x1273.html#a5eae1e82596f3a6c4c926c381c2737a7',1,'SX1273::checkDataRate()'],['../class_s_x1277.html#aef5d9e27edc2173d1b4cc1cb0d9733bc',1,'SX1277::checkDataRate()'],['../class_s_x1278.html#a7f238fd38f436d9e86aa92a387d48467',1,'SX1278::checkDataRate()'],['../class_physical_layer.html#a58d54eeb40fb586013ba48e15318abba',1,'PhysicalLayer::checkDataRate()'],['../class_l_l_c_c68.html#a708183645ec0b9fec54d6369e7b1345f',1,'LLCC68::checkDataRate()']]], - ['checkirq_42',['checkIrq',['../class_physical_layer.html#a2c7dd4704e3df353265010710bd26e83',1,'PhysicalLayer']]], - ['checkoutputpower_43',['checkOutputPower',['../class_physical_layer.html#a1784cb227d04b3f2846625fda6797536',1,'PhysicalLayer::checkOutputPower()'],['../class_s_x128x.html#a5e876e02fd527390905004718225c25f',1,'SX128x::checkOutputPower()'],['../class_s_x1278.html#ac6146c2a3d0a35662312165325fd97f8',1,'SX1278::checkOutputPower(int8_t power, int8_t *clipped, bool useRfo)'],['../class_s_x1278.html#aac7b585c4a616a1cd6f89a8b46a7d9f8',1,'SX1278::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_s_x1272.html#a1e39e8e3b228ca9a805f41a9bbf86c64',1,'SX1272::checkOutputPower(int8_t power, int8_t *clipped, bool useRfo)'],['../class_s_x1272.html#a2510072152c936d9f62557f46a4248d0',1,'SX1272::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_s_x1268.html#ae1b1f56336fcef9ce31d9408fbbbfe3c',1,'SX1268::checkOutputPower()'],['../class_s_x1262.html#a33c304c19634a905c7318d9ca88f4e93',1,'SX1262::checkOutputPower()'],['../class_l_r1120.html#a369b667c81e1ec724148b401c5aad79d',1,'LR1120::checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)'],['../class_l_r1120.html#acf6ea475643c6eba63133641a8681a8f',1,'LR1120::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_l_r1110.html#ae084d4503b2abcdc508edef40b0cadb3',1,'LR1110::checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)'],['../class_l_r1110.html#af1f6dddd12805fdecb55ef5703d23ef1',1,'LR1110::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_c_c1101.html#aa86c74ed4339b70be6950e9f92be1d81',1,'CC1101::checkOutputPower(int8_t power, int8_t *clipped, uint8_t *raw)'],['../class_c_c1101.html#ab500e75fcf63f123eb3945925f361bd0',1,'CC1101::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_s_x1261.html#ae8e9968a9ee1c2199ed9f968d8f4e3b1',1,'SX1261::checkOutputPower()']]], - ['checkstatuscb_44',['checkStatusCb',['../struct_module_1_1_s_p_i_config__t.html#ac1e7f50d134ec054ed2074b846f1124e',1,'Module::SPIConfig_t']]], - ['checksum_45',['checksum',['../class_radio_lib_c_r_c.html#a92328d778fe59c046c6e74296eb5fb23',1,'RadioLibCRC']]], - ['cid_46',['cid',['../struct_lo_ra_w_a_n_mac_command__t.html#a79d26324cafccbae8b95927935e0d0dc',1,'LoRaWANMacCommand_t']]], - ['clearchannelscanaction_47',['clearChannelScanAction',['../class_s_t_m32_w_lx.html#a366a83d5f5ed02859717a83c21768378',1,'STM32WLx::clearChannelScanAction()'],['../class_s_x126x.html#a37dab0ab3c4cab82e367971fc31588a6',1,'SX126x::clearChannelScanAction()'],['../class_s_x127x.html#a0ce9beca21406e3556b3518370947ee2',1,'SX127x::clearChannelScanAction()'],['../class_physical_layer.html#a169a4d04c5c50d3336e274d70930d9f6',1,'PhysicalLayer::clearChannelScanAction()']]], - ['cleardio0action_48',['clearDio0Action',['../class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942',1,'RF69::clearDio0Action()'],['../class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823',1,'SX127x::clearDio0Action()']]], - ['cleardio1action_49',['clearDio1Action',['../class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f',1,'SX128x::clearDio1Action()'],['../class_s_x127x.html#a9b6532a25e1730973ac08146008adca5',1,'SX127x::clearDio1Action()'],['../class_s_t_m32_w_lx.html#a54130403f6afbb0924da17c28afb17fc',1,'STM32WLx::clearDio1Action()'],['../class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd',1,'SX126x::clearDio1Action()'],['../class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51',1,'RF69::clearDio1Action()']]], - ['clearfhssint_50',['clearFHSSInt',['../class_s_x127x.html#a41089d9e5b45217d3e31ac22b5326b66',1,'SX127x']]], - ['clearfifoemptyaction_51',['clearFifoEmptyAction',['../class_r_f69.html#a0d7b67499462777f7909860405ca6b62',1,'RF69::clearFifoEmptyAction()'],['../class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1',1,'SX127x::clearFifoEmptyAction()']]], - ['clearfifofullaction_52',['clearFifoFullAction',['../class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3',1,'RF69::clearFifoFullAction()'],['../class_s_x127x.html#a0f041e91ab2fbb6f05eef56b5addac71',1,'SX127x::clearFifoFullAction()']]], - ['cleargdo0action_53',['clearGdo0Action',['../class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8',1,'CC1101']]], - ['cleargdo2action_54',['clearGdo2Action',['../class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4',1,'CC1101']]], - ['clearirq_55',['clearIrq',['../class_physical_layer.html#af9a7e739e39705a72ffa8b63ec09bb15',1,'PhysicalLayer']]], - ['clearirqaction_56',['clearIrqAction',['../class_si443x.html#a8d019f58551346c3f3bd8b72d2486109',1,'Si443x::clearIrqAction()'],['../classn_r_f24.html#aaf5887fe58c4d542cbed80482de1d42d',1,'nRF24::clearIrqAction()'],['../class_l_r11x0.html#ab167c4dc14e80d19f8b33d68c3f90d98',1,'LR11x0::clearIrqAction()']]], - ['clearirqflags_57',['clearIrqFlags',['../class_l_r11x0.html#aa524b0be7b8d125c24319072d6178e74',1,'LR11x0::clearIrqFlags()'],['../class_s_x126x.html#ab4c29619a38391805a11231c67424847',1,'SX126x::clearIrqFlags()'],['../class_s_x127x.html#aa3eae13a7f0558c1bc881abebd958242',1,'SX127x::clearIrqFlags()'],['../class_s_x128x.html#afb95ca5f2c8494042fbbe52802fc265d',1,'SX128x::clearIrqFlags()'],['../class_physical_layer.html#ac282bb78da4f4da4661dce191cbd6d87',1,'PhysicalLayer::clearIrqFlags(uint32_t irq)']]], - ['clearpacketreceivedaction_58',['clearPacketReceivedAction',['../class_physical_layer.html#a7edf27f03600b96f72f011fc82fa4ef9',1,'PhysicalLayer::clearPacketReceivedAction()'],['../class_s_x128x.html#ac79047a072a038194f3429a913e7aaee',1,'SX128x::clearPacketReceivedAction()'],['../class_s_x127x.html#a6cbc4c256d37f9cdabf9e5f2ef16aa92',1,'SX127x::clearPacketReceivedAction()'],['../class_s_x126x.html#a56f88f6a2b88ae6dbd3ad04b1950e7b2',1,'SX126x::clearPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#aad377b018cf65ceb6b23cac523ba96b4',1,'STM32WLx::clearPacketReceivedAction()'],['../class_r_f69.html#a31390763956a50182b0b5b8a7e5ff4e3',1,'RF69::clearPacketReceivedAction()'],['../classn_r_f24.html#a52c097dc0078fc4e8707c095378aff3d',1,'nRF24::clearPacketReceivedAction()'],['../class_l_r11x0.html#a96e4a220bbd3487423acfd217b479fe3',1,'LR11x0::clearPacketReceivedAction()'],['../class_c_c1101.html#a0221c4fe494a590cc9714e4752675d61',1,'CC1101::clearPacketReceivedAction()'],['../class_si443x.html#ae8e1a9a70407d80d660496baa560c5ca',1,'Si443x::clearPacketReceivedAction()']]], - ['clearpacketsentaction_59',['clearPacketSentAction',['../class_s_x127x.html#a2ec32a52b13752d75f3076a5868c312d',1,'SX127x::clearPacketSentAction()'],['../class_physical_layer.html#a67ee4ec36f352d06dda0102260f6bfce',1,'PhysicalLayer::clearPacketSentAction()'],['../class_s_x128x.html#ab2335d91c7899291312e3cd6576446e5',1,'SX128x::clearPacketSentAction()'],['../class_s_x126x.html#af38ba3d27ab2ac10c703eefa1c428913',1,'SX126x::clearPacketSentAction()'],['../class_s_t_m32_w_lx.html#ac11d53d29bf5a845e3797ba6bb875930',1,'STM32WLx::clearPacketSentAction()'],['../class_si443x.html#a4fdc84341b1ec602f89ad00c7ca20f26',1,'Si443x::clearPacketSentAction()'],['../class_r_f69.html#ac4ada0c4243b092ffb4c9812519fe947',1,'RF69::clearPacketSentAction()'],['../classn_r_f24.html#a41499cf2c1a6c83a04ff89dd59e3fa56',1,'nRF24::clearPacketSentAction()'],['../class_l_r11x0.html#a95ddec84ae2fb19989c333d42d4dc5fa',1,'LR11x0::clearPacketSentAction()'],['../class_c_c1101.html#a2791ebc7fe71626407278de5852b492f',1,'CC1101::clearPacketSentAction()']]], - ['clearsession_60',['clearSession',['../class_lo_ra_w_a_n_node.html#a0feeaed200d8f94ad94c3ed49f404847',1,'LoRaWANNode']]], - ['clearwifiscanaction_61',['clearWiFiScanAction',['../class_l_r11x0.html#ad5876b44020a0bd59f73186a912dbb60',1,'LR11x0']]], - ['cmds_62',['cmds',['../struct_module_1_1_s_p_i_config__t.html#a57ecca17835380862426d3cf38561185',1,'Module::SPIConfig_t']]], - ['codingrate_63',['codingRate',['../struct_lo_ra_rate__t.html#ae382629257949329b2fcb01d565183df',1,'LoRaRate_t']]], - ['confirmed_64',['confirmed',['../struct_lo_ra_w_a_n_event__t.html#a09079dc76b5367d23766e357d2ddb794',1,'LoRaWANEvent_t']]], - ['confirming_65',['confirming',['../struct_lo_ra_w_a_n_event__t.html#a506755c4731be16d126bdef873c420f8',1,'LoRaWANEvent_t']]], - ['control_66',['control',['../class_a_x25_frame.html#a5b196079b539dc417ca65dd4ad622f8f',1,'AX25Frame']]], - ['countrycode_67',['countryCode',['../struct_l_r11x0_wifi_result_extended__t.html#ae9bf4bc28c72985edc131ad1b69cb06a',1,'LR11x0WifiResultExtended_t']]], - ['cr_68',['cr',['../struct_lr_fhss_rate__t.html#a3eb7a2c2f4f23face4d6706aa8084c6b',1,'LrFhssRate_t']]], - ['currentchannel_69',['currentChannel',['../struct_l_r11x0_wifi_result_extended__t.html#a7314104129f9ceb6d91c85578d85d252',1,'LR11x0WifiResultExtended_t']]] + ['calibrateimage_37',['calibrateImage',['../class_s_x126x.html#a356052e39138cabc41358f5728bbbe70',1,'SX126x']]], + ['calibrateimagerejection_38',['calibrateImageRejection',['../class_l_r11x0.html#adc8fbcfff7cd3b801dcee22e87bc2598',1,'LR11x0::calibrateImageRejection()'],['../class_s_x126x.html#aa3c90f19cd141738ff013ae72f78f1bb',1,'SX126x::calibrateImageRejection()']]], + ['cc1101_39',['CC1101',['../class_c_c1101.html',1,'CC1101'],['../class_c_c1101.html#a6807e4254c4b55fa8d393b2bf8f2db3e',1,'CC1101::CC1101()']]], + ['channelfreq_40',['channelFreq',['../struct_l_r11x0_wifi_result__t.html#a520382420ad088ac1ace3754192cbfeb',1,'LR11x0WifiResult_t']]], + ['channelscanconfig_5ft_41',['ChannelScanConfig_t',['../union_channel_scan_config__t.html',1,'']]], + ['checkdatarate_42',['checkDataRate',['../class_l_l_c_c68.html#a708183645ec0b9fec54d6369e7b1345f',1,'LLCC68::checkDataRate()'],['../class_l_r11x0.html#a4d18ad719be79c083f2b0ce77bbaa448',1,'LR11x0::checkDataRate()'],['../class_s_x126x.html#a75c8d32cee712e0c940163446b98e587',1,'SX126x::checkDataRate()'],['../class_s_x1272.html#a2a36487740f15731c6e508428e4b11f0',1,'SX1272::checkDataRate()'],['../class_s_x1273.html#a5eae1e82596f3a6c4c926c381c2737a7',1,'SX1273::checkDataRate()'],['../class_s_x1277.html#aef5d9e27edc2173d1b4cc1cb0d9733bc',1,'SX1277::checkDataRate()'],['../class_s_x1278.html#a7f238fd38f436d9e86aa92a387d48467',1,'SX1278::checkDataRate()'],['../class_physical_layer.html#a58d54eeb40fb586013ba48e15318abba',1,'PhysicalLayer::checkDataRate(DataRate_t dr)']]], + ['checkirq_43',['checkIrq',['../class_physical_layer.html#a2c7dd4704e3df353265010710bd26e83',1,'PhysicalLayer']]], + ['checkoutputpower_44',['checkOutputPower',['../class_physical_layer.html#a1784cb227d04b3f2846625fda6797536',1,'PhysicalLayer::checkOutputPower()'],['../class_s_x128x.html#a5e876e02fd527390905004718225c25f',1,'SX128x::checkOutputPower()'],['../class_s_x1278.html#ac6146c2a3d0a35662312165325fd97f8',1,'SX1278::checkOutputPower(int8_t power, int8_t *clipped, bool useRfo)'],['../class_s_x1278.html#aac7b585c4a616a1cd6f89a8b46a7d9f8',1,'SX1278::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_s_x1272.html#a1e39e8e3b228ca9a805f41a9bbf86c64',1,'SX1272::checkOutputPower(int8_t power, int8_t *clipped, bool useRfo)'],['../class_s_x1272.html#a2510072152c936d9f62557f46a4248d0',1,'SX1272::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_s_x1268.html#ae1b1f56336fcef9ce31d9408fbbbfe3c',1,'SX1268::checkOutputPower()'],['../class_s_x1261.html#ae8e9968a9ee1c2199ed9f968d8f4e3b1',1,'SX1261::checkOutputPower()'],['../class_l_r1120.html#a369b667c81e1ec724148b401c5aad79d',1,'LR1120::checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)'],['../class_l_r1120.html#acf6ea475643c6eba63133641a8681a8f',1,'LR1120::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_l_r1110.html#ae084d4503b2abcdc508edef40b0cadb3',1,'LR1110::checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)'],['../class_l_r1110.html#af1f6dddd12805fdecb55ef5703d23ef1',1,'LR1110::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_c_c1101.html#aa86c74ed4339b70be6950e9f92be1d81',1,'CC1101::checkOutputPower(int8_t power, int8_t *clipped, uint8_t *raw)'],['../class_c_c1101.html#ab500e75fcf63f123eb3945925f361bd0',1,'CC1101::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_s_x1262.html#a33c304c19634a905c7318d9ca88f4e93',1,'SX1262::checkOutputPower()']]], + ['checkstatuscb_45',['checkStatusCb',['../struct_module_1_1_s_p_i_config__t.html#ac1e7f50d134ec054ed2074b846f1124e',1,'Module::SPIConfig_t']]], + ['checksum_46',['checksum',['../class_radio_lib_c_r_c.html#a92328d778fe59c046c6e74296eb5fb23',1,'RadioLibCRC']]], + ['cid_47',['cid',['../struct_lo_ra_w_a_n_mac_command__t.html#a79d26324cafccbae8b95927935e0d0dc',1,'LoRaWANMacCommand_t']]], + ['clearchannelscanaction_48',['clearChannelScanAction',['../class_s_t_m32_w_lx.html#a366a83d5f5ed02859717a83c21768378',1,'STM32WLx::clearChannelScanAction()'],['../class_s_x126x.html#a37dab0ab3c4cab82e367971fc31588a6',1,'SX126x::clearChannelScanAction()'],['../class_s_x127x.html#a0ce9beca21406e3556b3518370947ee2',1,'SX127x::clearChannelScanAction()'],['../class_physical_layer.html#a169a4d04c5c50d3336e274d70930d9f6',1,'PhysicalLayer::clearChannelScanAction()']]], + ['cleardio0action_49',['clearDio0Action',['../class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942',1,'RF69::clearDio0Action()'],['../class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823',1,'SX127x::clearDio0Action()']]], + ['cleardio1action_50',['clearDio1Action',['../class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f',1,'SX128x::clearDio1Action()'],['../class_s_x127x.html#a9b6532a25e1730973ac08146008adca5',1,'SX127x::clearDio1Action()'],['../class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd',1,'SX126x::clearDio1Action()'],['../class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51',1,'RF69::clearDio1Action()'],['../class_s_t_m32_w_lx.html#a54130403f6afbb0924da17c28afb17fc',1,'STM32WLx::clearDio1Action()']]], + ['clearfhssint_51',['clearFHSSInt',['../class_s_x127x.html#a41089d9e5b45217d3e31ac22b5326b66',1,'SX127x']]], + ['clearfifoemptyaction_52',['clearFifoEmptyAction',['../class_r_f69.html#a0d7b67499462777f7909860405ca6b62',1,'RF69::clearFifoEmptyAction()'],['../class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1',1,'SX127x::clearFifoEmptyAction()']]], + ['clearfifofullaction_53',['clearFifoFullAction',['../class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3',1,'RF69::clearFifoFullAction()'],['../class_s_x127x.html#a0f041e91ab2fbb6f05eef56b5addac71',1,'SX127x::clearFifoFullAction()']]], + ['cleargdo0action_54',['clearGdo0Action',['../class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8',1,'CC1101']]], + ['cleargdo2action_55',['clearGdo2Action',['../class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4',1,'CC1101']]], + ['clearirq_56',['clearIrq',['../class_physical_layer.html#af9a7e739e39705a72ffa8b63ec09bb15',1,'PhysicalLayer']]], + ['clearirqaction_57',['clearIrqAction',['../classn_r_f24.html#aaf5887fe58c4d542cbed80482de1d42d',1,'nRF24::clearIrqAction()'],['../class_si443x.html#a8d019f58551346c3f3bd8b72d2486109',1,'Si443x::clearIrqAction()'],['../class_l_r11x0.html#ab167c4dc14e80d19f8b33d68c3f90d98',1,'LR11x0::clearIrqAction()']]], + ['clearirqflags_58',['clearIrqFlags',['../class_l_r11x0.html#aa524b0be7b8d125c24319072d6178e74',1,'LR11x0::clearIrqFlags()'],['../class_s_x126x.html#ab4c29619a38391805a11231c67424847',1,'SX126x::clearIrqFlags()'],['../class_s_x127x.html#aa3eae13a7f0558c1bc881abebd958242',1,'SX127x::clearIrqFlags()'],['../class_s_x128x.html#afb95ca5f2c8494042fbbe52802fc265d',1,'SX128x::clearIrqFlags()'],['../class_physical_layer.html#ac282bb78da4f4da4661dce191cbd6d87',1,'PhysicalLayer::clearIrqFlags()']]], + ['clearpacketreceivedaction_59',['clearPacketReceivedAction',['../class_s_x126x.html#a56f88f6a2b88ae6dbd3ad04b1950e7b2',1,'SX126x::clearPacketReceivedAction()'],['../class_physical_layer.html#a7edf27f03600b96f72f011fc82fa4ef9',1,'PhysicalLayer::clearPacketReceivedAction()'],['../class_s_x128x.html#ac79047a072a038194f3429a913e7aaee',1,'SX128x::clearPacketReceivedAction()'],['../class_s_x127x.html#a6cbc4c256d37f9cdabf9e5f2ef16aa92',1,'SX127x::clearPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#aad377b018cf65ceb6b23cac523ba96b4',1,'STM32WLx::clearPacketReceivedAction()'],['../class_r_f69.html#a31390763956a50182b0b5b8a7e5ff4e3',1,'RF69::clearPacketReceivedAction()'],['../classn_r_f24.html#a52c097dc0078fc4e8707c095378aff3d',1,'nRF24::clearPacketReceivedAction()'],['../class_l_r11x0.html#a96e4a220bbd3487423acfd217b479fe3',1,'LR11x0::clearPacketReceivedAction()'],['../class_c_c1101.html#a0221c4fe494a590cc9714e4752675d61',1,'CC1101::clearPacketReceivedAction()'],['../class_si443x.html#ae8e1a9a70407d80d660496baa560c5ca',1,'Si443x::clearPacketReceivedAction()']]], + ['clearpacketsentaction_60',['clearPacketSentAction',['../class_s_x127x.html#a2ec32a52b13752d75f3076a5868c312d',1,'SX127x::clearPacketSentAction()'],['../class_physical_layer.html#a67ee4ec36f352d06dda0102260f6bfce',1,'PhysicalLayer::clearPacketSentAction()'],['../class_s_x128x.html#ab2335d91c7899291312e3cd6576446e5',1,'SX128x::clearPacketSentAction()'],['../class_s_x126x.html#af38ba3d27ab2ac10c703eefa1c428913',1,'SX126x::clearPacketSentAction()'],['../class_s_t_m32_w_lx.html#ac11d53d29bf5a845e3797ba6bb875930',1,'STM32WLx::clearPacketSentAction()'],['../class_si443x.html#a4fdc84341b1ec602f89ad00c7ca20f26',1,'Si443x::clearPacketSentAction()'],['../class_r_f69.html#ac4ada0c4243b092ffb4c9812519fe947',1,'RF69::clearPacketSentAction()'],['../classn_r_f24.html#a41499cf2c1a6c83a04ff89dd59e3fa56',1,'nRF24::clearPacketSentAction()'],['../class_l_r11x0.html#a95ddec84ae2fb19989c333d42d4dc5fa',1,'LR11x0::clearPacketSentAction()'],['../class_c_c1101.html#a2791ebc7fe71626407278de5852b492f',1,'CC1101::clearPacketSentAction()']]], + ['clearsession_61',['clearSession',['../class_lo_ra_w_a_n_node.html#a0feeaed200d8f94ad94c3ed49f404847',1,'LoRaWANNode']]], + ['clearwifiscanaction_62',['clearWiFiScanAction',['../class_l_r11x0.html#ad5876b44020a0bd59f73186a912dbb60',1,'LR11x0']]], + ['cmds_63',['cmds',['../struct_module_1_1_s_p_i_config__t.html#a57ecca17835380862426d3cf38561185',1,'Module::SPIConfig_t']]], + ['codingrate_64',['codingRate',['../struct_lo_ra_rate__t.html#ae382629257949329b2fcb01d565183df',1,'LoRaRate_t']]], + ['confirmed_65',['confirmed',['../struct_lo_ra_w_a_n_event__t.html#a09079dc76b5367d23766e357d2ddb794',1,'LoRaWANEvent_t']]], + ['confirming_66',['confirming',['../struct_lo_ra_w_a_n_event__t.html#a506755c4731be16d126bdef873c420f8',1,'LoRaWANEvent_t']]], + ['control_67',['control',['../class_a_x25_frame.html#a5b196079b539dc417ca65dd4ad622f8f',1,'AX25Frame']]], + ['countrycode_68',['countryCode',['../struct_l_r11x0_wifi_result_extended__t.html#ae9bf4bc28c72985edc131ad1b69cb06a',1,'LR11x0WifiResultExtended_t']]], + ['cr_69',['cr',['../struct_lr_fhss_rate__t.html#a3eb7a2c2f4f23face4d6706aa8084c6b',1,'LrFhssRate_t']]], + ['currentchannel_70',['currentChannel',['../struct_l_r11x0_wifi_result_extended__t.html#a7314104129f9ceb6d91c85578d85d252',1,'LR11x0WifiResultExtended_t']]] ]; diff --git a/search/all_3.js b/search/all_3.js index 8fb6a793..5b9abf43 100644 --- a/search/all_3.js +++ b/search/all_3.js @@ -1,40 +1,40 @@ var searchData= [ - ['data_20shaping_20filter_20values_20aliases_2e_70',['Data shaping filter values aliases.',['../group__config__shaping.html',1,'']]], - ['datarate_71',['datarate',['../struct_lo_ra_w_a_n_event__t.html#a56281d98efee007a0c03e6a6ae8a592b',1,'LoRaWANEvent_t']]], - ['datarate_5ft_72',['DataRate_t',['../union_data_rate__t.html',1,'']]], - ['datarateid_73',['dataRateId',['../struct_l_r11x0_wifi_result__t.html#ac1768e3f878366d2187ffe6d4bc196bd',1,'LR11x0WifiResult_t']]], - ['datarates_74',['dataRates',['../struct_lo_ra_w_a_n_band__t.html#a8b518a570756048dec56bec703a0b25b',1,'LoRaWANBand_t']]], - ['decode_75',['decode',['../class_morse_client.html#abd1515c8e6c3ddade280be53f612ece7',1,'MorseClient']]], - ['decryptecb_76',['decryptECB',['../class_radio_lib_a_e_s128.html#abe0e368c6a94b2caf1559add1c262a98',1,'RadioLibAES128']]], - ['delay_77',['delay',['../class_esp_hal.html#a3f969910c1354d0ad92a7283d4fbc477',1,'EspHal::delay()'],['../class_radio_lib_hal.html#aa2de4fcafad28470f7d46073fa29da79',1,'RadioLibHal::delay()'],['../class_pico_hal.html#a1bab4dfe568d7107e569e848001e414a',1,'PicoHal::delay()'],['../class_pi_hal.html#adf1482ac38f67d58e4d41e3e74323e5a',1,'PiHal::delay()'],['../class_tock_hal.html#a895de6b3575c991b8b705fe4cdabc940',1,'TockHal::delay()']]], - ['delaymicroseconds_78',['delayMicroseconds',['../class_pi_hal.html#ab9ade61749459b508291d81e205ddacf',1,'PiHal::delayMicroseconds()'],['../class_radio_lib_hal.html#ab93dc492291dfe6fc0dd763bee966161',1,'RadioLibHal::delayMicroseconds()'],['../class_pico_hal.html#a4a69597cf1a071a0fa61d1d292008628',1,'PicoHal::delayMicroseconds()'],['../class_esp_hal.html#a7e1183e95e651bcccbed041d28ecedaa',1,'EspHal::delayMicroseconds()'],['../class_tock_hal.html#ac44afeda5a28e83721ba8c16b496c91e',1,'TockHal::delayMicroseconds()']]], - ['demodstat_79',['demodStat',['../struct_l_r11x0_gnss_result__t.html#a6142622b9fb790108546b4d09b063b6c',1,'LR11x0GnssResult_t']]], - ['destcallsign_80',['destCallsign',['../class_a_x25_frame.html#a7fe9805148e2dd46d163cd989473dbff',1,'AX25Frame']]], - ['destssid_81',['destSSID',['../class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8',1,'AX25Frame']]], - ['detachinterrupt_82',['detachInterrupt',['../class_pi_hal.html#afb13f79080b95925ea61576696abaa63',1,'PiHal::detachInterrupt()'],['../class_radio_lib_hal.html#a2ddf72a41b3cfbb63ea7ab5362003b56',1,'RadioLibHal::detachInterrupt()'],['../class_pico_hal.html#a323d56fc8637f2b005070c7585bfe82e',1,'PicoHal::detachInterrupt()'],['../class_esp_hal.html#a3eebb2aef3219a5aba7b21c098b170f8',1,'EspHal::detachInterrupt()'],['../class_tock_hal.html#aafef4eafff0ded10ad940777a67566f3',1,'TockHal::detachInterrupt()']]], - ['detmin_83',['detMin',['../struct_c_a_d_scan_config__t.html#af44adcf8659f5e3f861f4b29e9a997d1',1,'CADScanConfig_t']]], - ['detpeak_84',['detPeak',['../struct_c_a_d_scan_config__t.html#a474cc14f2a00ff351aac5aa0f3fa4e3a',1,'CADScanConfig_t']]], - ['device_85',['device',['../struct_l_r11x0_version_info__t.html#a6686a59a55b567b11b325b7087d682b2',1,'LR11x0VersionInfo_t']]], - ['devnonce_86',['devNonce',['../struct_lo_ra_w_a_n_join_event__t.html#abdb57ec1e16ea0d1822ba0a5632c9372',1,'LoRaWANJoinEvent_t']]], - ['digitalread_87',['digitalRead',['../class_esp_hal.html#a17a4fcce63fa2f51d9be5ae5d48fc10b',1,'EspHal::digitalRead()'],['../class_stm32wlx_hal.html#a7fc8af77a85f8f002c7dc6476efa0ad4',1,'Stm32wlxHal::digitalRead()'],['../class_radio_lib_hal.html#a0c7c2dffd662cefca7bf11e14c56dab2',1,'RadioLibHal::digitalRead()'],['../class_pico_hal.html#a25993f76cf572e1a891b7ecc777721c2',1,'PicoHal::digitalRead()'],['../class_pi_hal.html#ab9a8fc4f0c7c5190db9d8770bc7d635e',1,'PiHal::digitalRead()'],['../class_tock_hal.html#a2c67e4045f67a5c3a7b66630b6668f97',1,'TockHal::digitalRead()']]], - ['digitalwrite_88',['digitalWrite',['../class_pi_hal.html#a203ed127ad16bbeeba0a3cd536eebce6',1,'PiHal::digitalWrite()'],['../class_tock_hal.html#a91df06b003b84729730f62480990dcb4',1,'TockHal::digitalWrite()'],['../class_radio_lib_hal.html#a4db0c60f2f6f64003f04cf0e03fea7ab',1,'RadioLibHal::digitalWrite()'],['../class_stm32wlx_hal.html#acb925afdee4979936ef83a422d13e642',1,'Stm32wlxHal::digitalWrite()'],['../class_esp_hal.html#a87444b51d97006fad15779ca5d28367c',1,'EspHal::digitalWrite()'],['../class_pico_hal.html#a4f5e06e79f6f6b7952243fe3817200b4',1,'PicoHal::digitalWrite()']]], - ['dir_89',['dir',['../struct_lo_ra_w_a_n_event__t.html#a698a1956ffafa152e7c2cada3a2a2805',1,'LoRaWANEvent_t']]], - ['disableaddressfiltering_90',['disableAddressFiltering',['../class_c_c1101.html#a9aee5df428d30b9c80b8a8700609a883',1,'CC1101::disableAddressFiltering()'],['../class_l_r11x0.html#ae565dc2423ca7df13bf7ae48cce9ac8b',1,'LR11x0::disableAddressFiltering()'],['../class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee',1,'RF69::disableAddressFiltering()'],['../class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2',1,'SX126x::disableAddressFiltering()'],['../class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5',1,'SX127x::disableAddressFiltering()']]], - ['disableaes_91',['disableAES',['../class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa',1,'RF69']]], - ['disablebitsync_92',['disableBitSync',['../class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd',1,'SX127x']]], - ['disablecontinuousmodebitsync_93',['disableContinuousModeBitSync',['../class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad',1,'RF69']]], - ['disablepipe_94',['disablePipe',['../classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a',1,'nRF24']]], - ['disablesyncwordfiltering_95',['disableSyncWordFiltering',['../class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b',1,'CC1101::disableSyncWordFiltering()'],['../class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80',1,'RF69::disableSyncWordFiltering()']]], - ['doppler_96',['doppler',['../struct_l_r11x0_gnss_satellite__t.html#a670c9e916637b5fede43c5fbb26cbfd8',1,'LR11x0GnssSatellite_t']]], - ['dr_97',['dr',['../struct_lo_ra_w_a_n_channel__t.html#a8332e2b32f822524c6a1ed04de3144bf',1,'LoRaWANChannel_t']]], - ['drjoinrequest_98',['drJoinRequest',['../struct_lo_ra_w_a_n_channel_span__t.html#a17203af63259911cba8b2ae05be25ff5',1,'LoRaWANChannelSpan_t']]], - ['drmax_99',['drMax',['../struct_lo_ra_w_a_n_channel__t.html#aeabadf186d7bc105f6d289e3a491412c',1,'LoRaWANChannel_t::drMax()'],['../struct_lo_ra_w_a_n_channel_span__t.html#a914d2b6f54e9c8d2841acf1d0652fd79',1,'LoRaWANChannelSpan_t::drMax()']]], - ['drmin_100',['drMin',['../struct_lo_ra_w_a_n_channel__t.html#abb028e93f3fe15ed6f95e5fcd8a62f53',1,'LoRaWANChannel_t::drMin()'],['../struct_lo_ra_w_a_n_channel_span__t.html#ab613b4ca3a2c99ef0aa53f8132f54535',1,'LoRaWANChannelSpan_t::drMin()']]], - ['droprepeaters_101',['dropRepeaters',['../class_a_p_r_s_client.html#afb2f43bc16cd406a079163f44d2a2d01',1,'APRSClient']]], - ['dropsync_102',['dropSync',['../class_physical_layer.html#a429796eb2e7ea86781a2e8ca42af43f3',1,'PhysicalLayer']]], - ['dutycycle_103',['dutyCycle',['../struct_lo_ra_w_a_n_band__t.html#a743d3a23aa5c58e156dff633b830ee4f',1,'LoRaWANBand_t']]], - ['dutycycleinterval_104',['dutyCycleInterval',['../class_lo_ra_w_a_n_node.html#a5bb50904544f331806fd744ab5b99efa',1,'LoRaWANNode']]], - ['dwelltimedn_105',['dwellTimeDn',['../struct_lo_ra_w_a_n_band__t.html#aef289b63007a6e085c7c66f71209d84c',1,'LoRaWANBand_t']]], - ['dwelltimeup_106',['dwellTimeUp',['../struct_lo_ra_w_a_n_band__t.html#a8bd0d705d9c0dbe87d25e83cc54e922c',1,'LoRaWANBand_t']]] + ['data_20shaping_20filter_20values_20aliases_2e_71',['Data shaping filter values aliases.',['../group__config__shaping.html',1,'']]], + ['datarate_72',['datarate',['../struct_lo_ra_w_a_n_event__t.html#a56281d98efee007a0c03e6a6ae8a592b',1,'LoRaWANEvent_t']]], + ['datarate_5ft_73',['DataRate_t',['../union_data_rate__t.html',1,'']]], + ['datarateid_74',['dataRateId',['../struct_l_r11x0_wifi_result__t.html#ac1768e3f878366d2187ffe6d4bc196bd',1,'LR11x0WifiResult_t']]], + ['datarates_75',['dataRates',['../struct_lo_ra_w_a_n_band__t.html#a8b518a570756048dec56bec703a0b25b',1,'LoRaWANBand_t']]], + ['decode_76',['decode',['../class_morse_client.html#abd1515c8e6c3ddade280be53f612ece7',1,'MorseClient']]], + ['decryptecb_77',['decryptECB',['../class_radio_lib_a_e_s128.html#abe0e368c6a94b2caf1559add1c262a98',1,'RadioLibAES128']]], + ['delay_78',['delay',['../class_esp_hal.html#a3f969910c1354d0ad92a7283d4fbc477',1,'EspHal::delay()'],['../class_radio_lib_hal.html#aa2de4fcafad28470f7d46073fa29da79',1,'RadioLibHal::delay()'],['../class_pico_hal.html#a1bab4dfe568d7107e569e848001e414a',1,'PicoHal::delay()'],['../class_pi_hal.html#adf1482ac38f67d58e4d41e3e74323e5a',1,'PiHal::delay()'],['../class_tock_hal.html#a895de6b3575c991b8b705fe4cdabc940',1,'TockHal::delay()']]], + ['delaymicroseconds_79',['delayMicroseconds',['../class_pi_hal.html#ab9ade61749459b508291d81e205ddacf',1,'PiHal::delayMicroseconds()'],['../class_radio_lib_hal.html#ab93dc492291dfe6fc0dd763bee966161',1,'RadioLibHal::delayMicroseconds()'],['../class_pico_hal.html#a4a69597cf1a071a0fa61d1d292008628',1,'PicoHal::delayMicroseconds()'],['../class_esp_hal.html#a7e1183e95e651bcccbed041d28ecedaa',1,'EspHal::delayMicroseconds()'],['../class_tock_hal.html#ac44afeda5a28e83721ba8c16b496c91e',1,'TockHal::delayMicroseconds()']]], + ['demodstat_80',['demodStat',['../struct_l_r11x0_gnss_result__t.html#a6142622b9fb790108546b4d09b063b6c',1,'LR11x0GnssResult_t']]], + ['destcallsign_81',['destCallsign',['../class_a_x25_frame.html#a7fe9805148e2dd46d163cd989473dbff',1,'AX25Frame']]], + ['destssid_82',['destSSID',['../class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8',1,'AX25Frame']]], + ['detachinterrupt_83',['detachInterrupt',['../class_pi_hal.html#afb13f79080b95925ea61576696abaa63',1,'PiHal::detachInterrupt()'],['../class_radio_lib_hal.html#a2ddf72a41b3cfbb63ea7ab5362003b56',1,'RadioLibHal::detachInterrupt()'],['../class_pico_hal.html#a323d56fc8637f2b005070c7585bfe82e',1,'PicoHal::detachInterrupt()'],['../class_esp_hal.html#a3eebb2aef3219a5aba7b21c098b170f8',1,'EspHal::detachInterrupt()'],['../class_tock_hal.html#aafef4eafff0ded10ad940777a67566f3',1,'TockHal::detachInterrupt()']]], + ['detmin_84',['detMin',['../struct_c_a_d_scan_config__t.html#af44adcf8659f5e3f861f4b29e9a997d1',1,'CADScanConfig_t']]], + ['detpeak_85',['detPeak',['../struct_c_a_d_scan_config__t.html#a474cc14f2a00ff351aac5aa0f3fa4e3a',1,'CADScanConfig_t']]], + ['device_86',['device',['../struct_l_r11x0_version_info__t.html#a6686a59a55b567b11b325b7087d682b2',1,'LR11x0VersionInfo_t']]], + ['devnonce_87',['devNonce',['../struct_lo_ra_w_a_n_join_event__t.html#abdb57ec1e16ea0d1822ba0a5632c9372',1,'LoRaWANJoinEvent_t']]], + ['digitalread_88',['digitalRead',['../class_esp_hal.html#a17a4fcce63fa2f51d9be5ae5d48fc10b',1,'EspHal::digitalRead()'],['../class_stm32wlx_hal.html#a7fc8af77a85f8f002c7dc6476efa0ad4',1,'Stm32wlxHal::digitalRead()'],['../class_radio_lib_hal.html#a0c7c2dffd662cefca7bf11e14c56dab2',1,'RadioLibHal::digitalRead()'],['../class_pico_hal.html#a25993f76cf572e1a891b7ecc777721c2',1,'PicoHal::digitalRead()'],['../class_pi_hal.html#ab9a8fc4f0c7c5190db9d8770bc7d635e',1,'PiHal::digitalRead()'],['../class_tock_hal.html#a2c67e4045f67a5c3a7b66630b6668f97',1,'TockHal::digitalRead()']]], + ['digitalwrite_89',['digitalWrite',['../class_pi_hal.html#a203ed127ad16bbeeba0a3cd536eebce6',1,'PiHal::digitalWrite()'],['../class_tock_hal.html#a91df06b003b84729730f62480990dcb4',1,'TockHal::digitalWrite()'],['../class_radio_lib_hal.html#a4db0c60f2f6f64003f04cf0e03fea7ab',1,'RadioLibHal::digitalWrite()'],['../class_stm32wlx_hal.html#acb925afdee4979936ef83a422d13e642',1,'Stm32wlxHal::digitalWrite()'],['../class_esp_hal.html#a87444b51d97006fad15779ca5d28367c',1,'EspHal::digitalWrite()'],['../class_pico_hal.html#a4f5e06e79f6f6b7952243fe3817200b4',1,'PicoHal::digitalWrite()']]], + ['dir_90',['dir',['../struct_lo_ra_w_a_n_event__t.html#a698a1956ffafa152e7c2cada3a2a2805',1,'LoRaWANEvent_t']]], + ['disableaddressfiltering_91',['disableAddressFiltering',['../class_c_c1101.html#a9aee5df428d30b9c80b8a8700609a883',1,'CC1101::disableAddressFiltering()'],['../class_l_r11x0.html#ae565dc2423ca7df13bf7ae48cce9ac8b',1,'LR11x0::disableAddressFiltering()'],['../class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee',1,'RF69::disableAddressFiltering()'],['../class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2',1,'SX126x::disableAddressFiltering()'],['../class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5',1,'SX127x::disableAddressFiltering()']]], + ['disableaes_92',['disableAES',['../class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa',1,'RF69']]], + ['disablebitsync_93',['disableBitSync',['../class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd',1,'SX127x']]], + ['disablecontinuousmodebitsync_94',['disableContinuousModeBitSync',['../class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad',1,'RF69']]], + ['disablepipe_95',['disablePipe',['../classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a',1,'nRF24']]], + ['disablesyncwordfiltering_96',['disableSyncWordFiltering',['../class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b',1,'CC1101::disableSyncWordFiltering()'],['../class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80',1,'RF69::disableSyncWordFiltering()']]], + ['doppler_97',['doppler',['../struct_l_r11x0_gnss_satellite__t.html#a670c9e916637b5fede43c5fbb26cbfd8',1,'LR11x0GnssSatellite_t']]], + ['dr_98',['dr',['../struct_lo_ra_w_a_n_channel__t.html#a8332e2b32f822524c6a1ed04de3144bf',1,'LoRaWANChannel_t']]], + ['drjoinrequest_99',['drJoinRequest',['../struct_lo_ra_w_a_n_channel_span__t.html#a17203af63259911cba8b2ae05be25ff5',1,'LoRaWANChannelSpan_t']]], + ['drmax_100',['drMax',['../struct_lo_ra_w_a_n_channel__t.html#aeabadf186d7bc105f6d289e3a491412c',1,'LoRaWANChannel_t::drMax()'],['../struct_lo_ra_w_a_n_channel_span__t.html#a914d2b6f54e9c8d2841acf1d0652fd79',1,'LoRaWANChannelSpan_t::drMax()']]], + ['drmin_101',['drMin',['../struct_lo_ra_w_a_n_channel__t.html#abb028e93f3fe15ed6f95e5fcd8a62f53',1,'LoRaWANChannel_t::drMin()'],['../struct_lo_ra_w_a_n_channel_span__t.html#ab613b4ca3a2c99ef0aa53f8132f54535',1,'LoRaWANChannelSpan_t::drMin()']]], + ['droprepeaters_102',['dropRepeaters',['../class_a_p_r_s_client.html#afb2f43bc16cd406a079163f44d2a2d01',1,'APRSClient']]], + ['dropsync_103',['dropSync',['../class_physical_layer.html#a429796eb2e7ea86781a2e8ca42af43f3',1,'PhysicalLayer']]], + ['dutycycle_104',['dutyCycle',['../struct_lo_ra_w_a_n_band__t.html#a743d3a23aa5c58e156dff633b830ee4f',1,'LoRaWANBand_t']]], + ['dutycycleinterval_105',['dutyCycleInterval',['../class_lo_ra_w_a_n_node.html#a5bb50904544f331806fd744ab5b99efa',1,'LoRaWANNode']]], + ['dwelltimedn_106',['dwellTimeDn',['../struct_lo_ra_w_a_n_band__t.html#aef289b63007a6e085c7c66f71209d84c',1,'LoRaWANBand_t']]], + ['dwelltimeup_107',['dwellTimeUp',['../struct_lo_ra_w_a_n_band__t.html#a8bd0d705d9c0dbe87d25e83cc54e922c',1,'LoRaWANBand_t']]] ]; diff --git a/search/all_4.js b/search/all_4.js index f434c5a4..4e1efc29 100644 --- a/search/all_4.js +++ b/search/all_4.js @@ -1,16 +1,16 @@ var searchData= [ - ['enableaes_107',['enableAES',['../class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69',1,'RF69']]], - ['enablebitsync_108',['enableBitSync',['../class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa',1,'SX127x']]], - ['enablecontinuousmodebitsync_109',['enableContinuousModeBitSync',['../class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0',1,'RF69']]], - ['enabled_110',['enabled',['../struct_lo_ra_w_a_n_channel__t.html#acde186d519eca4dc43d053f2146b75a0',1,'LoRaWANChannel_t']]], - ['enablesyncwordfiltering_111',['enableSyncWordFiltering',['../class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4',1,'CC1101::enableSyncWordFiltering()'],['../class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417',1,'RF69::enableSyncWordFiltering()']]], - ['encode_112',['encode',['../class_radio_lib_b_c_h.html#afa0a2eb58245715536acb781cd351d8a',1,'RadioLibBCH::encode()'],['../class_radio_lib_conv_code.html#a64c324098fab2c5521b3f4e965503ca8',1,'RadioLibConvCode::encode()']]], - ['encoding_20type_20aliases_2e_113',['Encoding type aliases.',['../group__config__encoding.html',1,'']]], - ['encryptecb_114',['encryptECB',['../class_radio_lib_a_e_s128.html#a4c7b49c3ed16f3849d8050a24a11c3c1',1,'RadioLibAES128']]], - ['err_115',['err',['../struct_module_1_1_s_p_i_config__t.html#ae11c030be96a72cd09fdfe9778ecdd51',1,'Module::SPIConfig_t']]], - ['esphal_116',['EspHal',['../class_esp_hal.html',1,'']]], - ['exitmode_117',['exitMode',['../struct_c_a_d_scan_config__t.html#a7830e01090d9a95d71cc6546d2dce3c1',1,'CADScanConfig_t']]], - ['explicitheader_118',['explicitHeader',['../class_l_r11x0.html#a3693359e5d106d6f57c23247c528cdd5',1,'LR11x0::explicitHeader()'],['../class_s_x126x.html#a3765f534418d4e0540c179621c019138',1,'SX126x::explicitHeader()'],['../class_s_x1272.html#ae3c9704cb58232f696b5f90f69c115f7',1,'SX1272::explicitHeader()'],['../class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1',1,'SX1278::explicitHeader()'],['../class_s_x128x.html#a94b7fb26cc99385d30b0c98b76d8188d',1,'SX128x::explicitHeader()']]], - ['externalradio_119',['ExternalRadio',['../class_external_radio.html#a49f10e1b05e7463583ac05b3284b9dda',1,'ExternalRadio::ExternalRadio(RadioLibHal *hal, uint32_t pin=RADIOLIB_NC)'],['../class_external_radio.html#a69b6354e92a89c01f3695ec9bdd0b554',1,'ExternalRadio::ExternalRadio(const ExternalRadio &ext)'],['../class_external_radio.html',1,'ExternalRadio']]] + ['enableaes_108',['enableAES',['../class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69',1,'RF69']]], + ['enablebitsync_109',['enableBitSync',['../class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa',1,'SX127x']]], + ['enablecontinuousmodebitsync_110',['enableContinuousModeBitSync',['../class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0',1,'RF69']]], + ['enabled_111',['enabled',['../struct_lo_ra_w_a_n_channel__t.html#acde186d519eca4dc43d053f2146b75a0',1,'LoRaWANChannel_t']]], + ['enablesyncwordfiltering_112',['enableSyncWordFiltering',['../class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4',1,'CC1101::enableSyncWordFiltering()'],['../class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417',1,'RF69::enableSyncWordFiltering()']]], + ['encode_113',['encode',['../class_radio_lib_b_c_h.html#afa0a2eb58245715536acb781cd351d8a',1,'RadioLibBCH::encode()'],['../class_radio_lib_conv_code.html#a64c324098fab2c5521b3f4e965503ca8',1,'RadioLibConvCode::encode()']]], + ['encoding_20type_20aliases_2e_114',['Encoding type aliases.',['../group__config__encoding.html',1,'']]], + ['encryptecb_115',['encryptECB',['../class_radio_lib_a_e_s128.html#a4c7b49c3ed16f3849d8050a24a11c3c1',1,'RadioLibAES128']]], + ['err_116',['err',['../struct_module_1_1_s_p_i_config__t.html#ae11c030be96a72cd09fdfe9778ecdd51',1,'Module::SPIConfig_t']]], + ['esphal_117',['EspHal',['../class_esp_hal.html',1,'']]], + ['exitmode_118',['exitMode',['../struct_c_a_d_scan_config__t.html#a7830e01090d9a95d71cc6546d2dce3c1',1,'CADScanConfig_t']]], + ['explicitheader_119',['explicitHeader',['../class_l_r11x0.html#a3693359e5d106d6f57c23247c528cdd5',1,'LR11x0::explicitHeader()'],['../class_s_x126x.html#a3765f534418d4e0540c179621c019138',1,'SX126x::explicitHeader()'],['../class_s_x1272.html#ae3c9704cb58232f696b5f90f69c115f7',1,'SX1272::explicitHeader()'],['../class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1',1,'SX1278::explicitHeader()'],['../class_s_x128x.html#a94b7fb26cc99385d30b0c98b76d8188d',1,'SX128x::explicitHeader()']]], + ['externalradio_120',['ExternalRadio',['../class_external_radio.html#a49f10e1b05e7463583ac05b3284b9dda',1,'ExternalRadio::ExternalRadio(RadioLibHal *hal, uint32_t pin=RADIOLIB_NC)'],['../class_external_radio.html#a69b6354e92a89c01f3695ec9bdd0b554',1,'ExternalRadio::ExternalRadio(const ExternalRadio &ext)'],['../class_external_radio.html',1,'ExternalRadio']]] ]; diff --git a/search/all_5.js b/search/all_5.js index a032531d..c8f862e2 100644 --- a/search/all_5.js +++ b/search/all_5.js @@ -1,34 +1,34 @@ var searchData= [ - ['fcnt_120',['fCnt',['../struct_lo_ra_w_a_n_event__t.html#a73ecb624afeda6ddb32c1007d3dcb846',1,'LoRaWANEvent_t']]], - ['fcscheckok_121',['fcsCheckOk',['../struct_l_r11x0_wifi_result_extended__t.html#a45bbafdcc16a5ae8ee52d0ea40b40326',1,'LR11x0WifiResultExtended_t']]], - ['fifoadd_122',['fifoAdd',['../class_r_f69.html#ab6d98f3f2d964d1833e20da246a5be89',1,'RF69::fifoAdd()'],['../class_s_x127x.html#a36dbd1697a415c6db3b47cd620c8c02e',1,'SX127x::fifoAdd(uint8_t *data, int totalLen, int *remLen)']]], - ['fifoget_123',['fifoGet',['../class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a',1,'SX127x::fifoGet()'],['../class_r_f69.html#aa6886410230c654400c76ec7710d623c',1,'RF69::fifoGet()']]], - ['findrfswitchmode_124',['findRfSwitchMode',['../class_module.html#a5699a937b62ba41387567b4d679b9377',1,'Module']]], - ['finishtransmit_125',['finishTransmit',['../class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4',1,'SX128x::finishTransmit()'],['../class_physical_layer.html#a1de26f68b939f5af79ec29cc34c7be18',1,'PhysicalLayer::finishTransmit()'],['../class_c_c1101.html#af70ea860154cd6d2b2e2a6962e161c8f',1,'CC1101::finishTransmit()'],['../class_l_r11x0.html#aaff9a5b9b7636693c98bd1c93a5863e5',1,'LR11x0::finishTransmit()'],['../class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f',1,'SX127x::finishTransmit()'],['../classn_r_f24.html#af0c21ff66c011dfdc1ad12bc7dd11c2f',1,'nRF24::finishTransmit()'],['../class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b',1,'RF69::finishTransmit()'],['../class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3',1,'Si443x::finishTransmit()'],['../class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e',1,'SX126x::finishTransmit()']]], - ['fixedpacketlengthmode_126',['fixedPacketLengthMode',['../class_c_c1101.html#ad25ad96cddf62273bffd601384d22275',1,'CC1101::fixedPacketLengthMode()'],['../class_l_r11x0.html#a5df4c1ed45bf59aa25bc400bcb5dc1ba',1,'LR11x0::fixedPacketLengthMode()'],['../class_r_f69.html#a0de2a07f264839cda945faebf7319e0e',1,'RF69::fixedPacketLengthMode()'],['../class_si443x.html#ad2b3a961a99d9e8f3a7ead6e8b69e858',1,'Si443x::fixedPacketLengthMode()'],['../class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5',1,'SX126x::fixedPacketLengthMode()'],['../class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359',1,'SX127x::fixedPacketLengthMode()']]], - ['forceldro_127',['forceLDRO',['../class_l_r11x0.html#ae0a47e772fe24c7b3f3d3288c4cd0941',1,'LR11x0::forceLDRO()'],['../class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8',1,'SX126x::forceLDRO()'],['../class_s_x1272.html#a4aaf9d61310fa7b4fce413ae53d30ac0',1,'SX1272::forceLDRO()'],['../class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856',1,'SX1278::forceLDRO()']]], - ['fport_128',['fPort',['../struct_lo_ra_w_a_n_event__t.html#a14f360e64ae4a6090c04333567f1a513',1,'LoRaWANEvent_t']]], - ['framesubtype_129',['frameSubType',['../struct_l_r11x0_wifi_result_full__t.html#ab4f5ee1a99afca09242ae31ae8bc75c2',1,'LR11x0WifiResultFull_t']]], - ['frametype_130',['frameType',['../struct_l_r11x0_wifi_result_full__t.html#aac254fd90872d9e3457a0c44409ff9fb',1,'LR11x0WifiResultFull_t']]], - ['freq_131',['freq',['../struct_lo_ra_w_a_n_event__t.html#a01e1843dcd39911a0fbbb86cdca35d33',1,'LoRaWANEvent_t::freq()'],['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t::freq()'],['../struct_lo_ra_w_a_n_channel__t.html#a96620451b311ba0126b9575aec81ec2f',1,'LoRaWANChannel_t::freq()']]], - ['freqdev_132',['freqDev',['../struct_f_s_k_rate__t.html#a9d8801cd6a3533922db9410f81e2a244',1,'FSKRate_t']]], - ['freqmark_133',['freqMark',['../struct_bell_modem__t.html#ac57de3660aafb52bcf1b3197380c6ce5',1,'BellModem_t']]], - ['freqmarkreply_134',['freqMarkReply',['../struct_bell_modem__t.html#aa26b8a2f2ae9722de9a69aab991ce229',1,'BellModem_t']]], - ['freqmax_135',['freqMax',['../struct_lo_ra_w_a_n_band__t.html#ac6b39e29fe554cd53349d80dfff1f479',1,'LoRaWANBand_t']]], - ['freqmin_136',['freqMin',['../struct_lo_ra_w_a_n_band__t.html#a92195dec46b60a55913cd3af43f410f9',1,'LoRaWANBand_t']]], - ['freqspace_137',['freqSpace',['../struct_bell_modem__t.html#a27c1a411df3d887ca0ce246c3b5521f7',1,'BellModem_t']]], - ['freqspacereply_138',['freqSpaceReply',['../struct_bell_modem__t.html#a40fe8a17a9b4fae3f313fea34077eacc',1,'BellModem_t']]], - ['freqstart_139',['freqStart',['../struct_lo_ra_w_a_n_channel_span__t.html#a1bfba15154185b75693542cd0547cb96',1,'LoRaWANChannelSpan_t']]], - ['freqstep_140',['freqStep',['../struct_lo_ra_w_a_n_channel_span__t.html#a958f8056a2611c7a503169457278541e',1,'LoRaWANChannelSpan_t']]], - ['frmpending_141',['frmPending',['../struct_lo_ra_w_a_n_event__t.html#afe256fb2ed02e2ffdf0ae85f92951778',1,'LoRaWANEvent_t']]], - ['fromdistributionsystem_142',['fromDistributionSystem',['../struct_l_r11x0_wifi_result_full__t.html#a47cb77c1ccf8da32d3a4102518c0d72c',1,'LR11x0WifiResultFull_t']]], - ['fsk_143',['fsk',['../union_data_rate__t.html#abfa0cbc4b33c49435e67662b6e6027cf',1,'DataRate_t']]], - ['fsk4client_144',['FSK4Client',['../class_f_s_k4_client.html#a2cdcea538e5b58e99a23f98ef4a68617',1,'FSK4Client::FSK4Client(PhysicalLayer *phy)'],['../class_f_s_k4_client.html#a65105b2744c4721b75ca0894c654bf82',1,'FSK4Client::FSK4Client(AFSKClient *audio)'],['../class_f_s_k4_client.html',1,'FSK4Client']]], - ['fskrate_5ft_145',['FSKRate_t',['../struct_f_s_k_rate__t.html',1,'']]], - ['fwgnss_146',['fwGNSS',['../struct_l_r11x0_version_info__t.html#aba5ac25e1acff5678991483d3a56084a',1,'LR11x0VersionInfo_t']]], - ['fwmajor_147',['fwMajor',['../struct_l_r11x0_version_info__t.html#a50d3cf257fb187c00a6290c8c7d95edc',1,'LR11x0VersionInfo_t']]], - ['fwmajorwifi_148',['fwMajorWiFi',['../struct_l_r11x0_version_info__t.html#add0c362641afcfff4a2ef3563e5f1c36',1,'LR11x0VersionInfo_t']]], - ['fwminor_149',['fwMinor',['../struct_l_r11x0_version_info__t.html#a93ffc624cb2545411a409e7879a6d597',1,'LR11x0VersionInfo_t']]], - ['fwminorwifi_150',['fwMinorWiFi',['../struct_l_r11x0_version_info__t.html#a5505724d8dd4b361a30cc4afd7fba19f',1,'LR11x0VersionInfo_t']]] + ['fcnt_121',['fCnt',['../struct_lo_ra_w_a_n_event__t.html#a73ecb624afeda6ddb32c1007d3dcb846',1,'LoRaWANEvent_t']]], + ['fcscheckok_122',['fcsCheckOk',['../struct_l_r11x0_wifi_result_extended__t.html#a45bbafdcc16a5ae8ee52d0ea40b40326',1,'LR11x0WifiResultExtended_t']]], + ['fifoadd_123',['fifoAdd',['../class_r_f69.html#ab6d98f3f2d964d1833e20da246a5be89',1,'RF69::fifoAdd()'],['../class_s_x127x.html#a36dbd1697a415c6db3b47cd620c8c02e',1,'SX127x::fifoAdd(uint8_t *data, int totalLen, int *remLen)']]], + ['fifoget_124',['fifoGet',['../class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a',1,'SX127x::fifoGet()'],['../class_r_f69.html#aa6886410230c654400c76ec7710d623c',1,'RF69::fifoGet()']]], + ['findrfswitchmode_125',['findRfSwitchMode',['../class_module.html#a5699a937b62ba41387567b4d679b9377',1,'Module']]], + ['finishtransmit_126',['finishTransmit',['../class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4',1,'SX128x::finishTransmit()'],['../class_physical_layer.html#a1de26f68b939f5af79ec29cc34c7be18',1,'PhysicalLayer::finishTransmit()'],['../class_c_c1101.html#af70ea860154cd6d2b2e2a6962e161c8f',1,'CC1101::finishTransmit()'],['../class_l_r11x0.html#aaff9a5b9b7636693c98bd1c93a5863e5',1,'LR11x0::finishTransmit()'],['../class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f',1,'SX127x::finishTransmit()'],['../classn_r_f24.html#af0c21ff66c011dfdc1ad12bc7dd11c2f',1,'nRF24::finishTransmit()'],['../class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b',1,'RF69::finishTransmit()'],['../class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3',1,'Si443x::finishTransmit()'],['../class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e',1,'SX126x::finishTransmit()']]], + ['fixedpacketlengthmode_127',['fixedPacketLengthMode',['../class_c_c1101.html#ad25ad96cddf62273bffd601384d22275',1,'CC1101::fixedPacketLengthMode()'],['../class_l_r11x0.html#a5df4c1ed45bf59aa25bc400bcb5dc1ba',1,'LR11x0::fixedPacketLengthMode()'],['../class_r_f69.html#a0de2a07f264839cda945faebf7319e0e',1,'RF69::fixedPacketLengthMode()'],['../class_si443x.html#ad2b3a961a99d9e8f3a7ead6e8b69e858',1,'Si443x::fixedPacketLengthMode()'],['../class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5',1,'SX126x::fixedPacketLengthMode()'],['../class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359',1,'SX127x::fixedPacketLengthMode()']]], + ['forceldro_128',['forceLDRO',['../class_l_r11x0.html#ae0a47e772fe24c7b3f3d3288c4cd0941',1,'LR11x0::forceLDRO()'],['../class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8',1,'SX126x::forceLDRO()'],['../class_s_x1272.html#a4aaf9d61310fa7b4fce413ae53d30ac0',1,'SX1272::forceLDRO()'],['../class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856',1,'SX1278::forceLDRO()']]], + ['fport_129',['fPort',['../struct_lo_ra_w_a_n_event__t.html#a14f360e64ae4a6090c04333567f1a513',1,'LoRaWANEvent_t']]], + ['framesubtype_130',['frameSubType',['../struct_l_r11x0_wifi_result_full__t.html#ab4f5ee1a99afca09242ae31ae8bc75c2',1,'LR11x0WifiResultFull_t']]], + ['frametype_131',['frameType',['../struct_l_r11x0_wifi_result_full__t.html#aac254fd90872d9e3457a0c44409ff9fb',1,'LR11x0WifiResultFull_t']]], + ['freq_132',['freq',['../struct_lo_ra_w_a_n_event__t.html#a01e1843dcd39911a0fbbb86cdca35d33',1,'LoRaWANEvent_t::freq()'],['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t::freq()'],['../struct_lo_ra_w_a_n_channel__t.html#a96620451b311ba0126b9575aec81ec2f',1,'LoRaWANChannel_t::freq()']]], + ['freqdev_133',['freqDev',['../struct_f_s_k_rate__t.html#a9d8801cd6a3533922db9410f81e2a244',1,'FSKRate_t']]], + ['freqmark_134',['freqMark',['../struct_bell_modem__t.html#ac57de3660aafb52bcf1b3197380c6ce5',1,'BellModem_t']]], + ['freqmarkreply_135',['freqMarkReply',['../struct_bell_modem__t.html#aa26b8a2f2ae9722de9a69aab991ce229',1,'BellModem_t']]], + ['freqmax_136',['freqMax',['../struct_lo_ra_w_a_n_band__t.html#ac6b39e29fe554cd53349d80dfff1f479',1,'LoRaWANBand_t']]], + ['freqmin_137',['freqMin',['../struct_lo_ra_w_a_n_band__t.html#a92195dec46b60a55913cd3af43f410f9',1,'LoRaWANBand_t']]], + ['freqspace_138',['freqSpace',['../struct_bell_modem__t.html#a27c1a411df3d887ca0ce246c3b5521f7',1,'BellModem_t']]], + ['freqspacereply_139',['freqSpaceReply',['../struct_bell_modem__t.html#a40fe8a17a9b4fae3f313fea34077eacc',1,'BellModem_t']]], + ['freqstart_140',['freqStart',['../struct_lo_ra_w_a_n_channel_span__t.html#a1bfba15154185b75693542cd0547cb96',1,'LoRaWANChannelSpan_t']]], + ['freqstep_141',['freqStep',['../struct_lo_ra_w_a_n_channel_span__t.html#a958f8056a2611c7a503169457278541e',1,'LoRaWANChannelSpan_t']]], + ['frmpending_142',['frmPending',['../struct_lo_ra_w_a_n_event__t.html#afe256fb2ed02e2ffdf0ae85f92951778',1,'LoRaWANEvent_t']]], + ['fromdistributionsystem_143',['fromDistributionSystem',['../struct_l_r11x0_wifi_result_full__t.html#a47cb77c1ccf8da32d3a4102518c0d72c',1,'LR11x0WifiResultFull_t']]], + ['fsk_144',['fsk',['../union_data_rate__t.html#abfa0cbc4b33c49435e67662b6e6027cf',1,'DataRate_t']]], + ['fsk4client_145',['FSK4Client',['../class_f_s_k4_client.html#a2cdcea538e5b58e99a23f98ef4a68617',1,'FSK4Client::FSK4Client(PhysicalLayer *phy)'],['../class_f_s_k4_client.html#a65105b2744c4721b75ca0894c654bf82',1,'FSK4Client::FSK4Client(AFSKClient *audio)'],['../class_f_s_k4_client.html',1,'FSK4Client']]], + ['fskrate_5ft_146',['FSKRate_t',['../struct_f_s_k_rate__t.html',1,'']]], + ['fwgnss_147',['fwGNSS',['../struct_l_r11x0_version_info__t.html#aba5ac25e1acff5678991483d3a56084a',1,'LR11x0VersionInfo_t']]], + ['fwmajor_148',['fwMajor',['../struct_l_r11x0_version_info__t.html#a50d3cf257fb187c00a6290c8c7d95edc',1,'LR11x0VersionInfo_t']]], + ['fwmajorwifi_149',['fwMajorWiFi',['../struct_l_r11x0_version_info__t.html#add0c362641afcfff4a2ef3563e5f1c36',1,'LR11x0VersionInfo_t']]], + ['fwminor_150',['fwMinor',['../struct_l_r11x0_version_info__t.html#a93ffc624cb2545411a409e7879a6d597',1,'LR11x0VersionInfo_t']]], + ['fwminorwifi_151',['fwMinorWiFi',['../struct_l_r11x0_version_info__t.html#a5505724d8dd4b361a30cc4afd7fba19f',1,'LR11x0VersionInfo_t']]] ]; diff --git a/search/all_6.js b/search/all_6.js index 97293839..92667129 100644 --- a/search/all_6.js +++ b/search/all_6.js @@ -1,63 +1,63 @@ var searchData= [ - ['generatecmac_151',['generateCMAC',['../class_radio_lib_a_e_s128.html#a260a1ac84386141781b3d7c213ff161c',1,'RadioLibAES128']]], - ['getafcerror_152',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]], - ['getafcntdown_153',['getAFCntDown',['../class_lo_ra_w_a_n_node.html#a6785265f3311ff6bf296f82429c96701',1,'LoRaWANNode']]], - ['getbuffernonces_154',['getBufferNonces',['../class_lo_ra_w_a_n_node.html#a84004883006b4a498d4899874952445b',1,'LoRaWANNode']]], - ['getbuffersession_155',['getBufferSession',['../class_lo_ra_w_a_n_node.html#a90369a4f2c4da11527872a7bbbf9ab06',1,'LoRaWANNode']]], - ['getchannelscanresult_156',['getChannelScanResult',['../class_l_r11x0.html#a1ae2cddeb7671d9b71e9c83bf020820f',1,'LR11x0::getChannelScanResult()'],['../class_s_x126x.html#afdd901c5eac2ca8773d0977e2c493317',1,'SX126x::getChannelScanResult()'],['../class_s_x127x.html#a81189ce77541d78fc8feb99c2a3f35b2',1,'SX127x::getChannelScanResult()'],['../class_s_x128x.html#ac39f77b77a2e4124cc30aeae08b4c653',1,'SX128x::getChannelScanResult()'],['../class_physical_layer.html#a63979795a7b53557560bb95b65480906',1,'PhysicalLayer::getChannelScanResult()']]], - ['getchipversion_157',['getChipVersion',['../class_c_c1101.html#a2a4c6e622dffd2788d8ac52d708b0705',1,'CC1101::getChipVersion()'],['../class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638',1,'RF69::getChipVersion()'],['../class_si443x.html#a55252bda74e8c67636a8c1fa0e9f58d3',1,'Si443x::getChipVersion()'],['../class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd',1,'SX127x::getChipVersion()']]], - ['getcs_158',['getCs',['../class_module.html#aa6cac04c7cb6d5278a318db0966ad1a7',1,'Module']]], - ['getcurrentlimit_159',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]], - ['getdatarate_160',['getDataRate',['../class_l_r11x0.html#a1ec81f3625fdc8a3ef6c54a3804c3aa9',1,'LR11x0::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate()'],['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()']]], - ['getdevaddr_161',['getDevAddr',['../class_lo_ra_w_a_n_node.html#aee0590cc9123ceac4c822eabed3150c6',1,'LoRaWANNode']]], - ['getfcntup_162',['getFCntUp',['../class_lo_ra_w_a_n_node.html#ad3217975ef9959ff83ce79dd80b0d777',1,'LoRaWANNode']]], - ['getfhsschannel_163',['getFHSSChannel',['../class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c',1,'SX127x']]], - ['getfhsshoppingperiod_164',['getFHSSHoppingPeriod',['../class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617',1,'SX127x']]], - ['getfreqstep_165',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]], - ['getfrequency_166',['getFrequency',['../class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed',1,'RF69']]], - ['getfrequencydeviation_167',['getFrequencyDeviation',['../class_c_c1101.html#abe26fa310e973bf2b14750b9eae02124',1,'CC1101::getFrequencyDeviation()'],['../class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9',1,'RF69::getFrequencyDeviation()']]], - ['getfrequencyerror_168',['getFrequencyError',['../class_s_x128x.html#a2b424000856a9dc212f571d0e8890635',1,'SX128x::getFrequencyError()'],['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x::getFrequencyError()'],['../class_l_r11x0.html#ad9046bccdb4ef60718e2e8ed2bd7f036',1,'LR11x0::getFrequencyError()'],['../class_s_x126x.html#a068d709ffb79ae66d718ffb76ffae997',1,'SX126x::getFrequencyError()']]], - ['getgnssalmanacstatus_169',['getGnssAlmanacStatus',['../class_l_r11x0.html#a748d30cb7a0b419066f6361a966b306f',1,'LR11x0']]], - ['getgnssposition_170',['getGnssPosition',['../class_l_r11x0.html#a19a4b4a138dbd0e5c8f980de0f6419e4',1,'LR11x0']]], - ['getgnsssatellites_171',['getGnssSatellites',['../class_l_r11x0.html#a97a3f23b796257135a9afd33c28e8ed5',1,'LR11x0']]], - ['getgpio_172',['getGpio',['../class_module.html#a4ec27f0ba5e0009ea9661a5110526b52',1,'Module']]], - ['getirq_173',['getIrq',['../class_module.html#ab61bc5066c356e2d0d79f08a2bd0fbc9',1,'Module']]], - ['getirqflags_174',['getIrqFlags',['../class_l_r11x0.html#a205364e65d54f3f87b9b8f5972cdcb99',1,'LR11x0::getIrqFlags()'],['../class_s_x126x.html#ab4f9b0c6496a796211e9816bf92146a7',1,'SX126x::getIrqFlags()'],['../class_s_x127x.html#a22de05835dda9ed287ec48f60ef91f55',1,'SX127x::getIrqFlags()'],['../class_s_x128x.html#aa17ffcb939f6b2eb0712e63b6ee7a71f',1,'SX128x::getIrqFlags()'],['../class_physical_layer.html#af1caeed34b2e2ff0355467507106a1a2',1,'PhysicalLayer::getIrqFlags()']]], + ['generatecmac_152',['generateCMAC',['../class_radio_lib_a_e_s128.html#a260a1ac84386141781b3d7c213ff161c',1,'RadioLibAES128']]], + ['getafcerror_153',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]], + ['getafcntdown_154',['getAFCntDown',['../class_lo_ra_w_a_n_node.html#a6785265f3311ff6bf296f82429c96701',1,'LoRaWANNode']]], + ['getbuffernonces_155',['getBufferNonces',['../class_lo_ra_w_a_n_node.html#a84004883006b4a498d4899874952445b',1,'LoRaWANNode']]], + ['getbuffersession_156',['getBufferSession',['../class_lo_ra_w_a_n_node.html#a90369a4f2c4da11527872a7bbbf9ab06',1,'LoRaWANNode']]], + ['getchannelscanresult_157',['getChannelScanResult',['../class_l_r11x0.html#a1ae2cddeb7671d9b71e9c83bf020820f',1,'LR11x0::getChannelScanResult()'],['../class_s_x126x.html#afdd901c5eac2ca8773d0977e2c493317',1,'SX126x::getChannelScanResult()'],['../class_s_x127x.html#a81189ce77541d78fc8feb99c2a3f35b2',1,'SX127x::getChannelScanResult()'],['../class_s_x128x.html#ac39f77b77a2e4124cc30aeae08b4c653',1,'SX128x::getChannelScanResult()'],['../class_physical_layer.html#a63979795a7b53557560bb95b65480906',1,'PhysicalLayer::getChannelScanResult()']]], + ['getchipversion_158',['getChipVersion',['../class_c_c1101.html#a2a4c6e622dffd2788d8ac52d708b0705',1,'CC1101::getChipVersion()'],['../class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638',1,'RF69::getChipVersion()'],['../class_si443x.html#a55252bda74e8c67636a8c1fa0e9f58d3',1,'Si443x::getChipVersion()'],['../class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd',1,'SX127x::getChipVersion()']]], + ['getcs_159',['getCs',['../class_module.html#aa6cac04c7cb6d5278a318db0966ad1a7',1,'Module']]], + ['getcurrentlimit_160',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]], + ['getdatarate_161',['getDataRate',['../class_l_r11x0.html#a1ec81f3625fdc8a3ef6c54a3804c3aa9',1,'LR11x0::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate()'],['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()']]], + ['getdevaddr_162',['getDevAddr',['../class_lo_ra_w_a_n_node.html#aee0590cc9123ceac4c822eabed3150c6',1,'LoRaWANNode']]], + ['getfcntup_163',['getFCntUp',['../class_lo_ra_w_a_n_node.html#ad3217975ef9959ff83ce79dd80b0d777',1,'LoRaWANNode']]], + ['getfhsschannel_164',['getFHSSChannel',['../class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c',1,'SX127x']]], + ['getfhsshoppingperiod_165',['getFHSSHoppingPeriod',['../class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617',1,'SX127x']]], + ['getfreqstep_166',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]], + ['getfrequency_167',['getFrequency',['../class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed',1,'RF69']]], + ['getfrequencydeviation_168',['getFrequencyDeviation',['../class_c_c1101.html#abe26fa310e973bf2b14750b9eae02124',1,'CC1101::getFrequencyDeviation()'],['../class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9',1,'RF69::getFrequencyDeviation()']]], + ['getfrequencyerror_169',['getFrequencyError',['../class_s_x128x.html#a2b424000856a9dc212f571d0e8890635',1,'SX128x::getFrequencyError()'],['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x::getFrequencyError()'],['../class_l_r11x0.html#ad9046bccdb4ef60718e2e8ed2bd7f036',1,'LR11x0::getFrequencyError()'],['../class_s_x126x.html#a068d709ffb79ae66d718ffb76ffae997',1,'SX126x::getFrequencyError()']]], + ['getgnssalmanacstatus_170',['getGnssAlmanacStatus',['../class_l_r11x0.html#a748d30cb7a0b419066f6361a966b306f',1,'LR11x0']]], + ['getgnssposition_171',['getGnssPosition',['../class_l_r11x0.html#a19a4b4a138dbd0e5c8f980de0f6419e4',1,'LR11x0']]], + ['getgnsssatellites_172',['getGnssSatellites',['../class_l_r11x0.html#a97a3f23b796257135a9afd33c28e8ed5',1,'LR11x0']]], + ['getgpio_173',['getGpio',['../class_module.html#a4ec27f0ba5e0009ea9661a5110526b52',1,'Module']]], + ['getirq_174',['getIrq',['../class_module.html#ab61bc5066c356e2d0d79f08a2bd0fbc9',1,'Module']]], ['getirqflags_175',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]], - ['getirqmapped_176',['getIrqMapped',['../class_physical_layer.html#ae602ebd46d60da8670c9f353cef695d9',1,'PhysicalLayer']]], - ['getirqstatus_177',['getIrqStatus',['../class_l_r11x0.html#a0309154558a0d88e2e8957e4dbf6a2f8',1,'LR11x0::getIrqStatus()'],['../class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22',1,'SX128x::getIrqStatus()']]], - ['getlasttoa_178',['getLastToA',['../class_lo_ra_w_a_n_node.html#a683b02b63867bb7de5df45c94d190305',1,'LoRaWANNode']]], - ['getlqi_179',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]], - ['getmacdevicetimeans_180',['getMacDeviceTimeAns',['../class_lo_ra_w_a_n_node.html#a9e6e1ce4296364606ff8b10fb5f971de',1,'LoRaWANNode']]], - ['getmaclinkcheckans_181',['getMacLinkCheckAns',['../class_lo_ra_w_a_n_node.html#adf038f331c1dc954dafc2668e7a31ca0',1,'LoRaWANNode']]], - ['getmaxpayloadlen_182',['getMaxPayloadLen',['../class_lo_ra_w_a_n_node.html#ab723160aa317cd84550d0da3a0f52811',1,'LoRaWANNode']]], - ['getmod_183',['getMod',['../class_external_radio.html#adfb1275ec53dbbd8fde2e8102e8f375d',1,'ExternalRadio']]], - ['getmodem_184',['getModem',['../class_l_r11x0.html#afe8684b336a8137cde591283297a869c',1,'LR11x0::getModem()'],['../class_s_x126x.html#a867b111d21308319e117695051e157ae',1,'SX126x::getModem()'],['../class_s_x127x.html#a333a9004cc05ff8aba2e9610db31109d',1,'SX127x::getModem()'],['../class_s_x128x.html#ad7bb0f4aa60a600d24d6268b430e719d',1,'SX128x::getModem()'],['../class_physical_layer.html#af061879bf694735297593c048d04a196',1,'PhysicalLayer::getModem()']]], - ['getmodemstatus_185',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]], - ['getnfcntdown_186',['getNFCntDown',['../class_lo_ra_w_a_n_node.html#aa7fabaa6efe9978c3674b1ab187446a1',1,'LoRaWANNode']]], - ['getnumsymbols_187',['getNumSymbols',['../class_s_x127x.html#abcc10ab36404aaaee3fe7a1be6841511',1,'SX127x']]], - ['getpacketlength_188',['getPacketLength',['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_physical_layer.html#a2fe95169b5cdc8cabe1f2af66cad6ef6',1,'PhysicalLayer::getPacketLength()'],['../class_s_x128x.html#a67ab0acd97f81e509af80a31f1fa7dc4',1,'SX128x::getPacketLength()'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_s_x126x.html#a121a0c8bc8548b58019c9ccbbe5181c9',1,'SX126x::getPacketLength(bool update, uint8_t *offset)'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength(bool update=true) override'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_l_r11x0.html#af96883b2ca7a36a8921ee1cd222adebf',1,'LR11x0::getPacketLength(bool update, uint8_t *offset)'],['../class_l_r11x0.html#ac1f541bdee1d983126ceae47940b8f9d',1,'LR11x0::getPacketLength(bool update=true) override'],['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()']]], - ['getpictureheight_189',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], - ['getpromiscuousmode_190',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], - ['getrangingresult_191',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], - ['getrssi_192',['getRSSI',['../class_s_x128x.html#acaee753f0736774efc25e38f58e0cb26',1,'SX128x::getRSSI()'],['../class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b',1,'PhysicalLayer::getRSSI()'],['../class_s_x128x.html#a260b99d8427e089546e33084803d955a',1,'SX128x::getRSSI()'],['../class_s_x1278.html#ab17357254073baeb7490c98faf10d991',1,'SX1278::getRSSI(bool packet, bool skipReceive=false)'],['../class_s_x1278.html#a0fcdc2962d1cf3410be208154d98ae4b',1,'SX1278::getRSSI() override'],['../class_s_x1272.html#a171656d12a9909bbb04fc81be86ec2a6',1,'SX1272::getRSSI()'],['../class_s_x126x.html#ab9db47423cf4e09ab126669d9fecbf0e',1,'SX126x::getRSSI(bool packet)'],['../class_s_x126x.html#a782a2e4ab7779369c0dc0cb4779fda81',1,'SX126x::getRSSI() override'],['../class_r_f69.html#af107c6a510d7e0314f1f4d76637c833d',1,'RF69::getRSSI()'],['../class_l_r11x0.html#a6cd2b2363501b2de064c9d1f32fabaa3',1,'LR11x0::getRSSI()'],['../class_c_c1101.html#ab80835be83e5a43010afe4e8185114eb',1,'CC1101::getRSSI()'],['../class_s_x1272.html#a54a4b070d6899bd1edae6ae4a17c7d90',1,'SX1272::getRSSI()']]], - ['getrst_193',['getRst',['../class_module.html#ad6cddbf3aebec9717a1a381dd81ad398',1,'Module']]], - ['getsnr_194',['getSNR',['../class_s_x127x.html#a47b3f7464303085d34191dd334c1976f',1,'SX127x::getSNR()'],['../class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f',1,'PhysicalLayer::getSNR()'],['../class_s_x128x.html#adce2e6c7215caa7c904b0d8f9cbd107d',1,'SX128x::getSNR()'],['../class_s_x126x.html#a59b761a67d15cdbfdccd6a759f464d00',1,'SX126x::getSNR()'],['../class_l_r11x0.html#a004782e6e5c6ad213c3b0c677bb8642d',1,'LR11x0::getSNR()']]], - ['getstatus_195',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]], - ['gettemperature_196',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]], - ['gettempraw_197',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]], - ['gettimeonair_198',['getTimeOnAir',['../class_s_x126x.html#a16eb0bdb051f3cf288db752d18182ae2',1,'SX126x::getTimeOnAir()'],['../class_physical_layer.html#a50e730a894f60b58034507ad7730dd3c',1,'PhysicalLayer::getTimeOnAir()'],['../class_s_x128x.html#ae7d3676df8f28c79b9bee23df884fa55',1,'SX128x::getTimeOnAir()'],['../class_s_x127x.html#a9e7ecbc92c9d70f93211d21399d237d0',1,'SX127x::getTimeOnAir()'],['../class_l_r11x0.html#abccf5dc80aab71090a5f19bfffa0201d',1,'LR11x0::getTimeOnAir(size_t len) override']]], - ['getversioninfo_199',['getVersionInfo',['../class_l_r11x0.html#ac6b6b460ba12cd92a08df16e1fe33779',1,'LR11x0']]], - ['getwifiscanresult_200',['getWifiScanResult',['../class_l_r11x0.html#a457f5dfe25385a329127f07abc4631a6',1,'LR11x0']]], - ['getwifiscanresultscount_201',['getWifiScanResultsCount',['../class_l_r11x0.html#a5ef83caa291e2d310d260a8ea140bc8e',1,'LR11x0']]], - ['gnssdelayuntilsubframe_202',['gnssDelayUntilSubframe',['../class_l_r11x0.html#ab2dbab0fe3433e914c19a8d03fe32358',1,'LR11x0']]], - ['gnssscan_203',['gnssScan',['../class_l_r11x0.html#ad9bfaf0bdd7045f5d41f18f3f953c294',1,'LR11x0']]], - ['gpiointerruptfalling_204',['GpioInterruptFalling',['../class_radio_lib_hal.html#a01f73b66a632fc9dba41a23f592e0936',1,'RadioLibHal']]], - ['gpiointerruptrising_205',['GpioInterruptRising',['../class_radio_lib_hal.html#a7ff9f3c608d68575dfc8962ba3669851',1,'RadioLibHal']]], - ['gpiolevelhigh_206',['GpioLevelHigh',['../class_radio_lib_hal.html#a409c719ef8a11e8765c90e98ba42316d',1,'RadioLibHal']]], - ['gpiolevellow_207',['GpioLevelLow',['../class_radio_lib_hal.html#a3cfca7ff9303fe84119ba2f4a4e1bbf4',1,'RadioLibHal']]], - ['gpiomodeinput_208',['GpioModeInput',['../class_radio_lib_hal.html#a2d197fc1f62be4cd2d2c22be30744769',1,'RadioLibHal']]], - ['gpiomodeoutput_209',['GpioModeOutput',['../class_radio_lib_hal.html#a18a711dd900a796ccfd7dddbdd2e6afe',1,'RadioLibHal']]], - ['gps_210',['gps',['../struct_l_r11x0_gnss_almanac_status__t.html#acec44165b211b49be3ca624ae03bc7cc',1,'LR11x0GnssAlmanacStatus_t']]] + ['getirqflags_176',['getIrqFlags',['../class_l_r11x0.html#a205364e65d54f3f87b9b8f5972cdcb99',1,'LR11x0::getIrqFlags()'],['../class_s_x126x.html#ab4f9b0c6496a796211e9816bf92146a7',1,'SX126x::getIrqFlags()'],['../class_s_x127x.html#a22de05835dda9ed287ec48f60ef91f55',1,'SX127x::getIrqFlags()'],['../class_s_x128x.html#aa17ffcb939f6b2eb0712e63b6ee7a71f',1,'SX128x::getIrqFlags()'],['../class_physical_layer.html#af1caeed34b2e2ff0355467507106a1a2',1,'PhysicalLayer::getIrqFlags()']]], + ['getirqmapped_177',['getIrqMapped',['../class_physical_layer.html#ae602ebd46d60da8670c9f353cef695d9',1,'PhysicalLayer']]], + ['getirqstatus_178',['getIrqStatus',['../class_l_r11x0.html#a0309154558a0d88e2e8957e4dbf6a2f8',1,'LR11x0::getIrqStatus()'],['../class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22',1,'SX128x::getIrqStatus()']]], + ['getlasttoa_179',['getLastToA',['../class_lo_ra_w_a_n_node.html#a683b02b63867bb7de5df45c94d190305',1,'LoRaWANNode']]], + ['getlqi_180',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]], + ['getmacdevicetimeans_181',['getMacDeviceTimeAns',['../class_lo_ra_w_a_n_node.html#a9e6e1ce4296364606ff8b10fb5f971de',1,'LoRaWANNode']]], + ['getmaclinkcheckans_182',['getMacLinkCheckAns',['../class_lo_ra_w_a_n_node.html#adf038f331c1dc954dafc2668e7a31ca0',1,'LoRaWANNode']]], + ['getmaxpayloadlen_183',['getMaxPayloadLen',['../class_lo_ra_w_a_n_node.html#ab723160aa317cd84550d0da3a0f52811',1,'LoRaWANNode']]], + ['getmod_184',['getMod',['../class_external_radio.html#adfb1275ec53dbbd8fde2e8102e8f375d',1,'ExternalRadio']]], + ['getmodem_185',['getModem',['../class_l_r11x0.html#afe8684b336a8137cde591283297a869c',1,'LR11x0::getModem()'],['../class_s_x126x.html#a867b111d21308319e117695051e157ae',1,'SX126x::getModem()'],['../class_s_x127x.html#a333a9004cc05ff8aba2e9610db31109d',1,'SX127x::getModem()'],['../class_s_x128x.html#ad7bb0f4aa60a600d24d6268b430e719d',1,'SX128x::getModem()'],['../class_physical_layer.html#af061879bf694735297593c048d04a196',1,'PhysicalLayer::getModem()']]], + ['getmodemstatus_186',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]], + ['getnfcntdown_187',['getNFCntDown',['../class_lo_ra_w_a_n_node.html#aa7fabaa6efe9978c3674b1ab187446a1',1,'LoRaWANNode']]], + ['getnumsymbols_188',['getNumSymbols',['../class_s_x127x.html#abcc10ab36404aaaee3fe7a1be6841511',1,'SX127x']]], + ['getpacketlength_189',['getPacketLength',['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_physical_layer.html#a2fe95169b5cdc8cabe1f2af66cad6ef6',1,'PhysicalLayer::getPacketLength()'],['../class_s_x128x.html#a67ab0acd97f81e509af80a31f1fa7dc4',1,'SX128x::getPacketLength()'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_s_x126x.html#a121a0c8bc8548b58019c9ccbbe5181c9',1,'SX126x::getPacketLength(bool update, uint8_t *offset)'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength(bool update=true) override'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_l_r11x0.html#af96883b2ca7a36a8921ee1cd222adebf',1,'LR11x0::getPacketLength(bool update, uint8_t *offset)'],['../class_l_r11x0.html#ac1f541bdee1d983126ceae47940b8f9d',1,'LR11x0::getPacketLength(bool update=true) override'],['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()']]], + ['getpictureheight_190',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], + ['getpromiscuousmode_191',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], + ['getrangingresult_192',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], + ['getrssi_193',['getRSSI',['../class_s_x128x.html#acaee753f0736774efc25e38f58e0cb26',1,'SX128x::getRSSI()'],['../class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b',1,'PhysicalLayer::getRSSI()'],['../class_s_x128x.html#a260b99d8427e089546e33084803d955a',1,'SX128x::getRSSI()'],['../class_s_x1278.html#ab17357254073baeb7490c98faf10d991',1,'SX1278::getRSSI(bool packet, bool skipReceive=false)'],['../class_s_x1278.html#a0fcdc2962d1cf3410be208154d98ae4b',1,'SX1278::getRSSI() override'],['../class_s_x1272.html#a171656d12a9909bbb04fc81be86ec2a6',1,'SX1272::getRSSI()'],['../class_s_x126x.html#ab9db47423cf4e09ab126669d9fecbf0e',1,'SX126x::getRSSI(bool packet)'],['../class_s_x126x.html#a782a2e4ab7779369c0dc0cb4779fda81',1,'SX126x::getRSSI() override'],['../class_r_f69.html#af107c6a510d7e0314f1f4d76637c833d',1,'RF69::getRSSI()'],['../class_l_r11x0.html#a6cd2b2363501b2de064c9d1f32fabaa3',1,'LR11x0::getRSSI()'],['../class_c_c1101.html#ab80835be83e5a43010afe4e8185114eb',1,'CC1101::getRSSI()'],['../class_s_x1272.html#a54a4b070d6899bd1edae6ae4a17c7d90',1,'SX1272::getRSSI()']]], + ['getrst_194',['getRst',['../class_module.html#ad6cddbf3aebec9717a1a381dd81ad398',1,'Module']]], + ['getsnr_195',['getSNR',['../class_s_x127x.html#a47b3f7464303085d34191dd334c1976f',1,'SX127x::getSNR()'],['../class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f',1,'PhysicalLayer::getSNR()'],['../class_s_x128x.html#adce2e6c7215caa7c904b0d8f9cbd107d',1,'SX128x::getSNR()'],['../class_s_x126x.html#a59b761a67d15cdbfdccd6a759f464d00',1,'SX126x::getSNR()'],['../class_l_r11x0.html#a004782e6e5c6ad213c3b0c677bb8642d',1,'LR11x0::getSNR()']]], + ['getstatus_196',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]], + ['gettemperature_197',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]], + ['gettempraw_198',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]], + ['gettimeonair_199',['getTimeOnAir',['../class_s_x126x.html#a16eb0bdb051f3cf288db752d18182ae2',1,'SX126x::getTimeOnAir()'],['../class_physical_layer.html#a50e730a894f60b58034507ad7730dd3c',1,'PhysicalLayer::getTimeOnAir()'],['../class_s_x128x.html#ae7d3676df8f28c79b9bee23df884fa55',1,'SX128x::getTimeOnAir()'],['../class_s_x127x.html#a9e7ecbc92c9d70f93211d21399d237d0',1,'SX127x::getTimeOnAir()'],['../class_l_r11x0.html#abccf5dc80aab71090a5f19bfffa0201d',1,'LR11x0::getTimeOnAir(size_t len) override']]], + ['getversioninfo_200',['getVersionInfo',['../class_l_r11x0.html#ac6b6b460ba12cd92a08df16e1fe33779',1,'LR11x0']]], + ['getwifiscanresult_201',['getWifiScanResult',['../class_l_r11x0.html#a457f5dfe25385a329127f07abc4631a6',1,'LR11x0']]], + ['getwifiscanresultscount_202',['getWifiScanResultsCount',['../class_l_r11x0.html#a5ef83caa291e2d310d260a8ea140bc8e',1,'LR11x0']]], + ['gnssdelayuntilsubframe_203',['gnssDelayUntilSubframe',['../class_l_r11x0.html#ab2dbab0fe3433e914c19a8d03fe32358',1,'LR11x0']]], + ['gnssscan_204',['gnssScan',['../class_l_r11x0.html#ad9bfaf0bdd7045f5d41f18f3f953c294',1,'LR11x0']]], + ['gpiointerruptfalling_205',['GpioInterruptFalling',['../class_radio_lib_hal.html#a01f73b66a632fc9dba41a23f592e0936',1,'RadioLibHal']]], + ['gpiointerruptrising_206',['GpioInterruptRising',['../class_radio_lib_hal.html#a7ff9f3c608d68575dfc8962ba3669851',1,'RadioLibHal']]], + ['gpiolevelhigh_207',['GpioLevelHigh',['../class_radio_lib_hal.html#a409c719ef8a11e8765c90e98ba42316d',1,'RadioLibHal']]], + ['gpiolevellow_208',['GpioLevelLow',['../class_radio_lib_hal.html#a3cfca7ff9303fe84119ba2f4a4e1bbf4',1,'RadioLibHal']]], + ['gpiomodeinput_209',['GpioModeInput',['../class_radio_lib_hal.html#a2d197fc1f62be4cd2d2c22be30744769',1,'RadioLibHal']]], + ['gpiomodeoutput_210',['GpioModeOutput',['../class_radio_lib_hal.html#a18a711dd900a796ccfd7dddbdd2e6afe',1,'RadioLibHal']]], + ['gps_211',['gps',['../struct_l_r11x0_gnss_almanac_status__t.html#acec44165b211b49be3ca624ae03bc7cc',1,'LR11x0GnssAlmanacStatus_t']]] ]; diff --git a/search/all_7.js b/search/all_7.js index 6300c17d..a53b9a88 100644 --- a/search/all_7.js +++ b/search/all_7.js @@ -1,7 +1,7 @@ var searchData= [ - ['hal_211',['hal',['../class_module.html#a4483f0a39a523dd1b37b467d81418f7d',1,'Module']]], - ['hardware_212',['hardware',['../struct_l_r11x0_version_info__t.html#a8c572580b8dba18d46ae50b4a4dd5a8d',1,'LR11x0VersionInfo_t']]], - ['height_213',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]], - ['hellclient_214',['HellClient',['../class_hell_client.html',1,'HellClient'],['../class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0',1,'HellClient::HellClient(PhysicalLayer *phy)'],['../class_hell_client.html#afeb347f04148700427ad40614fd057c3',1,'HellClient::HellClient(AFSKClient *audio)']]] + ['hal_212',['hal',['../class_module.html#a4483f0a39a523dd1b37b467d81418f7d',1,'Module']]], + ['hardware_213',['hardware',['../struct_l_r11x0_version_info__t.html#a8c572580b8dba18d46ae50b4a4dd5a8d',1,'LR11x0VersionInfo_t']]], + ['height_214',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]], + ['hellclient_215',['HellClient',['../class_hell_client.html',1,'HellClient'],['../class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0',1,'HellClient::HellClient(PhysicalLayer *phy)'],['../class_hell_client.html#afeb347f04148700427ad40614fd057c3',1,'HellClient::HellClient(AFSKClient *audio)']]] ]; diff --git a/search/all_8.js b/search/all_8.js index 3476ee36..5575a84d 100644 --- a/search/all_8.js +++ b/search/all_8.js @@ -1,18 +1,18 @@ var searchData= [ - ['idle_215',['idle',['../class_bell_client.html#aabd170def79cdbfd56a1d243e6227a75',1,'BellClient::idle()'],['../class_f_s_k4_client.html#a79ca465012acc9223d61d5b063ff8257',1,'FSK4Client::idle()'],['../class_r_t_t_y_client.html#ac477e65ea756e56bb9043d778a51b4bc',1,'RTTYClient::idle()'],['../class_s_s_t_v_client.html#a0126ac04934f589b8cb04a038c342044',1,'SSTVClient::idle()']]], - ['idx_216',['idx',['../struct_lo_ra_w_a_n_channel__t.html#a9fc4b7ec0b298df267cc2c39ef12cfa0',1,'LoRaWANChannel_t']]], - ['implicitheader_217',['implicitHeader',['../class_l_r11x0.html#aba13921d2cf29cc1bc8a648e1f330aa9',1,'LR11x0::implicitHeader()'],['../class_s_x126x.html#adec09cba71494bd927ad1da786606ca6',1,'SX126x::implicitHeader()'],['../class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3',1,'SX1272::implicitHeader()'],['../class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e',1,'SX1278::implicitHeader()'],['../class_s_x128x.html#ac69cc622020419cb3393eac5cc88915b',1,'SX128x::implicitHeader()']]], - ['info_218',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]], - ['infolen_219',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]], - ['init_220',['init',['../class_radio_lib_hal.html#a450037acdfeb4e87413674ac90feb4d2',1,'RadioLibHal::init()'],['../class_radio_lib_a_e_s128.html#a2f688dbdf2b0506c077ca4501e40e22e',1,'RadioLibAES128::init()'],['../class_module.html#ad1956ac81429ec1f61f83dbc081cf18c',1,'Module::init()'],['../class_tock_hal.html#a9ee8dae5dc2a8cc09b73c35f39e49b7d',1,'TockHal::init()'],['../class_pi_hal.html#a78593321f098c53fbac81b8d0d423b7f',1,'PiHal::init()'],['../class_pico_hal.html#a9eea222b674b9f36c68dfb8db3bbf096',1,'PicoHal::init()'],['../class_esp_hal.html#a8d0f76eaeb787f13fe8e938678d44616',1,'EspHal::init()'],['../class_radio_lib_c_r_c.html#a579acc51fe7a01b0b9b3f2e0e57b7d5f',1,'RadioLibCRC::init()']]], - ['invertiq_221',['invertIQ',['../class_l_r11x0.html#af85c16956c2250dbf338a298c074d28c',1,'LR11x0::invertIQ()'],['../class_s_x126x.html#a269c8e4ae0d21af88e9422ccf9708c1e',1,'SX126x::invertIQ()'],['../class_s_x127x.html#a363a436978ba990e1bf7d73f648ad7e9',1,'SX127x::invertIQ()'],['../class_s_x128x.html#a46e7979288205689ea97f1c26d1da07e',1,'SX128x::invertIQ()'],['../class_physical_layer.html#a11b4c6d0bf3ae7b9ca04e9434180feab',1,'PhysicalLayer::invertIQ()']]], - ['invertpreamble_222',['invertPreamble',['../class_s_x127x.html#a5b79dae55315cdf25e530db77eeb140f',1,'SX127x']]], - ['ioreg_223',['ioReg',['../struct_l_r11x0_wifi_result_extended__t.html#af9391a0e26fc6ef4cc1a5f5c61689409',1,'LR11x0WifiResultExtended_t']]], - ['irqflags_224',['irqFlags',['../struct_c_a_d_scan_config__t.html#ab390fd53aba1e32ae1b41aae4aa835a5',1,'CADScanConfig_t']]], - ['irqmask_225',['irqMask',['../struct_c_a_d_scan_config__t.html#ae86870cda342f39ad417abdfcb832ac3',1,'CADScanConfig_t']]], - ['isactivated_226',['isActivated',['../class_lo_ra_w_a_n_node.html#a9a44677a1ef7db1216bc482139d6be8d',1,'LoRaWANNode']]], - ['iscarrierdetected_227',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]], - ['isgnssscancapable_228',['isGnssScanCapable',['../class_l_r11x0.html#a79818dae19d69d33a5a1facbb91c3774',1,'LR11x0']]], - ['ita2string_229',['ITA2String',['../class_i_t_a2_string.html',1,'ITA2String'],['../class_i_t_a2_string.html#addb6c39167aa5da53fb72e9a94c9c8f5',1,'ITA2String::ITA2String(char c)'],['../class_i_t_a2_string.html#a92ca563bdc2ae4d05ee91ce9372e7a55',1,'ITA2String::ITA2String(const char *str)'],['../class_i_t_a2_string.html#ac3c4e36f2a1cad480b045530a19d09d2',1,'ITA2String::ITA2String(const ITA2String &ita2)']]] + ['idle_216',['idle',['../class_bell_client.html#aabd170def79cdbfd56a1d243e6227a75',1,'BellClient::idle()'],['../class_f_s_k4_client.html#a79ca465012acc9223d61d5b063ff8257',1,'FSK4Client::idle()'],['../class_r_t_t_y_client.html#ac477e65ea756e56bb9043d778a51b4bc',1,'RTTYClient::idle()'],['../class_s_s_t_v_client.html#a0126ac04934f589b8cb04a038c342044',1,'SSTVClient::idle()']]], + ['idx_217',['idx',['../struct_lo_ra_w_a_n_channel__t.html#a9fc4b7ec0b298df267cc2c39ef12cfa0',1,'LoRaWANChannel_t']]], + ['implicitheader_218',['implicitHeader',['../class_l_r11x0.html#aba13921d2cf29cc1bc8a648e1f330aa9',1,'LR11x0::implicitHeader()'],['../class_s_x126x.html#adec09cba71494bd927ad1da786606ca6',1,'SX126x::implicitHeader()'],['../class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3',1,'SX1272::implicitHeader()'],['../class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e',1,'SX1278::implicitHeader()'],['../class_s_x128x.html#ac69cc622020419cb3393eac5cc88915b',1,'SX128x::implicitHeader()']]], + ['info_219',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]], + ['infolen_220',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]], + ['init_221',['init',['../class_radio_lib_hal.html#a450037acdfeb4e87413674ac90feb4d2',1,'RadioLibHal::init()'],['../class_radio_lib_a_e_s128.html#a2f688dbdf2b0506c077ca4501e40e22e',1,'RadioLibAES128::init()'],['../class_module.html#ad1956ac81429ec1f61f83dbc081cf18c',1,'Module::init()'],['../class_tock_hal.html#a9ee8dae5dc2a8cc09b73c35f39e49b7d',1,'TockHal::init()'],['../class_pi_hal.html#a78593321f098c53fbac81b8d0d423b7f',1,'PiHal::init()'],['../class_pico_hal.html#a9eea222b674b9f36c68dfb8db3bbf096',1,'PicoHal::init()'],['../class_esp_hal.html#a8d0f76eaeb787f13fe8e938678d44616',1,'EspHal::init()'],['../class_radio_lib_c_r_c.html#a579acc51fe7a01b0b9b3f2e0e57b7d5f',1,'RadioLibCRC::init()']]], + ['invertiq_222',['invertIQ',['../class_l_r11x0.html#af85c16956c2250dbf338a298c074d28c',1,'LR11x0::invertIQ()'],['../class_s_x126x.html#a269c8e4ae0d21af88e9422ccf9708c1e',1,'SX126x::invertIQ()'],['../class_s_x127x.html#a363a436978ba990e1bf7d73f648ad7e9',1,'SX127x::invertIQ()'],['../class_s_x128x.html#a46e7979288205689ea97f1c26d1da07e',1,'SX128x::invertIQ()'],['../class_physical_layer.html#a11b4c6d0bf3ae7b9ca04e9434180feab',1,'PhysicalLayer::invertIQ()']]], + ['invertpreamble_223',['invertPreamble',['../class_s_x127x.html#a5b79dae55315cdf25e530db77eeb140f',1,'SX127x']]], + ['ioreg_224',['ioReg',['../struct_l_r11x0_wifi_result_extended__t.html#af9391a0e26fc6ef4cc1a5f5c61689409',1,'LR11x0WifiResultExtended_t']]], + ['irqflags_225',['irqFlags',['../struct_c_a_d_scan_config__t.html#ab390fd53aba1e32ae1b41aae4aa835a5',1,'CADScanConfig_t']]], + ['irqmask_226',['irqMask',['../struct_c_a_d_scan_config__t.html#ae86870cda342f39ad417abdfcb832ac3',1,'CADScanConfig_t']]], + ['isactivated_227',['isActivated',['../class_lo_ra_w_a_n_node.html#a9a44677a1ef7db1216bc482139d6be8d',1,'LoRaWANNode']]], + ['iscarrierdetected_228',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]], + ['isgnssscancapable_229',['isGnssScanCapable',['../class_l_r11x0.html#a79818dae19d69d33a5a1facbb91c3774',1,'LR11x0']]], + ['ita2string_230',['ITA2String',['../class_i_t_a2_string.html',1,'ITA2String'],['../class_i_t_a2_string.html#addb6c39167aa5da53fb72e9a94c9c8f5',1,'ITA2String::ITA2String(char c)'],['../class_i_t_a2_string.html#a92ca563bdc2ae4d05ee91ce9372e7a55',1,'ITA2String::ITA2String(const char *str)'],['../class_i_t_a2_string.html#ac3c4e36f2a1cad480b045530a19d09d2',1,'ITA2String::ITA2String(const ITA2String &ita2)']]] ]; diff --git a/search/all_9.js b/search/all_9.js index 4d02994e..aa808963 100644 --- a/search/all_9.js +++ b/search/all_9.js @@ -1,4 +1,4 @@ var searchData= [ - ['joinnonce_230',['joinNonce',['../struct_lo_ra_w_a_n_join_event__t.html#a935bc95eb2c02242c61f192fa2c68d8b',1,'LoRaWANJoinEvent_t']]] + ['joinnonce_231',['joinNonce',['../struct_lo_ra_w_a_n_join_event__t.html#a935bc95eb2c02242c61f192fa2c68d8b',1,'LoRaWANJoinEvent_t']]] ]; diff --git a/search/all_a.js b/search/all_a.js index 4e385d72..31676a63 100644 --- a/search/all_a.js +++ b/search/all_a.js @@ -1,48 +1,48 @@ var searchData= [ - ['latitude_231',['latitude',['../struct_l_r11x0_gnss_position__t.html#a1dc2c58c51b870cccf6542005f8afdc8',1,'LR11x0GnssPosition_t']]], - ['len_232',['len',['../structtone__t.html#a7916c2e2d0011aead6f355076b8fb36c',1,'tone_t']]], - ['lendn_233',['lenDn',['../struct_lo_ra_w_a_n_mac_command__t.html#a07d546268f6ac9ae191a7cca4791de37',1,'LoRaWANMacCommand_t']]], - ['length_234',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String::length()'],['../struct_l_r11x0_wifi_result_extended__t.html#a403e9bde552ca9b07cdf49a2d295c563',1,'LR11x0WifiResultExtended_t::length()']]], - ['lenup_235',['lenUp',['../struct_lo_ra_w_a_n_mac_command__t.html#a89f71b4d17ad16089772ed070cc0949e',1,'LoRaWANMacCommand_t']]], - ['limit_236',['limit',['../struct_r_s_s_i_scan_config__t.html#a8a9bf05648e82b49d43d6275ecf3cc3b',1,'RSSIScanConfig_t']]], - ['llcc68_237',['LLCC68',['../class_l_l_c_c68.html',1,'LLCC68'],['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68::LLCC68()']]], - ['longitude_238',['longitude',['../struct_l_r11x0_gnss_position__t.html#aa43d5bcce01522eb518cd8db0f73a057',1,'LR11x0GnssPosition_t']]], - ['lora_239',['lora',['../union_data_rate__t.html#ab25c3fcaf1934cd9d6d5e9820749137d',1,'DataRate_t']]], - ['lorarate_5ft_240',['LoRaRate_t',['../struct_lo_ra_rate__t.html',1,'']]], - ['lorawanband_5ft_241',['LoRaWANBand_t',['../struct_lo_ra_w_a_n_band__t.html',1,'']]], - ['lorawanbandnum_5ft_242',['LoRaWANBandNum_t',['../struct_lo_ra_w_a_n_band_num__t.html',1,'']]], - ['lorawanchannel_5ft_243',['LoRaWANChannel_t',['../struct_lo_ra_w_a_n_channel__t.html',1,'']]], - ['lorawanchannelspan_5ft_244',['LoRaWANChannelSpan_t',['../struct_lo_ra_w_a_n_channel_span__t.html',1,'']]], - ['lorawanevent_5ft_245',['LoRaWANEvent_t',['../struct_lo_ra_w_a_n_event__t.html',1,'']]], - ['lorawanjoinevent_5ft_246',['LoRaWANJoinEvent_t',['../struct_lo_ra_w_a_n_join_event__t.html',1,'']]], - ['lorawanmaccommand_5ft_247',['LoRaWANMacCommand_t',['../struct_lo_ra_w_a_n_mac_command__t.html',1,'']]], - ['lorawannode_248',['LoRaWANNode',['../class_lo_ra_w_a_n_node.html',1,'LoRaWANNode'],['../class_lo_ra_w_a_n_node.html#aae05de563f765f14fe267e4d65844f76',1,'LoRaWANNode::LoRaWANNode()']]], - ['lr1110_249',['LR1110',['../class_l_r1110.html',1,'LR1110'],['../class_l_r1110.html#a4e492901900ad1d85c818ec473b3d123',1,'LR1110::LR1110()']]], - ['lr1110_5ftransceiver_5f0305_2eh_250',['lr1110_transceiver_0305.h',['../lr1110__transceiver__0305_8h.html',1,'']]], - ['lr1110_5ftransceiver_5f0306_2eh_251',['lr1110_transceiver_0306.h',['../lr1110__transceiver__0306_8h.html',1,'']]], - ['lr1110_5ftransceiver_5f0307_2eh_252',['lr1110_transceiver_0307.h',['../lr1110__transceiver__0307_8h.html',1,'']]], - ['lr1110_5ftransceiver_5f0401_2eh_253',['lr1110_transceiver_0401.h',['../lr1110__transceiver__0401_8h.html',1,'']]], - ['lr1120_254',['LR1120',['../class_l_r1120.html',1,'LR1120'],['../class_l_r1120.html#ae652f10ebc1e4b8245eb5a0c97765257',1,'LR1120::LR1120()']]], - ['lr1120_5ftransceiver_5f0101_2eh_255',['lr1120_transceiver_0101.h',['../lr1120__transceiver__0101_8h.html',1,'']]], - ['lr1120_5ftransceiver_5f0102_2eh_256',['lr1120_transceiver_0102.h',['../lr1120__transceiver__0102_8h.html',1,'']]], - ['lr1120_5ftransceiver_5f0201_2eh_257',['lr1120_transceiver_0201.h',['../lr1120__transceiver__0201_8h.html',1,'']]], - ['lr1121_258',['LR1121',['../class_l_r1121.html#a0015ed8c0fde10a072b5f1317779f59a',1,'LR1121::LR1121()'],['../class_l_r1121.html',1,'LR1121']]], - ['lr1121_5ftransceiver_5f0103_2eh_259',['lr1121_transceiver_0103.h',['../lr1121__transceiver__0103_8h.html',1,'']]], - ['lr11x0_260',['LR11x0',['../class_l_r11x0.html',1,'LR11x0'],['../class_l_r11x0.html#a562f34a054e3374b812556df3b6eb421',1,'LR11x0::LR11x0()']]], - ['lr11x0gnssalmanacstatus_5ft_261',['LR11x0GnssAlmanacStatus_t',['../struct_l_r11x0_gnss_almanac_status__t.html',1,'']]], - ['lr11x0gnssalmanacstatuspart_5ft_262',['LR11x0GnssAlmanacStatusPart_t',['../struct_l_r11x0_gnss_almanac_status_part__t.html',1,'']]], - ['lr11x0gnssposition_5ft_263',['LR11x0GnssPosition_t',['../struct_l_r11x0_gnss_position__t.html',1,'']]], - ['lr11x0gnssresult_5ft_264',['LR11x0GnssResult_t',['../struct_l_r11x0_gnss_result__t.html',1,'']]], - ['lr11x0gnsssatellite_5ft_265',['LR11x0GnssSatellite_t',['../struct_l_r11x0_gnss_satellite__t.html',1,'']]], - ['lr11x0versioninfo_5ft_266',['LR11x0VersionInfo_t',['../struct_l_r11x0_version_info__t.html',1,'']]], - ['lr11x0wifiresult_5ft_267',['LR11x0WifiResult_t',['../struct_l_r11x0_wifi_result__t.html',1,'']]], - ['lr11x0wifiresultextended_5ft_268',['LR11x0WifiResultExtended_t',['../struct_l_r11x0_wifi_result_extended__t.html',1,'']]], - ['lr11x0wifiresultfull_5ft_269',['LR11x0WifiResultFull_t',['../struct_l_r11x0_wifi_result_full__t.html',1,'']]], - ['lr11xx_5ffirmware_5fimage_270',['lr11xx_firmware_image',['../lr1110__transceiver__0307_8h.html#a3e84b323eea7cc20fb619e3d48818e64',1,'lr11xx_firmware_image(): lr1110_transceiver_0307.h'],['../lr1120__transceiver__0101_8h.html#a3e84b323eea7cc20fb619e3d48818e64',1,'lr11xx_firmware_image(): lr1120_transceiver_0101.h'],['../lr1120__transceiver__0102_8h.html#a3e84b323eea7cc20fb619e3d48818e64',1,'lr11xx_firmware_image(): lr1120_transceiver_0102.h']]], - ['lr11xx_5ffirmware_5fimage_5fsize_271',['LR11XX_FIRMWARE_IMAGE_SIZE',['../lr1120__transceiver__0102_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1120_transceiver_0102.h'],['../lr1121__transceiver__0103_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1121_transceiver_0103.h'],['../lr1120__transceiver__0201_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1120_transceiver_0201.h'],['../lr1120__transceiver__0101_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1120_transceiver_0101.h'],['../lr1110__transceiver__0401_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0401.h'],['../lr1110__transceiver__0306_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0305_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0305.h'],['../lr1110__transceiver__0307_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0307.h']]], - ['lr11xx_5ffirmware_5fupdate_5fto_272',['LR11XX_FIRMWARE_UPDATE_TO',['../lr1120__transceiver__0102_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1120_transceiver_0102.h'],['../lr1121__transceiver__0103_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1121_transceiver_0103.h'],['../lr1120__transceiver__0201_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1120_transceiver_0201.h'],['../lr1120__transceiver__0101_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1120_transceiver_0101.h'],['../lr1110__transceiver__0401_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0401.h'],['../lr1110__transceiver__0307_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0307.h'],['../lr1110__transceiver__0306_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0305_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0305.h']]], - ['lr11xx_5ffirmware_5fversion_273',['LR11XX_FIRMWARE_VERSION',['../lr1110__transceiver__0305_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0305.h'],['../lr1110__transceiver__0306_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0307_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0307.h'],['../lr1110__transceiver__0401_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0401.h'],['../lr1120__transceiver__0101_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1120_transceiver_0101.h'],['../lr1120__transceiver__0102_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1120_transceiver_0102.h'],['../lr1120__transceiver__0201_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1120_transceiver_0201.h'],['../lr1121__transceiver__0103_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1121_transceiver_0103.h']]], - ['lrfhss_274',['lrFhss',['../union_data_rate__t.html#aa11056b982f023a4572dee8d6ac5f9ef',1,'DataRate_t']]], - ['lrfhssrate_5ft_275',['LrFhssRate_t',['../struct_lr_fhss_rate__t.html',1,'']]] + ['latitude_232',['latitude',['../struct_l_r11x0_gnss_position__t.html#a1dc2c58c51b870cccf6542005f8afdc8',1,'LR11x0GnssPosition_t']]], + ['len_233',['len',['../structtone__t.html#a7916c2e2d0011aead6f355076b8fb36c',1,'tone_t']]], + ['lendn_234',['lenDn',['../struct_lo_ra_w_a_n_mac_command__t.html#a07d546268f6ac9ae191a7cca4791de37',1,'LoRaWANMacCommand_t']]], + ['length_235',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String::length()'],['../struct_l_r11x0_wifi_result_extended__t.html#a403e9bde552ca9b07cdf49a2d295c563',1,'LR11x0WifiResultExtended_t::length()']]], + ['lenup_236',['lenUp',['../struct_lo_ra_w_a_n_mac_command__t.html#a89f71b4d17ad16089772ed070cc0949e',1,'LoRaWANMacCommand_t']]], + ['limit_237',['limit',['../struct_r_s_s_i_scan_config__t.html#a8a9bf05648e82b49d43d6275ecf3cc3b',1,'RSSIScanConfig_t']]], + ['llcc68_238',['LLCC68',['../class_l_l_c_c68.html',1,'LLCC68'],['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68::LLCC68()']]], + ['longitude_239',['longitude',['../struct_l_r11x0_gnss_position__t.html#aa43d5bcce01522eb518cd8db0f73a057',1,'LR11x0GnssPosition_t']]], + ['lora_240',['lora',['../union_data_rate__t.html#ab25c3fcaf1934cd9d6d5e9820749137d',1,'DataRate_t']]], + ['lorarate_5ft_241',['LoRaRate_t',['../struct_lo_ra_rate__t.html',1,'']]], + ['lorawanband_5ft_242',['LoRaWANBand_t',['../struct_lo_ra_w_a_n_band__t.html',1,'']]], + ['lorawanbandnum_5ft_243',['LoRaWANBandNum_t',['../struct_lo_ra_w_a_n_band_num__t.html',1,'']]], + ['lorawanchannel_5ft_244',['LoRaWANChannel_t',['../struct_lo_ra_w_a_n_channel__t.html',1,'']]], + ['lorawanchannelspan_5ft_245',['LoRaWANChannelSpan_t',['../struct_lo_ra_w_a_n_channel_span__t.html',1,'']]], + ['lorawanevent_5ft_246',['LoRaWANEvent_t',['../struct_lo_ra_w_a_n_event__t.html',1,'']]], + ['lorawanjoinevent_5ft_247',['LoRaWANJoinEvent_t',['../struct_lo_ra_w_a_n_join_event__t.html',1,'']]], + ['lorawanmaccommand_5ft_248',['LoRaWANMacCommand_t',['../struct_lo_ra_w_a_n_mac_command__t.html',1,'']]], + ['lorawannode_249',['LoRaWANNode',['../class_lo_ra_w_a_n_node.html',1,'LoRaWANNode'],['../class_lo_ra_w_a_n_node.html#aae05de563f765f14fe267e4d65844f76',1,'LoRaWANNode::LoRaWANNode()']]], + ['lr1110_250',['LR1110',['../class_l_r1110.html',1,'LR1110'],['../class_l_r1110.html#a4e492901900ad1d85c818ec473b3d123',1,'LR1110::LR1110()']]], + ['lr1110_5ftransceiver_5f0305_2eh_251',['lr1110_transceiver_0305.h',['../lr1110__transceiver__0305_8h.html',1,'']]], + ['lr1110_5ftransceiver_5f0306_2eh_252',['lr1110_transceiver_0306.h',['../lr1110__transceiver__0306_8h.html',1,'']]], + ['lr1110_5ftransceiver_5f0307_2eh_253',['lr1110_transceiver_0307.h',['../lr1110__transceiver__0307_8h.html',1,'']]], + ['lr1110_5ftransceiver_5f0401_2eh_254',['lr1110_transceiver_0401.h',['../lr1110__transceiver__0401_8h.html',1,'']]], + ['lr1120_255',['LR1120',['../class_l_r1120.html',1,'LR1120'],['../class_l_r1120.html#ae652f10ebc1e4b8245eb5a0c97765257',1,'LR1120::LR1120()']]], + ['lr1120_5ftransceiver_5f0101_2eh_256',['lr1120_transceiver_0101.h',['../lr1120__transceiver__0101_8h.html',1,'']]], + ['lr1120_5ftransceiver_5f0102_2eh_257',['lr1120_transceiver_0102.h',['../lr1120__transceiver__0102_8h.html',1,'']]], + ['lr1120_5ftransceiver_5f0201_2eh_258',['lr1120_transceiver_0201.h',['../lr1120__transceiver__0201_8h.html',1,'']]], + ['lr1121_259',['LR1121',['../class_l_r1121.html#a0015ed8c0fde10a072b5f1317779f59a',1,'LR1121::LR1121()'],['../class_l_r1121.html',1,'LR1121']]], + ['lr1121_5ftransceiver_5f0103_2eh_260',['lr1121_transceiver_0103.h',['../lr1121__transceiver__0103_8h.html',1,'']]], + ['lr11x0_261',['LR11x0',['../class_l_r11x0.html',1,'LR11x0'],['../class_l_r11x0.html#a562f34a054e3374b812556df3b6eb421',1,'LR11x0::LR11x0()']]], + ['lr11x0gnssalmanacstatus_5ft_262',['LR11x0GnssAlmanacStatus_t',['../struct_l_r11x0_gnss_almanac_status__t.html',1,'']]], + ['lr11x0gnssalmanacstatuspart_5ft_263',['LR11x0GnssAlmanacStatusPart_t',['../struct_l_r11x0_gnss_almanac_status_part__t.html',1,'']]], + ['lr11x0gnssposition_5ft_264',['LR11x0GnssPosition_t',['../struct_l_r11x0_gnss_position__t.html',1,'']]], + ['lr11x0gnssresult_5ft_265',['LR11x0GnssResult_t',['../struct_l_r11x0_gnss_result__t.html',1,'']]], + ['lr11x0gnsssatellite_5ft_266',['LR11x0GnssSatellite_t',['../struct_l_r11x0_gnss_satellite__t.html',1,'']]], + ['lr11x0versioninfo_5ft_267',['LR11x0VersionInfo_t',['../struct_l_r11x0_version_info__t.html',1,'']]], + ['lr11x0wifiresult_5ft_268',['LR11x0WifiResult_t',['../struct_l_r11x0_wifi_result__t.html',1,'']]], + ['lr11x0wifiresultextended_5ft_269',['LR11x0WifiResultExtended_t',['../struct_l_r11x0_wifi_result_extended__t.html',1,'']]], + ['lr11x0wifiresultfull_5ft_270',['LR11x0WifiResultFull_t',['../struct_l_r11x0_wifi_result_full__t.html',1,'']]], + ['lr11xx_5ffirmware_5fimage_271',['lr11xx_firmware_image',['../lr1110__transceiver__0307_8h.html#a3e84b323eea7cc20fb619e3d48818e64',1,'lr11xx_firmware_image(): lr1110_transceiver_0307.h'],['../lr1120__transceiver__0101_8h.html#a3e84b323eea7cc20fb619e3d48818e64',1,'lr11xx_firmware_image(): lr1120_transceiver_0101.h'],['../lr1120__transceiver__0102_8h.html#a3e84b323eea7cc20fb619e3d48818e64',1,'lr11xx_firmware_image(): lr1120_transceiver_0102.h']]], + ['lr11xx_5ffirmware_5fimage_5fsize_272',['LR11XX_FIRMWARE_IMAGE_SIZE',['../lr1120__transceiver__0102_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1120_transceiver_0102.h'],['../lr1121__transceiver__0103_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1121_transceiver_0103.h'],['../lr1120__transceiver__0201_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1120_transceiver_0201.h'],['../lr1120__transceiver__0101_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1120_transceiver_0101.h'],['../lr1110__transceiver__0401_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0401.h'],['../lr1110__transceiver__0306_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0305_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0305.h'],['../lr1110__transceiver__0307_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0307.h']]], + ['lr11xx_5ffirmware_5fupdate_5fto_273',['LR11XX_FIRMWARE_UPDATE_TO',['../lr1120__transceiver__0102_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1120_transceiver_0102.h'],['../lr1121__transceiver__0103_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1121_transceiver_0103.h'],['../lr1120__transceiver__0201_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1120_transceiver_0201.h'],['../lr1120__transceiver__0101_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1120_transceiver_0101.h'],['../lr1110__transceiver__0401_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0401.h'],['../lr1110__transceiver__0307_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0307.h'],['../lr1110__transceiver__0306_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0305_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0305.h']]], + ['lr11xx_5ffirmware_5fversion_274',['LR11XX_FIRMWARE_VERSION',['../lr1110__transceiver__0305_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0305.h'],['../lr1110__transceiver__0306_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0307_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0307.h'],['../lr1110__transceiver__0401_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0401.h'],['../lr1120__transceiver__0101_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1120_transceiver_0101.h'],['../lr1120__transceiver__0102_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1120_transceiver_0102.h'],['../lr1120__transceiver__0201_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1120_transceiver_0201.h'],['../lr1121__transceiver__0103_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1121_transceiver_0103.h']]], + ['lrfhss_275',['lrFhss',['../union_data_rate__t.html#aa11056b982f023a4572dee8d6ac5f9ef',1,'DataRate_t']]], + ['lrfhssrate_5ft_276',['LrFhssRate_t',['../struct_lr_fhss_rate__t.html',1,'']]] ]; diff --git a/search/all_b.js b/search/all_b.js index 506ec9e6..c9964be6 100644 --- a/search/all_b.js +++ b/search/all_b.js @@ -1,22 +1,22 @@ var searchData= [ - ['mac_276',['mac',['../struct_l_r11x0_wifi_result__t.html#a9fb28ba0ff8e6625322b081a4bda5628',1,'LR11x0WifiResult_t']]], - ['mac0_277',['mac0',['../struct_l_r11x0_wifi_result_extended__t.html#ae689651117f96ba356caea064cdeb191',1,'LR11x0WifiResultExtended_t']]], - ['mac2_278',['mac2',['../struct_l_r11x0_wifi_result_extended__t.html#a530ba85cf4b0b41e519b2d89e37b2497',1,'LR11x0WifiResultExtended_t']]], - ['mic_2de_20message_20types_2e_279',['Mic-E message types.',['../group__mic__e__message__types.html',1,'']]], - ['micros_280',['micros',['../class_radio_lib_hal.html#a64d98b48668ced5ba1014f272606f370',1,'RadioLibHal::micros()'],['../class_tock_hal.html#a35d643277c35762e0ce0d66ac3fa28a0',1,'TockHal::micros()'],['../class_pico_hal.html#a3eb9710f7b7702c9035833a4f8176038',1,'PicoHal::micros()'],['../class_pi_hal.html#a99893a968bd5789511154b559f349e60',1,'PiHal::micros()'],['../class_esp_hal.html#a14e1e7205a3a0465101eb99bdac86973',1,'EspHal::micros() override']]], - ['millis_281',['millis',['../class_esp_hal.html#a3282dda7cf77988e10ff015763b2c582',1,'EspHal::millis()'],['../class_pi_hal.html#a162b953dbc7bb96be6d7ec037c4d465e',1,'PiHal::millis()'],['../class_pico_hal.html#a4e82e02b4de6d1c192f52fb0ddd1c9c4',1,'PicoHal::millis()'],['../class_tock_hal.html#a1f5aabd073320fbce5f93ad47caf78f2',1,'TockHal::millis()'],['../class_radio_lib_hal.html#a4b8e36ccf8fe372c259b963666513d37',1,'RadioLibHal::millis()']]], - ['mode_282',['mode',['../struct_module_1_1_rf_switch_mode__t.html#a2442217bfabfb124a3f46bb128aa7462',1,'Module::RfSwitchMode_t']]], - ['mode_5fend_5fof_5ftable_283',['MODE_END_OF_TABLE',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa81cdd8986054c2ae5657eb5dfd536770',1,'Module::MODE_END_OF_TABLE()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a2398f9003962c8dc6d199e69ba850917',1,'LR11x0::MODE_END_OF_TABLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a0cffe238c4822ab7f8beddf4ec72052b',1,'STM32WLx::MODE_END_OF_TABLE()']]], - ['mode_5fgnss_284',['MODE_GNSS',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a5f126b8030f06bb14b1659ccce645bad',1,'LR11x0']]], - ['mode_5fidle_285',['MODE_IDLE',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa505acc66c5e0faa83d2216aca5f3e671',1,'Module::MODE_IDLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a8cf0ccad0eec5fde12798e0b0347d6bf',1,'STM32WLx::MODE_IDLE()']]], - ['mode_5frx_286',['MODE_RX',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa7664838bb0818663f55b3354fec8a18f',1,'Module::MODE_RX()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a98f8232e13745eec261cd755c457c034',1,'LR11x0::MODE_RX()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a85ffabc9f35e2683aefdd785bf912172',1,'STM32WLx::MODE_RX()']]], - ['mode_5fstby_287',['MODE_STBY',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7ab223e6d6104d722d61e1d2aa22231012',1,'LR11x0']]], - ['mode_5ftx_288',['MODE_TX',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa269f4bc8ba3eb3d8568feb7b2decf571',1,'Module::MODE_TX()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a71c6230a03a213d3e19185691c6db551',1,'LR11x0::MODE_TX()']]], - ['mode_5ftx_5fhf_289',['MODE_TX_HF',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7acbbc5768e10e22bfdf776faffbfced46',1,'LR11x0']]], - ['mode_5ftx_5fhp_290',['MODE_TX_HP',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a005b9c110df839cd001f82f4660762fd',1,'LR11x0::MODE_TX_HP()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a50df4b8580f1bded3cb61e79f954789e',1,'STM32WLx::MODE_TX_HP()']]], - ['mode_5ftx_5flp_291',['MODE_TX_LP',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a20a2eda9aaf3c7cdb4a55955d6ff3544',1,'STM32WLx']]], - ['mode_5fwifi_292',['MODE_WIFI',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a3bee9db01eab3ac70ff178c95fe8f8ab',1,'LR11x0']]], - ['module_293',['Module',['../class_module.html',1,'Module'],['../class_module.html#a817178405f125e068e88bad62aeb6f3b',1,'Module::Module(RadioLibHal *hal, uint32_t cs, uint32_t irq, uint32_t rst, uint32_t gpio=RADIOLIB_NC)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]], - ['morseclient_294',['MorseClient',['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)'],['../class_morse_client.html',1,'MorseClient']]] + ['mac_277',['mac',['../struct_l_r11x0_wifi_result__t.html#a9fb28ba0ff8e6625322b081a4bda5628',1,'LR11x0WifiResult_t']]], + ['mac0_278',['mac0',['../struct_l_r11x0_wifi_result_extended__t.html#ae689651117f96ba356caea064cdeb191',1,'LR11x0WifiResultExtended_t']]], + ['mac2_279',['mac2',['../struct_l_r11x0_wifi_result_extended__t.html#a530ba85cf4b0b41e519b2d89e37b2497',1,'LR11x0WifiResultExtended_t']]], + ['mic_2de_20message_20types_2e_280',['Mic-E message types.',['../group__mic__e__message__types.html',1,'']]], + ['micros_281',['micros',['../class_radio_lib_hal.html#a64d98b48668ced5ba1014f272606f370',1,'RadioLibHal::micros()'],['../class_tock_hal.html#a35d643277c35762e0ce0d66ac3fa28a0',1,'TockHal::micros()'],['../class_pico_hal.html#a3eb9710f7b7702c9035833a4f8176038',1,'PicoHal::micros()'],['../class_pi_hal.html#a99893a968bd5789511154b559f349e60',1,'PiHal::micros()'],['../class_esp_hal.html#a14e1e7205a3a0465101eb99bdac86973',1,'EspHal::micros() override']]], + ['millis_282',['millis',['../class_esp_hal.html#a3282dda7cf77988e10ff015763b2c582',1,'EspHal::millis()'],['../class_pi_hal.html#a162b953dbc7bb96be6d7ec037c4d465e',1,'PiHal::millis()'],['../class_pico_hal.html#a4e82e02b4de6d1c192f52fb0ddd1c9c4',1,'PicoHal::millis()'],['../class_tock_hal.html#a1f5aabd073320fbce5f93ad47caf78f2',1,'TockHal::millis()'],['../class_radio_lib_hal.html#a4b8e36ccf8fe372c259b963666513d37',1,'RadioLibHal::millis()']]], + ['mode_283',['mode',['../struct_module_1_1_rf_switch_mode__t.html#a2442217bfabfb124a3f46bb128aa7462',1,'Module::RfSwitchMode_t']]], + ['mode_5fend_5fof_5ftable_284',['MODE_END_OF_TABLE',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa81cdd8986054c2ae5657eb5dfd536770',1,'Module::MODE_END_OF_TABLE()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a2398f9003962c8dc6d199e69ba850917',1,'LR11x0::MODE_END_OF_TABLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a0cffe238c4822ab7f8beddf4ec72052b',1,'STM32WLx::MODE_END_OF_TABLE()']]], + ['mode_5fgnss_285',['MODE_GNSS',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a5f126b8030f06bb14b1659ccce645bad',1,'LR11x0']]], + ['mode_5fidle_286',['MODE_IDLE',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa505acc66c5e0faa83d2216aca5f3e671',1,'Module::MODE_IDLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a8cf0ccad0eec5fde12798e0b0347d6bf',1,'STM32WLx::MODE_IDLE()']]], + ['mode_5frx_287',['MODE_RX',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa7664838bb0818663f55b3354fec8a18f',1,'Module::MODE_RX()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a98f8232e13745eec261cd755c457c034',1,'LR11x0::MODE_RX()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a85ffabc9f35e2683aefdd785bf912172',1,'STM32WLx::MODE_RX()']]], + ['mode_5fstby_288',['MODE_STBY',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7ab223e6d6104d722d61e1d2aa22231012',1,'LR11x0']]], + ['mode_5ftx_289',['MODE_TX',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa269f4bc8ba3eb3d8568feb7b2decf571',1,'Module::MODE_TX()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a71c6230a03a213d3e19185691c6db551',1,'LR11x0::MODE_TX()']]], + ['mode_5ftx_5fhf_290',['MODE_TX_HF',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7acbbc5768e10e22bfdf776faffbfced46',1,'LR11x0']]], + ['mode_5ftx_5fhp_291',['MODE_TX_HP',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a005b9c110df839cd001f82f4660762fd',1,'LR11x0::MODE_TX_HP()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a50df4b8580f1bded3cb61e79f954789e',1,'STM32WLx::MODE_TX_HP()']]], + ['mode_5ftx_5flp_292',['MODE_TX_LP',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a20a2eda9aaf3c7cdb4a55955d6ff3544',1,'STM32WLx']]], + ['mode_5fwifi_293',['MODE_WIFI',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a3bee9db01eab3ac70ff178c95fe8f8ab',1,'LR11x0']]], + ['module_294',['Module',['../class_module.html',1,'Module'],['../class_module.html#a817178405f125e068e88bad62aeb6f3b',1,'Module::Module(RadioLibHal *hal, uint32_t cs, uint32_t irq, uint32_t rst, uint32_t gpio=RADIOLIB_NC)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]], + ['morseclient_295',['MorseClient',['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)'],['../class_morse_client.html',1,'MorseClient']]] ]; diff --git a/search/all_c.js b/search/all_c.js index 494c2c1c..679e9530 100644 --- a/search/all_c.js +++ b/search/all_c.js @@ -1,15 +1,15 @@ var searchData= [ - ['narrowgrid_295',['narrowGrid',['../struct_lr_fhss_rate__t.html#a29dec307a472c34e9fafb10af3c4fb9c',1,'LrFhssRate_t']]], - ['nbtrans_296',['nbTrans',['../struct_lo_ra_w_a_n_event__t.html#a6e46d7cf9c75ff511ad4d063692c16e7',1,'LoRaWANEvent_t']]], - ['newsession_297',['newSession',['../struct_lo_ra_w_a_n_join_event__t.html#a5b233f8c9d2841b8db64df7f079ab0ee',1,'LoRaWANJoinEvent_t']]], - ['nextalmanacid_298',['nextAlmanacId',['../struct_l_r11x0_gnss_almanac_status__t.html#aace4c0ad339bda11ee3c9c409f6492fb',1,'LR11x0GnssAlmanacStatus_t']]], - ['notone_299',['noTone',['../class_pi_hal.html#a06ee4519e6226013798e03f303fe3941',1,'PiHal::noTone()'],['../class_pico_hal.html#af80164483ca2bda3a7dd0cc795549524',1,'PicoHal::noTone()'],['../class_radio_lib_hal.html#a6b5341c59728a1932e33216feee04ea5',1,'RadioLibHal::noTone()'],['../class_a_f_s_k_client.html#a664c1de9b5cd792826a5a77ac5457bae',1,'AFSKClient::noTone()']]], - ['nrf24_300',['nRF24',['../classn_r_f24.html',1,'nRF24'],['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24::nRF24()']]], - ['numchannels_301',['numChannels',['../struct_lo_ra_w_a_n_channel_span__t.html#a50f5701ae19b79a0c8c487673135b2f2',1,'LoRaWANChannelSpan_t']]], - ['numrepeaters_302',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]], - ['numsatsdet_303',['numSatsDet',['../struct_l_r11x0_gnss_result__t.html#a9e3cdbdf86357bfd0226926d7c5d97e3',1,'LR11x0GnssResult_t']]], - ['numsatsused_304',['numSatsUsed',['../struct_l_r11x0_gnss_position__t.html#afd8b7a02f519af12ddb7d0dba5288b3f',1,'LR11x0GnssPosition_t']]], - ['numtones_305',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]], - ['numtxspans_306',['numTxSpans',['../struct_lo_ra_w_a_n_band__t.html#ae58f859a72e64aa4a6fe218ba7e21c10',1,'LoRaWANBand_t']]] + ['narrowgrid_296',['narrowGrid',['../struct_lr_fhss_rate__t.html#a29dec307a472c34e9fafb10af3c4fb9c',1,'LrFhssRate_t']]], + ['nbtrans_297',['nbTrans',['../struct_lo_ra_w_a_n_event__t.html#a6e46d7cf9c75ff511ad4d063692c16e7',1,'LoRaWANEvent_t']]], + ['newsession_298',['newSession',['../struct_lo_ra_w_a_n_join_event__t.html#a5b233f8c9d2841b8db64df7f079ab0ee',1,'LoRaWANJoinEvent_t']]], + ['nextalmanacid_299',['nextAlmanacId',['../struct_l_r11x0_gnss_almanac_status__t.html#aace4c0ad339bda11ee3c9c409f6492fb',1,'LR11x0GnssAlmanacStatus_t']]], + ['notone_300',['noTone',['../class_pi_hal.html#a06ee4519e6226013798e03f303fe3941',1,'PiHal::noTone()'],['../class_pico_hal.html#af80164483ca2bda3a7dd0cc795549524',1,'PicoHal::noTone()'],['../class_radio_lib_hal.html#a6b5341c59728a1932e33216feee04ea5',1,'RadioLibHal::noTone()'],['../class_a_f_s_k_client.html#a664c1de9b5cd792826a5a77ac5457bae',1,'AFSKClient::noTone()']]], + ['nrf24_301',['nRF24',['../classn_r_f24.html',1,'nRF24'],['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24::nRF24()']]], + ['numchannels_302',['numChannels',['../struct_lo_ra_w_a_n_channel_span__t.html#a50f5701ae19b79a0c8c487673135b2f2',1,'LoRaWANChannelSpan_t']]], + ['numrepeaters_303',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]], + ['numsatsdet_304',['numSatsDet',['../struct_l_r11x0_gnss_result__t.html#a9e3cdbdf86357bfd0226926d7c5d97e3',1,'LR11x0GnssResult_t']]], + ['numsatsused_305',['numSatsUsed',['../struct_l_r11x0_gnss_position__t.html#afd8b7a02f519af12ddb7d0dba5288b3f',1,'LR11x0GnssPosition_t']]], + ['numtones_306',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]], + ['numtxspans_307',['numTxSpans',['../struct_lo_ra_w_a_n_band__t.html#ae58f859a72e64aa4a6fe218ba7e21c10',1,'LoRaWANBand_t']]] ]; diff --git a/search/all_d.js b/search/all_d.js index 2c76df5f..d5619610 100644 --- a/search/all_d.js +++ b/search/all_d.js @@ -1,7 +1,7 @@ var searchData= [ - ['operator_3d_307',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()'],['../class_a_x25_client.html#aad6b806d6f8601ec04d6b11bcde37733',1,'AX25Client::operator=()'],['../class_external_radio.html#aee6ca3af0849aed193e96cb0691e89e0',1,'ExternalRadio::operator=()'],['../class_i_t_a2_string.html#a8b572c54ca3fdd1d8ba7ef6ec0dfd384',1,'ITA2String::operator=()']]], - ['opmode_5ft_308',['OpMode_t',['../class_module.html#a5a67b3a63420d762ecba9448671c99bf',1,'Module::OpMode_t()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7',1,'LR11x0::OpMode_t()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787',1,'STM32WLx::OpMode_t()']]], - ['origin_309',['origin',['../struct_l_r11x0_wifi_result__t.html#aedbfd390bee0e0995321e0a5caedac53',1,'LR11x0WifiResult_t']]], - ['out_310',['out',['../class_radio_lib_c_r_c.html#a46616ef58e9eeeca646de0c9fe681050',1,'RadioLibCRC']]] + ['operator_3d_308',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()'],['../class_a_x25_client.html#aad6b806d6f8601ec04d6b11bcde37733',1,'AX25Client::operator=()'],['../class_external_radio.html#aee6ca3af0849aed193e96cb0691e89e0',1,'ExternalRadio::operator=()'],['../class_i_t_a2_string.html#a8b572c54ca3fdd1d8ba7ef6ec0dfd384',1,'ITA2String::operator=()']]], + ['opmode_5ft_309',['OpMode_t',['../class_module.html#a5a67b3a63420d762ecba9448671c99bf',1,'Module::OpMode_t()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7',1,'LR11x0::OpMode_t()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787',1,'STM32WLx::OpMode_t()']]], + ['origin_310',['origin',['../struct_l_r11x0_wifi_result__t.html#aedbfd390bee0e0995321e0a5caedac53',1,'LR11x0WifiResult_t']]], + ['out_311',['out',['../class_radio_lib_c_r_c.html#a46616ef58e9eeeca646de0c9fe681050',1,'RadioLibCRC']]] ]; diff --git a/search/all_e.js b/search/all_e.js index a420cf33..57e063bd 100644 --- a/search/all_e.js +++ b/search/all_e.js @@ -1,24 +1,24 @@ var searchData= [ - ['packetmode_311',['packetMode',['../class_s_x127x.html#a0995088d37689a3c240a1af791df6cf1',1,'SX127x::packetMode()'],['../class_c_c1101.html#a38f6978c757b0dd73e3ef98164a735a2',1,'CC1101::packetMode()'],['../class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f',1,'RF69::packetMode()'],['../class_si443x.html#a616eb24c4b11c5d39caaade160be8092',1,'Si443x::packetMode()']]], - ['pagerclient_312',['PagerClient',['../class_pager_client.html',1,'PagerClient'],['../class_pager_client.html#a9f978120467b13104fb356e9b7d855ec',1,'PagerClient::PagerClient()']]], - ['parsestatuscb_313',['parseStatusCb',['../struct_module_1_1_s_p_i_config__t.html#a9619dcb8b269bcbd125e5a05e6c0fc77',1,'Module::SPIConfig_t']]], - ['payloadlenmax_314',['payloadLenMax',['../struct_lo_ra_w_a_n_band__t.html#a9b8143ac9bbf3ed45e7cc80fc71ce055',1,'LoRaWANBand_t']]], - ['periodbeacon_315',['periodBeacon',['../struct_l_r11x0_wifi_result_full__t.html#a0e2539bf62ddd7fb7a9671f4e8c58bf8',1,'LR11x0WifiResultFull_t']]], - ['persist_316',['persist',['../struct_lo_ra_w_a_n_mac_command__t.html#aa253350bc95c821bf42eaee170922355',1,'LoRaWANMacCommand_t']]], - ['phioffset_317',['phiOffset',['../struct_l_r11x0_wifi_result_full__t.html#a37d3203c39ca6d6f0ab42662a09bab13',1,'LR11x0WifiResultFull_t']]], - ['physicallayer_318',['PhysicalLayer',['../class_physical_layer.html#add63d7d4fa8b14df5e185813794a49d5',1,'PhysicalLayer::PhysicalLayer()'],['../class_physical_layer.html',1,'PhysicalLayer']]], - ['picohal_319',['PicoHal',['../class_pico_hal.html',1,'']]], - ['pihal_320',['PiHal',['../class_pi_hal.html',1,'']]], - ['pinmode_321',['pinMode',['../class_pico_hal.html#ac539134f4517ef79de49832bb86392f2',1,'PicoHal::pinMode()'],['../class_stm32wlx_hal.html#a70dd9f6fb6c0307e2d9d363ce6d7f2a2',1,'Stm32wlxHal::pinMode()'],['../class_radio_lib_hal.html#af01b4e5e01352b99ce4329c9f9f8433b',1,'RadioLibHal::pinMode()'],['../class_pi_hal.html#ad2986ed862d4c429d6527bd54e472530',1,'PiHal::pinMode()'],['../class_esp_hal.html#a38acd30617d2b0c9b143ea1107ba55f7',1,'EspHal::pinMode()'],['../class_tock_hal.html#ade8ecf3f37cc3c6ce5eda9b523ffb912',1,'TockHal::pinMode()']]], - ['pintointerrupt_322',['pinToInterrupt',['../class_radio_lib_hal.html#a300a47d4d43dbe0c624f6e5dc1cf7a00',1,'RadioLibHal']]], - ['poly_323',['poly',['../class_radio_lib_c_r_c.html#af3942e08bde9d9d127f735bd10392f6d',1,'RadioLibCRC']]], - ['position_20of_20bit_20field_20widths_20in_20module_3a_3aspiconfig_20width_20array_2e_324',['Position of bit field widths in Module::spiConfig width array.',['../group__module__spi__width__pos.html',1,'']]], - ['position_20of_20commands_20in_20module_3a_3aspiconfig_20command_20array_2e_325',['Position of commands in Module::spiConfig command array.',['../group__module__spi__command__pos.html',1,'']]], - ['power_326',['power',['../struct_lo_ra_w_a_n_event__t.html#a49eebe64d351bb2e91901ef8fae044ff',1,'LoRaWANEvent_t']]], - ['powermax_327',['powerMax',['../struct_lo_ra_w_a_n_band__t.html#a43fdafd540c93348f9b4a8958e021a4c',1,'LoRaWANBand_t']]], - ['powernumsteps_328',['powerNumSteps',['../struct_lo_ra_w_a_n_band__t.html#aa22d7d7670846b36d3104439d18e5f15',1,'LoRaWANBand_t']]], - ['printglyph_329',['printGlyph',['../class_hell_client.html#a68c4a74910756ad251e626a0b4c8c267',1,'HellClient']]], - ['protocolid_330',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]], - ['pulsein_331',['pulseIn',['../class_esp_hal.html#a02d00f8b2337d39390910f453e140de8',1,'EspHal::pulseIn()'],['../class_pi_hal.html#a3350f8cc20008dbe69e7180599fb80ee',1,'PiHal::pulseIn()'],['../class_pico_hal.html#a504806e3adb1a5b9f6784478bae16c10',1,'PicoHal::pulseIn()'],['../class_tock_hal.html#a416ee97a17f37cf0e686096050523a28',1,'TockHal::pulseIn()'],['../class_radio_lib_hal.html#a3f38db9475dcd0967d6dfe240b8695c9',1,'RadioLibHal::pulseIn()']]] + ['packetmode_312',['packetMode',['../class_s_x127x.html#a0995088d37689a3c240a1af791df6cf1',1,'SX127x::packetMode()'],['../class_c_c1101.html#a38f6978c757b0dd73e3ef98164a735a2',1,'CC1101::packetMode()'],['../class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f',1,'RF69::packetMode()'],['../class_si443x.html#a616eb24c4b11c5d39caaade160be8092',1,'Si443x::packetMode()']]], + ['pagerclient_313',['PagerClient',['../class_pager_client.html',1,'PagerClient'],['../class_pager_client.html#a9f978120467b13104fb356e9b7d855ec',1,'PagerClient::PagerClient()']]], + ['parsestatuscb_314',['parseStatusCb',['../struct_module_1_1_s_p_i_config__t.html#a9619dcb8b269bcbd125e5a05e6c0fc77',1,'Module::SPIConfig_t']]], + ['payloadlenmax_315',['payloadLenMax',['../struct_lo_ra_w_a_n_band__t.html#a9b8143ac9bbf3ed45e7cc80fc71ce055',1,'LoRaWANBand_t']]], + ['periodbeacon_316',['periodBeacon',['../struct_l_r11x0_wifi_result_full__t.html#a0e2539bf62ddd7fb7a9671f4e8c58bf8',1,'LR11x0WifiResultFull_t']]], + ['persist_317',['persist',['../struct_lo_ra_w_a_n_mac_command__t.html#aa253350bc95c821bf42eaee170922355',1,'LoRaWANMacCommand_t']]], + ['phioffset_318',['phiOffset',['../struct_l_r11x0_wifi_result_full__t.html#a37d3203c39ca6d6f0ab42662a09bab13',1,'LR11x0WifiResultFull_t']]], + ['physicallayer_319',['PhysicalLayer',['../class_physical_layer.html#add63d7d4fa8b14df5e185813794a49d5',1,'PhysicalLayer::PhysicalLayer()'],['../class_physical_layer.html',1,'PhysicalLayer']]], + ['picohal_320',['PicoHal',['../class_pico_hal.html',1,'']]], + ['pihal_321',['PiHal',['../class_pi_hal.html',1,'']]], + ['pinmode_322',['pinMode',['../class_pico_hal.html#ac539134f4517ef79de49832bb86392f2',1,'PicoHal::pinMode()'],['../class_stm32wlx_hal.html#a70dd9f6fb6c0307e2d9d363ce6d7f2a2',1,'Stm32wlxHal::pinMode()'],['../class_radio_lib_hal.html#af01b4e5e01352b99ce4329c9f9f8433b',1,'RadioLibHal::pinMode()'],['../class_pi_hal.html#ad2986ed862d4c429d6527bd54e472530',1,'PiHal::pinMode()'],['../class_esp_hal.html#a38acd30617d2b0c9b143ea1107ba55f7',1,'EspHal::pinMode()'],['../class_tock_hal.html#ade8ecf3f37cc3c6ce5eda9b523ffb912',1,'TockHal::pinMode()']]], + ['pintointerrupt_323',['pinToInterrupt',['../class_radio_lib_hal.html#a300a47d4d43dbe0c624f6e5dc1cf7a00',1,'RadioLibHal']]], + ['poly_324',['poly',['../class_radio_lib_c_r_c.html#af3942e08bde9d9d127f735bd10392f6d',1,'RadioLibCRC']]], + ['position_20of_20bit_20field_20widths_20in_20module_3a_3aspiconfig_20width_20array_2e_325',['Position of bit field widths in Module::spiConfig width array.',['../group__module__spi__width__pos.html',1,'']]], + ['position_20of_20commands_20in_20module_3a_3aspiconfig_20command_20array_2e_326',['Position of commands in Module::spiConfig command array.',['../group__module__spi__command__pos.html',1,'']]], + ['power_327',['power',['../struct_lo_ra_w_a_n_event__t.html#a49eebe64d351bb2e91901ef8fae044ff',1,'LoRaWANEvent_t']]], + ['powermax_328',['powerMax',['../struct_lo_ra_w_a_n_band__t.html#a43fdafd540c93348f9b4a8958e021a4c',1,'LoRaWANBand_t']]], + ['powernumsteps_329',['powerNumSteps',['../struct_lo_ra_w_a_n_band__t.html#aa22d7d7670846b36d3104439d18e5f15',1,'LoRaWANBand_t']]], + ['printglyph_330',['printGlyph',['../class_hell_client.html#a68c4a74910756ad251e626a0b4c8c267',1,'HellClient']]], + ['protocolid_331',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]], + ['pulsein_332',['pulseIn',['../class_esp_hal.html#a02d00f8b2337d39390910f453e140de8',1,'EspHal::pulseIn()'],['../class_pi_hal.html#a3350f8cc20008dbe69e7180599fb80ee',1,'PiHal::pulseIn()'],['../class_pico_hal.html#a504806e3adb1a5b9f6784478bae16c10',1,'PicoHal::pulseIn()'],['../class_tock_hal.html#a416ee97a17f37cf0e686096050523a28',1,'TockHal::pulseIn()'],['../class_radio_lib_hal.html#a3f38db9475dcd0967d6dfe240b8695c9',1,'RadioLibHal::pulseIn()']]] ]; diff --git a/search/all_f.js b/search/all_f.js index 2aae6bb4..ce1aa760 100644 --- a/search/all_f.js +++ b/search/all_f.js @@ -1,160 +1,160 @@ var searchData= [ - ['radiolib_20documentation_332',['RadioLib Documentation',['../index.html',1,'']]], - ['radiolib_5faprs_5fmic_5fe_5ftype_5fcommitted_333',['RADIOLIB_APRS_MIC_E_TYPE_COMMITTED',['../group__mic__e__message__types.html#ga4f98902a4ba18f048ba716063d8c5534',1,'APRS.h']]], - ['radiolib_5faprs_5fmic_5fe_5ftype_5femergency_334',['RADIOLIB_APRS_MIC_E_TYPE_EMERGENCY',['../group__mic__e__message__types.html#ga935e3277c7eac8c8f7a3797c59034f61',1,'APRS.h']]], - ['radiolib_5faprs_5fmic_5fe_5ftype_5fen_5froute_335',['RADIOLIB_APRS_MIC_E_TYPE_EN_ROUTE',['../group__mic__e__message__types.html#ga4f11b914724d2a31eaccb8c863b1a6ef',1,'APRS.h']]], - ['radiolib_5faprs_5fmic_5fe_5ftype_5fin_5fservice_336',['RADIOLIB_APRS_MIC_E_TYPE_IN_SERVICE',['../group__mic__e__message__types.html#ga44c6990e22d40efb6bfb60cfa60debd9',1,'APRS.h']]], - ['radiolib_5faprs_5fmic_5fe_5ftype_5foff_5fduty_337',['RADIOLIB_APRS_MIC_E_TYPE_OFF_DUTY',['../group__mic__e__message__types.html#gaa575e4cb70c8a1b3b7dbdc6034a0fd24',1,'APRS.h']]], - ['radiolib_5faprs_5fmic_5fe_5ftype_5fpriority_338',['RADIOLIB_APRS_MIC_E_TYPE_PRIORITY',['../group__mic__e__message__types.html#ga79ad3f863c91bf8000fcd0e8d2fea4b1',1,'APRS.h']]], - ['radiolib_5faprs_5fmic_5fe_5ftype_5freturning_339',['RADIOLIB_APRS_MIC_E_TYPE_RETURNING',['../group__mic__e__message__types.html#ga181c0b7ecf6d936e1c6cab13c29e8ee6',1,'APRS.h']]], - ['radiolib_5faprs_5fmic_5fe_5ftype_5fspecial_340',['RADIOLIB_APRS_MIC_E_TYPE_SPECIAL',['../group__mic__e__message__types.html#ga0d877e52c45bcd651c25a12a08c7c36c',1,'APRS.h']]], - ['radiolib_5fchannel_5ffree_341',['RADIOLIB_CHANNEL_FREE',['../group__status__codes.html#ga4673596b2cc7290be5ee0a2e9ee42718',1,'TypeDef.h']]], - ['radiolib_5fencoding_5fmanchester_342',['RADIOLIB_ENCODING_MANCHESTER',['../group__config__encoding.html#gaffff394bbc47c05ed1bfde2e16a596e8',1,'TypeDef.h']]], - ['radiolib_5fencoding_5fnrz_343',['RADIOLIB_ENCODING_NRZ',['../group__config__encoding.html#ga0253ae0c289d950e36106102a983f9cb',1,'TypeDef.h']]], - ['radiolib_5fencoding_5fwhitening_344',['RADIOLIB_ENCODING_WHITENING',['../group__config__encoding.html#ga0bfc51be5abf0b434a49540bddb65328',1,'TypeDef.h']]], - ['radiolib_5ferr_5fa_5ffcnt_5fdown_5finvalid_345',['RADIOLIB_ERR_A_FCNT_DOWN_INVALID',['../group__status__codes.html#ga81bd164044ef4d523464ad17d1e473bb',1,'TypeDef.h']]], - ['radiolib_5ferr_5fack_5fnot_5freceived_346',['RADIOLIB_ERR_ACK_NOT_RECEIVED',['../group__status__codes.html#gafeff72bd7b618959d86b804a11f09063',1,'TypeDef.h']]], - ['radiolib_5ferr_5faddress_5fnot_5ffound_347',['RADIOLIB_ERR_ADDRESS_NOT_FOUND',['../group__status__codes.html#ga806183ed238159d317132b0d44d7a0a2',1,'TypeDef.h']]], - ['radiolib_5ferr_5fchecksum_5fmismatch_348',['RADIOLIB_ERR_CHECKSUM_MISMATCH',['../group__status__codes.html#gace49554c055f7b2d02ef0c39c006529c',1,'TypeDef.h']]], - ['radiolib_5ferr_5fchip_5fnot_5ffound_349',['RADIOLIB_ERR_CHIP_NOT_FOUND',['../group__status__codes.html#ga5d11e8ce64fb412c2169d0f30b9e9c62',1,'TypeDef.h']]], - ['radiolib_5ferr_5fcommand_5fqueue_5ffull_350',['RADIOLIB_ERR_COMMAND_QUEUE_FULL',['../group__status__codes.html#ga442250961d11f2582857cd1eafe0df17',1,'TypeDef.h']]], - ['radiolib_5ferr_5fcommand_5fqueue_5fitem_5fnot_5ffound_351',['RADIOLIB_ERR_COMMAND_QUEUE_ITEM_NOT_FOUND',['../group__status__codes.html#gac4e026589229f7f737c77c641447d180',1,'TypeDef.h']]], - ['radiolib_5ferr_5fcrc_5fmismatch_352',['RADIOLIB_ERR_CRC_MISMATCH',['../group__status__codes.html#ga9da949184e940a4fa6f4afb63c315963',1,'TypeDef.h']]], - ['radiolib_5ferr_5fdownlink_5fmalformed_353',['RADIOLIB_ERR_DOWNLINK_MALFORMED',['../group__status__codes.html#gab120f980c06c581cd071452464199aac',1,'TypeDef.h']]], - ['radiolib_5ferr_5fdwell_5ftime_5fexceeded_354',['RADIOLIB_ERR_DWELL_TIME_EXCEEDED',['../group__status__codes.html#gac78ef1a402159a3be27a6b92268106b7',1,'TypeDef.h']]], - ['radiolib_5ferr_5fgnss_5fdemod_5foffset_355',['RADIOLIB_ERR_GNSS_DEMOD_OFFSET',['../group__status__codes.html#ga95f44b9fd5db8220158e8dad73506cd9',1,'TypeDef.h']]], - ['radiolib_5ferr_5fgnss_5fsolver_5foffset_356',['RADIOLIB_ERR_GNSS_SOLVER_OFFSET',['../group__status__codes.html#ga25700f55a8dfaa3aa8076b51528d74f9',1,'TypeDef.h']]], - ['radiolib_5ferr_5fgnss_5fsubframe_5fnot_5favailable_357',['RADIOLIB_ERR_GNSS_SUBFRAME_NOT_AVAILABLE',['../group__status__codes.html#ga01584876f01c1815ab27afc364649966',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5faddress_5fwidth_358',['RADIOLIB_ERR_INVALID_ADDRESS_WIDTH',['../group__status__codes.html#gafbc04b924d23cba05307e94972d7d607',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fbandwidth_359',['RADIOLIB_ERR_INVALID_BANDWIDTH',['../group__status__codes.html#ga0710b406a7e12ab6e0f77fdb3374cd9a',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fbit_5frange_360',['RADIOLIB_ERR_INVALID_BIT_RANGE',['../group__status__codes.html#ga508806c18663156b0d00d1a21c957468',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fbit_5frate_361',['RADIOLIB_ERR_INVALID_BIT_RATE',['../group__status__codes.html#gac192dbf5134a10ed561100b01129224c',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fbit_5frate_5fbw_5fratio_362',['RADIOLIB_ERR_INVALID_BIT_RATE_BW_RATIO',['../group__status__codes.html#ga733a7f3f12109103384522dac4d1146e',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fbit_5frate_5ftolerance_5fvalue_363',['RADIOLIB_ERR_INVALID_BIT_RATE_TOLERANCE_VALUE',['../group__status__codes.html#ga4482925df56b8fc069c6a418d74380d7',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fcallsign_364',['RADIOLIB_ERR_INVALID_CALLSIGN',['../group__status__codes.html#gac1c27fd5a9ec38601a53c1c5ad428063',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fcid_365',['RADIOLIB_ERR_INVALID_CID',['../group__status__codes.html#ga5133c0c17301cfc39ac6121c5851292f',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fcoding_5frate_366',['RADIOLIB_ERR_INVALID_CODING_RATE',['../group__status__codes.html#ga4e64d3ed035b21bfb81cf2bca35b2ecb',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fcrc_5fconfiguration_367',['RADIOLIB_ERR_INVALID_CRC_CONFIGURATION',['../group__status__codes.html#gaedc74820131d6cb654302d776360f969',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fcurrent_5flimit_368',['RADIOLIB_ERR_INVALID_CURRENT_LIMIT',['../group__status__codes.html#gac314f4bd89f306c8a16237be9a9c80cb',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fdata_5frate_369',['RADIOLIB_ERR_INVALID_DATA_RATE',['../group__status__codes.html#ga9a098ceda0c3f153515c8cc36f1d683e',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fdata_5fshaping_370',['RADIOLIB_ERR_INVALID_DATA_SHAPING',['../group__status__codes.html#gaf16af86f43ac2946e82a1e87aea2882b',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fdio_5fpin_371',['RADIOLIB_ERR_INVALID_DIO_PIN',['../group__status__codes.html#ga193402d53d354b58c70e5324d1e5b531',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fencoding_372',['RADIOLIB_ERR_INVALID_ENCODING',['../group__status__codes.html#ga41b17f0207ad1aa10d666c8a9e4830c5',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5ffrequency_373',['RADIOLIB_ERR_INVALID_FREQUENCY',['../group__status__codes.html#ga9f80eb00fad12bb0bec384ad83b6941b',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5ffrequency_5fdeviation_374',['RADIOLIB_ERR_INVALID_FREQUENCY_DEVIATION',['../group__status__codes.html#gaabe141287f2d6ba723658309f4464662',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5ffunction_375',['RADIOLIB_ERR_INVALID_FUNCTION',['../group__status__codes.html#ga025420df476275dc901f67dd6ae13a9c',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fgain_376',['RADIOLIB_ERR_INVALID_GAIN',['../group__status__codes.html#ga908f3a5ab6937d28536791c96cf9de23',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fimage_5fquality_377',['RADIOLIB_ERR_INVALID_IMAGE_QUALITY',['../group__status__codes.html#gad195c8d9ba523944ecf41dbb7cb9baa3',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fimage_5fsize_378',['RADIOLIB_ERR_INVALID_IMAGE_SIZE',['../group__status__codes.html#ga44f09021bdc7fdd4b57db3ab8725b5a1',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5firq_379',['RADIOLIB_ERR_INVALID_IRQ',['../group__status__codes.html#ga9473a1146463e7f6cd4f0a06ef7c7b77',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fmic_5fe_5ftelemetry_380',['RADIOLIB_ERR_INVALID_MIC_E_TELEMETRY',['../group__status__codes.html#gaeafdfcb2b10b08385feea93163fc3918',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fmic_5fe_5ftelemetry_5flength_381',['RADIOLIB_ERR_INVALID_MIC_E_TELEMETRY_LENGTH',['../group__status__codes.html#ga85e34d08b298a4125f77ddede011db3b',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fmode_382',['RADIOLIB_ERR_INVALID_MODE',['../group__status__codes.html#ga4871133fa9b6d7cdbee82daf2226d373',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fmodulation_383',['RADIOLIB_ERR_INVALID_MODULATION',['../group__status__codes.html#gab0f9cb8ee829a8504fc110de18c4ff67',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fmodulation_5fparameters_384',['RADIOLIB_ERR_INVALID_MODULATION_PARAMETERS',['../group__status__codes.html#ga7f57f6eddc68b9a59cceab4fdf6556ba',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fnum_5fbroad_5faddrs_385',['RADIOLIB_ERR_INVALID_NUM_BROAD_ADDRS',['../group__status__codes.html#gae0e8ebbd71661b8a107b01befc997e5e',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fnum_5frepeaters_386',['RADIOLIB_ERR_INVALID_NUM_REPEATERS',['../group__status__codes.html#ga47f1cc22b76c6b8685bd7e265ab78a1a',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fnum_5fsamples_387',['RADIOLIB_ERR_INVALID_NUM_SAMPLES',['../group__status__codes.html#gaa5d0e76a10099c6e1cfd8f24e48995a2',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fook_5frssi_5fpeak_5ftype_388',['RADIOLIB_ERR_INVALID_OOK_RSSI_PEAK_TYPE',['../group__status__codes.html#gabc97efb9f410af5c0a9c1e5f882e41d8',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5foutput_5fpower_389',['RADIOLIB_ERR_INVALID_OUTPUT_POWER',['../group__status__codes.html#ga55da4b2ee0661872a37f1c57fc61c666',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fpayload_390',['RADIOLIB_ERR_INVALID_PAYLOAD',['../group__status__codes.html#ga5529b54dc67d5ccdc2a29989ebf43711',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fpipe_5fnumber_391',['RADIOLIB_ERR_INVALID_PIPE_NUMBER',['../group__status__codes.html#ga3ed4264643f97b76f9f3cf242338573d',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fport_392',['RADIOLIB_ERR_INVALID_PORT',['../group__status__codes.html#ga96db1938b39b1b9cb7e8229718f08ff2',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fpreamble_5flength_393',['RADIOLIB_ERR_INVALID_PREAMBLE_LENGTH',['../group__status__codes.html#ga9dc55947447ed9c91217f86a9bca75bb',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5frepeater_5fcallsign_394',['RADIOLIB_ERR_INVALID_REPEATER_CALLSIGN',['../group__status__codes.html#ga684497ce1c94442b5fe0396ea4ec930d',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5frevision_395',['RADIOLIB_ERR_INVALID_REVISION',['../group__status__codes.html#ga3de55ebac1629efa9c64a9d6c201482a',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5frssi_5foffset_396',['RADIOLIB_ERR_INVALID_RSSI_OFFSET',['../group__status__codes.html#ga0f1e3d5da7867511500fcd4a43f4df2f',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5frssi_5fthreshold_397',['RADIOLIB_ERR_INVALID_RSSI_THRESHOLD',['../group__status__codes.html#ga0f0aad5acd6d24fc7da9269664912d48',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5frtty_5fshift_398',['RADIOLIB_ERR_INVALID_RTTY_SHIFT',['../group__status__codes.html#ga6b75df06d8c18366f85848331c49a1af',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5frx_5fbandwidth_399',['RADIOLIB_ERR_INVALID_RX_BANDWIDTH',['../group__status__codes.html#gaa1f484c73f9abe05408c84fe5891539b',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5frx_5fperiod_400',['RADIOLIB_ERR_INVALID_RX_PERIOD',['../group__status__codes.html#ga4b30b822814dc8d49d3f3229011c8aff',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fsleep_5fperiod_401',['RADIOLIB_ERR_INVALID_SLEEP_PERIOD',['../group__status__codes.html#ga0066a30650888853a622413a579d891c',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fspreading_5ffactor_402',['RADIOLIB_ERR_INVALID_SPREADING_FACTOR',['../group__status__codes.html#ga0e196b0ec8efd606cd60592f88b626e8',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fssdv_5fmode_403',['RADIOLIB_ERR_INVALID_SSDV_MODE',['../group__status__codes.html#ga5d57c9ea944fdad3760fa54ed033ace5',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fsubsampling_404',['RADIOLIB_ERR_INVALID_SUBSAMPLING',['../group__status__codes.html#ga8c0c19441712a0f8749743ed9fbe4f39',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fsymbol_405',['RADIOLIB_ERR_INVALID_SYMBOL',['../group__status__codes.html#ga7f9712de2117b89215410fc18776dc84',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fsync_5fword_406',['RADIOLIB_ERR_INVALID_SYNC_WORD',['../group__status__codes.html#ga5584a219fcb1a8e1789142b18a3a511e',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5ftcxo_5fvoltage_407',['RADIOLIB_ERR_INVALID_TCXO_VOLTAGE',['../group__status__codes.html#ga691e968e9f057a6cecb37a5dd5d8bd68',1,'TypeDef.h']]], - ['radiolib_5ferr_5finvalid_5fwifi_5ftype_408',['RADIOLIB_ERR_INVALID_WIFI_TYPE',['../group__status__codes.html#gac0673e69b893d8f23e339f218d376a52',1,'TypeDef.h']]], - ['radiolib_5ferr_5fjoin_5fnonce_5finvalid_409',['RADIOLIB_ERR_JOIN_NONCE_INVALID',['../group__status__codes.html#ga68c7f7b8c699dbd6524da685be476fca',1,'TypeDef.h']]], - ['radiolib_5ferr_5flora_5fheader_5fdamaged_410',['RADIOLIB_ERR_LORA_HEADER_DAMAGED',['../group__status__codes.html#gab152891bb13f6f70e6631820904e9d90',1,'TypeDef.h']]], - ['radiolib_5ferr_5fmemory_5fallocation_5ffailed_411',['RADIOLIB_ERR_MEMORY_ALLOCATION_FAILED',['../group__status__codes.html#ga7afc28738967d4d91c13d1d412d6f5e4',1,'TypeDef.h']]], - ['radiolib_5ferr_5fmic_5fe_5ftelemetry_5fstatus_412',['RADIOLIB_ERR_MIC_E_TELEMETRY_STATUS',['../group__status__codes.html#ga54a2fc9441c25b56979c6edab097ff12',1,'TypeDef.h']]], - ['radiolib_5ferr_5fn_5ffcnt_5fdown_5finvalid_413',['RADIOLIB_ERR_N_FCNT_DOWN_INVALID',['../group__status__codes.html#gac67f8a734c2011f738db1a3159403e09',1,'TypeDef.h']]], - ['radiolib_5ferr_5fnetwork_5fnot_5fjoined_414',['RADIOLIB_ERR_NETWORK_NOT_JOINED',['../group__status__codes.html#gafc3bca002b982af27b703c30b2d12df3',1,'TypeDef.h']]], - ['radiolib_5ferr_5fno_5fchannel_5favailable_415',['RADIOLIB_ERR_NO_CHANNEL_AVAILABLE',['../group__status__codes.html#ga6b70881b5be84138ef558e832fbb254c',1,'TypeDef.h']]], - ['radiolib_5ferr_5fno_5fjoin_5faccept_416',['RADIOLIB_ERR_NO_JOIN_ACCEPT',['../group__status__codes.html#ga3f645f530e74765d4ef6ab5e3b01dd52',1,'TypeDef.h']]], - ['radiolib_5ferr_5fno_5frx_5fwindow_417',['RADIOLIB_ERR_NO_RX_WINDOW',['../group__status__codes.html#gacf823b58331e32d37a9378a114d7d08e',1,'TypeDef.h']]], - ['radiolib_5ferr_5fnonces_5fdiscarded_418',['RADIOLIB_ERR_NONCES_DISCARDED',['../group__status__codes.html#ga43dcb8186ad075dd1386da167480b396',1,'TypeDef.h']]], - ['radiolib_5ferr_5fnone_419',['RADIOLIB_ERR_NONE',['../group__status__codes.html#ga4c1dd3c7f2b37c973a047c58506729f5',1,'TypeDef.h']]], - ['radiolib_5ferr_5fnull_5fpointer_420',['RADIOLIB_ERR_NULL_POINTER',['../group__status__codes.html#gaad31ccea119011fd05441ed83e0f3b3d',1,'TypeDef.h']]], - ['radiolib_5ferr_5fpacket_5ftoo_5flong_421',['RADIOLIB_ERR_PACKET_TOO_LONG',['../group__status__codes.html#ga4602702eac86c5c3a13b93a06d846fac',1,'TypeDef.h']]], - ['radiolib_5ferr_5franging_5ftimeout_422',['RADIOLIB_ERR_RANGING_TIMEOUT',['../group__status__codes.html#gabf529b0d150265c071c2255cb45f9e4f',1,'TypeDef.h']]], - ['radiolib_5ferr_5frx_5ftimeout_423',['RADIOLIB_ERR_RX_TIMEOUT',['../group__status__codes.html#gafadba2c16b7296cbaf96978e8eadfa45',1,'TypeDef.h']]], - ['radiolib_5ferr_5fsession_5fdiscarded_424',['RADIOLIB_ERR_SESSION_DISCARDED',['../group__status__codes.html#gadf08d3de797fe01de54f7d26cc0b0d48',1,'TypeDef.h']]], - ['radiolib_5ferr_5fspi_5fcmd_5ffailed_425',['RADIOLIB_ERR_SPI_CMD_FAILED',['../group__status__codes.html#gabc695a4fae689e856ae6f618e334066f',1,'TypeDef.h']]], - ['radiolib_5ferr_5fspi_5fcmd_5finvalid_426',['RADIOLIB_ERR_SPI_CMD_INVALID',['../group__status__codes.html#gac1902fa5b8d5c9469dd9261880ba2957',1,'TypeDef.h']]], - ['radiolib_5ferr_5fspi_5fcmd_5ftimeout_427',['RADIOLIB_ERR_SPI_CMD_TIMEOUT',['../group__status__codes.html#ga72b849c71b8fdf112d318518a3b1ac7d',1,'TypeDef.h']]], - ['radiolib_5ferr_5fspi_5fwrite_5ffailed_428',['RADIOLIB_ERR_SPI_WRITE_FAILED',['../group__status__codes.html#ga31e0864281b5ea21c53206c49877b670',1,'TypeDef.h']]], - ['radiolib_5ferr_5ftx_5ftimeout_429',['RADIOLIB_ERR_TX_TIMEOUT',['../group__status__codes.html#gac4185b9eaead4de110763759f01e1f4f',1,'TypeDef.h']]], - ['radiolib_5ferr_5funknown_430',['RADIOLIB_ERR_UNKNOWN',['../group__status__codes.html#gacc0baeb3e5fc99760a07d18ba55531b6',1,'TypeDef.h']]], - ['radiolib_5ferr_5funsupported_431',['RADIOLIB_ERR_UNSUPPORTED',['../group__status__codes.html#ga00c1c2b500feea59d0d47dddd7179be1',1,'TypeDef.h']]], - ['radiolib_5ferr_5funsupported_5fencoding_432',['RADIOLIB_ERR_UNSUPPORTED_ENCODING',['../group__status__codes.html#gae4d77c5138cc5f21fb2af4b0791e9f81',1,'TypeDef.h']]], - ['radiolib_5ferr_5fuplink_5funavailable_433',['RADIOLIB_ERR_UPLINK_UNAVAILABLE',['../group__status__codes.html#ga8b424bb8992a6ac80e2ba46667bf9c6e',1,'TypeDef.h']]], - ['radiolib_5ferr_5fwrong_5fmodem_434',['RADIOLIB_ERR_WRONG_MODEM',['../group__status__codes.html#gad95d2455d580745d41ef2f319c6585f8',1,'TypeDef.h']]], - ['radiolib_5flora_5fdetected_435',['RADIOLIB_LORA_DETECTED',['../group__status__codes.html#ga58ff08f4dba334cf8e26474ec2d3facd',1,'TypeDef.h']]], - ['radiolib_5florawan_5fnew_5fsession_436',['RADIOLIB_LORAWAN_NEW_SESSION',['../group__status__codes.html#gae99db161b4e00a44c0a60951ddb7c8a6',1,'TypeDef.h']]], - ['radiolib_5florawan_5fsession_5frestored_437',['RADIOLIB_LORAWAN_SESSION_RESTORED',['../group__status__codes.html#ga633e2f826e44d4575ca67459fda5d660',1,'TypeDef.h']]], - ['radiolib_5flr1110_5ffirmware_5fattr_438',['RADIOLIB_LR1110_FIRMWARE_ATTR',['../lr1110__transceiver__0305_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0305.h'],['../lr1110__transceiver__0306_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0401_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0401.h'],['../lr1120__transceiver__0201_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1120_transceiver_0201.h'],['../lr1121__transceiver__0103_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1121_transceiver_0103.h']]], - ['radiolib_5fpreamble_5fdetected_439',['RADIOLIB_PREAMBLE_DETECTED',['../group__status__codes.html#ga382dc113e93f196401914853ec176b18',1,'TypeDef.h']]], - ['radiolib_5fshaping_5f0_5f3_440',['RADIOLIB_SHAPING_0_3',['../group__config__shaping.html#ga6a562fca42573d39e4a214c293756f64',1,'TypeDef.h']]], - ['radiolib_5fshaping_5f0_5f5_441',['RADIOLIB_SHAPING_0_5',['../group__config__shaping.html#gaa778d14c29d21fe329137a28a3f54a5d',1,'TypeDef.h']]], - ['radiolib_5fshaping_5f0_5f7_442',['RADIOLIB_SHAPING_0_7',['../group__config__shaping.html#ga677dde0ea956d5e99af30cf501a727ad',1,'TypeDef.h']]], - ['radiolib_5fshaping_5f1_5f0_443',['RADIOLIB_SHAPING_1_0',['../group__config__shaping.html#ga80e2185af1123c7632aa40cad1691e6d',1,'TypeDef.h']]], - ['radiolib_5fshaping_5fnone_444',['RADIOLIB_SHAPING_NONE',['../group__config__shaping.html#gaa9495bc5eb54df04f2ed7b1ccbb4f277',1,'TypeDef.h']]], - ['radiolib_5fstandby_5fcold_445',['RADIOLIB_STANDBY_COLD',['../group__config__standby.html#ga37f835c3cd3323e2cde1fe1ab7c635e7',1,'TypeDef.h']]], - ['radiolib_5fstandby_5fdefault_446',['RADIOLIB_STANDBY_DEFAULT',['../group__config__standby.html#ga3f3398b244d584ad94c691f60f2d9517',1,'TypeDef.h']]], - ['radiolib_5fstandby_5fwarm_447',['RADIOLIB_STANDBY_WARM',['../group__config__standby.html#ga9c4af50dde47d157538b1877190ea7b5',1,'TypeDef.h']]], - ['radiolibaes128_448',['RadioLibAES128',['../class_radio_lib_a_e_s128.html',1,'RadioLibAES128'],['../class_radio_lib_a_e_s128.html#a11f816221d1c06432ff80f2678ef46fe',1,'RadioLibAES128::RadioLibAES128()']]], - ['radiolibbch_449',['RadioLibBCH',['../class_radio_lib_b_c_h.html',1,'RadioLibBCH'],['../class_radio_lib_b_c_h.html#a39d55c0292e4c9337ee0672cd5241118',1,'RadioLibBCH::RadioLibBCH()']]], - ['radiolibconvcode_450',['RadioLibConvCode',['../class_radio_lib_conv_code.html#a4fbe7c4e90969f0be10b8484b405df78',1,'RadioLibConvCode::RadioLibConvCode()'],['../class_radio_lib_conv_code.html',1,'RadioLibConvCode']]], - ['radiolibcrc_451',['RadioLibCRC',['../class_radio_lib_c_r_c.html',1,'RadioLibCRC'],['../class_radio_lib_c_r_c.html#a4f4042a369d55e234f4fc28f189139d5',1,'RadioLibCRC::RadioLibCRC()']]], - ['radiolibhal_452',['RadioLibHal',['../class_radio_lib_hal.html',1,'RadioLibHal'],['../class_radio_lib_hal.html#ae75a54271cb8bea37d32dd146b9c6513',1,'RadioLibHal::RadioLibHal()']]], - ['radiolibirqflags_5ft_453',['RadioLibIrqFlags_t',['../group__typedefs.html#gafaf66becf1112a55ba8ad7402b802b77',1,'TypeDef.h']]], - ['radiolibprint_454',['RadioLibPrint',['../class_radio_lib_print.html',1,'']]], - ['radiolibtime_5ft_455',['RadioLibTime_t',['../group__typedefs.html#ga210f31dd2bff7fb80563275648a5bbbd',1,'TypeDef.h']]], - ['random_456',['random',['../class_physical_layer.html#acd9171bd71aa80fb86113b612c42de53',1,'PhysicalLayer::random(int32_t max)'],['../class_physical_layer.html#a76113e10481743094a1cd0280692b0a9',1,'PhysicalLayer::random(int32_t min, int32_t max)']]], - ['randombyte_457',['randomByte',['../class_r_f69.html#ac47d0f59cb190361fa9b7d10efacc297',1,'RF69::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()'],['../class_s_x128x.html#a8d331080599e09ef0b11a77cffd6f13a',1,'SX128x::randomByte()'],['../class_s_x127x.html#a9877550ed7881be06d00ea190f230fb9',1,'SX127x::randomByte()'],['../class_s_x126x.html#a187a616285c5872f9603a86c122deaf2',1,'SX126x::randomByte()'],['../class_si443x.html#a16750016db8a3bf27c35822b08d81155',1,'Si443x::randomByte()'],['../class_l_r11x0.html#a89b16d2231f588b67dc3aab0c0a467f4',1,'LR11x0::randomByte()'],['../class_c_c1101.html#a13cf332824479442cc20fc1c6972b092',1,'CC1101::randomByte()']]], - ['range_458',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]], - ['rate_459',['rate',['../struct_l_r11x0_wifi_result_extended__t.html#a16a6732a8af0332f64c0f6bcc0d5257f',1,'LR11x0WifiResultExtended_t']]], - ['rcvseqnumber_460',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], - ['read_461',['read',['../class_morse_client.html#a77eab03be04ef2d693348d9580ee5d3c',1,'MorseClient::read()'],['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()']]], - ['readbit_462',['readBit',['../class_r_f69.html#a5a340c38b9b8b79d4fe59fb987b12746',1,'RF69::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#af2e1d173694a59082a22922a6f7d50a8',1,'SX128x::readBit()'],['../class_s_x127x.html#a0e149fac59b3accbc9550bf605d6bbf0',1,'SX127x::readBit()'],['../class_si443x.html#a2bff9ba621ad00964bdfc72dd374a50b',1,'Si443x::readBit()'],['../class_c_c1101.html#a11a92d885beefdf2db291301550a980c',1,'CC1101::readBit()'],['../class_s_x126x.html#acb1a1c51f207439880ae537f5ffeb17c',1,'SX126x::readBit()']]], - ['readdata_463',['readData',['../class_physical_layer.html#a3563453988a83d22dd07d4691543a300',1,'PhysicalLayer::readData()'],['../class_s_x128x.html#a3563453988a83d22dd07d4691543a300',1,'SX128x::readData()'],['../class_s_x127x.html#a3563453988a83d22dd07d4691543a300',1,'SX127x::readData()'],['../class_s_x126x.html#a3563453988a83d22dd07d4691543a300',1,'SX126x::readData()'],['../class_si443x.html#a3563453988a83d22dd07d4691543a300',1,'Si443x::readData()'],['../class_r_f69.html#a3563453988a83d22dd07d4691543a300',1,'RF69::readData()'],['../classn_r_f24.html#a3563453988a83d22dd07d4691543a300',1,'nRF24::readData()'],['../class_l_r11x0.html#a3563453988a83d22dd07d4691543a300',1,'LR11x0::readData()'],['../class_c_c1101.html#a3563453988a83d22dd07d4691543a300',1,'CC1101::readData()'],['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745',1,'SX127x::readData()'],['../class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2',1,'SX126x::readData()'],['../class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e',1,'Si443x::readData()'],['../class_r_f69.html#a3983b66c83818b4082805bcafc712f00',1,'RF69::readData()'],['../classn_r_f24.html#a410fb78acb4ed358818c132687b8857a',1,'nRF24::readData()'],['../class_l_r11x0.html#a20279f1b267e936991f47fd703924833',1,'LR11x0::readData()'],['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData(uint8_t *data, size_t len) override']]], - ['receive_464',['receive',['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_l_r11x0.html#a377c287f18c939c2b4da3241d8329e58',1,'LR11x0::receive()'],['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX128x::receive()'],['../class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX127x::receive()'],['../class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX126x::receive()'],['../class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'Si443x::receive()'],['../class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'RF69::receive()'],['../classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'nRF24::receive()'],['../class_l_r11x0.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'LR11x0::receive()'],['../class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'CC1101::receive()'],['../class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'PhysicalLayer::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()']]], - ['receivedirect_465',['receiveDirect',['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6',1,'PhysicalLayer::receiveDirect()'],['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()'],['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_l_r11x0.html#ae1a8e8eda78113c47f1a865e63051bb5',1,'LR11x0::receiveDirect()'],['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect() override']]], - ['receivedirectasync_466',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]], - ['refin_467',['refIn',['../class_radio_lib_c_r_c.html#ac65a358753efd05067c19fcf1098ec04',1,'RadioLibCRC']]], - ['refout_468',['refOut',['../class_radio_lib_c_r_c.html#ab1b5aa578ed5818a7618df8c6cf98087',1,'RadioLibCRC']]], - ['repeatercallsigns_469',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]], - ['repeaterssids_470',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]], - ['reply_471',['reply',['../class_bell_client.html#a9233e10bc794af85e3e86b4ec2a8746d',1,'BellClient']]], - ['reset_472',['reset',['../class_c_c1101.html#a1fc87275c6f5d7f6927ca51a175eba21',1,'CC1101::reset()'],['../class_s_x128x.html#a2643ce22176293631fea2169f5e68e66',1,'SX128x::reset()'],['../class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68',1,'SX127x::reset()'],['../class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad',1,'SX1278::reset()'],['../class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac',1,'SX1272::reset()'],['../class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97',1,'Si443x::reset()'],['../class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a',1,'RF69::reset()'],['../class_l_r11x0.html#a288bcc309d3676bc0bbe620b7d89d994',1,'LR11x0::reset()'],['../class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f',1,'SX126x::reset()']]], - ['resetfcntdown_473',['resetFCntDown',['../class_lo_ra_w_a_n_node.html#af4b3d07cd9bf4178d627204bae18b648',1,'LoRaWANNode']]], - ['ressize_474',['resSize',['../struct_l_r11x0_gnss_result__t.html#a2fcd901f5815f3e4760f61d2bc7a7a9b',1,'LR11x0GnssResult_t']]], - ['rf69_475',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69::RF69()'],['../class_r_f69.html',1,'RF69']]], - ['rfm22_476',['RFM22',['../class_r_f_m22.html',1,'']]], - ['rfm23_477',['RFM23',['../class_r_f_m23.html',1,'']]], - ['rfm95_478',['RFM95',['../class_r_f_m95.html',1,'']]], - ['rfm96_479',['RFM96',['../class_r_f_m96.html',1,'']]], - ['rfm97_480',['RFM97',['../class_r_f_m97.html',1,'']]], - ['rfm98_481',['RFM98',['../class_r_f_m98.html',1,'']]], - ['rfswitch_5fmax_5fpins_482',['RFSWITCH_MAX_PINS',['../class_module.html#a0c11551e12579bbabf57b19e12555b3c',1,'Module']]], - ['rfswitchmode_5ft_483',['RfSwitchMode_t',['../struct_module_1_1_rf_switch_mode__t.html',1,'Module']]], - ['rssi_484',['rssi',['../union_channel_scan_config__t.html#ad728b1bd8f0410660f51df0b27f2797e',1,'ChannelScanConfig_t::rssi()'],['../struct_l_r11x0_wifi_result__t.html#acac3f837ac4fa56e5fda3221f89f3d9f',1,'LR11x0WifiResult_t::rssi()']]], - ['rssiscanconfig_5ft_485',['RSSIScanConfig_t',['../struct_r_s_s_i_scan_config__t.html',1,'']]], - ['rttyclient_486',['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)'],['../class_r_t_t_y_client.html',1,'RTTYClient']]], - ['rx1span_487',['rx1Span',['../struct_lo_ra_w_a_n_band__t.html#af8def1e0b5c3dc122557f71f5637a529',1,'LoRaWANBand_t']]], - ['rx2_488',['rx2',['../struct_lo_ra_w_a_n_band__t.html#ae3ed10eddc647a6f770121a1662a854f',1,'LoRaWANBand_t']]] + ['radiolib_20documentation_333',['RadioLib Documentation',['../index.html',1,'']]], + ['radiolib_5faprs_5fmic_5fe_5ftype_5fcommitted_334',['RADIOLIB_APRS_MIC_E_TYPE_COMMITTED',['../group__mic__e__message__types.html#ga4f98902a4ba18f048ba716063d8c5534',1,'APRS.h']]], + ['radiolib_5faprs_5fmic_5fe_5ftype_5femergency_335',['RADIOLIB_APRS_MIC_E_TYPE_EMERGENCY',['../group__mic__e__message__types.html#ga935e3277c7eac8c8f7a3797c59034f61',1,'APRS.h']]], + ['radiolib_5faprs_5fmic_5fe_5ftype_5fen_5froute_336',['RADIOLIB_APRS_MIC_E_TYPE_EN_ROUTE',['../group__mic__e__message__types.html#ga4f11b914724d2a31eaccb8c863b1a6ef',1,'APRS.h']]], + ['radiolib_5faprs_5fmic_5fe_5ftype_5fin_5fservice_337',['RADIOLIB_APRS_MIC_E_TYPE_IN_SERVICE',['../group__mic__e__message__types.html#ga44c6990e22d40efb6bfb60cfa60debd9',1,'APRS.h']]], + ['radiolib_5faprs_5fmic_5fe_5ftype_5foff_5fduty_338',['RADIOLIB_APRS_MIC_E_TYPE_OFF_DUTY',['../group__mic__e__message__types.html#gaa575e4cb70c8a1b3b7dbdc6034a0fd24',1,'APRS.h']]], + ['radiolib_5faprs_5fmic_5fe_5ftype_5fpriority_339',['RADIOLIB_APRS_MIC_E_TYPE_PRIORITY',['../group__mic__e__message__types.html#ga79ad3f863c91bf8000fcd0e8d2fea4b1',1,'APRS.h']]], + ['radiolib_5faprs_5fmic_5fe_5ftype_5freturning_340',['RADIOLIB_APRS_MIC_E_TYPE_RETURNING',['../group__mic__e__message__types.html#ga181c0b7ecf6d936e1c6cab13c29e8ee6',1,'APRS.h']]], + ['radiolib_5faprs_5fmic_5fe_5ftype_5fspecial_341',['RADIOLIB_APRS_MIC_E_TYPE_SPECIAL',['../group__mic__e__message__types.html#ga0d877e52c45bcd651c25a12a08c7c36c',1,'APRS.h']]], + ['radiolib_5fchannel_5ffree_342',['RADIOLIB_CHANNEL_FREE',['../group__status__codes.html#ga4673596b2cc7290be5ee0a2e9ee42718',1,'TypeDef.h']]], + ['radiolib_5fencoding_5fmanchester_343',['RADIOLIB_ENCODING_MANCHESTER',['../group__config__encoding.html#gaffff394bbc47c05ed1bfde2e16a596e8',1,'TypeDef.h']]], + ['radiolib_5fencoding_5fnrz_344',['RADIOLIB_ENCODING_NRZ',['../group__config__encoding.html#ga0253ae0c289d950e36106102a983f9cb',1,'TypeDef.h']]], + ['radiolib_5fencoding_5fwhitening_345',['RADIOLIB_ENCODING_WHITENING',['../group__config__encoding.html#ga0bfc51be5abf0b434a49540bddb65328',1,'TypeDef.h']]], + ['radiolib_5ferr_5fa_5ffcnt_5fdown_5finvalid_346',['RADIOLIB_ERR_A_FCNT_DOWN_INVALID',['../group__status__codes.html#ga81bd164044ef4d523464ad17d1e473bb',1,'TypeDef.h']]], + ['radiolib_5ferr_5fack_5fnot_5freceived_347',['RADIOLIB_ERR_ACK_NOT_RECEIVED',['../group__status__codes.html#gafeff72bd7b618959d86b804a11f09063',1,'TypeDef.h']]], + ['radiolib_5ferr_5faddress_5fnot_5ffound_348',['RADIOLIB_ERR_ADDRESS_NOT_FOUND',['../group__status__codes.html#ga806183ed238159d317132b0d44d7a0a2',1,'TypeDef.h']]], + ['radiolib_5ferr_5fchecksum_5fmismatch_349',['RADIOLIB_ERR_CHECKSUM_MISMATCH',['../group__status__codes.html#gace49554c055f7b2d02ef0c39c006529c',1,'TypeDef.h']]], + ['radiolib_5ferr_5fchip_5fnot_5ffound_350',['RADIOLIB_ERR_CHIP_NOT_FOUND',['../group__status__codes.html#ga5d11e8ce64fb412c2169d0f30b9e9c62',1,'TypeDef.h']]], + ['radiolib_5ferr_5fcommand_5fqueue_5ffull_351',['RADIOLIB_ERR_COMMAND_QUEUE_FULL',['../group__status__codes.html#ga442250961d11f2582857cd1eafe0df17',1,'TypeDef.h']]], + ['radiolib_5ferr_5fcommand_5fqueue_5fitem_5fnot_5ffound_352',['RADIOLIB_ERR_COMMAND_QUEUE_ITEM_NOT_FOUND',['../group__status__codes.html#gac4e026589229f7f737c77c641447d180',1,'TypeDef.h']]], + ['radiolib_5ferr_5fcrc_5fmismatch_353',['RADIOLIB_ERR_CRC_MISMATCH',['../group__status__codes.html#ga9da949184e940a4fa6f4afb63c315963',1,'TypeDef.h']]], + ['radiolib_5ferr_5fdownlink_5fmalformed_354',['RADIOLIB_ERR_DOWNLINK_MALFORMED',['../group__status__codes.html#gab120f980c06c581cd071452464199aac',1,'TypeDef.h']]], + ['radiolib_5ferr_5fdwell_5ftime_5fexceeded_355',['RADIOLIB_ERR_DWELL_TIME_EXCEEDED',['../group__status__codes.html#gac78ef1a402159a3be27a6b92268106b7',1,'TypeDef.h']]], + ['radiolib_5ferr_5fgnss_5fdemod_5foffset_356',['RADIOLIB_ERR_GNSS_DEMOD_OFFSET',['../group__status__codes.html#ga95f44b9fd5db8220158e8dad73506cd9',1,'TypeDef.h']]], + ['radiolib_5ferr_5fgnss_5fsolver_5foffset_357',['RADIOLIB_ERR_GNSS_SOLVER_OFFSET',['../group__status__codes.html#ga25700f55a8dfaa3aa8076b51528d74f9',1,'TypeDef.h']]], + ['radiolib_5ferr_5fgnss_5fsubframe_5fnot_5favailable_358',['RADIOLIB_ERR_GNSS_SUBFRAME_NOT_AVAILABLE',['../group__status__codes.html#ga01584876f01c1815ab27afc364649966',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5faddress_5fwidth_359',['RADIOLIB_ERR_INVALID_ADDRESS_WIDTH',['../group__status__codes.html#gafbc04b924d23cba05307e94972d7d607',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fbandwidth_360',['RADIOLIB_ERR_INVALID_BANDWIDTH',['../group__status__codes.html#ga0710b406a7e12ab6e0f77fdb3374cd9a',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fbit_5frange_361',['RADIOLIB_ERR_INVALID_BIT_RANGE',['../group__status__codes.html#ga508806c18663156b0d00d1a21c957468',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fbit_5frate_362',['RADIOLIB_ERR_INVALID_BIT_RATE',['../group__status__codes.html#gac192dbf5134a10ed561100b01129224c',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fbit_5frate_5fbw_5fratio_363',['RADIOLIB_ERR_INVALID_BIT_RATE_BW_RATIO',['../group__status__codes.html#ga733a7f3f12109103384522dac4d1146e',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fbit_5frate_5ftolerance_5fvalue_364',['RADIOLIB_ERR_INVALID_BIT_RATE_TOLERANCE_VALUE',['../group__status__codes.html#ga4482925df56b8fc069c6a418d74380d7',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fcallsign_365',['RADIOLIB_ERR_INVALID_CALLSIGN',['../group__status__codes.html#gac1c27fd5a9ec38601a53c1c5ad428063',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fcid_366',['RADIOLIB_ERR_INVALID_CID',['../group__status__codes.html#ga5133c0c17301cfc39ac6121c5851292f',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fcoding_5frate_367',['RADIOLIB_ERR_INVALID_CODING_RATE',['../group__status__codes.html#ga4e64d3ed035b21bfb81cf2bca35b2ecb',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fcrc_5fconfiguration_368',['RADIOLIB_ERR_INVALID_CRC_CONFIGURATION',['../group__status__codes.html#gaedc74820131d6cb654302d776360f969',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fcurrent_5flimit_369',['RADIOLIB_ERR_INVALID_CURRENT_LIMIT',['../group__status__codes.html#gac314f4bd89f306c8a16237be9a9c80cb',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fdata_5frate_370',['RADIOLIB_ERR_INVALID_DATA_RATE',['../group__status__codes.html#ga9a098ceda0c3f153515c8cc36f1d683e',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fdata_5fshaping_371',['RADIOLIB_ERR_INVALID_DATA_SHAPING',['../group__status__codes.html#gaf16af86f43ac2946e82a1e87aea2882b',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fdio_5fpin_372',['RADIOLIB_ERR_INVALID_DIO_PIN',['../group__status__codes.html#ga193402d53d354b58c70e5324d1e5b531',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fencoding_373',['RADIOLIB_ERR_INVALID_ENCODING',['../group__status__codes.html#ga41b17f0207ad1aa10d666c8a9e4830c5',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5ffrequency_374',['RADIOLIB_ERR_INVALID_FREQUENCY',['../group__status__codes.html#ga9f80eb00fad12bb0bec384ad83b6941b',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5ffrequency_5fdeviation_375',['RADIOLIB_ERR_INVALID_FREQUENCY_DEVIATION',['../group__status__codes.html#gaabe141287f2d6ba723658309f4464662',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5ffunction_376',['RADIOLIB_ERR_INVALID_FUNCTION',['../group__status__codes.html#ga025420df476275dc901f67dd6ae13a9c',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fgain_377',['RADIOLIB_ERR_INVALID_GAIN',['../group__status__codes.html#ga908f3a5ab6937d28536791c96cf9de23',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fimage_5fquality_378',['RADIOLIB_ERR_INVALID_IMAGE_QUALITY',['../group__status__codes.html#gad195c8d9ba523944ecf41dbb7cb9baa3',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fimage_5fsize_379',['RADIOLIB_ERR_INVALID_IMAGE_SIZE',['../group__status__codes.html#ga44f09021bdc7fdd4b57db3ab8725b5a1',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5firq_380',['RADIOLIB_ERR_INVALID_IRQ',['../group__status__codes.html#ga9473a1146463e7f6cd4f0a06ef7c7b77',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fmic_5fe_5ftelemetry_381',['RADIOLIB_ERR_INVALID_MIC_E_TELEMETRY',['../group__status__codes.html#gaeafdfcb2b10b08385feea93163fc3918',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fmic_5fe_5ftelemetry_5flength_382',['RADIOLIB_ERR_INVALID_MIC_E_TELEMETRY_LENGTH',['../group__status__codes.html#ga85e34d08b298a4125f77ddede011db3b',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fmode_383',['RADIOLIB_ERR_INVALID_MODE',['../group__status__codes.html#ga4871133fa9b6d7cdbee82daf2226d373',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fmodulation_384',['RADIOLIB_ERR_INVALID_MODULATION',['../group__status__codes.html#gab0f9cb8ee829a8504fc110de18c4ff67',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fmodulation_5fparameters_385',['RADIOLIB_ERR_INVALID_MODULATION_PARAMETERS',['../group__status__codes.html#ga7f57f6eddc68b9a59cceab4fdf6556ba',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fnum_5fbroad_5faddrs_386',['RADIOLIB_ERR_INVALID_NUM_BROAD_ADDRS',['../group__status__codes.html#gae0e8ebbd71661b8a107b01befc997e5e',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fnum_5frepeaters_387',['RADIOLIB_ERR_INVALID_NUM_REPEATERS',['../group__status__codes.html#ga47f1cc22b76c6b8685bd7e265ab78a1a',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fnum_5fsamples_388',['RADIOLIB_ERR_INVALID_NUM_SAMPLES',['../group__status__codes.html#gaa5d0e76a10099c6e1cfd8f24e48995a2',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fook_5frssi_5fpeak_5ftype_389',['RADIOLIB_ERR_INVALID_OOK_RSSI_PEAK_TYPE',['../group__status__codes.html#gabc97efb9f410af5c0a9c1e5f882e41d8',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5foutput_5fpower_390',['RADIOLIB_ERR_INVALID_OUTPUT_POWER',['../group__status__codes.html#ga55da4b2ee0661872a37f1c57fc61c666',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fpayload_391',['RADIOLIB_ERR_INVALID_PAYLOAD',['../group__status__codes.html#ga5529b54dc67d5ccdc2a29989ebf43711',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fpipe_5fnumber_392',['RADIOLIB_ERR_INVALID_PIPE_NUMBER',['../group__status__codes.html#ga3ed4264643f97b76f9f3cf242338573d',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fport_393',['RADIOLIB_ERR_INVALID_PORT',['../group__status__codes.html#ga96db1938b39b1b9cb7e8229718f08ff2',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fpreamble_5flength_394',['RADIOLIB_ERR_INVALID_PREAMBLE_LENGTH',['../group__status__codes.html#ga9dc55947447ed9c91217f86a9bca75bb',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5frepeater_5fcallsign_395',['RADIOLIB_ERR_INVALID_REPEATER_CALLSIGN',['../group__status__codes.html#ga684497ce1c94442b5fe0396ea4ec930d',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5frevision_396',['RADIOLIB_ERR_INVALID_REVISION',['../group__status__codes.html#ga3de55ebac1629efa9c64a9d6c201482a',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5frssi_5foffset_397',['RADIOLIB_ERR_INVALID_RSSI_OFFSET',['../group__status__codes.html#ga0f1e3d5da7867511500fcd4a43f4df2f',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5frssi_5fthreshold_398',['RADIOLIB_ERR_INVALID_RSSI_THRESHOLD',['../group__status__codes.html#ga0f0aad5acd6d24fc7da9269664912d48',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5frtty_5fshift_399',['RADIOLIB_ERR_INVALID_RTTY_SHIFT',['../group__status__codes.html#ga6b75df06d8c18366f85848331c49a1af',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5frx_5fbandwidth_400',['RADIOLIB_ERR_INVALID_RX_BANDWIDTH',['../group__status__codes.html#gaa1f484c73f9abe05408c84fe5891539b',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5frx_5fperiod_401',['RADIOLIB_ERR_INVALID_RX_PERIOD',['../group__status__codes.html#ga4b30b822814dc8d49d3f3229011c8aff',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fsleep_5fperiod_402',['RADIOLIB_ERR_INVALID_SLEEP_PERIOD',['../group__status__codes.html#ga0066a30650888853a622413a579d891c',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fspreading_5ffactor_403',['RADIOLIB_ERR_INVALID_SPREADING_FACTOR',['../group__status__codes.html#ga0e196b0ec8efd606cd60592f88b626e8',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fssdv_5fmode_404',['RADIOLIB_ERR_INVALID_SSDV_MODE',['../group__status__codes.html#ga5d57c9ea944fdad3760fa54ed033ace5',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fsubsampling_405',['RADIOLIB_ERR_INVALID_SUBSAMPLING',['../group__status__codes.html#ga8c0c19441712a0f8749743ed9fbe4f39',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fsymbol_406',['RADIOLIB_ERR_INVALID_SYMBOL',['../group__status__codes.html#ga7f9712de2117b89215410fc18776dc84',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fsync_5fword_407',['RADIOLIB_ERR_INVALID_SYNC_WORD',['../group__status__codes.html#ga5584a219fcb1a8e1789142b18a3a511e',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5ftcxo_5fvoltage_408',['RADIOLIB_ERR_INVALID_TCXO_VOLTAGE',['../group__status__codes.html#ga691e968e9f057a6cecb37a5dd5d8bd68',1,'TypeDef.h']]], + ['radiolib_5ferr_5finvalid_5fwifi_5ftype_409',['RADIOLIB_ERR_INVALID_WIFI_TYPE',['../group__status__codes.html#gac0673e69b893d8f23e339f218d376a52',1,'TypeDef.h']]], + ['radiolib_5ferr_5fjoin_5fnonce_5finvalid_410',['RADIOLIB_ERR_JOIN_NONCE_INVALID',['../group__status__codes.html#ga68c7f7b8c699dbd6524da685be476fca',1,'TypeDef.h']]], + ['radiolib_5ferr_5flora_5fheader_5fdamaged_411',['RADIOLIB_ERR_LORA_HEADER_DAMAGED',['../group__status__codes.html#gab152891bb13f6f70e6631820904e9d90',1,'TypeDef.h']]], + ['radiolib_5ferr_5fmemory_5fallocation_5ffailed_412',['RADIOLIB_ERR_MEMORY_ALLOCATION_FAILED',['../group__status__codes.html#ga7afc28738967d4d91c13d1d412d6f5e4',1,'TypeDef.h']]], + ['radiolib_5ferr_5fmic_5fe_5ftelemetry_5fstatus_413',['RADIOLIB_ERR_MIC_E_TELEMETRY_STATUS',['../group__status__codes.html#ga54a2fc9441c25b56979c6edab097ff12',1,'TypeDef.h']]], + ['radiolib_5ferr_5fn_5ffcnt_5fdown_5finvalid_414',['RADIOLIB_ERR_N_FCNT_DOWN_INVALID',['../group__status__codes.html#gac67f8a734c2011f738db1a3159403e09',1,'TypeDef.h']]], + ['radiolib_5ferr_5fnetwork_5fnot_5fjoined_415',['RADIOLIB_ERR_NETWORK_NOT_JOINED',['../group__status__codes.html#gafc3bca002b982af27b703c30b2d12df3',1,'TypeDef.h']]], + ['radiolib_5ferr_5fno_5fchannel_5favailable_416',['RADIOLIB_ERR_NO_CHANNEL_AVAILABLE',['../group__status__codes.html#ga6b70881b5be84138ef558e832fbb254c',1,'TypeDef.h']]], + ['radiolib_5ferr_5fno_5fjoin_5faccept_417',['RADIOLIB_ERR_NO_JOIN_ACCEPT',['../group__status__codes.html#ga3f645f530e74765d4ef6ab5e3b01dd52',1,'TypeDef.h']]], + ['radiolib_5ferr_5fno_5frx_5fwindow_418',['RADIOLIB_ERR_NO_RX_WINDOW',['../group__status__codes.html#gacf823b58331e32d37a9378a114d7d08e',1,'TypeDef.h']]], + ['radiolib_5ferr_5fnonces_5fdiscarded_419',['RADIOLIB_ERR_NONCES_DISCARDED',['../group__status__codes.html#ga43dcb8186ad075dd1386da167480b396',1,'TypeDef.h']]], + ['radiolib_5ferr_5fnone_420',['RADIOLIB_ERR_NONE',['../group__status__codes.html#ga4c1dd3c7f2b37c973a047c58506729f5',1,'TypeDef.h']]], + ['radiolib_5ferr_5fnull_5fpointer_421',['RADIOLIB_ERR_NULL_POINTER',['../group__status__codes.html#gaad31ccea119011fd05441ed83e0f3b3d',1,'TypeDef.h']]], + ['radiolib_5ferr_5fpacket_5ftoo_5flong_422',['RADIOLIB_ERR_PACKET_TOO_LONG',['../group__status__codes.html#ga4602702eac86c5c3a13b93a06d846fac',1,'TypeDef.h']]], + ['radiolib_5ferr_5franging_5ftimeout_423',['RADIOLIB_ERR_RANGING_TIMEOUT',['../group__status__codes.html#gabf529b0d150265c071c2255cb45f9e4f',1,'TypeDef.h']]], + ['radiolib_5ferr_5frx_5ftimeout_424',['RADIOLIB_ERR_RX_TIMEOUT',['../group__status__codes.html#gafadba2c16b7296cbaf96978e8eadfa45',1,'TypeDef.h']]], + ['radiolib_5ferr_5fsession_5fdiscarded_425',['RADIOLIB_ERR_SESSION_DISCARDED',['../group__status__codes.html#gadf08d3de797fe01de54f7d26cc0b0d48',1,'TypeDef.h']]], + ['radiolib_5ferr_5fspi_5fcmd_5ffailed_426',['RADIOLIB_ERR_SPI_CMD_FAILED',['../group__status__codes.html#gabc695a4fae689e856ae6f618e334066f',1,'TypeDef.h']]], + ['radiolib_5ferr_5fspi_5fcmd_5finvalid_427',['RADIOLIB_ERR_SPI_CMD_INVALID',['../group__status__codes.html#gac1902fa5b8d5c9469dd9261880ba2957',1,'TypeDef.h']]], + ['radiolib_5ferr_5fspi_5fcmd_5ftimeout_428',['RADIOLIB_ERR_SPI_CMD_TIMEOUT',['../group__status__codes.html#ga72b849c71b8fdf112d318518a3b1ac7d',1,'TypeDef.h']]], + ['radiolib_5ferr_5fspi_5fwrite_5ffailed_429',['RADIOLIB_ERR_SPI_WRITE_FAILED',['../group__status__codes.html#ga31e0864281b5ea21c53206c49877b670',1,'TypeDef.h']]], + ['radiolib_5ferr_5ftx_5ftimeout_430',['RADIOLIB_ERR_TX_TIMEOUT',['../group__status__codes.html#gac4185b9eaead4de110763759f01e1f4f',1,'TypeDef.h']]], + ['radiolib_5ferr_5funknown_431',['RADIOLIB_ERR_UNKNOWN',['../group__status__codes.html#gacc0baeb3e5fc99760a07d18ba55531b6',1,'TypeDef.h']]], + ['radiolib_5ferr_5funsupported_432',['RADIOLIB_ERR_UNSUPPORTED',['../group__status__codes.html#ga00c1c2b500feea59d0d47dddd7179be1',1,'TypeDef.h']]], + ['radiolib_5ferr_5funsupported_5fencoding_433',['RADIOLIB_ERR_UNSUPPORTED_ENCODING',['../group__status__codes.html#gae4d77c5138cc5f21fb2af4b0791e9f81',1,'TypeDef.h']]], + ['radiolib_5ferr_5fuplink_5funavailable_434',['RADIOLIB_ERR_UPLINK_UNAVAILABLE',['../group__status__codes.html#ga8b424bb8992a6ac80e2ba46667bf9c6e',1,'TypeDef.h']]], + ['radiolib_5ferr_5fwrong_5fmodem_435',['RADIOLIB_ERR_WRONG_MODEM',['../group__status__codes.html#gad95d2455d580745d41ef2f319c6585f8',1,'TypeDef.h']]], + ['radiolib_5flora_5fdetected_436',['RADIOLIB_LORA_DETECTED',['../group__status__codes.html#ga58ff08f4dba334cf8e26474ec2d3facd',1,'TypeDef.h']]], + ['radiolib_5florawan_5fnew_5fsession_437',['RADIOLIB_LORAWAN_NEW_SESSION',['../group__status__codes.html#gae99db161b4e00a44c0a60951ddb7c8a6',1,'TypeDef.h']]], + ['radiolib_5florawan_5fsession_5frestored_438',['RADIOLIB_LORAWAN_SESSION_RESTORED',['../group__status__codes.html#ga633e2f826e44d4575ca67459fda5d660',1,'TypeDef.h']]], + ['radiolib_5flr1110_5ffirmware_5fattr_439',['RADIOLIB_LR1110_FIRMWARE_ATTR',['../lr1110__transceiver__0305_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0305.h'],['../lr1110__transceiver__0306_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0401_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0401.h'],['../lr1120__transceiver__0201_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1120_transceiver_0201.h'],['../lr1121__transceiver__0103_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1121_transceiver_0103.h']]], + ['radiolib_5fpreamble_5fdetected_440',['RADIOLIB_PREAMBLE_DETECTED',['../group__status__codes.html#ga382dc113e93f196401914853ec176b18',1,'TypeDef.h']]], + ['radiolib_5fshaping_5f0_5f3_441',['RADIOLIB_SHAPING_0_3',['../group__config__shaping.html#ga6a562fca42573d39e4a214c293756f64',1,'TypeDef.h']]], + ['radiolib_5fshaping_5f0_5f5_442',['RADIOLIB_SHAPING_0_5',['../group__config__shaping.html#gaa778d14c29d21fe329137a28a3f54a5d',1,'TypeDef.h']]], + ['radiolib_5fshaping_5f0_5f7_443',['RADIOLIB_SHAPING_0_7',['../group__config__shaping.html#ga677dde0ea956d5e99af30cf501a727ad',1,'TypeDef.h']]], + ['radiolib_5fshaping_5f1_5f0_444',['RADIOLIB_SHAPING_1_0',['../group__config__shaping.html#ga80e2185af1123c7632aa40cad1691e6d',1,'TypeDef.h']]], + ['radiolib_5fshaping_5fnone_445',['RADIOLIB_SHAPING_NONE',['../group__config__shaping.html#gaa9495bc5eb54df04f2ed7b1ccbb4f277',1,'TypeDef.h']]], + ['radiolib_5fstandby_5fcold_446',['RADIOLIB_STANDBY_COLD',['../group__config__standby.html#ga37f835c3cd3323e2cde1fe1ab7c635e7',1,'TypeDef.h']]], + ['radiolib_5fstandby_5fdefault_447',['RADIOLIB_STANDBY_DEFAULT',['../group__config__standby.html#ga3f3398b244d584ad94c691f60f2d9517',1,'TypeDef.h']]], + ['radiolib_5fstandby_5fwarm_448',['RADIOLIB_STANDBY_WARM',['../group__config__standby.html#ga9c4af50dde47d157538b1877190ea7b5',1,'TypeDef.h']]], + ['radiolibaes128_449',['RadioLibAES128',['../class_radio_lib_a_e_s128.html',1,'RadioLibAES128'],['../class_radio_lib_a_e_s128.html#a11f816221d1c06432ff80f2678ef46fe',1,'RadioLibAES128::RadioLibAES128()']]], + ['radiolibbch_450',['RadioLibBCH',['../class_radio_lib_b_c_h.html',1,'RadioLibBCH'],['../class_radio_lib_b_c_h.html#a39d55c0292e4c9337ee0672cd5241118',1,'RadioLibBCH::RadioLibBCH()']]], + ['radiolibconvcode_451',['RadioLibConvCode',['../class_radio_lib_conv_code.html#a4fbe7c4e90969f0be10b8484b405df78',1,'RadioLibConvCode::RadioLibConvCode()'],['../class_radio_lib_conv_code.html',1,'RadioLibConvCode']]], + ['radiolibcrc_452',['RadioLibCRC',['../class_radio_lib_c_r_c.html',1,'RadioLibCRC'],['../class_radio_lib_c_r_c.html#a4f4042a369d55e234f4fc28f189139d5',1,'RadioLibCRC::RadioLibCRC()']]], + ['radiolibhal_453',['RadioLibHal',['../class_radio_lib_hal.html',1,'RadioLibHal'],['../class_radio_lib_hal.html#ae75a54271cb8bea37d32dd146b9c6513',1,'RadioLibHal::RadioLibHal()']]], + ['radiolibirqflags_5ft_454',['RadioLibIrqFlags_t',['../group__typedefs.html#gafaf66becf1112a55ba8ad7402b802b77',1,'TypeDef.h']]], + ['radiolibprint_455',['RadioLibPrint',['../class_radio_lib_print.html',1,'']]], + ['radiolibtime_5ft_456',['RadioLibTime_t',['../group__typedefs.html#ga210f31dd2bff7fb80563275648a5bbbd',1,'TypeDef.h']]], + ['random_457',['random',['../class_physical_layer.html#acd9171bd71aa80fb86113b612c42de53',1,'PhysicalLayer::random(int32_t max)'],['../class_physical_layer.html#a76113e10481743094a1cd0280692b0a9',1,'PhysicalLayer::random(int32_t min, int32_t max)']]], + ['randombyte_458',['randomByte',['../class_r_f69.html#ac47d0f59cb190361fa9b7d10efacc297',1,'RF69::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()'],['../class_s_x128x.html#a8d331080599e09ef0b11a77cffd6f13a',1,'SX128x::randomByte()'],['../class_s_x127x.html#a9877550ed7881be06d00ea190f230fb9',1,'SX127x::randomByte()'],['../class_s_x126x.html#a187a616285c5872f9603a86c122deaf2',1,'SX126x::randomByte()'],['../class_si443x.html#a16750016db8a3bf27c35822b08d81155',1,'Si443x::randomByte()'],['../class_l_r11x0.html#a89b16d2231f588b67dc3aab0c0a467f4',1,'LR11x0::randomByte()'],['../class_c_c1101.html#a13cf332824479442cc20fc1c6972b092',1,'CC1101::randomByte()']]], + ['range_459',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]], + ['rate_460',['rate',['../struct_l_r11x0_wifi_result_extended__t.html#a16a6732a8af0332f64c0f6bcc0d5257f',1,'LR11x0WifiResultExtended_t']]], + ['rcvseqnumber_461',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], + ['read_462',['read',['../class_morse_client.html#a77eab03be04ef2d693348d9580ee5d3c',1,'MorseClient::read()'],['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()']]], + ['readbit_463',['readBit',['../class_r_f69.html#a5a340c38b9b8b79d4fe59fb987b12746',1,'RF69::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#af2e1d173694a59082a22922a6f7d50a8',1,'SX128x::readBit()'],['../class_s_x127x.html#a0e149fac59b3accbc9550bf605d6bbf0',1,'SX127x::readBit()'],['../class_si443x.html#a2bff9ba621ad00964bdfc72dd374a50b',1,'Si443x::readBit()'],['../class_c_c1101.html#a11a92d885beefdf2db291301550a980c',1,'CC1101::readBit()'],['../class_s_x126x.html#acb1a1c51f207439880ae537f5ffeb17c',1,'SX126x::readBit()']]], + ['readdata_464',['readData',['../class_physical_layer.html#a3563453988a83d22dd07d4691543a300',1,'PhysicalLayer::readData()'],['../class_s_x128x.html#a3563453988a83d22dd07d4691543a300',1,'SX128x::readData()'],['../class_s_x127x.html#a3563453988a83d22dd07d4691543a300',1,'SX127x::readData()'],['../class_s_x126x.html#a3563453988a83d22dd07d4691543a300',1,'SX126x::readData()'],['../class_si443x.html#a3563453988a83d22dd07d4691543a300',1,'Si443x::readData()'],['../class_r_f69.html#a3563453988a83d22dd07d4691543a300',1,'RF69::readData()'],['../classn_r_f24.html#a3563453988a83d22dd07d4691543a300',1,'nRF24::readData()'],['../class_l_r11x0.html#a3563453988a83d22dd07d4691543a300',1,'LR11x0::readData()'],['../class_c_c1101.html#a3563453988a83d22dd07d4691543a300',1,'CC1101::readData()'],['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745',1,'SX127x::readData()'],['../class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2',1,'SX126x::readData()'],['../class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e',1,'Si443x::readData()'],['../class_r_f69.html#a3983b66c83818b4082805bcafc712f00',1,'RF69::readData()'],['../classn_r_f24.html#a410fb78acb4ed358818c132687b8857a',1,'nRF24::readData()'],['../class_l_r11x0.html#a20279f1b267e936991f47fd703924833',1,'LR11x0::readData()'],['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData(uint8_t *data, size_t len) override']]], + ['receive_465',['receive',['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_l_r11x0.html#a377c287f18c939c2b4da3241d8329e58',1,'LR11x0::receive()'],['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX128x::receive()'],['../class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX127x::receive()'],['../class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX126x::receive()'],['../class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'Si443x::receive()'],['../class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'RF69::receive()'],['../classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'nRF24::receive()'],['../class_l_r11x0.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'LR11x0::receive()'],['../class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'CC1101::receive()'],['../class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'PhysicalLayer::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()']]], + ['receivedirect_466',['receiveDirect',['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6',1,'PhysicalLayer::receiveDirect()'],['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()'],['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_l_r11x0.html#ae1a8e8eda78113c47f1a865e63051bb5',1,'LR11x0::receiveDirect()'],['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect() override']]], + ['receivedirectasync_467',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]], + ['refin_468',['refIn',['../class_radio_lib_c_r_c.html#ac65a358753efd05067c19fcf1098ec04',1,'RadioLibCRC']]], + ['refout_469',['refOut',['../class_radio_lib_c_r_c.html#ab1b5aa578ed5818a7618df8c6cf98087',1,'RadioLibCRC']]], + ['repeatercallsigns_470',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]], + ['repeaterssids_471',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]], + ['reply_472',['reply',['../class_bell_client.html#a9233e10bc794af85e3e86b4ec2a8746d',1,'BellClient']]], + ['reset_473',['reset',['../class_c_c1101.html#a1fc87275c6f5d7f6927ca51a175eba21',1,'CC1101::reset()'],['../class_s_x128x.html#a2643ce22176293631fea2169f5e68e66',1,'SX128x::reset()'],['../class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68',1,'SX127x::reset()'],['../class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad',1,'SX1278::reset()'],['../class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac',1,'SX1272::reset()'],['../class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97',1,'Si443x::reset()'],['../class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a',1,'RF69::reset()'],['../class_l_r11x0.html#a288bcc309d3676bc0bbe620b7d89d994',1,'LR11x0::reset()'],['../class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f',1,'SX126x::reset()']]], + ['resetfcntdown_474',['resetFCntDown',['../class_lo_ra_w_a_n_node.html#af4b3d07cd9bf4178d627204bae18b648',1,'LoRaWANNode']]], + ['ressize_475',['resSize',['../struct_l_r11x0_gnss_result__t.html#a2fcd901f5815f3e4760f61d2bc7a7a9b',1,'LR11x0GnssResult_t']]], + ['rf69_476',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69::RF69()'],['../class_r_f69.html',1,'RF69']]], + ['rfm22_477',['RFM22',['../class_r_f_m22.html',1,'']]], + ['rfm23_478',['RFM23',['../class_r_f_m23.html',1,'']]], + ['rfm95_479',['RFM95',['../class_r_f_m95.html',1,'']]], + ['rfm96_480',['RFM96',['../class_r_f_m96.html',1,'']]], + ['rfm97_481',['RFM97',['../class_r_f_m97.html',1,'']]], + ['rfm98_482',['RFM98',['../class_r_f_m98.html',1,'']]], + ['rfswitch_5fmax_5fpins_483',['RFSWITCH_MAX_PINS',['../class_module.html#a0c11551e12579bbabf57b19e12555b3c',1,'Module']]], + ['rfswitchmode_5ft_484',['RfSwitchMode_t',['../struct_module_1_1_rf_switch_mode__t.html',1,'Module']]], + ['rssi_485',['rssi',['../union_channel_scan_config__t.html#ad728b1bd8f0410660f51df0b27f2797e',1,'ChannelScanConfig_t::rssi()'],['../struct_l_r11x0_wifi_result__t.html#acac3f837ac4fa56e5fda3221f89f3d9f',1,'LR11x0WifiResult_t::rssi()']]], + ['rssiscanconfig_5ft_486',['RSSIScanConfig_t',['../struct_r_s_s_i_scan_config__t.html',1,'']]], + ['rttyclient_487',['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)'],['../class_r_t_t_y_client.html',1,'RTTYClient']]], + ['rx1span_488',['rx1Span',['../struct_lo_ra_w_a_n_band__t.html#af8def1e0b5c3dc122557f71f5637a529',1,'LoRaWANBand_t']]], + ['rx2_489',['rx2',['../struct_lo_ra_w_a_n_band__t.html#ae3ed10eddc647a6f770121a1662a854f',1,'LoRaWANBand_t']]] ]; diff --git a/search/classes_0.js b/search/classes_0.js index a0f66c94..45e73654 100644 --- a/search/classes_0.js +++ b/search/classes_0.js @@ -1,7 +1,7 @@ var searchData= [ - ['afskclient_713',['AFSKClient',['../class_a_f_s_k_client.html',1,'']]], - ['aprsclient_714',['APRSClient',['../class_a_p_r_s_client.html',1,'']]], - ['ax25client_715',['AX25Client',['../class_a_x25_client.html',1,'']]], - ['ax25frame_716',['AX25Frame',['../class_a_x25_frame.html',1,'']]] + ['afskclient_714',['AFSKClient',['../class_a_f_s_k_client.html',1,'']]], + ['aprsclient_715',['APRSClient',['../class_a_p_r_s_client.html',1,'']]], + ['ax25client_716',['AX25Client',['../class_a_x25_client.html',1,'']]], + ['ax25frame_717',['AX25Frame',['../class_a_x25_frame.html',1,'']]] ]; diff --git a/search/classes_1.js b/search/classes_1.js index 340a646d..9c797947 100644 --- a/search/classes_1.js +++ b/search/classes_1.js @@ -1,5 +1,5 @@ var searchData= [ - ['bellclient_717',['BellClient',['../class_bell_client.html',1,'']]], - ['bellmodem_5ft_718',['BellModem_t',['../struct_bell_modem__t.html',1,'']]] + ['bellclient_718',['BellClient',['../class_bell_client.html',1,'']]], + ['bellmodem_5ft_719',['BellModem_t',['../struct_bell_modem__t.html',1,'']]] ]; diff --git a/search/classes_2.js b/search/classes_2.js index a2ed13a3..97466470 100644 --- a/search/classes_2.js +++ b/search/classes_2.js @@ -1,6 +1,6 @@ var searchData= [ - ['cadscanconfig_5ft_719',['CADScanConfig_t',['../struct_c_a_d_scan_config__t.html',1,'']]], - ['cc1101_720',['CC1101',['../class_c_c1101.html',1,'']]], - ['channelscanconfig_5ft_721',['ChannelScanConfig_t',['../union_channel_scan_config__t.html',1,'']]] + ['cadscanconfig_5ft_720',['CADScanConfig_t',['../struct_c_a_d_scan_config__t.html',1,'']]], + ['cc1101_721',['CC1101',['../class_c_c1101.html',1,'']]], + ['channelscanconfig_5ft_722',['ChannelScanConfig_t',['../union_channel_scan_config__t.html',1,'']]] ]; diff --git a/search/classes_3.js b/search/classes_3.js index 7fdab9d2..47439414 100644 --- a/search/classes_3.js +++ b/search/classes_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['datarate_5ft_722',['DataRate_t',['../union_data_rate__t.html',1,'']]] + ['datarate_5ft_723',['DataRate_t',['../union_data_rate__t.html',1,'']]] ]; diff --git a/search/classes_4.js b/search/classes_4.js index be002534..2a65592c 100644 --- a/search/classes_4.js +++ b/search/classes_4.js @@ -1,5 +1,5 @@ var searchData= [ - ['esphal_723',['EspHal',['../class_esp_hal.html',1,'']]], - ['externalradio_724',['ExternalRadio',['../class_external_radio.html',1,'']]] + ['esphal_724',['EspHal',['../class_esp_hal.html',1,'']]], + ['externalradio_725',['ExternalRadio',['../class_external_radio.html',1,'']]] ]; diff --git a/search/classes_5.js b/search/classes_5.js index b175181a..97f37a8e 100644 --- a/search/classes_5.js +++ b/search/classes_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['fsk4client_725',['FSK4Client',['../class_f_s_k4_client.html',1,'']]], - ['fskrate_5ft_726',['FSKRate_t',['../struct_f_s_k_rate__t.html',1,'']]] + ['fsk4client_726',['FSK4Client',['../class_f_s_k4_client.html',1,'']]], + ['fskrate_5ft_727',['FSKRate_t',['../struct_f_s_k_rate__t.html',1,'']]] ]; diff --git a/search/classes_6.js b/search/classes_6.js index 911be009..d080aab6 100644 --- a/search/classes_6.js +++ b/search/classes_6.js @@ -1,4 +1,4 @@ var searchData= [ - ['hellclient_727',['HellClient',['../class_hell_client.html',1,'']]] + ['hellclient_728',['HellClient',['../class_hell_client.html',1,'']]] ]; diff --git a/search/classes_7.js b/search/classes_7.js index ab20d374..33f8c798 100644 --- a/search/classes_7.js +++ b/search/classes_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['ita2string_728',['ITA2String',['../class_i_t_a2_string.html',1,'']]] + ['ita2string_729',['ITA2String',['../class_i_t_a2_string.html',1,'']]] ]; diff --git a/search/classes_8.js b/search/classes_8.js index e00da68d..e8db9d71 100644 --- a/search/classes_8.js +++ b/search/classes_8.js @@ -1,27 +1,27 @@ var searchData= [ - ['llcc68_729',['LLCC68',['../class_l_l_c_c68.html',1,'']]], - ['lorarate_5ft_730',['LoRaRate_t',['../struct_lo_ra_rate__t.html',1,'']]], - ['lorawanband_5ft_731',['LoRaWANBand_t',['../struct_lo_ra_w_a_n_band__t.html',1,'']]], - ['lorawanbandnum_5ft_732',['LoRaWANBandNum_t',['../struct_lo_ra_w_a_n_band_num__t.html',1,'']]], - ['lorawanchannel_5ft_733',['LoRaWANChannel_t',['../struct_lo_ra_w_a_n_channel__t.html',1,'']]], - ['lorawanchannelspan_5ft_734',['LoRaWANChannelSpan_t',['../struct_lo_ra_w_a_n_channel_span__t.html',1,'']]], - ['lorawanevent_5ft_735',['LoRaWANEvent_t',['../struct_lo_ra_w_a_n_event__t.html',1,'']]], - ['lorawanjoinevent_5ft_736',['LoRaWANJoinEvent_t',['../struct_lo_ra_w_a_n_join_event__t.html',1,'']]], - ['lorawanmaccommand_5ft_737',['LoRaWANMacCommand_t',['../struct_lo_ra_w_a_n_mac_command__t.html',1,'']]], - ['lorawannode_738',['LoRaWANNode',['../class_lo_ra_w_a_n_node.html',1,'']]], - ['lr1110_739',['LR1110',['../class_l_r1110.html',1,'']]], - ['lr1120_740',['LR1120',['../class_l_r1120.html',1,'']]], - ['lr1121_741',['LR1121',['../class_l_r1121.html',1,'']]], - ['lr11x0_742',['LR11x0',['../class_l_r11x0.html',1,'']]], - ['lr11x0gnssalmanacstatus_5ft_743',['LR11x0GnssAlmanacStatus_t',['../struct_l_r11x0_gnss_almanac_status__t.html',1,'']]], - ['lr11x0gnssalmanacstatuspart_5ft_744',['LR11x0GnssAlmanacStatusPart_t',['../struct_l_r11x0_gnss_almanac_status_part__t.html',1,'']]], - ['lr11x0gnssposition_5ft_745',['LR11x0GnssPosition_t',['../struct_l_r11x0_gnss_position__t.html',1,'']]], - ['lr11x0gnssresult_5ft_746',['LR11x0GnssResult_t',['../struct_l_r11x0_gnss_result__t.html',1,'']]], - ['lr11x0gnsssatellite_5ft_747',['LR11x0GnssSatellite_t',['../struct_l_r11x0_gnss_satellite__t.html',1,'']]], - ['lr11x0versioninfo_5ft_748',['LR11x0VersionInfo_t',['../struct_l_r11x0_version_info__t.html',1,'']]], - ['lr11x0wifiresult_5ft_749',['LR11x0WifiResult_t',['../struct_l_r11x0_wifi_result__t.html',1,'']]], - ['lr11x0wifiresultextended_5ft_750',['LR11x0WifiResultExtended_t',['../struct_l_r11x0_wifi_result_extended__t.html',1,'']]], - ['lr11x0wifiresultfull_5ft_751',['LR11x0WifiResultFull_t',['../struct_l_r11x0_wifi_result_full__t.html',1,'']]], - ['lrfhssrate_5ft_752',['LrFhssRate_t',['../struct_lr_fhss_rate__t.html',1,'']]] + ['llcc68_730',['LLCC68',['../class_l_l_c_c68.html',1,'']]], + ['lorarate_5ft_731',['LoRaRate_t',['../struct_lo_ra_rate__t.html',1,'']]], + ['lorawanband_5ft_732',['LoRaWANBand_t',['../struct_lo_ra_w_a_n_band__t.html',1,'']]], + ['lorawanbandnum_5ft_733',['LoRaWANBandNum_t',['../struct_lo_ra_w_a_n_band_num__t.html',1,'']]], + ['lorawanchannel_5ft_734',['LoRaWANChannel_t',['../struct_lo_ra_w_a_n_channel__t.html',1,'']]], + ['lorawanchannelspan_5ft_735',['LoRaWANChannelSpan_t',['../struct_lo_ra_w_a_n_channel_span__t.html',1,'']]], + ['lorawanevent_5ft_736',['LoRaWANEvent_t',['../struct_lo_ra_w_a_n_event__t.html',1,'']]], + ['lorawanjoinevent_5ft_737',['LoRaWANJoinEvent_t',['../struct_lo_ra_w_a_n_join_event__t.html',1,'']]], + ['lorawanmaccommand_5ft_738',['LoRaWANMacCommand_t',['../struct_lo_ra_w_a_n_mac_command__t.html',1,'']]], + ['lorawannode_739',['LoRaWANNode',['../class_lo_ra_w_a_n_node.html',1,'']]], + ['lr1110_740',['LR1110',['../class_l_r1110.html',1,'']]], + ['lr1120_741',['LR1120',['../class_l_r1120.html',1,'']]], + ['lr1121_742',['LR1121',['../class_l_r1121.html',1,'']]], + ['lr11x0_743',['LR11x0',['../class_l_r11x0.html',1,'']]], + ['lr11x0gnssalmanacstatus_5ft_744',['LR11x0GnssAlmanacStatus_t',['../struct_l_r11x0_gnss_almanac_status__t.html',1,'']]], + ['lr11x0gnssalmanacstatuspart_5ft_745',['LR11x0GnssAlmanacStatusPart_t',['../struct_l_r11x0_gnss_almanac_status_part__t.html',1,'']]], + ['lr11x0gnssposition_5ft_746',['LR11x0GnssPosition_t',['../struct_l_r11x0_gnss_position__t.html',1,'']]], + ['lr11x0gnssresult_5ft_747',['LR11x0GnssResult_t',['../struct_l_r11x0_gnss_result__t.html',1,'']]], + ['lr11x0gnsssatellite_5ft_748',['LR11x0GnssSatellite_t',['../struct_l_r11x0_gnss_satellite__t.html',1,'']]], + ['lr11x0versioninfo_5ft_749',['LR11x0VersionInfo_t',['../struct_l_r11x0_version_info__t.html',1,'']]], + ['lr11x0wifiresult_5ft_750',['LR11x0WifiResult_t',['../struct_l_r11x0_wifi_result__t.html',1,'']]], + ['lr11x0wifiresultextended_5ft_751',['LR11x0WifiResultExtended_t',['../struct_l_r11x0_wifi_result_extended__t.html',1,'']]], + ['lr11x0wifiresultfull_5ft_752',['LR11x0WifiResultFull_t',['../struct_l_r11x0_wifi_result_full__t.html',1,'']]], + ['lrfhssrate_5ft_753',['LrFhssRate_t',['../struct_lr_fhss_rate__t.html',1,'']]] ]; diff --git a/search/classes_9.js b/search/classes_9.js index 3fd576bb..52dde17e 100644 --- a/search/classes_9.js +++ b/search/classes_9.js @@ -1,5 +1,5 @@ var searchData= [ - ['module_753',['Module',['../class_module.html',1,'']]], - ['morseclient_754',['MorseClient',['../class_morse_client.html',1,'']]] + ['module_754',['Module',['../class_module.html',1,'']]], + ['morseclient_755',['MorseClient',['../class_morse_client.html',1,'']]] ]; diff --git a/search/classes_a.js b/search/classes_a.js index 33c3c9b8..ac10d3be 100644 --- a/search/classes_a.js +++ b/search/classes_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['nrf24_755',['nRF24',['../classn_r_f24.html',1,'']]] + ['nrf24_756',['nRF24',['../classn_r_f24.html',1,'']]] ]; diff --git a/search/classes_b.js b/search/classes_b.js index d94dde64..d3758c93 100644 --- a/search/classes_b.js +++ b/search/classes_b.js @@ -1,7 +1,7 @@ var searchData= [ - ['pagerclient_756',['PagerClient',['../class_pager_client.html',1,'']]], - ['physicallayer_757',['PhysicalLayer',['../class_physical_layer.html',1,'']]], - ['picohal_758',['PicoHal',['../class_pico_hal.html',1,'']]], - ['pihal_759',['PiHal',['../class_pi_hal.html',1,'']]] + ['pagerclient_757',['PagerClient',['../class_pager_client.html',1,'']]], + ['physicallayer_758',['PhysicalLayer',['../class_physical_layer.html',1,'']]], + ['picohal_759',['PicoHal',['../class_pico_hal.html',1,'']]], + ['pihal_760',['PiHal',['../class_pi_hal.html',1,'']]] ]; diff --git a/search/classes_c.js b/search/classes_c.js index be6a808c..b966b0fe 100644 --- a/search/classes_c.js +++ b/search/classes_c.js @@ -1,19 +1,19 @@ var searchData= [ - ['radiolibaes128_760',['RadioLibAES128',['../class_radio_lib_a_e_s128.html',1,'']]], - ['radiolibbch_761',['RadioLibBCH',['../class_radio_lib_b_c_h.html',1,'']]], - ['radiolibconvcode_762',['RadioLibConvCode',['../class_radio_lib_conv_code.html',1,'']]], - ['radiolibcrc_763',['RadioLibCRC',['../class_radio_lib_c_r_c.html',1,'']]], - ['radiolibhal_764',['RadioLibHal',['../class_radio_lib_hal.html',1,'']]], - ['radiolibprint_765',['RadioLibPrint',['../class_radio_lib_print.html',1,'']]], - ['rf69_766',['RF69',['../class_r_f69.html',1,'']]], - ['rfm22_767',['RFM22',['../class_r_f_m22.html',1,'']]], - ['rfm23_768',['RFM23',['../class_r_f_m23.html',1,'']]], - ['rfm95_769',['RFM95',['../class_r_f_m95.html',1,'']]], - ['rfm96_770',['RFM96',['../class_r_f_m96.html',1,'']]], - ['rfm97_771',['RFM97',['../class_r_f_m97.html',1,'']]], - ['rfm98_772',['RFM98',['../class_r_f_m98.html',1,'']]], - ['rfswitchmode_5ft_773',['RfSwitchMode_t',['../struct_module_1_1_rf_switch_mode__t.html',1,'Module']]], - ['rssiscanconfig_5ft_774',['RSSIScanConfig_t',['../struct_r_s_s_i_scan_config__t.html',1,'']]], - ['rttyclient_775',['RTTYClient',['../class_r_t_t_y_client.html',1,'']]] + ['radiolibaes128_761',['RadioLibAES128',['../class_radio_lib_a_e_s128.html',1,'']]], + ['radiolibbch_762',['RadioLibBCH',['../class_radio_lib_b_c_h.html',1,'']]], + ['radiolibconvcode_763',['RadioLibConvCode',['../class_radio_lib_conv_code.html',1,'']]], + ['radiolibcrc_764',['RadioLibCRC',['../class_radio_lib_c_r_c.html',1,'']]], + ['radiolibhal_765',['RadioLibHal',['../class_radio_lib_hal.html',1,'']]], + ['radiolibprint_766',['RadioLibPrint',['../class_radio_lib_print.html',1,'']]], + ['rf69_767',['RF69',['../class_r_f69.html',1,'']]], + ['rfm22_768',['RFM22',['../class_r_f_m22.html',1,'']]], + ['rfm23_769',['RFM23',['../class_r_f_m23.html',1,'']]], + ['rfm95_770',['RFM95',['../class_r_f_m95.html',1,'']]], + ['rfm96_771',['RFM96',['../class_r_f_m96.html',1,'']]], + ['rfm97_772',['RFM97',['../class_r_f_m97.html',1,'']]], + ['rfm98_773',['RFM98',['../class_r_f_m98.html',1,'']]], + ['rfswitchmode_5ft_774',['RfSwitchMode_t',['../struct_module_1_1_rf_switch_mode__t.html',1,'Module']]], + ['rssiscanconfig_5ft_775',['RSSIScanConfig_t',['../struct_r_s_s_i_scan_config__t.html',1,'']]], + ['rttyclient_776',['RTTYClient',['../class_r_t_t_y_client.html',1,'']]] ]; diff --git a/search/classes_d.js b/search/classes_d.js index 4acb169d..6f69c745 100644 --- a/search/classes_d.js +++ b/search/classes_d.js @@ -1,31 +1,31 @@ var searchData= [ - ['si4430_776',['Si4430',['../class_si4430.html',1,'']]], - ['si4431_777',['Si4431',['../class_si4431.html',1,'']]], - ['si4432_778',['Si4432',['../class_si4432.html',1,'']]], - ['si443x_779',['Si443x',['../class_si443x.html',1,'']]], - ['spiclk_5ft_780',['spiClk_t',['../unionspi_clk__t.html',1,'']]], - ['spiconfig_5ft_781',['SPIConfig_t',['../struct_module_1_1_s_p_i_config__t.html',1,'Module']]], - ['sstvclient_782',['SSTVClient',['../class_s_s_t_v_client.html',1,'']]], - ['sstvmode_5ft_783',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]], - ['stm32wlx_784',['STM32WLx',['../class_s_t_m32_w_lx.html',1,'']]], - ['stm32wlx_5fmodule_785',['STM32WLx_Module',['../class_s_t_m32_w_lx___module.html',1,'']]], - ['stm32wlxhal_786',['Stm32wlxHal',['../class_stm32wlx_hal.html',1,'']]], - ['sx1231_787',['SX1231',['../class_s_x1231.html',1,'']]], - ['sx1233_788',['SX1233',['../class_s_x1233.html',1,'']]], - ['sx1261_789',['SX1261',['../class_s_x1261.html',1,'']]], - ['sx1262_790',['SX1262',['../class_s_x1262.html',1,'']]], - ['sx1268_791',['SX1268',['../class_s_x1268.html',1,'']]], - ['sx126x_792',['SX126x',['../class_s_x126x.html',1,'']]], - ['sx1272_793',['SX1272',['../class_s_x1272.html',1,'']]], - ['sx1273_794',['SX1273',['../class_s_x1273.html',1,'']]], - ['sx1276_795',['SX1276',['../class_s_x1276.html',1,'']]], - ['sx1277_796',['SX1277',['../class_s_x1277.html',1,'']]], - ['sx1278_797',['SX1278',['../class_s_x1278.html',1,'']]], - ['sx1279_798',['SX1279',['../class_s_x1279.html',1,'']]], - ['sx127x_799',['SX127x',['../class_s_x127x.html',1,'']]], - ['sx1280_800',['SX1280',['../class_s_x1280.html',1,'']]], - ['sx1281_801',['SX1281',['../class_s_x1281.html',1,'']]], - ['sx1282_802',['SX1282',['../class_s_x1282.html',1,'']]], - ['sx128x_803',['SX128x',['../class_s_x128x.html',1,'']]] + ['si4430_777',['Si4430',['../class_si4430.html',1,'']]], + ['si4431_778',['Si4431',['../class_si4431.html',1,'']]], + ['si4432_779',['Si4432',['../class_si4432.html',1,'']]], + ['si443x_780',['Si443x',['../class_si443x.html',1,'']]], + ['spiclk_5ft_781',['spiClk_t',['../unionspi_clk__t.html',1,'']]], + ['spiconfig_5ft_782',['SPIConfig_t',['../struct_module_1_1_s_p_i_config__t.html',1,'Module']]], + ['sstvclient_783',['SSTVClient',['../class_s_s_t_v_client.html',1,'']]], + ['sstvmode_5ft_784',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]], + ['stm32wlx_785',['STM32WLx',['../class_s_t_m32_w_lx.html',1,'']]], + ['stm32wlx_5fmodule_786',['STM32WLx_Module',['../class_s_t_m32_w_lx___module.html',1,'']]], + ['stm32wlxhal_787',['Stm32wlxHal',['../class_stm32wlx_hal.html',1,'']]], + ['sx1231_788',['SX1231',['../class_s_x1231.html',1,'']]], + ['sx1233_789',['SX1233',['../class_s_x1233.html',1,'']]], + ['sx1261_790',['SX1261',['../class_s_x1261.html',1,'']]], + ['sx1262_791',['SX1262',['../class_s_x1262.html',1,'']]], + ['sx1268_792',['SX1268',['../class_s_x1268.html',1,'']]], + ['sx126x_793',['SX126x',['../class_s_x126x.html',1,'']]], + ['sx1272_794',['SX1272',['../class_s_x1272.html',1,'']]], + ['sx1273_795',['SX1273',['../class_s_x1273.html',1,'']]], + ['sx1276_796',['SX1276',['../class_s_x1276.html',1,'']]], + ['sx1277_797',['SX1277',['../class_s_x1277.html',1,'']]], + ['sx1278_798',['SX1278',['../class_s_x1278.html',1,'']]], + ['sx1279_799',['SX1279',['../class_s_x1279.html',1,'']]], + ['sx127x_800',['SX127x',['../class_s_x127x.html',1,'']]], + ['sx1280_801',['SX1280',['../class_s_x1280.html',1,'']]], + ['sx1281_802',['SX1281',['../class_s_x1281.html',1,'']]], + ['sx1282_803',['SX1282',['../class_s_x1282.html',1,'']]], + ['sx128x_804',['SX128x',['../class_s_x128x.html',1,'']]] ]; diff --git a/search/classes_e.js b/search/classes_e.js index 96b5e4d6..cca28971 100644 --- a/search/classes_e.js +++ b/search/classes_e.js @@ -1,5 +1,5 @@ var searchData= [ - ['tockhal_804',['TockHal',['../class_tock_hal.html',1,'']]], - ['tone_5ft_805',['tone_t',['../structtone__t.html',1,'']]] + ['tockhal_805',['TockHal',['../class_tock_hal.html',1,'']]], + ['tone_5ft_806',['tone_t',['../structtone__t.html',1,'']]] ]; diff --git a/search/defines_0.js b/search/defines_0.js index 100dde41..2cb5c7d2 100644 --- a/search/defines_0.js +++ b/search/defines_0.js @@ -1,6 +1,6 @@ var searchData= [ - ['lr11xx_5ffirmware_5fimage_5fsize_1354',['LR11XX_FIRMWARE_IMAGE_SIZE',['../lr1110__transceiver__0306_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0307_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0307.h'],['../lr1110__transceiver__0401_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0401.h'],['../lr1120__transceiver__0101_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1120_transceiver_0101.h'],['../lr1120__transceiver__0102_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1120_transceiver_0102.h'],['../lr1120__transceiver__0201_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1120_transceiver_0201.h'],['../lr1121__transceiver__0103_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1121_transceiver_0103.h'],['../lr1110__transceiver__0305_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0305.h']]], - ['lr11xx_5ffirmware_5fupdate_5fto_1355',['LR11XX_FIRMWARE_UPDATE_TO',['../lr1120__transceiver__0101_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1120_transceiver_0101.h'],['../lr1121__transceiver__0103_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1121_transceiver_0103.h'],['../lr1120__transceiver__0201_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1120_transceiver_0201.h'],['../lr1120__transceiver__0102_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1120_transceiver_0102.h'],['../lr1110__transceiver__0401_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0401.h'],['../lr1110__transceiver__0307_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0307.h'],['../lr1110__transceiver__0306_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0305_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0305.h']]], - ['lr11xx_5ffirmware_5fversion_1356',['LR11XX_FIRMWARE_VERSION',['../lr1110__transceiver__0305_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0305.h'],['../lr1110__transceiver__0306_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0307_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0307.h'],['../lr1110__transceiver__0401_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0401.h'],['../lr1120__transceiver__0101_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1120_transceiver_0101.h'],['../lr1120__transceiver__0102_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1120_transceiver_0102.h'],['../lr1120__transceiver__0201_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1120_transceiver_0201.h'],['../lr1121__transceiver__0103_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1121_transceiver_0103.h']]] + ['lr11xx_5ffirmware_5fimage_5fsize_1355',['LR11XX_FIRMWARE_IMAGE_SIZE',['../lr1110__transceiver__0306_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0307_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0307.h'],['../lr1110__transceiver__0401_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0401.h'],['../lr1120__transceiver__0101_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1120_transceiver_0101.h'],['../lr1120__transceiver__0102_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1120_transceiver_0102.h'],['../lr1120__transceiver__0201_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1120_transceiver_0201.h'],['../lr1121__transceiver__0103_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1121_transceiver_0103.h'],['../lr1110__transceiver__0305_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0305.h']]], + ['lr11xx_5ffirmware_5fupdate_5fto_1356',['LR11XX_FIRMWARE_UPDATE_TO',['../lr1120__transceiver__0101_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1120_transceiver_0101.h'],['../lr1121__transceiver__0103_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1121_transceiver_0103.h'],['../lr1120__transceiver__0201_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1120_transceiver_0201.h'],['../lr1120__transceiver__0102_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1120_transceiver_0102.h'],['../lr1110__transceiver__0401_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0401.h'],['../lr1110__transceiver__0307_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0307.h'],['../lr1110__transceiver__0306_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0305_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0305.h']]], + ['lr11xx_5ffirmware_5fversion_1357',['LR11XX_FIRMWARE_VERSION',['../lr1110__transceiver__0305_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0305.h'],['../lr1110__transceiver__0306_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0307_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0307.h'],['../lr1110__transceiver__0401_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0401.h'],['../lr1120__transceiver__0101_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1120_transceiver_0101.h'],['../lr1120__transceiver__0102_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1120_transceiver_0102.h'],['../lr1120__transceiver__0201_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1120_transceiver_0201.h'],['../lr1121__transceiver__0103_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1121_transceiver_0103.h']]] ]; diff --git a/search/enums_0.js b/search/enums_0.js index 143807fc..196db139 100644 --- a/search/enums_0.js +++ b/search/enums_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['opmode_5ft_1343',['OpMode_t',['../class_module.html#a5a67b3a63420d762ecba9448671c99bf',1,'Module::OpMode_t()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7',1,'LR11x0::OpMode_t()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787',1,'STM32WLx::OpMode_t()']]] + ['opmode_5ft_1344',['OpMode_t',['../class_module.html#a5a67b3a63420d762ecba9448671c99bf',1,'Module::OpMode_t()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7',1,'LR11x0::OpMode_t()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787',1,'STM32WLx::OpMode_t()']]] ]; diff --git a/search/enumvalues_0.js b/search/enumvalues_0.js index 058f7989..48067ea1 100644 --- a/search/enumvalues_0.js +++ b/search/enumvalues_0.js @@ -1,13 +1,13 @@ var searchData= [ - ['mode_5fend_5fof_5ftable_1344',['MODE_END_OF_TABLE',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a2398f9003962c8dc6d199e69ba850917',1,'LR11x0::MODE_END_OF_TABLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a0cffe238c4822ab7f8beddf4ec72052b',1,'STM32WLx::MODE_END_OF_TABLE()'],['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa81cdd8986054c2ae5657eb5dfd536770',1,'Module::MODE_END_OF_TABLE()']]], - ['mode_5fgnss_1345',['MODE_GNSS',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a5f126b8030f06bb14b1659ccce645bad',1,'LR11x0']]], - ['mode_5fidle_1346',['MODE_IDLE',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa505acc66c5e0faa83d2216aca5f3e671',1,'Module::MODE_IDLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a8cf0ccad0eec5fde12798e0b0347d6bf',1,'STM32WLx::MODE_IDLE()']]], - ['mode_5frx_1347',['MODE_RX',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a85ffabc9f35e2683aefdd785bf912172',1,'STM32WLx::MODE_RX()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a98f8232e13745eec261cd755c457c034',1,'LR11x0::MODE_RX()'],['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa7664838bb0818663f55b3354fec8a18f',1,'Module::MODE_RX()']]], - ['mode_5fstby_1348',['MODE_STBY',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7ab223e6d6104d722d61e1d2aa22231012',1,'LR11x0']]], - ['mode_5ftx_1349',['MODE_TX',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa269f4bc8ba3eb3d8568feb7b2decf571',1,'Module::MODE_TX()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a71c6230a03a213d3e19185691c6db551',1,'LR11x0::MODE_TX()']]], - ['mode_5ftx_5fhf_1350',['MODE_TX_HF',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7acbbc5768e10e22bfdf776faffbfced46',1,'LR11x0']]], - ['mode_5ftx_5fhp_1351',['MODE_TX_HP',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a005b9c110df839cd001f82f4660762fd',1,'LR11x0::MODE_TX_HP()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a50df4b8580f1bded3cb61e79f954789e',1,'STM32WLx::MODE_TX_HP()']]], - ['mode_5ftx_5flp_1352',['MODE_TX_LP',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a20a2eda9aaf3c7cdb4a55955d6ff3544',1,'STM32WLx']]], - ['mode_5fwifi_1353',['MODE_WIFI',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a3bee9db01eab3ac70ff178c95fe8f8ab',1,'LR11x0']]] + ['mode_5fend_5fof_5ftable_1345',['MODE_END_OF_TABLE',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a2398f9003962c8dc6d199e69ba850917',1,'LR11x0::MODE_END_OF_TABLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a0cffe238c4822ab7f8beddf4ec72052b',1,'STM32WLx::MODE_END_OF_TABLE()'],['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa81cdd8986054c2ae5657eb5dfd536770',1,'Module::MODE_END_OF_TABLE()']]], + ['mode_5fgnss_1346',['MODE_GNSS',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a5f126b8030f06bb14b1659ccce645bad',1,'LR11x0']]], + ['mode_5fidle_1347',['MODE_IDLE',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa505acc66c5e0faa83d2216aca5f3e671',1,'Module::MODE_IDLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a8cf0ccad0eec5fde12798e0b0347d6bf',1,'STM32WLx::MODE_IDLE()']]], + ['mode_5frx_1348',['MODE_RX',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a85ffabc9f35e2683aefdd785bf912172',1,'STM32WLx::MODE_RX()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a98f8232e13745eec261cd755c457c034',1,'LR11x0::MODE_RX()'],['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa7664838bb0818663f55b3354fec8a18f',1,'Module::MODE_RX()']]], + ['mode_5fstby_1349',['MODE_STBY',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7ab223e6d6104d722d61e1d2aa22231012',1,'LR11x0']]], + ['mode_5ftx_1350',['MODE_TX',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa269f4bc8ba3eb3d8568feb7b2decf571',1,'Module::MODE_TX()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a71c6230a03a213d3e19185691c6db551',1,'LR11x0::MODE_TX()']]], + ['mode_5ftx_5fhf_1351',['MODE_TX_HF',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7acbbc5768e10e22bfdf776faffbfced46',1,'LR11x0']]], + ['mode_5ftx_5fhp_1352',['MODE_TX_HP',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a005b9c110df839cd001f82f4660762fd',1,'LR11x0::MODE_TX_HP()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a50df4b8580f1bded3cb61e79f954789e',1,'STM32WLx::MODE_TX_HP()']]], + ['mode_5ftx_5flp_1353',['MODE_TX_LP',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a20a2eda9aaf3c7cdb4a55955d6ff3544',1,'STM32WLx']]], + ['mode_5fwifi_1354',['MODE_WIFI',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a3bee9db01eab3ac70ff178c95fe8f8ab',1,'LR11x0']]] ]; diff --git a/search/files_0.js b/search/files_0.js index db45185e..e07226bd 100644 --- a/search/files_0.js +++ b/search/files_0.js @@ -1,11 +1,11 @@ var searchData= [ - ['lr1110_5ftransceiver_5f0305_2eh_806',['lr1110_transceiver_0305.h',['../lr1110__transceiver__0305_8h.html',1,'']]], - ['lr1110_5ftransceiver_5f0306_2eh_807',['lr1110_transceiver_0306.h',['../lr1110__transceiver__0306_8h.html',1,'']]], - ['lr1110_5ftransceiver_5f0307_2eh_808',['lr1110_transceiver_0307.h',['../lr1110__transceiver__0307_8h.html',1,'']]], - ['lr1110_5ftransceiver_5f0401_2eh_809',['lr1110_transceiver_0401.h',['../lr1110__transceiver__0401_8h.html',1,'']]], - ['lr1120_5ftransceiver_5f0101_2eh_810',['lr1120_transceiver_0101.h',['../lr1120__transceiver__0101_8h.html',1,'']]], - ['lr1120_5ftransceiver_5f0102_2eh_811',['lr1120_transceiver_0102.h',['../lr1120__transceiver__0102_8h.html',1,'']]], - ['lr1120_5ftransceiver_5f0201_2eh_812',['lr1120_transceiver_0201.h',['../lr1120__transceiver__0201_8h.html',1,'']]], - ['lr1121_5ftransceiver_5f0103_2eh_813',['lr1121_transceiver_0103.h',['../lr1121__transceiver__0103_8h.html',1,'']]] + ['lr1110_5ftransceiver_5f0305_2eh_807',['lr1110_transceiver_0305.h',['../lr1110__transceiver__0305_8h.html',1,'']]], + ['lr1110_5ftransceiver_5f0306_2eh_808',['lr1110_transceiver_0306.h',['../lr1110__transceiver__0306_8h.html',1,'']]], + ['lr1110_5ftransceiver_5f0307_2eh_809',['lr1110_transceiver_0307.h',['../lr1110__transceiver__0307_8h.html',1,'']]], + ['lr1110_5ftransceiver_5f0401_2eh_810',['lr1110_transceiver_0401.h',['../lr1110__transceiver__0401_8h.html',1,'']]], + ['lr1120_5ftransceiver_5f0101_2eh_811',['lr1120_transceiver_0101.h',['../lr1120__transceiver__0101_8h.html',1,'']]], + ['lr1120_5ftransceiver_5f0102_2eh_812',['lr1120_transceiver_0102.h',['../lr1120__transceiver__0102_8h.html',1,'']]], + ['lr1120_5ftransceiver_5f0201_2eh_813',['lr1120_transceiver_0201.h',['../lr1120__transceiver__0201_8h.html',1,'']]], + ['lr1121_5ftransceiver_5f0103_2eh_814',['lr1121_transceiver_0103.h',['../lr1121__transceiver__0103_8h.html',1,'']]] ]; diff --git a/search/functions_0.js b/search/functions_0.js index 405fbb7d..0e1c4795 100644 --- a/search/functions_0.js +++ b/search/functions_0.js @@ -1,13 +1,13 @@ var searchData= [ - ['activateabp_814',['activateABP',['../class_lo_ra_w_a_n_node.html#a77483c51548e48a5dff4b707f7770e86',1,'LoRaWANNode']]], - ['activateotaa_815',['activateOTAA',['../class_lo_ra_w_a_n_node.html#abd9e976eec64a3bd1ddf3331f2bc93cd',1,'LoRaWANNode']]], - ['afskclient_816',['AFSKClient',['../class_a_f_s_k_client.html#a89c7ab4759d37c9a032ac29fa9782eea',1,'AFSKClient::AFSKClient(PhysicalLayer *phy, uint32_t pin)'],['../class_a_f_s_k_client.html#ac54633fe75157ce126e44e4e494266f2',1,'AFSKClient::AFSKClient(AFSKClient *aud)']]], - ['aprsclient_817',['APRSClient',['../class_a_p_r_s_client.html#a08e166ed706d79c66c1d5b48f195724c',1,'APRSClient::APRSClient(AX25Client *ax)'],['../class_a_p_r_s_client.html#afa314fad96837523df4a73cf47986f82',1,'APRSClient::APRSClient(PhysicalLayer *phy)']]], - ['attachinterrupt_818',['attachInterrupt',['../class_esp_hal.html#a0ac4296d4bede9dd1d65e3e2fce12985',1,'EspHal::attachInterrupt()'],['../class_pi_hal.html#abcd33b2d926e14d98ead593e3cded31f',1,'PiHal::attachInterrupt()'],['../class_pico_hal.html#a960f5c3890a0ee6fd339d93ca9769c62',1,'PicoHal::attachInterrupt()'],['../class_tock_hal.html#a62f237ff6d0bc28db0e94e39fdbc533a',1,'TockHal::attachInterrupt()'],['../class_radio_lib_hal.html#af142f747becacd1e3e13503f79fd5ebe',1,'RadioLibHal::attachInterrupt()']]], - ['autoldro_819',['autoLDRO',['../class_s_x126x.html#ab9ce38cfeaa36ddcc2d82b2974d7088c',1,'SX126x::autoLDRO()'],['../class_s_x1278.html#ae02adcde8c2978c0d1b157729dd5df1e',1,'SX1278::autoLDRO()'],['../class_s_x1272.html#abb4bbfe8acc6026c833d267d78417b63',1,'SX1272::autoLDRO()'],['../class_l_r11x0.html#aa9a8db401189ba0ce5117512b5db6a58',1,'LR11x0::autoLDRO()']]], - ['autosetrxbandwidth_820',['autoSetRxBandwidth',['../class_c_c1101.html#a476adec156ae39974e70ef17b9af7db3',1,'CC1101']]], - ['available_821',['available',['../class_pager_client.html#aec073fa9e5adcff9730482d9583715e9',1,'PagerClient::available()'],['../class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26',1,'PhysicalLayer::available()']]], - ['ax25client_822',['AX25Client',['../class_a_x25_client.html#ab074563d4d22a42d5ea9ad1693d6f373',1,'AX25Client::AX25Client(PhysicalLayer *phy)'],['../class_a_x25_client.html#a9c9244abc270891638312745b301b791',1,'AX25Client::AX25Client(AFSKClient *aud)'],['../class_a_x25_client.html#af82e0dd3b50d58584e4e4083a53a4419',1,'AX25Client::AX25Client(const AX25Client &ax25)']]], - ['ax25frame_823',['AX25Frame',['../class_a_x25_frame.html#a138d97d90a371bef7ebd86cce1cc4979',1,'AX25Frame::AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control)'],['../class_a_x25_frame.html#a60e1b318d6e4b9299a4eab72e40877fc',1,'AX25Frame::AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control, uint8_t protocolID, const char *info)'],['../class_a_x25_frame.html#a3899b8698d772b8285629d6a4f2a642a',1,'AX25Frame::AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control, uint8_t protocolID, uint8_t *info, uint16_t infoLen)'],['../class_a_x25_frame.html#a25b83cc9c281d2758165833fe238fe0e',1,'AX25Frame::AX25Frame(const AX25Frame &frame)']]] + ['activateabp_815',['activateABP',['../class_lo_ra_w_a_n_node.html#a77483c51548e48a5dff4b707f7770e86',1,'LoRaWANNode']]], + ['activateotaa_816',['activateOTAA',['../class_lo_ra_w_a_n_node.html#abd9e976eec64a3bd1ddf3331f2bc93cd',1,'LoRaWANNode']]], + ['afskclient_817',['AFSKClient',['../class_a_f_s_k_client.html#a89c7ab4759d37c9a032ac29fa9782eea',1,'AFSKClient::AFSKClient(PhysicalLayer *phy, uint32_t pin)'],['../class_a_f_s_k_client.html#ac54633fe75157ce126e44e4e494266f2',1,'AFSKClient::AFSKClient(AFSKClient *aud)']]], + ['aprsclient_818',['APRSClient',['../class_a_p_r_s_client.html#a08e166ed706d79c66c1d5b48f195724c',1,'APRSClient::APRSClient(AX25Client *ax)'],['../class_a_p_r_s_client.html#afa314fad96837523df4a73cf47986f82',1,'APRSClient::APRSClient(PhysicalLayer *phy)']]], + ['attachinterrupt_819',['attachInterrupt',['../class_esp_hal.html#a0ac4296d4bede9dd1d65e3e2fce12985',1,'EspHal::attachInterrupt()'],['../class_pi_hal.html#abcd33b2d926e14d98ead593e3cded31f',1,'PiHal::attachInterrupt()'],['../class_pico_hal.html#a960f5c3890a0ee6fd339d93ca9769c62',1,'PicoHal::attachInterrupt()'],['../class_tock_hal.html#a62f237ff6d0bc28db0e94e39fdbc533a',1,'TockHal::attachInterrupt()'],['../class_radio_lib_hal.html#af142f747becacd1e3e13503f79fd5ebe',1,'RadioLibHal::attachInterrupt()']]], + ['autoldro_820',['autoLDRO',['../class_s_x126x.html#ab9ce38cfeaa36ddcc2d82b2974d7088c',1,'SX126x::autoLDRO()'],['../class_s_x1278.html#ae02adcde8c2978c0d1b157729dd5df1e',1,'SX1278::autoLDRO()'],['../class_s_x1272.html#abb4bbfe8acc6026c833d267d78417b63',1,'SX1272::autoLDRO()'],['../class_l_r11x0.html#aa9a8db401189ba0ce5117512b5db6a58',1,'LR11x0::autoLDRO()']]], + ['autosetrxbandwidth_821',['autoSetRxBandwidth',['../class_c_c1101.html#a476adec156ae39974e70ef17b9af7db3',1,'CC1101']]], + ['available_822',['available',['../class_pager_client.html#aec073fa9e5adcff9730482d9583715e9',1,'PagerClient::available()'],['../class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26',1,'PhysicalLayer::available()']]], + ['ax25client_823',['AX25Client',['../class_a_x25_client.html#ab074563d4d22a42d5ea9ad1693d6f373',1,'AX25Client::AX25Client(PhysicalLayer *phy)'],['../class_a_x25_client.html#a9c9244abc270891638312745b301b791',1,'AX25Client::AX25Client(AFSKClient *aud)'],['../class_a_x25_client.html#af82e0dd3b50d58584e4e4083a53a4419',1,'AX25Client::AX25Client(const AX25Client &ax25)']]], + ['ax25frame_824',['AX25Frame',['../class_a_x25_frame.html#a138d97d90a371bef7ebd86cce1cc4979',1,'AX25Frame::AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control)'],['../class_a_x25_frame.html#a60e1b318d6e4b9299a4eab72e40877fc',1,'AX25Frame::AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control, uint8_t protocolID, const char *info)'],['../class_a_x25_frame.html#a3899b8698d772b8285629d6a4f2a642a',1,'AX25Frame::AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control, uint8_t protocolID, uint8_t *info, uint16_t infoLen)'],['../class_a_x25_frame.html#a25b83cc9c281d2758165833fe238fe0e',1,'AX25Frame::AX25Frame(const AX25Frame &frame)']]] ]; diff --git a/search/functions_1.js b/search/functions_1.js index 1022adec..0d0b498f 100644 --- a/search/functions_1.js +++ b/search/functions_1.js @@ -1,14 +1,14 @@ var searchData= [ - ['begin_824',['begin',['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::begin()'],['../class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3',1,'SX1277::begin()'],['../class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf',1,'SX1278::begin()'],['../class_s_x1279.html#a324a37dee0522f43692cd414141becc2',1,'SX1279::begin()'],['../class_s_x127x.html#aeac64ca102a143624993cb7cb5b9e17c',1,'SX127x::begin()'],['../class_s_x128x.html#a275a9a86934124eab4982ad52bf91aea',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a4d1468be141940a12fd3964957f79c1a',1,'APRSClient::begin()'],['../class_a_x25_client.html#aadeefb210a0b5170d4e8d281c2257e73',1,'AX25Client::begin()'],['../class_bell_client.html#add9edc89cd6ff5c527ddbdabe79cb60f',1,'BellClient::begin()'],['../class_l_l_c_c68.html#aa835ee301567f7dac079b42a2055c38c',1,'LLCC68::begin()'],['../class_hell_client.html#a225775fe87f9ed3c3a04142697641242',1,'HellClient::begin()'],['../class_morse_client.html#a516f19bb51b87ead7f7ed149f2ca92cf',1,'MorseClient::begin()'],['../class_pager_client.html#a1a1dc569f9b60b0ddd6ead7af5a8244f',1,'PagerClient::begin()'],['../class_r_t_t_y_client.html#ae0b25083baf01469786b6242389298fa',1,'RTTYClient::begin()'],['../class_s_s_t_v_client.html#a3769dcdebf8b1fa01eb2d8bd2bb3815a',1,'SSTVClient::begin(float base, const SSTVMode_t &mode)'],['../class_s_s_t_v_client.html#afd4257e858a88e5847854a46f166a9b0',1,'SSTVClient::begin(const SSTVMode_t &mode)'],['../class_radio_lib_b_c_h.html#aba6f10d4ac2d40eb2222d1081a34c88b',1,'RadioLibBCH::begin()'],['../class_radio_lib_conv_code.html#af350f0a8b4d01e54e9d7eac9056c56c3',1,'RadioLibConvCode::begin()'],['../class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()'],['../class_c_c1101.html#ad86f23bb3d113d20f6238a671f18b565',1,'CC1101::begin()'],['../class_l_r1110.html#a7656fe337a859388247708aa143d50af',1,'LR1110::begin()'],['../class_l_r1120.html#a0393071d4403d06c665f28c49e755382',1,'LR1120::begin()'],['../class_l_r11x0.html#aa2b69f68ff6171b11a1141c8615240fd',1,'LR11x0::begin()'],['../classn_r_f24.html#a0ef68849f812367432f5a3798f94b8ce',1,'nRF24::begin()'],['../class_r_f69.html#a637ea5386066f5608bcbb4266e5c1bd6',1,'RF69::begin()'],['../class_si4430.html#aaed612b8936609442042d8156e085d2c',1,'Si4430::begin()'],['../class_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3',1,'Si4431::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9',1,'SX1272::begin()'],['../class_s_x126x.html#a936a40038e05740a528f2b53f8e17010',1,'SX126x::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_t_m32_w_lx.html#a4f2a9b5a72b5238d2014199d91094f84',1,'STM32WLx::begin()'],['../class_s_x1233.html#a10fa64ee432a56b50ea6bd42868693af',1,'SX1233::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()']]], - ['beginabp_825',['beginABP',['../class_lo_ra_w_a_n_node.html#a47490d133066cb94887c11ddd0f0dfd3',1,'LoRaWANNode']]], - ['beginble_826',['beginBLE',['../class_s_x128x.html#ace5ede905bf85aada0c61b9cfaaea127',1,'SX128x']]], - ['beginflrc_827',['beginFLRC',['../class_s_x128x.html#a2c4a24623c5fd27b3cc937e55783d709',1,'SX128x']]], - ['beginfsk_828',['beginFSK',['../class_s_x127x.html#af8530e9d858b155eb5acb764a733bcd4',1,'SX127x::beginFSK()'],['../class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1',1,'SX1262::beginFSK()'],['../class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b',1,'SX1279::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44',1,'SX1277::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_t_m32_w_lx.html#af12e8eba13c5dd8bcf8656ed5c1f6cef',1,'STM32WLx::beginFSK()'],['../class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840',1,'SX1276::beginFSK()']]], - ['begingfsk_829',['beginGFSK',['../class_l_r1110.html#afcabcd9b422581cd8a63a63373a98155',1,'LR1110::beginGFSK()'],['../class_l_r1120.html#a4c6b867146f00de5c45aeb4164d51cc5',1,'LR1120::beginGFSK()'],['../class_l_r11x0.html#abcc4c776d1a09bb002226ac95574766d',1,'LR11x0::beginGFSK()'],['../class_s_x128x.html#a6ed60dfbd142315bb4e1abd2555a470a',1,'SX128x::beginGFSK()']]], - ['begingnss_830',['beginGNSS',['../class_l_r11x0.html#ad7f31060cbab41ad53ee6fa7126cd17b',1,'LR11x0']]], - ['beginlrfhss_831',['beginLRFHSS',['../class_l_r1110.html#acc15335d41446254c3b9a87572080388',1,'LR1110::beginLRFHSS()'],['../class_s_x126x.html#af404471ef9d379c58b5b08757593fe6d',1,'SX126x::beginLRFHSS()'],['../class_s_x1268.html#a4f990f9e58d35cefa560c4fc767198fd',1,'SX1268::beginLRFHSS()'],['../class_s_x1262.html#aeeea8315c04afccc8cae8ec0dba2e426',1,'SX1262::beginLRFHSS()'],['../class_l_r11x0.html#a244ee48075d44c7064b454eb9c4afdb8',1,'LR11x0::beginLRFHSS()'],['../class_l_r1120.html#ad49ce378101cf0c3894297808ae27f3a',1,'LR1120::beginLRFHSS()']]], - ['beginotaa_832',['beginOTAA',['../class_lo_ra_w_a_n_node.html#ad0e9f560f592e417060262c862099e15',1,'LoRaWANNode']]], - ['bellclient_833',['BellClient',['../class_bell_client.html#a20fcf0322ef40c31b3bc329f7d89a177',1,'BellClient::BellClient(PhysicalLayer *phy, uint32_t pin)'],['../class_bell_client.html#ab9d0d76bb88fc8bdc995ab800063c149',1,'BellClient::BellClient(AFSKClient *aud)']]], - ['bytearr_834',['byteArr',['../class_i_t_a2_string.html#a3f42f7ad98473dbe36515e676622ed3d',1,'ITA2String']]] + ['begin_825',['begin',['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::begin()'],['../class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3',1,'SX1277::begin()'],['../class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf',1,'SX1278::begin()'],['../class_s_x1279.html#a324a37dee0522f43692cd414141becc2',1,'SX1279::begin()'],['../class_s_x127x.html#aeac64ca102a143624993cb7cb5b9e17c',1,'SX127x::begin()'],['../class_s_x128x.html#a275a9a86934124eab4982ad52bf91aea',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a4d1468be141940a12fd3964957f79c1a',1,'APRSClient::begin()'],['../class_a_x25_client.html#aadeefb210a0b5170d4e8d281c2257e73',1,'AX25Client::begin()'],['../class_bell_client.html#add9edc89cd6ff5c527ddbdabe79cb60f',1,'BellClient::begin()'],['../class_l_l_c_c68.html#aa835ee301567f7dac079b42a2055c38c',1,'LLCC68::begin()'],['../class_hell_client.html#a225775fe87f9ed3c3a04142697641242',1,'HellClient::begin()'],['../class_morse_client.html#a516f19bb51b87ead7f7ed149f2ca92cf',1,'MorseClient::begin()'],['../class_pager_client.html#a1a1dc569f9b60b0ddd6ead7af5a8244f',1,'PagerClient::begin()'],['../class_r_t_t_y_client.html#ae0b25083baf01469786b6242389298fa',1,'RTTYClient::begin()'],['../class_s_s_t_v_client.html#a3769dcdebf8b1fa01eb2d8bd2bb3815a',1,'SSTVClient::begin(float base, const SSTVMode_t &mode)'],['../class_s_s_t_v_client.html#afd4257e858a88e5847854a46f166a9b0',1,'SSTVClient::begin(const SSTVMode_t &mode)'],['../class_radio_lib_b_c_h.html#aba6f10d4ac2d40eb2222d1081a34c88b',1,'RadioLibBCH::begin()'],['../class_radio_lib_conv_code.html#af350f0a8b4d01e54e9d7eac9056c56c3',1,'RadioLibConvCode::begin()'],['../class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()'],['../class_c_c1101.html#ad86f23bb3d113d20f6238a671f18b565',1,'CC1101::begin()'],['../class_l_r1110.html#a7656fe337a859388247708aa143d50af',1,'LR1110::begin()'],['../class_l_r1120.html#a0393071d4403d06c665f28c49e755382',1,'LR1120::begin()'],['../class_l_r11x0.html#aa2b69f68ff6171b11a1141c8615240fd',1,'LR11x0::begin()'],['../classn_r_f24.html#a0ef68849f812367432f5a3798f94b8ce',1,'nRF24::begin()'],['../class_r_f69.html#a637ea5386066f5608bcbb4266e5c1bd6',1,'RF69::begin()'],['../class_si4430.html#aaed612b8936609442042d8156e085d2c',1,'Si4430::begin()'],['../class_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3',1,'Si4431::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9',1,'SX1272::begin()'],['../class_s_x126x.html#a936a40038e05740a528f2b53f8e17010',1,'SX126x::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_t_m32_w_lx.html#a4f2a9b5a72b5238d2014199d91094f84',1,'STM32WLx::begin()'],['../class_s_x1233.html#a10fa64ee432a56b50ea6bd42868693af',1,'SX1233::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()']]], + ['beginabp_826',['beginABP',['../class_lo_ra_w_a_n_node.html#a47490d133066cb94887c11ddd0f0dfd3',1,'LoRaWANNode']]], + ['beginble_827',['beginBLE',['../class_s_x128x.html#ace5ede905bf85aada0c61b9cfaaea127',1,'SX128x']]], + ['beginflrc_828',['beginFLRC',['../class_s_x128x.html#a2c4a24623c5fd27b3cc937e55783d709',1,'SX128x']]], + ['beginfsk_829',['beginFSK',['../class_s_x127x.html#af8530e9d858b155eb5acb764a733bcd4',1,'SX127x::beginFSK()'],['../class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1',1,'SX1262::beginFSK()'],['../class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b',1,'SX1279::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44',1,'SX1277::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_t_m32_w_lx.html#af12e8eba13c5dd8bcf8656ed5c1f6cef',1,'STM32WLx::beginFSK()'],['../class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840',1,'SX1276::beginFSK()']]], + ['begingfsk_830',['beginGFSK',['../class_l_r1110.html#afcabcd9b422581cd8a63a63373a98155',1,'LR1110::beginGFSK()'],['../class_l_r1120.html#a4c6b867146f00de5c45aeb4164d51cc5',1,'LR1120::beginGFSK()'],['../class_l_r11x0.html#abcc4c776d1a09bb002226ac95574766d',1,'LR11x0::beginGFSK()'],['../class_s_x128x.html#a6ed60dfbd142315bb4e1abd2555a470a',1,'SX128x::beginGFSK()']]], + ['begingnss_831',['beginGNSS',['../class_l_r11x0.html#ad7f31060cbab41ad53ee6fa7126cd17b',1,'LR11x0']]], + ['beginlrfhss_832',['beginLRFHSS',['../class_l_r1110.html#acc15335d41446254c3b9a87572080388',1,'LR1110::beginLRFHSS()'],['../class_s_x126x.html#af404471ef9d379c58b5b08757593fe6d',1,'SX126x::beginLRFHSS()'],['../class_s_x1268.html#a4f990f9e58d35cefa560c4fc767198fd',1,'SX1268::beginLRFHSS()'],['../class_s_x1262.html#aeeea8315c04afccc8cae8ec0dba2e426',1,'SX1262::beginLRFHSS()'],['../class_l_r11x0.html#a244ee48075d44c7064b454eb9c4afdb8',1,'LR11x0::beginLRFHSS()'],['../class_l_r1120.html#ad49ce378101cf0c3894297808ae27f3a',1,'LR1120::beginLRFHSS()']]], + ['beginotaa_833',['beginOTAA',['../class_lo_ra_w_a_n_node.html#ad0e9f560f592e417060262c862099e15',1,'LoRaWANNode']]], + ['bellclient_834',['BellClient',['../class_bell_client.html#a20fcf0322ef40c31b3bc329f7d89a177',1,'BellClient::BellClient(PhysicalLayer *phy, uint32_t pin)'],['../class_bell_client.html#ab9d0d76bb88fc8bdc995ab800063c149',1,'BellClient::BellClient(AFSKClient *aud)']]], + ['bytearr_835',['byteArr',['../class_i_t_a2_string.html#a3f42f7ad98473dbe36515e676622ed3d',1,'ITA2String']]] ]; diff --git a/search/functions_10.js b/search/functions_10.js index 9504ee48..8f059591 100644 --- a/search/functions_10.js +++ b/search/functions_10.js @@ -1,9 +1,9 @@ var searchData= [ - ['term_1147',['term',['../class_pi_hal.html#ae5821694030ae6364012be3a34ef584d',1,'PiHal::term()'],['../class_esp_hal.html#a698f840f9ba329d0fb1cc70a9228e2a9',1,'EspHal::term()'],['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module::term()'],['../class_radio_lib_hal.html#aa4f2bd49aea5a19aa9f85c720b4a883e',1,'RadioLibHal::term()'],['../class_pico_hal.html#a27803b7a0b53dca9fd1c74eadb15755a',1,'PicoHal::term()'],['../class_tock_hal.html#a42dcea862b480024119c2730270d8f1e',1,'TockHal::term()']]], - ['timeuntiluplink_1148',['timeUntilUplink',['../class_lo_ra_w_a_n_node.html#a49e690c14858b46692e4ce9aa5a2566a',1,'LoRaWANNode']]], - ['tone_1149',['tone',['../class_pi_hal.html#a95856f347434694b018d0ad18126e041',1,'PiHal::tone()'],['../class_pico_hal.html#abfa0319db88b4c015edf67a9c9b671be',1,'PicoHal::tone()'],['../class_radio_lib_hal.html#a62c9032e834ba420d81dc3e69df64e17',1,'RadioLibHal::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]], - ['transmit_1150',['transmit',['../class_c_c1101.html#ada508497ee2e70170da3afe078e2fe0e',1,'CC1101::transmit()'],['../class_l_r11x0.html#a492b2d057dd803c3884fa1adc8e22534',1,'LR11x0::transmit(const char *str, uint8_t addr=0)'],['../class_l_r11x0.html#ada508497ee2e70170da3afe078e2fe0e',1,'LR11x0::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534',1,'nRF24::transmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#ada508497ee2e70170da3afe078e2fe0e',1,'nRF24::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534',1,'RF69::transmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#ada508497ee2e70170da3afe078e2fe0e',1,'RF69::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#a492b2d057dd803c3884fa1adc8e22534',1,'Si443x::transmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#ada508497ee2e70170da3afe078e2fe0e',1,'Si443x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX126x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX126x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX127x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX127x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX128x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX128x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_physical_layer.html#ada508497ee2e70170da3afe078e2fe0e',1,'PhysicalLayer::transmit()'],['../class_c_c1101.html#a5086eb8a27aa842e94d1df54f385c39b',1,'CC1101::transmit()'],['../class_l_r11x0.html#a21e865665318dece7d95336a275dd973',1,'LR11x0::transmit()'],['../classn_r_f24.html#af7c4cf05b992d8a97331b9888e95fc2f',1,'nRF24::transmit()'],['../class_r_f69.html#a8d68f041b20ed765f2ff2fbdff06171f',1,'RF69::transmit()'],['../class_si443x.html#a379fb39c9ab79aa67601c84736b1fec4',1,'Si443x::transmit()'],['../class_s_x126x.html#a5fa48e147ee54e1b0fc4d28ef5247180',1,'SX126x::transmit()'],['../class_s_x128x.html#a45f4ac293d869a35ad737032efa8e884',1,'SX128x::transmit()'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit()'],['../class_pager_client.html#adbab4e162a5719bd4407a42a85d26ff6',1,'PagerClient::transmit(const char *str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD, uint8_t function=RADIOLIB_PAGER_FUNC_AUTO)'],['../class_pager_client.html#aa9df7f8675170affc5256a896168601b',1,'PagerClient::transmit(uint8_t *data, size_t len, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD, uint8_t function=RADIOLIB_PAGER_FUNC_AUTO)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit()'],['../class_c_c1101.html#a492b2d057dd803c3884fa1adc8e22534',1,'CC1101::transmit()'],['../class_s_x127x.html#a75cb0d8810a5ce025d3bf5b51ca263d6',1,'SX127x::transmit()']]], - ['transmitdirect_1151',['transmitDirect',['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_physical_layer.html#aa4c99ac794ee653c2061be4201724b65',1,'PhysicalLayer::transmitDirect()'],['../class_external_radio.html#a25be77aea48cfbdcae05ed32b660daef',1,'ExternalRadio::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../class_l_r11x0.html#ae077957969f6274a53f63b314b6f1359',1,'LR11x0::transmitDirect()'],['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect(uint32_t frf=0) override']]], - ['transmitdirectasync_1152',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]] + ['term_1148',['term',['../class_pi_hal.html#ae5821694030ae6364012be3a34ef584d',1,'PiHal::term()'],['../class_esp_hal.html#a698f840f9ba329d0fb1cc70a9228e2a9',1,'EspHal::term()'],['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module::term()'],['../class_radio_lib_hal.html#aa4f2bd49aea5a19aa9f85c720b4a883e',1,'RadioLibHal::term()'],['../class_pico_hal.html#a27803b7a0b53dca9fd1c74eadb15755a',1,'PicoHal::term()'],['../class_tock_hal.html#a42dcea862b480024119c2730270d8f1e',1,'TockHal::term()']]], + ['timeuntiluplink_1149',['timeUntilUplink',['../class_lo_ra_w_a_n_node.html#a49e690c14858b46692e4ce9aa5a2566a',1,'LoRaWANNode']]], + ['tone_1150',['tone',['../class_pi_hal.html#a95856f347434694b018d0ad18126e041',1,'PiHal::tone()'],['../class_pico_hal.html#abfa0319db88b4c015edf67a9c9b671be',1,'PicoHal::tone()'],['../class_radio_lib_hal.html#a62c9032e834ba420d81dc3e69df64e17',1,'RadioLibHal::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]], + ['transmit_1151',['transmit',['../class_c_c1101.html#ada508497ee2e70170da3afe078e2fe0e',1,'CC1101::transmit()'],['../class_l_r11x0.html#a492b2d057dd803c3884fa1adc8e22534',1,'LR11x0::transmit(const char *str, uint8_t addr=0)'],['../class_l_r11x0.html#ada508497ee2e70170da3afe078e2fe0e',1,'LR11x0::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534',1,'nRF24::transmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#ada508497ee2e70170da3afe078e2fe0e',1,'nRF24::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534',1,'RF69::transmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#ada508497ee2e70170da3afe078e2fe0e',1,'RF69::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#a492b2d057dd803c3884fa1adc8e22534',1,'Si443x::transmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#ada508497ee2e70170da3afe078e2fe0e',1,'Si443x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX126x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX126x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX127x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX127x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX128x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX128x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_physical_layer.html#ada508497ee2e70170da3afe078e2fe0e',1,'PhysicalLayer::transmit()'],['../class_c_c1101.html#a5086eb8a27aa842e94d1df54f385c39b',1,'CC1101::transmit()'],['../class_l_r11x0.html#a21e865665318dece7d95336a275dd973',1,'LR11x0::transmit()'],['../classn_r_f24.html#af7c4cf05b992d8a97331b9888e95fc2f',1,'nRF24::transmit()'],['../class_r_f69.html#a8d68f041b20ed765f2ff2fbdff06171f',1,'RF69::transmit()'],['../class_si443x.html#a379fb39c9ab79aa67601c84736b1fec4',1,'Si443x::transmit()'],['../class_s_x126x.html#a5fa48e147ee54e1b0fc4d28ef5247180',1,'SX126x::transmit()'],['../class_s_x128x.html#a45f4ac293d869a35ad737032efa8e884',1,'SX128x::transmit()'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit()'],['../class_pager_client.html#adbab4e162a5719bd4407a42a85d26ff6',1,'PagerClient::transmit(const char *str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD, uint8_t function=RADIOLIB_PAGER_FUNC_AUTO)'],['../class_pager_client.html#aa9df7f8675170affc5256a896168601b',1,'PagerClient::transmit(uint8_t *data, size_t len, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD, uint8_t function=RADIOLIB_PAGER_FUNC_AUTO)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit()'],['../class_c_c1101.html#a492b2d057dd803c3884fa1adc8e22534',1,'CC1101::transmit()'],['../class_s_x127x.html#a75cb0d8810a5ce025d3bf5b51ca263d6',1,'SX127x::transmit()']]], + ['transmitdirect_1152',['transmitDirect',['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_physical_layer.html#aa4c99ac794ee653c2061be4201724b65',1,'PhysicalLayer::transmitDirect()'],['../class_external_radio.html#a25be77aea48cfbdcae05ed32b660daef',1,'ExternalRadio::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../class_l_r11x0.html#ae077957969f6274a53f63b314b6f1359',1,'LR11x0::transmitDirect()'],['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect(uint32_t frf=0) override']]], + ['transmitdirectasync_1153',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]] ]; diff --git a/search/functions_11.js b/search/functions_11.js index 29585b96..3afafa89 100644 --- a/search/functions_11.js +++ b/search/functions_11.js @@ -1,7 +1,7 @@ var searchData= [ - ['updatefirmware_1153',['updateFirmware',['../class_l_r11x0.html#ab2820cc2b740d6d42a079bbd8bd45b85',1,'LR11x0']]], - ['updategnssalmanac_1154',['updateGnssAlmanac',['../class_l_r11x0.html#a96aa9566399e46fc03f2b73b44058e3f',1,'LR11x0']]], - ['uploadpatch_1155',['uploadPatch',['../class_s_x126x.html#a2af78b744b3e61d3857bed93c3b1bde1',1,'SX126x']]], - ['userepeaters_1156',['useRepeaters',['../class_a_p_r_s_client.html#a454fb0a3423f75e909b16640b27b176a',1,'APRSClient']]] + ['updatefirmware_1154',['updateFirmware',['../class_l_r11x0.html#ab2820cc2b740d6d42a079bbd8bd45b85',1,'LR11x0']]], + ['updategnssalmanac_1155',['updateGnssAlmanac',['../class_l_r11x0.html#a96aa9566399e46fc03f2b73b44058e3f',1,'LR11x0']]], + ['uploadpatch_1156',['uploadPatch',['../class_s_x126x.html#a2af78b744b3e61d3857bed93c3b1bde1',1,'SX126x']]], + ['userepeaters_1157',['useRepeaters',['../class_a_p_r_s_client.html#a454fb0a3423f75e909b16640b27b176a',1,'APRSClient']]] ]; diff --git a/search/functions_12.js b/search/functions_12.js index f8153cf6..8ad89f6b 100644 --- a/search/functions_12.js +++ b/search/functions_12.js @@ -1,5 +1,5 @@ var searchData= [ - ['variablepacketlengthmode_1157',['variablePacketLengthMode',['../class_c_c1101.html#a50b9e73d2d82a4cd03841f465825b73f',1,'CC1101::variablePacketLengthMode()'],['../class_l_r11x0.html#adcd56cf63e91449b6cd03782a69c3451',1,'LR11x0::variablePacketLengthMode()'],['../class_r_f69.html#af434c67aabe02258ee6696a59973617b',1,'RF69::variablePacketLengthMode()'],['../class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a',1,'Si443x::variablePacketLengthMode()'],['../class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c',1,'SX127x::variablePacketLengthMode()']]], - ['verifycmac_1158',['verifyCMAC',['../class_radio_lib_a_e_s128.html#a235daad00bd77a406d7fc187bcb2192e',1,'RadioLibAES128']]] + ['variablepacketlengthmode_1158',['variablePacketLengthMode',['../class_c_c1101.html#a50b9e73d2d82a4cd03841f465825b73f',1,'CC1101::variablePacketLengthMode()'],['../class_l_r11x0.html#adcd56cf63e91449b6cd03782a69c3451',1,'LR11x0::variablePacketLengthMode()'],['../class_r_f69.html#af434c67aabe02258ee6696a59973617b',1,'RF69::variablePacketLengthMode()'],['../class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a',1,'Si443x::variablePacketLengthMode()'],['../class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c',1,'SX127x::variablePacketLengthMode()']]], + ['verifycmac_1159',['verifyCMAC',['../class_radio_lib_a_e_s128.html#a235daad00bd77a406d7fc187bcb2192e',1,'RadioLibAES128']]] ]; diff --git a/search/functions_13.js b/search/functions_13.js index 55a44bc8..b75b0810 100644 --- a/search/functions_13.js +++ b/search/functions_13.js @@ -1,6 +1,6 @@ var searchData= [ - ['waitformicroseconds_1159',['waitForMicroseconds',['../class_module.html#a7df4c687249c07af2594a5f7ad0a946f',1,'Module']]], - ['wifiscan_1160',['wifiScan',['../class_l_r11x0.html#ade5478296ebc7e02281c95609d5d75ab',1,'LR11x0']]], - ['write_1161',['write',['../class_bell_client.html#a69bd78bf3be2724b4f34c80c2bd3a6df',1,'BellClient::write()'],['../class_f_s_k4_client.html#aa59fb42d3eeafe5ab3f0437ef5567ec2',1,'FSK4Client::write(uint8_t *buff, size_t len)'],['../class_f_s_k4_client.html#a31218736d4f9a3412ee9009a4c4f5a22',1,'FSK4Client::write(uint8_t b)'],['../class_hell_client.html#af557774ad72c24a94faff8c2be30f0d1',1,'HellClient::write()'],['../class_morse_client.html#a4a9cf8bf1a8bd270417a1a9fca660ef1',1,'MorseClient::write()'],['../class_r_t_t_y_client.html#a23220f58b7bda1f24b6343875561586a',1,'RTTYClient::write()']]] + ['waitformicroseconds_1160',['waitForMicroseconds',['../class_module.html#a7df4c687249c07af2594a5f7ad0a946f',1,'Module']]], + ['wifiscan_1161',['wifiScan',['../class_l_r11x0.html#ade5478296ebc7e02281c95609d5d75ab',1,'LR11x0']]], + ['write_1162',['write',['../class_bell_client.html#a69bd78bf3be2724b4f34c80c2bd3a6df',1,'BellClient::write()'],['../class_f_s_k4_client.html#aa59fb42d3eeafe5ab3f0437ef5567ec2',1,'FSK4Client::write(uint8_t *buff, size_t len)'],['../class_f_s_k4_client.html#a31218736d4f9a3412ee9009a4c4f5a22',1,'FSK4Client::write(uint8_t b)'],['../class_hell_client.html#af557774ad72c24a94faff8c2be30f0d1',1,'HellClient::write()'],['../class_morse_client.html#a4a9cf8bf1a8bd270417a1a9fca660ef1',1,'MorseClient::write()'],['../class_r_t_t_y_client.html#a23220f58b7bda1f24b6343875561586a',1,'RTTYClient::write()']]] ]; diff --git a/search/functions_14.js b/search/functions_14.js index 331d029c..86965320 100644 --- a/search/functions_14.js +++ b/search/functions_14.js @@ -1,4 +1,4 @@ var searchData= [ - ['yield_1162',['yield',['../class_pi_hal.html#af0aca7bc69d8b31783656213e8a8873d',1,'PiHal::yield()'],['../class_pico_hal.html#add7d8e380c51f7fa2312aea2982878c2',1,'PicoHal::yield()'],['../class_tock_hal.html#a805835621f56279e4f6fa4b5370178d2',1,'TockHal::yield()'],['../class_radio_lib_hal.html#a1bd9d614f66b374ec820ce31b167fdb2',1,'RadioLibHal::yield()']]] + ['yield_1163',['yield',['../class_pi_hal.html#af0aca7bc69d8b31783656213e8a8873d',1,'PiHal::yield()'],['../class_pico_hal.html#add7d8e380c51f7fa2312aea2982878c2',1,'PicoHal::yield()'],['../class_tock_hal.html#a805835621f56279e4f6fa4b5370178d2',1,'TockHal::yield()'],['../class_radio_lib_hal.html#a1bd9d614f66b374ec820ce31b167fdb2',1,'RadioLibHal::yield()']]] ]; diff --git a/search/functions_15.js b/search/functions_15.js index 7b1d0f9a..c32fa33d 100644 --- a/search/functions_15.js +++ b/search/functions_15.js @@ -1,7 +1,7 @@ var searchData= [ - ['_7eax25frame_1163',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]], - ['_7eexternalradio_1164',['~ExternalRadio',['../class_external_radio.html#a46f76689b07d29a626faf917ad264ad0',1,'ExternalRadio']]], - ['_7eita2string_1165',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]], - ['_7eradiolibbch_1166',['~RadioLibBCH',['../class_radio_lib_b_c_h.html#ac4ceca6f132ff2047e2ca13d8d00a9e5',1,'RadioLibBCH']]] + ['_7eax25frame_1164',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]], + ['_7eexternalradio_1165',['~ExternalRadio',['../class_external_radio.html#a46f76689b07d29a626faf917ad264ad0',1,'ExternalRadio']]], + ['_7eita2string_1166',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]], + ['_7eradiolibbch_1167',['~RadioLibBCH',['../class_radio_lib_b_c_h.html#ac4ceca6f132ff2047e2ca13d8d00a9e5',1,'RadioLibBCH']]] ]; diff --git a/search/functions_2.js b/search/functions_2.js index b0ebe830..cac28711 100644 --- a/search/functions_2.js +++ b/search/functions_2.js @@ -1,25 +1,26 @@ var searchData= [ - ['calculaterxtimeout_835',['calculateRxTimeout',['../class_s_x126x.html#a19f3c26d7a7959e302fc8174fc88a6d4',1,'SX126x::calculateRxTimeout()'],['../class_l_r11x0.html#a260c7f4ee4739e532ddb465a276205d3',1,'LR11x0::calculateRxTimeout()'],['../class_physical_layer.html#a7f8d12a90158864a8ebc471b0ec89dc9',1,'PhysicalLayer::calculateRxTimeout()'],['../class_s_x127x.html#adbc4021380dc557114625dc51262cf90',1,'SX127x::calculateRxTimeout()']]], - ['calibrateimagerejection_836',['calibrateImageRejection',['../class_s_x126x.html#aa3c90f19cd141738ff013ae72f78f1bb',1,'SX126x']]], - ['cc1101_837',['CC1101',['../class_c_c1101.html#a6807e4254c4b55fa8d393b2bf8f2db3e',1,'CC1101']]], - ['checkdatarate_838',['checkDataRate',['../class_physical_layer.html#a58d54eeb40fb586013ba48e15318abba',1,'PhysicalLayer::checkDataRate()'],['../class_s_x1278.html#a7f238fd38f436d9e86aa92a387d48467',1,'SX1278::checkDataRate()'],['../class_s_x1277.html#aef5d9e27edc2173d1b4cc1cb0d9733bc',1,'SX1277::checkDataRate()'],['../class_s_x1273.html#a5eae1e82596f3a6c4c926c381c2737a7',1,'SX1273::checkDataRate()'],['../class_s_x1272.html#a2a36487740f15731c6e508428e4b11f0',1,'SX1272::checkDataRate()'],['../class_s_x126x.html#a75c8d32cee712e0c940163446b98e587',1,'SX126x::checkDataRate()'],['../class_l_r11x0.html#a4d18ad719be79c083f2b0ce77bbaa448',1,'LR11x0::checkDataRate()'],['../class_l_l_c_c68.html#a708183645ec0b9fec54d6369e7b1345f',1,'LLCC68::checkDataRate()']]], - ['checkirq_839',['checkIrq',['../class_physical_layer.html#a2c7dd4704e3df353265010710bd26e83',1,'PhysicalLayer']]], - ['checkoutputpower_840',['checkOutputPower',['../class_s_x1261.html#ae8e9968a9ee1c2199ed9f968d8f4e3b1',1,'SX1261::checkOutputPower()'],['../class_physical_layer.html#a1784cb227d04b3f2846625fda6797536',1,'PhysicalLayer::checkOutputPower()'],['../class_s_x128x.html#a5e876e02fd527390905004718225c25f',1,'SX128x::checkOutputPower()'],['../class_s_x1278.html#ac6146c2a3d0a35662312165325fd97f8',1,'SX1278::checkOutputPower(int8_t power, int8_t *clipped, bool useRfo)'],['../class_s_x1278.html#aac7b585c4a616a1cd6f89a8b46a7d9f8',1,'SX1278::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_s_x1272.html#a1e39e8e3b228ca9a805f41a9bbf86c64',1,'SX1272::checkOutputPower(int8_t power, int8_t *clipped, bool useRfo)'],['../class_s_x1272.html#a2510072152c936d9f62557f46a4248d0',1,'SX1272::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_s_x1268.html#ae1b1f56336fcef9ce31d9408fbbbfe3c',1,'SX1268::checkOutputPower()'],['../class_s_x1262.html#a33c304c19634a905c7318d9ca88f4e93',1,'SX1262::checkOutputPower()'],['../class_l_r1120.html#a369b667c81e1ec724148b401c5aad79d',1,'LR1120::checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)'],['../class_l_r1120.html#acf6ea475643c6eba63133641a8681a8f',1,'LR1120::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_l_r1110.html#ae084d4503b2abcdc508edef40b0cadb3',1,'LR1110::checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)'],['../class_l_r1110.html#af1f6dddd12805fdecb55ef5703d23ef1',1,'LR1110::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_c_c1101.html#aa86c74ed4339b70be6950e9f92be1d81',1,'CC1101::checkOutputPower(int8_t power, int8_t *clipped, uint8_t *raw)'],['../class_c_c1101.html#ab500e75fcf63f123eb3945925f361bd0',1,'CC1101::checkOutputPower(int8_t power, int8_t *clipped) override']]], - ['checksum_841',['checksum',['../class_radio_lib_c_r_c.html#a92328d778fe59c046c6e74296eb5fb23',1,'RadioLibCRC']]], - ['clearchannelscanaction_842',['clearChannelScanAction',['../class_s_t_m32_w_lx.html#a366a83d5f5ed02859717a83c21768378',1,'STM32WLx::clearChannelScanAction()'],['../class_s_x126x.html#a37dab0ab3c4cab82e367971fc31588a6',1,'SX126x::clearChannelScanAction()'],['../class_s_x127x.html#a0ce9beca21406e3556b3518370947ee2',1,'SX127x::clearChannelScanAction()'],['../class_physical_layer.html#a169a4d04c5c50d3336e274d70930d9f6',1,'PhysicalLayer::clearChannelScanAction()']]], - ['cleardio0action_843',['clearDio0Action',['../class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942',1,'RF69::clearDio0Action()'],['../class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823',1,'SX127x::clearDio0Action()']]], - ['cleardio1action_844',['clearDio1Action',['../class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f',1,'SX128x::clearDio1Action()'],['../class_s_x127x.html#a9b6532a25e1730973ac08146008adca5',1,'SX127x::clearDio1Action()'],['../class_s_t_m32_w_lx.html#a54130403f6afbb0924da17c28afb17fc',1,'STM32WLx::clearDio1Action()'],['../class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51',1,'RF69::clearDio1Action()'],['../class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd',1,'SX126x::clearDio1Action()']]], - ['clearfhssint_845',['clearFHSSInt',['../class_s_x127x.html#a41089d9e5b45217d3e31ac22b5326b66',1,'SX127x']]], - ['clearfifoemptyaction_846',['clearFifoEmptyAction',['../class_r_f69.html#a0d7b67499462777f7909860405ca6b62',1,'RF69::clearFifoEmptyAction()'],['../class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1',1,'SX127x::clearFifoEmptyAction()']]], - ['clearfifofullaction_847',['clearFifoFullAction',['../class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3',1,'RF69::clearFifoFullAction()'],['../class_s_x127x.html#a0f041e91ab2fbb6f05eef56b5addac71',1,'SX127x::clearFifoFullAction()']]], - ['cleargdo0action_848',['clearGdo0Action',['../class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8',1,'CC1101']]], - ['cleargdo2action_849',['clearGdo2Action',['../class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4',1,'CC1101']]], - ['clearirq_850',['clearIrq',['../class_physical_layer.html#af9a7e739e39705a72ffa8b63ec09bb15',1,'PhysicalLayer']]], - ['clearirqaction_851',['clearIrqAction',['../classn_r_f24.html#aaf5887fe58c4d542cbed80482de1d42d',1,'nRF24::clearIrqAction()'],['../class_si443x.html#a8d019f58551346c3f3bd8b72d2486109',1,'Si443x::clearIrqAction()'],['../class_l_r11x0.html#ab167c4dc14e80d19f8b33d68c3f90d98',1,'LR11x0::clearIrqAction()']]], - ['clearirqflags_852',['clearIrqFlags',['../class_l_r11x0.html#aa524b0be7b8d125c24319072d6178e74',1,'LR11x0::clearIrqFlags()'],['../class_s_x126x.html#ab4c29619a38391805a11231c67424847',1,'SX126x::clearIrqFlags()'],['../class_s_x127x.html#aa3eae13a7f0558c1bc881abebd958242',1,'SX127x::clearIrqFlags()'],['../class_s_x128x.html#afb95ca5f2c8494042fbbe52802fc265d',1,'SX128x::clearIrqFlags()'],['../class_physical_layer.html#ac282bb78da4f4da4661dce191cbd6d87',1,'PhysicalLayer::clearIrqFlags()']]], - ['clearpacketreceivedaction_853',['clearPacketReceivedAction',['../class_l_r11x0.html#a96e4a220bbd3487423acfd217b479fe3',1,'LR11x0::clearPacketReceivedAction()'],['../class_physical_layer.html#a7edf27f03600b96f72f011fc82fa4ef9',1,'PhysicalLayer::clearPacketReceivedAction()'],['../class_s_x128x.html#ac79047a072a038194f3429a913e7aaee',1,'SX128x::clearPacketReceivedAction()'],['../class_s_x127x.html#a6cbc4c256d37f9cdabf9e5f2ef16aa92',1,'SX127x::clearPacketReceivedAction()'],['../class_s_x126x.html#a56f88f6a2b88ae6dbd3ad04b1950e7b2',1,'SX126x::clearPacketReceivedAction()'],['../class_si443x.html#ae8e1a9a70407d80d660496baa560c5ca',1,'Si443x::clearPacketReceivedAction()'],['../class_r_f69.html#a31390763956a50182b0b5b8a7e5ff4e3',1,'RF69::clearPacketReceivedAction()'],['../classn_r_f24.html#a52c097dc0078fc4e8707c095378aff3d',1,'nRF24::clearPacketReceivedAction()'],['../class_c_c1101.html#a0221c4fe494a590cc9714e4752675d61',1,'CC1101::clearPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#aad377b018cf65ceb6b23cac523ba96b4',1,'STM32WLx::clearPacketReceivedAction()']]], - ['clearpacketsentaction_854',['clearPacketSentAction',['../class_r_f69.html#ac4ada0c4243b092ffb4c9812519fe947',1,'RF69::clearPacketSentAction()'],['../class_physical_layer.html#a67ee4ec36f352d06dda0102260f6bfce',1,'PhysicalLayer::clearPacketSentAction()'],['../class_s_x128x.html#ab2335d91c7899291312e3cd6576446e5',1,'SX128x::clearPacketSentAction()'],['../class_s_x127x.html#a2ec32a52b13752d75f3076a5868c312d',1,'SX127x::clearPacketSentAction()'],['../class_s_x126x.html#af38ba3d27ab2ac10c703eefa1c428913',1,'SX126x::clearPacketSentAction()'],['../class_s_t_m32_w_lx.html#ac11d53d29bf5a845e3797ba6bb875930',1,'STM32WLx::clearPacketSentAction()'],['../class_si443x.html#a4fdc84341b1ec602f89ad00c7ca20f26',1,'Si443x::clearPacketSentAction()'],['../classn_r_f24.html#a41499cf2c1a6c83a04ff89dd59e3fa56',1,'nRF24::clearPacketSentAction()'],['../class_l_r11x0.html#a95ddec84ae2fb19989c333d42d4dc5fa',1,'LR11x0::clearPacketSentAction()'],['../class_c_c1101.html#a2791ebc7fe71626407278de5852b492f',1,'CC1101::clearPacketSentAction()']]], - ['clearsession_855',['clearSession',['../class_lo_ra_w_a_n_node.html#a0feeaed200d8f94ad94c3ed49f404847',1,'LoRaWANNode']]], - ['clearwifiscanaction_856',['clearWiFiScanAction',['../class_l_r11x0.html#ad5876b44020a0bd59f73186a912dbb60',1,'LR11x0']]] + ['calculaterxtimeout_836',['calculateRxTimeout',['../class_s_x126x.html#a19f3c26d7a7959e302fc8174fc88a6d4',1,'SX126x::calculateRxTimeout()'],['../class_l_r11x0.html#a260c7f4ee4739e532ddb465a276205d3',1,'LR11x0::calculateRxTimeout()'],['../class_physical_layer.html#a7f8d12a90158864a8ebc471b0ec89dc9',1,'PhysicalLayer::calculateRxTimeout()'],['../class_s_x127x.html#adbc4021380dc557114625dc51262cf90',1,'SX127x::calculateRxTimeout()']]], + ['calibrateimage_837',['calibrateImage',['../class_s_x126x.html#a356052e39138cabc41358f5728bbbe70',1,'SX126x']]], + ['calibrateimagerejection_838',['calibrateImageRejection',['../class_l_r11x0.html#adc8fbcfff7cd3b801dcee22e87bc2598',1,'LR11x0::calibrateImageRejection()'],['../class_s_x126x.html#aa3c90f19cd141738ff013ae72f78f1bb',1,'SX126x::calibrateImageRejection()']]], + ['cc1101_839',['CC1101',['../class_c_c1101.html#a6807e4254c4b55fa8d393b2bf8f2db3e',1,'CC1101']]], + ['checkdatarate_840',['checkDataRate',['../class_s_x1278.html#a7f238fd38f436d9e86aa92a387d48467',1,'SX1278::checkDataRate()'],['../class_physical_layer.html#a58d54eeb40fb586013ba48e15318abba',1,'PhysicalLayer::checkDataRate()'],['../class_s_x1277.html#aef5d9e27edc2173d1b4cc1cb0d9733bc',1,'SX1277::checkDataRate()'],['../class_s_x1273.html#a5eae1e82596f3a6c4c926c381c2737a7',1,'SX1273::checkDataRate()'],['../class_s_x1272.html#a2a36487740f15731c6e508428e4b11f0',1,'SX1272::checkDataRate()'],['../class_s_x126x.html#a75c8d32cee712e0c940163446b98e587',1,'SX126x::checkDataRate()'],['../class_l_r11x0.html#a4d18ad719be79c083f2b0ce77bbaa448',1,'LR11x0::checkDataRate()'],['../class_l_l_c_c68.html#a708183645ec0b9fec54d6369e7b1345f',1,'LLCC68::checkDataRate()']]], + ['checkirq_841',['checkIrq',['../class_physical_layer.html#a2c7dd4704e3df353265010710bd26e83',1,'PhysicalLayer']]], + ['checkoutputpower_842',['checkOutputPower',['../class_l_r1120.html#a369b667c81e1ec724148b401c5aad79d',1,'LR1120::checkOutputPower()'],['../class_physical_layer.html#a1784cb227d04b3f2846625fda6797536',1,'PhysicalLayer::checkOutputPower()'],['../class_s_x128x.html#a5e876e02fd527390905004718225c25f',1,'SX128x::checkOutputPower()'],['../class_s_x1278.html#ac6146c2a3d0a35662312165325fd97f8',1,'SX1278::checkOutputPower(int8_t power, int8_t *clipped, bool useRfo)'],['../class_s_x1278.html#aac7b585c4a616a1cd6f89a8b46a7d9f8',1,'SX1278::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_s_x1272.html#a1e39e8e3b228ca9a805f41a9bbf86c64',1,'SX1272::checkOutputPower(int8_t power, int8_t *clipped, bool useRfo)'],['../class_s_x1272.html#a2510072152c936d9f62557f46a4248d0',1,'SX1272::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_s_x1268.html#ae1b1f56336fcef9ce31d9408fbbbfe3c',1,'SX1268::checkOutputPower()'],['../class_s_x1261.html#ae8e9968a9ee1c2199ed9f968d8f4e3b1',1,'SX1261::checkOutputPower()'],['../class_l_r1120.html#acf6ea475643c6eba63133641a8681a8f',1,'LR1120::checkOutputPower()'],['../class_l_r1110.html#ae084d4503b2abcdc508edef40b0cadb3',1,'LR1110::checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)'],['../class_l_r1110.html#af1f6dddd12805fdecb55ef5703d23ef1',1,'LR1110::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_c_c1101.html#aa86c74ed4339b70be6950e9f92be1d81',1,'CC1101::checkOutputPower(int8_t power, int8_t *clipped, uint8_t *raw)'],['../class_c_c1101.html#ab500e75fcf63f123eb3945925f361bd0',1,'CC1101::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_s_x1262.html#a33c304c19634a905c7318d9ca88f4e93',1,'SX1262::checkOutputPower()']]], + ['checksum_843',['checksum',['../class_radio_lib_c_r_c.html#a92328d778fe59c046c6e74296eb5fb23',1,'RadioLibCRC']]], + ['clearchannelscanaction_844',['clearChannelScanAction',['../class_s_t_m32_w_lx.html#a366a83d5f5ed02859717a83c21768378',1,'STM32WLx::clearChannelScanAction()'],['../class_physical_layer.html#a169a4d04c5c50d3336e274d70930d9f6',1,'PhysicalLayer::clearChannelScanAction()'],['../class_s_x127x.html#a0ce9beca21406e3556b3518370947ee2',1,'SX127x::clearChannelScanAction()'],['../class_s_x126x.html#a37dab0ab3c4cab82e367971fc31588a6',1,'SX126x::clearChannelScanAction()']]], + ['cleardio0action_845',['clearDio0Action',['../class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942',1,'RF69::clearDio0Action()'],['../class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823',1,'SX127x::clearDio0Action()']]], + ['cleardio1action_846',['clearDio1Action',['../class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f',1,'SX128x::clearDio1Action()'],['../class_s_x127x.html#a9b6532a25e1730973ac08146008adca5',1,'SX127x::clearDio1Action()'],['../class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd',1,'SX126x::clearDio1Action()'],['../class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51',1,'RF69::clearDio1Action()'],['../class_s_t_m32_w_lx.html#a54130403f6afbb0924da17c28afb17fc',1,'STM32WLx::clearDio1Action()']]], + ['clearfhssint_847',['clearFHSSInt',['../class_s_x127x.html#a41089d9e5b45217d3e31ac22b5326b66',1,'SX127x']]], + ['clearfifoemptyaction_848',['clearFifoEmptyAction',['../class_r_f69.html#a0d7b67499462777f7909860405ca6b62',1,'RF69::clearFifoEmptyAction()'],['../class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1',1,'SX127x::clearFifoEmptyAction()']]], + ['clearfifofullaction_849',['clearFifoFullAction',['../class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3',1,'RF69::clearFifoFullAction()'],['../class_s_x127x.html#a0f041e91ab2fbb6f05eef56b5addac71',1,'SX127x::clearFifoFullAction()']]], + ['cleargdo0action_850',['clearGdo0Action',['../class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8',1,'CC1101']]], + ['cleargdo2action_851',['clearGdo2Action',['../class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4',1,'CC1101']]], + ['clearirq_852',['clearIrq',['../class_physical_layer.html#af9a7e739e39705a72ffa8b63ec09bb15',1,'PhysicalLayer']]], + ['clearirqaction_853',['clearIrqAction',['../classn_r_f24.html#aaf5887fe58c4d542cbed80482de1d42d',1,'nRF24::clearIrqAction()'],['../class_si443x.html#a8d019f58551346c3f3bd8b72d2486109',1,'Si443x::clearIrqAction()'],['../class_l_r11x0.html#ab167c4dc14e80d19f8b33d68c3f90d98',1,'LR11x0::clearIrqAction()']]], + ['clearirqflags_854',['clearIrqFlags',['../class_l_r11x0.html#aa524b0be7b8d125c24319072d6178e74',1,'LR11x0::clearIrqFlags()'],['../class_s_x126x.html#ab4c29619a38391805a11231c67424847',1,'SX126x::clearIrqFlags()'],['../class_s_x127x.html#aa3eae13a7f0558c1bc881abebd958242',1,'SX127x::clearIrqFlags()'],['../class_s_x128x.html#afb95ca5f2c8494042fbbe52802fc265d',1,'SX128x::clearIrqFlags()'],['../class_physical_layer.html#ac282bb78da4f4da4661dce191cbd6d87',1,'PhysicalLayer::clearIrqFlags()']]], + ['clearpacketreceivedaction_855',['clearPacketReceivedAction',['../classn_r_f24.html#a52c097dc0078fc4e8707c095378aff3d',1,'nRF24::clearPacketReceivedAction()'],['../class_physical_layer.html#a7edf27f03600b96f72f011fc82fa4ef9',1,'PhysicalLayer::clearPacketReceivedAction()'],['../class_s_x128x.html#ac79047a072a038194f3429a913e7aaee',1,'SX128x::clearPacketReceivedAction()'],['../class_s_x127x.html#a6cbc4c256d37f9cdabf9e5f2ef16aa92',1,'SX127x::clearPacketReceivedAction()'],['../class_s_x126x.html#a56f88f6a2b88ae6dbd3ad04b1950e7b2',1,'SX126x::clearPacketReceivedAction()'],['../class_si443x.html#ae8e1a9a70407d80d660496baa560c5ca',1,'Si443x::clearPacketReceivedAction()'],['../class_r_f69.html#a31390763956a50182b0b5b8a7e5ff4e3',1,'RF69::clearPacketReceivedAction()'],['../class_l_r11x0.html#a96e4a220bbd3487423acfd217b479fe3',1,'LR11x0::clearPacketReceivedAction()'],['../class_c_c1101.html#a0221c4fe494a590cc9714e4752675d61',1,'CC1101::clearPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#aad377b018cf65ceb6b23cac523ba96b4',1,'STM32WLx::clearPacketReceivedAction()']]], + ['clearpacketsentaction_856',['clearPacketSentAction',['../class_r_f69.html#ac4ada0c4243b092ffb4c9812519fe947',1,'RF69::clearPacketSentAction()'],['../class_physical_layer.html#a67ee4ec36f352d06dda0102260f6bfce',1,'PhysicalLayer::clearPacketSentAction()'],['../class_s_x128x.html#ab2335d91c7899291312e3cd6576446e5',1,'SX128x::clearPacketSentAction()'],['../class_s_x127x.html#a2ec32a52b13752d75f3076a5868c312d',1,'SX127x::clearPacketSentAction()'],['../class_s_x126x.html#af38ba3d27ab2ac10c703eefa1c428913',1,'SX126x::clearPacketSentAction()'],['../class_s_t_m32_w_lx.html#ac11d53d29bf5a845e3797ba6bb875930',1,'STM32WLx::clearPacketSentAction()'],['../class_si443x.html#a4fdc84341b1ec602f89ad00c7ca20f26',1,'Si443x::clearPacketSentAction()'],['../classn_r_f24.html#a41499cf2c1a6c83a04ff89dd59e3fa56',1,'nRF24::clearPacketSentAction()'],['../class_l_r11x0.html#a95ddec84ae2fb19989c333d42d4dc5fa',1,'LR11x0::clearPacketSentAction()'],['../class_c_c1101.html#a2791ebc7fe71626407278de5852b492f',1,'CC1101::clearPacketSentAction()']]], + ['clearsession_857',['clearSession',['../class_lo_ra_w_a_n_node.html#a0feeaed200d8f94ad94c3ed49f404847',1,'LoRaWANNode']]], + ['clearwifiscanaction_858',['clearWiFiScanAction',['../class_l_r11x0.html#ad5876b44020a0bd59f73186a912dbb60',1,'LR11x0']]] ]; diff --git a/search/functions_3.js b/search/functions_3.js index 6f620ccf..50e93b26 100644 --- a/search/functions_3.js +++ b/search/functions_3.js @@ -1,19 +1,19 @@ var searchData= [ - ['decode_857',['decode',['../class_morse_client.html#abd1515c8e6c3ddade280be53f612ece7',1,'MorseClient']]], - ['decryptecb_858',['decryptECB',['../class_radio_lib_a_e_s128.html#abe0e368c6a94b2caf1559add1c262a98',1,'RadioLibAES128']]], - ['delay_859',['delay',['../class_esp_hal.html#a3f969910c1354d0ad92a7283d4fbc477',1,'EspHal::delay()'],['../class_pi_hal.html#adf1482ac38f67d58e4d41e3e74323e5a',1,'PiHal::delay()'],['../class_pico_hal.html#a1bab4dfe568d7107e569e848001e414a',1,'PicoHal::delay()'],['../class_tock_hal.html#a895de6b3575c991b8b705fe4cdabc940',1,'TockHal::delay()'],['../class_radio_lib_hal.html#aa2de4fcafad28470f7d46073fa29da79',1,'RadioLibHal::delay()']]], - ['delaymicroseconds_860',['delayMicroseconds',['../class_tock_hal.html#ac44afeda5a28e83721ba8c16b496c91e',1,'TockHal::delayMicroseconds()'],['../class_radio_lib_hal.html#ab93dc492291dfe6fc0dd763bee966161',1,'RadioLibHal::delayMicroseconds()'],['../class_pico_hal.html#a4a69597cf1a071a0fa61d1d292008628',1,'PicoHal::delayMicroseconds()'],['../class_pi_hal.html#ab9ade61749459b508291d81e205ddacf',1,'PiHal::delayMicroseconds()'],['../class_esp_hal.html#a7e1183e95e651bcccbed041d28ecedaa',1,'EspHal::delayMicroseconds(unsigned long us) override']]], - ['detachinterrupt_861',['detachInterrupt',['../class_esp_hal.html#a3eebb2aef3219a5aba7b21c098b170f8',1,'EspHal::detachInterrupt()'],['../class_pi_hal.html#afb13f79080b95925ea61576696abaa63',1,'PiHal::detachInterrupt()'],['../class_pico_hal.html#a323d56fc8637f2b005070c7585bfe82e',1,'PicoHal::detachInterrupt()'],['../class_tock_hal.html#aafef4eafff0ded10ad940777a67566f3',1,'TockHal::detachInterrupt()'],['../class_radio_lib_hal.html#a2ddf72a41b3cfbb63ea7ab5362003b56',1,'RadioLibHal::detachInterrupt(uint32_t interruptNum)=0']]], - ['digitalread_862',['digitalRead',['../class_radio_lib_hal.html#a0c7c2dffd662cefca7bf11e14c56dab2',1,'RadioLibHal::digitalRead()'],['../class_stm32wlx_hal.html#a7fc8af77a85f8f002c7dc6476efa0ad4',1,'Stm32wlxHal::digitalRead()'],['../class_tock_hal.html#a2c67e4045f67a5c3a7b66630b6668f97',1,'TockHal::digitalRead()'],['../class_pi_hal.html#ab9a8fc4f0c7c5190db9d8770bc7d635e',1,'PiHal::digitalRead()'],['../class_esp_hal.html#a17a4fcce63fa2f51d9be5ae5d48fc10b',1,'EspHal::digitalRead()'],['../class_pico_hal.html#a25993f76cf572e1a891b7ecc777721c2',1,'PicoHal::digitalRead()']]], - ['digitalwrite_863',['digitalWrite',['../class_esp_hal.html#a87444b51d97006fad15779ca5d28367c',1,'EspHal::digitalWrite()'],['../class_pi_hal.html#a203ed127ad16bbeeba0a3cd536eebce6',1,'PiHal::digitalWrite()'],['../class_pico_hal.html#a4f5e06e79f6f6b7952243fe3817200b4',1,'PicoHal::digitalWrite()'],['../class_tock_hal.html#a91df06b003b84729730f62480990dcb4',1,'TockHal::digitalWrite()'],['../class_radio_lib_hal.html#a4db0c60f2f6f64003f04cf0e03fea7ab',1,'RadioLibHal::digitalWrite()'],['../class_stm32wlx_hal.html#acb925afdee4979936ef83a422d13e642',1,'Stm32wlxHal::digitalWrite()']]], - ['disableaddressfiltering_864',['disableAddressFiltering',['../class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee',1,'RF69::disableAddressFiltering()'],['../class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5',1,'SX127x::disableAddressFiltering()'],['../class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2',1,'SX126x::disableAddressFiltering()'],['../class_l_r11x0.html#ae565dc2423ca7df13bf7ae48cce9ac8b',1,'LR11x0::disableAddressFiltering()'],['../class_c_c1101.html#a9aee5df428d30b9c80b8a8700609a883',1,'CC1101::disableAddressFiltering()']]], - ['disableaes_865',['disableAES',['../class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa',1,'RF69']]], - ['disablebitsync_866',['disableBitSync',['../class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd',1,'SX127x']]], - ['disablecontinuousmodebitsync_867',['disableContinuousModeBitSync',['../class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad',1,'RF69']]], - ['disablepipe_868',['disablePipe',['../classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a',1,'nRF24']]], - ['disablesyncwordfiltering_869',['disableSyncWordFiltering',['../class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b',1,'CC1101::disableSyncWordFiltering()'],['../class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80',1,'RF69::disableSyncWordFiltering()']]], - ['droprepeaters_870',['dropRepeaters',['../class_a_p_r_s_client.html#afb2f43bc16cd406a079163f44d2a2d01',1,'APRSClient']]], - ['dropsync_871',['dropSync',['../class_physical_layer.html#a429796eb2e7ea86781a2e8ca42af43f3',1,'PhysicalLayer']]], - ['dutycycleinterval_872',['dutyCycleInterval',['../class_lo_ra_w_a_n_node.html#a5bb50904544f331806fd744ab5b99efa',1,'LoRaWANNode']]] + ['decode_859',['decode',['../class_morse_client.html#abd1515c8e6c3ddade280be53f612ece7',1,'MorseClient']]], + ['decryptecb_860',['decryptECB',['../class_radio_lib_a_e_s128.html#abe0e368c6a94b2caf1559add1c262a98',1,'RadioLibAES128']]], + ['delay_861',['delay',['../class_esp_hal.html#a3f969910c1354d0ad92a7283d4fbc477',1,'EspHal::delay()'],['../class_pi_hal.html#adf1482ac38f67d58e4d41e3e74323e5a',1,'PiHal::delay()'],['../class_pico_hal.html#a1bab4dfe568d7107e569e848001e414a',1,'PicoHal::delay()'],['../class_tock_hal.html#a895de6b3575c991b8b705fe4cdabc940',1,'TockHal::delay()'],['../class_radio_lib_hal.html#aa2de4fcafad28470f7d46073fa29da79',1,'RadioLibHal::delay()']]], + ['delaymicroseconds_862',['delayMicroseconds',['../class_tock_hal.html#ac44afeda5a28e83721ba8c16b496c91e',1,'TockHal::delayMicroseconds()'],['../class_radio_lib_hal.html#ab93dc492291dfe6fc0dd763bee966161',1,'RadioLibHal::delayMicroseconds()'],['../class_pico_hal.html#a4a69597cf1a071a0fa61d1d292008628',1,'PicoHal::delayMicroseconds()'],['../class_pi_hal.html#ab9ade61749459b508291d81e205ddacf',1,'PiHal::delayMicroseconds()'],['../class_esp_hal.html#a7e1183e95e651bcccbed041d28ecedaa',1,'EspHal::delayMicroseconds(unsigned long us) override']]], + ['detachinterrupt_863',['detachInterrupt',['../class_esp_hal.html#a3eebb2aef3219a5aba7b21c098b170f8',1,'EspHal::detachInterrupt()'],['../class_pi_hal.html#afb13f79080b95925ea61576696abaa63',1,'PiHal::detachInterrupt()'],['../class_pico_hal.html#a323d56fc8637f2b005070c7585bfe82e',1,'PicoHal::detachInterrupt()'],['../class_tock_hal.html#aafef4eafff0ded10ad940777a67566f3',1,'TockHal::detachInterrupt()'],['../class_radio_lib_hal.html#a2ddf72a41b3cfbb63ea7ab5362003b56',1,'RadioLibHal::detachInterrupt(uint32_t interruptNum)=0']]], + ['digitalread_864',['digitalRead',['../class_radio_lib_hal.html#a0c7c2dffd662cefca7bf11e14c56dab2',1,'RadioLibHal::digitalRead()'],['../class_stm32wlx_hal.html#a7fc8af77a85f8f002c7dc6476efa0ad4',1,'Stm32wlxHal::digitalRead()'],['../class_tock_hal.html#a2c67e4045f67a5c3a7b66630b6668f97',1,'TockHal::digitalRead()'],['../class_pi_hal.html#ab9a8fc4f0c7c5190db9d8770bc7d635e',1,'PiHal::digitalRead()'],['../class_esp_hal.html#a17a4fcce63fa2f51d9be5ae5d48fc10b',1,'EspHal::digitalRead()'],['../class_pico_hal.html#a25993f76cf572e1a891b7ecc777721c2',1,'PicoHal::digitalRead()']]], + ['digitalwrite_865',['digitalWrite',['../class_esp_hal.html#a87444b51d97006fad15779ca5d28367c',1,'EspHal::digitalWrite()'],['../class_pi_hal.html#a203ed127ad16bbeeba0a3cd536eebce6',1,'PiHal::digitalWrite()'],['../class_pico_hal.html#a4f5e06e79f6f6b7952243fe3817200b4',1,'PicoHal::digitalWrite()'],['../class_tock_hal.html#a91df06b003b84729730f62480990dcb4',1,'TockHal::digitalWrite()'],['../class_radio_lib_hal.html#a4db0c60f2f6f64003f04cf0e03fea7ab',1,'RadioLibHal::digitalWrite()'],['../class_stm32wlx_hal.html#acb925afdee4979936ef83a422d13e642',1,'Stm32wlxHal::digitalWrite()']]], + ['disableaddressfiltering_866',['disableAddressFiltering',['../class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee',1,'RF69::disableAddressFiltering()'],['../class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5',1,'SX127x::disableAddressFiltering()'],['../class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2',1,'SX126x::disableAddressFiltering()'],['../class_l_r11x0.html#ae565dc2423ca7df13bf7ae48cce9ac8b',1,'LR11x0::disableAddressFiltering()'],['../class_c_c1101.html#a9aee5df428d30b9c80b8a8700609a883',1,'CC1101::disableAddressFiltering()']]], + ['disableaes_867',['disableAES',['../class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa',1,'RF69']]], + ['disablebitsync_868',['disableBitSync',['../class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd',1,'SX127x']]], + ['disablecontinuousmodebitsync_869',['disableContinuousModeBitSync',['../class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad',1,'RF69']]], + ['disablepipe_870',['disablePipe',['../classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a',1,'nRF24']]], + ['disablesyncwordfiltering_871',['disableSyncWordFiltering',['../class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b',1,'CC1101::disableSyncWordFiltering()'],['../class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80',1,'RF69::disableSyncWordFiltering()']]], + ['droprepeaters_872',['dropRepeaters',['../class_a_p_r_s_client.html#afb2f43bc16cd406a079163f44d2a2d01',1,'APRSClient']]], + ['dropsync_873',['dropSync',['../class_physical_layer.html#a429796eb2e7ea86781a2e8ca42af43f3',1,'PhysicalLayer']]], + ['dutycycleinterval_874',['dutyCycleInterval',['../class_lo_ra_w_a_n_node.html#a5bb50904544f331806fd744ab5b99efa',1,'LoRaWANNode']]] ]; diff --git a/search/functions_4.js b/search/functions_4.js index 2b0c77d4..8c7dc6d4 100644 --- a/search/functions_4.js +++ b/search/functions_4.js @@ -1,11 +1,11 @@ var searchData= [ - ['enableaes_873',['enableAES',['../class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69',1,'RF69']]], - ['enablebitsync_874',['enableBitSync',['../class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa',1,'SX127x']]], - ['enablecontinuousmodebitsync_875',['enableContinuousModeBitSync',['../class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0',1,'RF69']]], - ['enablesyncwordfiltering_876',['enableSyncWordFiltering',['../class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4',1,'CC1101::enableSyncWordFiltering()'],['../class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417',1,'RF69::enableSyncWordFiltering()']]], - ['encode_877',['encode',['../class_radio_lib_b_c_h.html#afa0a2eb58245715536acb781cd351d8a',1,'RadioLibBCH::encode()'],['../class_radio_lib_conv_code.html#a64c324098fab2c5521b3f4e965503ca8',1,'RadioLibConvCode::encode()']]], - ['encryptecb_878',['encryptECB',['../class_radio_lib_a_e_s128.html#a4c7b49c3ed16f3849d8050a24a11c3c1',1,'RadioLibAES128']]], - ['explicitheader_879',['explicitHeader',['../class_l_r11x0.html#a3693359e5d106d6f57c23247c528cdd5',1,'LR11x0::explicitHeader()'],['../class_s_x126x.html#a3765f534418d4e0540c179621c019138',1,'SX126x::explicitHeader()'],['../class_s_x1272.html#ae3c9704cb58232f696b5f90f69c115f7',1,'SX1272::explicitHeader()'],['../class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1',1,'SX1278::explicitHeader()'],['../class_s_x128x.html#a94b7fb26cc99385d30b0c98b76d8188d',1,'SX128x::explicitHeader()']]], - ['externalradio_880',['ExternalRadio',['../class_external_radio.html#a49f10e1b05e7463583ac05b3284b9dda',1,'ExternalRadio::ExternalRadio(RadioLibHal *hal, uint32_t pin=RADIOLIB_NC)'],['../class_external_radio.html#a69b6354e92a89c01f3695ec9bdd0b554',1,'ExternalRadio::ExternalRadio(const ExternalRadio &ext)']]] + ['enableaes_875',['enableAES',['../class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69',1,'RF69']]], + ['enablebitsync_876',['enableBitSync',['../class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa',1,'SX127x']]], + ['enablecontinuousmodebitsync_877',['enableContinuousModeBitSync',['../class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0',1,'RF69']]], + ['enablesyncwordfiltering_878',['enableSyncWordFiltering',['../class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4',1,'CC1101::enableSyncWordFiltering()'],['../class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417',1,'RF69::enableSyncWordFiltering()']]], + ['encode_879',['encode',['../class_radio_lib_b_c_h.html#afa0a2eb58245715536acb781cd351d8a',1,'RadioLibBCH::encode()'],['../class_radio_lib_conv_code.html#a64c324098fab2c5521b3f4e965503ca8',1,'RadioLibConvCode::encode()']]], + ['encryptecb_880',['encryptECB',['../class_radio_lib_a_e_s128.html#a4c7b49c3ed16f3849d8050a24a11c3c1',1,'RadioLibAES128']]], + ['explicitheader_881',['explicitHeader',['../class_l_r11x0.html#a3693359e5d106d6f57c23247c528cdd5',1,'LR11x0::explicitHeader()'],['../class_s_x126x.html#a3765f534418d4e0540c179621c019138',1,'SX126x::explicitHeader()'],['../class_s_x1272.html#ae3c9704cb58232f696b5f90f69c115f7',1,'SX1272::explicitHeader()'],['../class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1',1,'SX1278::explicitHeader()'],['../class_s_x128x.html#a94b7fb26cc99385d30b0c98b76d8188d',1,'SX128x::explicitHeader()']]], + ['externalradio_882',['ExternalRadio',['../class_external_radio.html#a49f10e1b05e7463583ac05b3284b9dda',1,'ExternalRadio::ExternalRadio(RadioLibHal *hal, uint32_t pin=RADIOLIB_NC)'],['../class_external_radio.html#a69b6354e92a89c01f3695ec9bdd0b554',1,'ExternalRadio::ExternalRadio(const ExternalRadio &ext)']]] ]; diff --git a/search/functions_5.js b/search/functions_5.js index 6f22e477..bd1957d4 100644 --- a/search/functions_5.js +++ b/search/functions_5.js @@ -1,10 +1,10 @@ var searchData= [ - ['fifoadd_881',['fifoAdd',['../class_s_x127x.html#a36dbd1697a415c6db3b47cd620c8c02e',1,'SX127x::fifoAdd()'],['../class_r_f69.html#ab6d98f3f2d964d1833e20da246a5be89',1,'RF69::fifoAdd(uint8_t *data, int totalLen, int *remLen)']]], - ['fifoget_882',['fifoGet',['../class_r_f69.html#aa6886410230c654400c76ec7710d623c',1,'RF69::fifoGet()'],['../class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a',1,'SX127x::fifoGet()']]], - ['findrfswitchmode_883',['findRfSwitchMode',['../class_module.html#a5699a937b62ba41387567b4d679b9377',1,'Module']]], - ['finishtransmit_884',['finishTransmit',['../class_physical_layer.html#a1de26f68b939f5af79ec29cc34c7be18',1,'PhysicalLayer::finishTransmit()'],['../class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4',1,'SX128x::finishTransmit()'],['../class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f',1,'SX127x::finishTransmit()'],['../class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e',1,'SX126x::finishTransmit()'],['../class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b',1,'RF69::finishTransmit()'],['../classn_r_f24.html#af0c21ff66c011dfdc1ad12bc7dd11c2f',1,'nRF24::finishTransmit()'],['../class_l_r11x0.html#aaff9a5b9b7636693c98bd1c93a5863e5',1,'LR11x0::finishTransmit()'],['../class_c_c1101.html#af70ea860154cd6d2b2e2a6962e161c8f',1,'CC1101::finishTransmit()'],['../class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3',1,'Si443x::finishTransmit() override']]], - ['fixedpacketlengthmode_885',['fixedPacketLengthMode',['../class_si443x.html#ad2b3a961a99d9e8f3a7ead6e8b69e858',1,'Si443x::fixedPacketLengthMode()'],['../class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359',1,'SX127x::fixedPacketLengthMode()'],['../class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5',1,'SX126x::fixedPacketLengthMode()'],['../class_r_f69.html#a0de2a07f264839cda945faebf7319e0e',1,'RF69::fixedPacketLengthMode()'],['../class_l_r11x0.html#a5df4c1ed45bf59aa25bc400bcb5dc1ba',1,'LR11x0::fixedPacketLengthMode()'],['../class_c_c1101.html#ad25ad96cddf62273bffd601384d22275',1,'CC1101::fixedPacketLengthMode()']]], - ['forceldro_886',['forceLDRO',['../class_l_r11x0.html#ae0a47e772fe24c7b3f3d3288c4cd0941',1,'LR11x0::forceLDRO()'],['../class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8',1,'SX126x::forceLDRO()'],['../class_s_x1272.html#a4aaf9d61310fa7b4fce413ae53d30ac0',1,'SX1272::forceLDRO()'],['../class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856',1,'SX1278::forceLDRO()']]], - ['fsk4client_887',['FSK4Client',['../class_f_s_k4_client.html#a2cdcea538e5b58e99a23f98ef4a68617',1,'FSK4Client::FSK4Client(PhysicalLayer *phy)'],['../class_f_s_k4_client.html#a65105b2744c4721b75ca0894c654bf82',1,'FSK4Client::FSK4Client(AFSKClient *audio)']]] + ['fifoadd_883',['fifoAdd',['../class_s_x127x.html#a36dbd1697a415c6db3b47cd620c8c02e',1,'SX127x::fifoAdd()'],['../class_r_f69.html#ab6d98f3f2d964d1833e20da246a5be89',1,'RF69::fifoAdd(uint8_t *data, int totalLen, int *remLen)']]], + ['fifoget_884',['fifoGet',['../class_r_f69.html#aa6886410230c654400c76ec7710d623c',1,'RF69::fifoGet()'],['../class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a',1,'SX127x::fifoGet()']]], + ['findrfswitchmode_885',['findRfSwitchMode',['../class_module.html#a5699a937b62ba41387567b4d679b9377',1,'Module']]], + ['finishtransmit_886',['finishTransmit',['../class_physical_layer.html#a1de26f68b939f5af79ec29cc34c7be18',1,'PhysicalLayer::finishTransmit()'],['../class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4',1,'SX128x::finishTransmit()'],['../class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f',1,'SX127x::finishTransmit()'],['../class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e',1,'SX126x::finishTransmit()'],['../class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b',1,'RF69::finishTransmit()'],['../classn_r_f24.html#af0c21ff66c011dfdc1ad12bc7dd11c2f',1,'nRF24::finishTransmit()'],['../class_l_r11x0.html#aaff9a5b9b7636693c98bd1c93a5863e5',1,'LR11x0::finishTransmit()'],['../class_c_c1101.html#af70ea860154cd6d2b2e2a6962e161c8f',1,'CC1101::finishTransmit()'],['../class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3',1,'Si443x::finishTransmit() override']]], + ['fixedpacketlengthmode_887',['fixedPacketLengthMode',['../class_si443x.html#ad2b3a961a99d9e8f3a7ead6e8b69e858',1,'Si443x::fixedPacketLengthMode()'],['../class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359',1,'SX127x::fixedPacketLengthMode()'],['../class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5',1,'SX126x::fixedPacketLengthMode()'],['../class_r_f69.html#a0de2a07f264839cda945faebf7319e0e',1,'RF69::fixedPacketLengthMode()'],['../class_l_r11x0.html#a5df4c1ed45bf59aa25bc400bcb5dc1ba',1,'LR11x0::fixedPacketLengthMode()'],['../class_c_c1101.html#ad25ad96cddf62273bffd601384d22275',1,'CC1101::fixedPacketLengthMode()']]], + ['forceldro_888',['forceLDRO',['../class_l_r11x0.html#ae0a47e772fe24c7b3f3d3288c4cd0941',1,'LR11x0::forceLDRO()'],['../class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8',1,'SX126x::forceLDRO()'],['../class_s_x1272.html#a4aaf9d61310fa7b4fce413ae53d30ac0',1,'SX1272::forceLDRO()'],['../class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856',1,'SX1278::forceLDRO()']]], + ['fsk4client_889',['FSK4Client',['../class_f_s_k4_client.html#a2cdcea538e5b58e99a23f98ef4a68617',1,'FSK4Client::FSK4Client(PhysicalLayer *phy)'],['../class_f_s_k4_client.html#a65105b2744c4721b75ca0894c654bf82',1,'FSK4Client::FSK4Client(AFSKClient *audio)']]] ]; diff --git a/search/functions_6.js b/search/functions_6.js index 8617b694..e4ff4170 100644 --- a/search/functions_6.js +++ b/search/functions_6.js @@ -1,56 +1,56 @@ var searchData= [ - ['generatecmac_888',['generateCMAC',['../class_radio_lib_a_e_s128.html#a260a1ac84386141781b3d7c213ff161c',1,'RadioLibAES128']]], - ['getafcerror_889',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]], - ['getafcntdown_890',['getAFCntDown',['../class_lo_ra_w_a_n_node.html#a6785265f3311ff6bf296f82429c96701',1,'LoRaWANNode']]], - ['getbuffernonces_891',['getBufferNonces',['../class_lo_ra_w_a_n_node.html#a84004883006b4a498d4899874952445b',1,'LoRaWANNode']]], - ['getbuffersession_892',['getBufferSession',['../class_lo_ra_w_a_n_node.html#a90369a4f2c4da11527872a7bbbf9ab06',1,'LoRaWANNode']]], - ['getchannelscanresult_893',['getChannelScanResult',['../class_l_r11x0.html#a1ae2cddeb7671d9b71e9c83bf020820f',1,'LR11x0::getChannelScanResult()'],['../class_s_x126x.html#afdd901c5eac2ca8773d0977e2c493317',1,'SX126x::getChannelScanResult()'],['../class_s_x127x.html#a81189ce77541d78fc8feb99c2a3f35b2',1,'SX127x::getChannelScanResult()'],['../class_s_x128x.html#ac39f77b77a2e4124cc30aeae08b4c653',1,'SX128x::getChannelScanResult()'],['../class_physical_layer.html#a63979795a7b53557560bb95b65480906',1,'PhysicalLayer::getChannelScanResult()']]], - ['getchipversion_894',['getChipVersion',['../class_c_c1101.html#a2a4c6e622dffd2788d8ac52d708b0705',1,'CC1101::getChipVersion()'],['../class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638',1,'RF69::getChipVersion()'],['../class_si443x.html#a55252bda74e8c67636a8c1fa0e9f58d3',1,'Si443x::getChipVersion()'],['../class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd',1,'SX127x::getChipVersion()']]], - ['getcs_895',['getCs',['../class_module.html#aa6cac04c7cb6d5278a318db0966ad1a7',1,'Module']]], - ['getcurrentlimit_896',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]], - ['getdatarate_897',['getDataRate',['../class_l_r11x0.html#a1ec81f3625fdc8a3ef6c54a3804c3aa9',1,'LR11x0::getDataRate()'],['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate()']]], - ['getdevaddr_898',['getDevAddr',['../class_lo_ra_w_a_n_node.html#aee0590cc9123ceac4c822eabed3150c6',1,'LoRaWANNode']]], - ['getfcntup_899',['getFCntUp',['../class_lo_ra_w_a_n_node.html#ad3217975ef9959ff83ce79dd80b0d777',1,'LoRaWANNode']]], - ['getfhsschannel_900',['getFHSSChannel',['../class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c',1,'SX127x']]], - ['getfhsshoppingperiod_901',['getFHSSHoppingPeriod',['../class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617',1,'SX127x']]], - ['getfreqstep_902',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]], - ['getfrequency_903',['getFrequency',['../class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed',1,'RF69']]], - ['getfrequencydeviation_904',['getFrequencyDeviation',['../class_c_c1101.html#abe26fa310e973bf2b14750b9eae02124',1,'CC1101::getFrequencyDeviation()'],['../class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9',1,'RF69::getFrequencyDeviation()']]], - ['getfrequencyerror_905',['getFrequencyError',['../class_l_r11x0.html#ad9046bccdb4ef60718e2e8ed2bd7f036',1,'LR11x0::getFrequencyError()'],['../class_s_x128x.html#a2b424000856a9dc212f571d0e8890635',1,'SX128x::getFrequencyError()'],['../class_s_x126x.html#a068d709ffb79ae66d718ffb76ffae997',1,'SX126x::getFrequencyError()'],['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x::getFrequencyError()']]], - ['getgnssalmanacstatus_906',['getGnssAlmanacStatus',['../class_l_r11x0.html#a748d30cb7a0b419066f6361a966b306f',1,'LR11x0']]], - ['getgnssposition_907',['getGnssPosition',['../class_l_r11x0.html#a19a4b4a138dbd0e5c8f980de0f6419e4',1,'LR11x0']]], - ['getgnsssatellites_908',['getGnssSatellites',['../class_l_r11x0.html#a97a3f23b796257135a9afd33c28e8ed5',1,'LR11x0']]], - ['getgpio_909',['getGpio',['../class_module.html#a4ec27f0ba5e0009ea9661a5110526b52',1,'Module']]], - ['getirq_910',['getIrq',['../class_module.html#ab61bc5066c356e2d0d79f08a2bd0fbc9',1,'Module']]], - ['getirqflags_911',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]], - ['getirqflags_912',['getIrqFlags',['../class_physical_layer.html#af1caeed34b2e2ff0355467507106a1a2',1,'PhysicalLayer::getIrqFlags()'],['../class_s_x128x.html#aa17ffcb939f6b2eb0712e63b6ee7a71f',1,'SX128x::getIrqFlags()'],['../class_s_x127x.html#a22de05835dda9ed287ec48f60ef91f55',1,'SX127x::getIrqFlags()'],['../class_s_x126x.html#ab4f9b0c6496a796211e9816bf92146a7',1,'SX126x::getIrqFlags()'],['../class_l_r11x0.html#a205364e65d54f3f87b9b8f5972cdcb99',1,'LR11x0::getIrqFlags()']]], - ['getirqmapped_913',['getIrqMapped',['../class_physical_layer.html#ae602ebd46d60da8670c9f353cef695d9',1,'PhysicalLayer']]], - ['getirqstatus_914',['getIrqStatus',['../class_l_r11x0.html#a0309154558a0d88e2e8957e4dbf6a2f8',1,'LR11x0::getIrqStatus()'],['../class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22',1,'SX128x::getIrqStatus()']]], - ['getlasttoa_915',['getLastToA',['../class_lo_ra_w_a_n_node.html#a683b02b63867bb7de5df45c94d190305',1,'LoRaWANNode']]], - ['getlqi_916',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]], - ['getmacdevicetimeans_917',['getMacDeviceTimeAns',['../class_lo_ra_w_a_n_node.html#a9e6e1ce4296364606ff8b10fb5f971de',1,'LoRaWANNode']]], - ['getmaclinkcheckans_918',['getMacLinkCheckAns',['../class_lo_ra_w_a_n_node.html#adf038f331c1dc954dafc2668e7a31ca0',1,'LoRaWANNode']]], - ['getmaxpayloadlen_919',['getMaxPayloadLen',['../class_lo_ra_w_a_n_node.html#ab723160aa317cd84550d0da3a0f52811',1,'LoRaWANNode']]], - ['getmod_920',['getMod',['../class_external_radio.html#adfb1275ec53dbbd8fde2e8102e8f375d',1,'ExternalRadio']]], - ['getmodem_921',['getModem',['../class_physical_layer.html#af061879bf694735297593c048d04a196',1,'PhysicalLayer::getModem()'],['../class_s_x126x.html#a867b111d21308319e117695051e157ae',1,'SX126x::getModem()'],['../class_s_x128x.html#ad7bb0f4aa60a600d24d6268b430e719d',1,'SX128x::getModem()'],['../class_l_r11x0.html#afe8684b336a8137cde591283297a869c',1,'LR11x0::getModem()'],['../class_s_x127x.html#a333a9004cc05ff8aba2e9610db31109d',1,'SX127x::getModem(ModemType_t *modem) override']]], - ['getmodemstatus_922',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]], - ['getnfcntdown_923',['getNFCntDown',['../class_lo_ra_w_a_n_node.html#aa7fabaa6efe9978c3674b1ab187446a1',1,'LoRaWANNode']]], - ['getnumsymbols_924',['getNumSymbols',['../class_s_x127x.html#abcc10ab36404aaaee3fe7a1be6841511',1,'SX127x']]], - ['getpacketlength_925',['getPacketLength',['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_physical_layer.html#a2fe95169b5cdc8cabe1f2af66cad6ef6',1,'PhysicalLayer::getPacketLength()'],['../class_s_x128x.html#a67ab0acd97f81e509af80a31f1fa7dc4',1,'SX128x::getPacketLength()'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_s_x126x.html#a121a0c8bc8548b58019c9ccbbe5181c9',1,'SX126x::getPacketLength(bool update, uint8_t *offset)'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength(bool update=true) override'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_l_r11x0.html#af96883b2ca7a36a8921ee1cd222adebf',1,'LR11x0::getPacketLength(bool update, uint8_t *offset)'],['../class_l_r11x0.html#ac1f541bdee1d983126ceae47940b8f9d',1,'LR11x0::getPacketLength(bool update=true) override'],['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()']]], - ['getpictureheight_926',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], - ['getpromiscuousmode_927',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], - ['getrangingresult_928',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], - ['getrssi_929',['getRSSI',['../class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b',1,'PhysicalLayer::getRSSI()'],['../class_s_x128x.html#acaee753f0736774efc25e38f58e0cb26',1,'SX128x::getRSSI(bool packet)'],['../class_s_x128x.html#a260b99d8427e089546e33084803d955a',1,'SX128x::getRSSI() override'],['../class_s_x1278.html#ab17357254073baeb7490c98faf10d991',1,'SX1278::getRSSI(bool packet, bool skipReceive=false)'],['../class_s_x1278.html#a0fcdc2962d1cf3410be208154d98ae4b',1,'SX1278::getRSSI() override'],['../class_s_x1272.html#a54a4b070d6899bd1edae6ae4a17c7d90',1,'SX1272::getRSSI()'],['../class_s_x126x.html#ab9db47423cf4e09ab126669d9fecbf0e',1,'SX126x::getRSSI(bool packet)'],['../class_s_x126x.html#a782a2e4ab7779369c0dc0cb4779fda81',1,'SX126x::getRSSI() override'],['../class_r_f69.html#af107c6a510d7e0314f1f4d76637c833d',1,'RF69::getRSSI()'],['../class_l_r11x0.html#a6cd2b2363501b2de064c9d1f32fabaa3',1,'LR11x0::getRSSI()'],['../class_c_c1101.html#ab80835be83e5a43010afe4e8185114eb',1,'CC1101::getRSSI()'],['../class_s_x1272.html#a171656d12a9909bbb04fc81be86ec2a6',1,'SX1272::getRSSI()']]], - ['getrst_930',['getRst',['../class_module.html#ad6cddbf3aebec9717a1a381dd81ad398',1,'Module']]], - ['getsnr_931',['getSNR',['../class_l_r11x0.html#a004782e6e5c6ad213c3b0c677bb8642d',1,'LR11x0::getSNR()'],['../class_s_x126x.html#a59b761a67d15cdbfdccd6a759f464d00',1,'SX126x::getSNR()'],['../class_s_x127x.html#a47b3f7464303085d34191dd334c1976f',1,'SX127x::getSNR()'],['../class_s_x128x.html#adce2e6c7215caa7c904b0d8f9cbd107d',1,'SX128x::getSNR()'],['../class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f',1,'PhysicalLayer::getSNR()']]], - ['getstatus_932',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]], - ['gettemperature_933',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]], - ['gettempraw_934',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]], - ['gettimeonair_935',['getTimeOnAir',['../class_l_r11x0.html#abccf5dc80aab71090a5f19bfffa0201d',1,'LR11x0::getTimeOnAir()'],['../class_s_x126x.html#a16eb0bdb051f3cf288db752d18182ae2',1,'SX126x::getTimeOnAir()'],['../class_s_x127x.html#a9e7ecbc92c9d70f93211d21399d237d0',1,'SX127x::getTimeOnAir()'],['../class_s_x128x.html#ae7d3676df8f28c79b9bee23df884fa55',1,'SX128x::getTimeOnAir()'],['../class_physical_layer.html#a50e730a894f60b58034507ad7730dd3c',1,'PhysicalLayer::getTimeOnAir()']]], - ['getversioninfo_936',['getVersionInfo',['../class_l_r11x0.html#ac6b6b460ba12cd92a08df16e1fe33779',1,'LR11x0']]], - ['getwifiscanresult_937',['getWifiScanResult',['../class_l_r11x0.html#a457f5dfe25385a329127f07abc4631a6',1,'LR11x0']]], - ['getwifiscanresultscount_938',['getWifiScanResultsCount',['../class_l_r11x0.html#a5ef83caa291e2d310d260a8ea140bc8e',1,'LR11x0']]], - ['gnssdelayuntilsubframe_939',['gnssDelayUntilSubframe',['../class_l_r11x0.html#ab2dbab0fe3433e914c19a8d03fe32358',1,'LR11x0']]], - ['gnssscan_940',['gnssScan',['../class_l_r11x0.html#ad9bfaf0bdd7045f5d41f18f3f953c294',1,'LR11x0']]] + ['generatecmac_890',['generateCMAC',['../class_radio_lib_a_e_s128.html#a260a1ac84386141781b3d7c213ff161c',1,'RadioLibAES128']]], + ['getafcerror_891',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]], + ['getafcntdown_892',['getAFCntDown',['../class_lo_ra_w_a_n_node.html#a6785265f3311ff6bf296f82429c96701',1,'LoRaWANNode']]], + ['getbuffernonces_893',['getBufferNonces',['../class_lo_ra_w_a_n_node.html#a84004883006b4a498d4899874952445b',1,'LoRaWANNode']]], + ['getbuffersession_894',['getBufferSession',['../class_lo_ra_w_a_n_node.html#a90369a4f2c4da11527872a7bbbf9ab06',1,'LoRaWANNode']]], + ['getchannelscanresult_895',['getChannelScanResult',['../class_l_r11x0.html#a1ae2cddeb7671d9b71e9c83bf020820f',1,'LR11x0::getChannelScanResult()'],['../class_s_x126x.html#afdd901c5eac2ca8773d0977e2c493317',1,'SX126x::getChannelScanResult()'],['../class_s_x127x.html#a81189ce77541d78fc8feb99c2a3f35b2',1,'SX127x::getChannelScanResult()'],['../class_s_x128x.html#ac39f77b77a2e4124cc30aeae08b4c653',1,'SX128x::getChannelScanResult()'],['../class_physical_layer.html#a63979795a7b53557560bb95b65480906',1,'PhysicalLayer::getChannelScanResult()']]], + ['getchipversion_896',['getChipVersion',['../class_c_c1101.html#a2a4c6e622dffd2788d8ac52d708b0705',1,'CC1101::getChipVersion()'],['../class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638',1,'RF69::getChipVersion()'],['../class_si443x.html#a55252bda74e8c67636a8c1fa0e9f58d3',1,'Si443x::getChipVersion()'],['../class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd',1,'SX127x::getChipVersion()']]], + ['getcs_897',['getCs',['../class_module.html#aa6cac04c7cb6d5278a318db0966ad1a7',1,'Module']]], + ['getcurrentlimit_898',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]], + ['getdatarate_899',['getDataRate',['../class_l_r11x0.html#a1ec81f3625fdc8a3ef6c54a3804c3aa9',1,'LR11x0::getDataRate()'],['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate()']]], + ['getdevaddr_900',['getDevAddr',['../class_lo_ra_w_a_n_node.html#aee0590cc9123ceac4c822eabed3150c6',1,'LoRaWANNode']]], + ['getfcntup_901',['getFCntUp',['../class_lo_ra_w_a_n_node.html#ad3217975ef9959ff83ce79dd80b0d777',1,'LoRaWANNode']]], + ['getfhsschannel_902',['getFHSSChannel',['../class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c',1,'SX127x']]], + ['getfhsshoppingperiod_903',['getFHSSHoppingPeriod',['../class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617',1,'SX127x']]], + ['getfreqstep_904',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]], + ['getfrequency_905',['getFrequency',['../class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed',1,'RF69']]], + ['getfrequencydeviation_906',['getFrequencyDeviation',['../class_c_c1101.html#abe26fa310e973bf2b14750b9eae02124',1,'CC1101::getFrequencyDeviation()'],['../class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9',1,'RF69::getFrequencyDeviation()']]], + ['getfrequencyerror_907',['getFrequencyError',['../class_l_r11x0.html#ad9046bccdb4ef60718e2e8ed2bd7f036',1,'LR11x0::getFrequencyError()'],['../class_s_x128x.html#a2b424000856a9dc212f571d0e8890635',1,'SX128x::getFrequencyError()'],['../class_s_x126x.html#a068d709ffb79ae66d718ffb76ffae997',1,'SX126x::getFrequencyError()'],['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x::getFrequencyError()']]], + ['getgnssalmanacstatus_908',['getGnssAlmanacStatus',['../class_l_r11x0.html#a748d30cb7a0b419066f6361a966b306f',1,'LR11x0']]], + ['getgnssposition_909',['getGnssPosition',['../class_l_r11x0.html#a19a4b4a138dbd0e5c8f980de0f6419e4',1,'LR11x0']]], + ['getgnsssatellites_910',['getGnssSatellites',['../class_l_r11x0.html#a97a3f23b796257135a9afd33c28e8ed5',1,'LR11x0']]], + ['getgpio_911',['getGpio',['../class_module.html#a4ec27f0ba5e0009ea9661a5110526b52',1,'Module']]], + ['getirq_912',['getIrq',['../class_module.html#ab61bc5066c356e2d0d79f08a2bd0fbc9',1,'Module']]], + ['getirqflags_913',['getIrqFlags',['../class_physical_layer.html#af1caeed34b2e2ff0355467507106a1a2',1,'PhysicalLayer::getIrqFlags()'],['../class_s_x128x.html#aa17ffcb939f6b2eb0712e63b6ee7a71f',1,'SX128x::getIrqFlags()'],['../class_s_x127x.html#a22de05835dda9ed287ec48f60ef91f55',1,'SX127x::getIrqFlags()'],['../class_s_x126x.html#ab4f9b0c6496a796211e9816bf92146a7',1,'SX126x::getIrqFlags()'],['../class_l_r11x0.html#a205364e65d54f3f87b9b8f5972cdcb99',1,'LR11x0::getIrqFlags()']]], + ['getirqflags_914',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]], + ['getirqmapped_915',['getIrqMapped',['../class_physical_layer.html#ae602ebd46d60da8670c9f353cef695d9',1,'PhysicalLayer']]], + ['getirqstatus_916',['getIrqStatus',['../class_l_r11x0.html#a0309154558a0d88e2e8957e4dbf6a2f8',1,'LR11x0::getIrqStatus()'],['../class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22',1,'SX128x::getIrqStatus()']]], + ['getlasttoa_917',['getLastToA',['../class_lo_ra_w_a_n_node.html#a683b02b63867bb7de5df45c94d190305',1,'LoRaWANNode']]], + ['getlqi_918',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]], + ['getmacdevicetimeans_919',['getMacDeviceTimeAns',['../class_lo_ra_w_a_n_node.html#a9e6e1ce4296364606ff8b10fb5f971de',1,'LoRaWANNode']]], + ['getmaclinkcheckans_920',['getMacLinkCheckAns',['../class_lo_ra_w_a_n_node.html#adf038f331c1dc954dafc2668e7a31ca0',1,'LoRaWANNode']]], + ['getmaxpayloadlen_921',['getMaxPayloadLen',['../class_lo_ra_w_a_n_node.html#ab723160aa317cd84550d0da3a0f52811',1,'LoRaWANNode']]], + ['getmod_922',['getMod',['../class_external_radio.html#adfb1275ec53dbbd8fde2e8102e8f375d',1,'ExternalRadio']]], + ['getmodem_923',['getModem',['../class_physical_layer.html#af061879bf694735297593c048d04a196',1,'PhysicalLayer::getModem()'],['../class_s_x126x.html#a867b111d21308319e117695051e157ae',1,'SX126x::getModem()'],['../class_s_x128x.html#ad7bb0f4aa60a600d24d6268b430e719d',1,'SX128x::getModem()'],['../class_l_r11x0.html#afe8684b336a8137cde591283297a869c',1,'LR11x0::getModem()'],['../class_s_x127x.html#a333a9004cc05ff8aba2e9610db31109d',1,'SX127x::getModem(ModemType_t *modem) override']]], + ['getmodemstatus_924',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]], + ['getnfcntdown_925',['getNFCntDown',['../class_lo_ra_w_a_n_node.html#aa7fabaa6efe9978c3674b1ab187446a1',1,'LoRaWANNode']]], + ['getnumsymbols_926',['getNumSymbols',['../class_s_x127x.html#abcc10ab36404aaaee3fe7a1be6841511',1,'SX127x']]], + ['getpacketlength_927',['getPacketLength',['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_physical_layer.html#a2fe95169b5cdc8cabe1f2af66cad6ef6',1,'PhysicalLayer::getPacketLength()'],['../class_s_x128x.html#a67ab0acd97f81e509af80a31f1fa7dc4',1,'SX128x::getPacketLength()'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_s_x126x.html#a121a0c8bc8548b58019c9ccbbe5181c9',1,'SX126x::getPacketLength(bool update, uint8_t *offset)'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength(bool update=true) override'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_l_r11x0.html#af96883b2ca7a36a8921ee1cd222adebf',1,'LR11x0::getPacketLength(bool update, uint8_t *offset)'],['../class_l_r11x0.html#ac1f541bdee1d983126ceae47940b8f9d',1,'LR11x0::getPacketLength(bool update=true) override'],['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()']]], + ['getpictureheight_928',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], + ['getpromiscuousmode_929',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], + ['getrangingresult_930',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], + ['getrssi_931',['getRSSI',['../class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b',1,'PhysicalLayer::getRSSI()'],['../class_s_x128x.html#acaee753f0736774efc25e38f58e0cb26',1,'SX128x::getRSSI(bool packet)'],['../class_s_x128x.html#a260b99d8427e089546e33084803d955a',1,'SX128x::getRSSI() override'],['../class_s_x1278.html#ab17357254073baeb7490c98faf10d991',1,'SX1278::getRSSI(bool packet, bool skipReceive=false)'],['../class_s_x1278.html#a0fcdc2962d1cf3410be208154d98ae4b',1,'SX1278::getRSSI() override'],['../class_s_x1272.html#a54a4b070d6899bd1edae6ae4a17c7d90',1,'SX1272::getRSSI()'],['../class_s_x126x.html#ab9db47423cf4e09ab126669d9fecbf0e',1,'SX126x::getRSSI(bool packet)'],['../class_s_x126x.html#a782a2e4ab7779369c0dc0cb4779fda81',1,'SX126x::getRSSI() override'],['../class_r_f69.html#af107c6a510d7e0314f1f4d76637c833d',1,'RF69::getRSSI()'],['../class_l_r11x0.html#a6cd2b2363501b2de064c9d1f32fabaa3',1,'LR11x0::getRSSI()'],['../class_c_c1101.html#ab80835be83e5a43010afe4e8185114eb',1,'CC1101::getRSSI()'],['../class_s_x1272.html#a171656d12a9909bbb04fc81be86ec2a6',1,'SX1272::getRSSI()']]], + ['getrst_932',['getRst',['../class_module.html#ad6cddbf3aebec9717a1a381dd81ad398',1,'Module']]], + ['getsnr_933',['getSNR',['../class_l_r11x0.html#a004782e6e5c6ad213c3b0c677bb8642d',1,'LR11x0::getSNR()'],['../class_s_x126x.html#a59b761a67d15cdbfdccd6a759f464d00',1,'SX126x::getSNR()'],['../class_s_x127x.html#a47b3f7464303085d34191dd334c1976f',1,'SX127x::getSNR()'],['../class_s_x128x.html#adce2e6c7215caa7c904b0d8f9cbd107d',1,'SX128x::getSNR()'],['../class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f',1,'PhysicalLayer::getSNR()']]], + ['getstatus_934',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]], + ['gettemperature_935',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]], + ['gettempraw_936',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]], + ['gettimeonair_937',['getTimeOnAir',['../class_l_r11x0.html#abccf5dc80aab71090a5f19bfffa0201d',1,'LR11x0::getTimeOnAir()'],['../class_s_x126x.html#a16eb0bdb051f3cf288db752d18182ae2',1,'SX126x::getTimeOnAir()'],['../class_s_x127x.html#a9e7ecbc92c9d70f93211d21399d237d0',1,'SX127x::getTimeOnAir()'],['../class_s_x128x.html#ae7d3676df8f28c79b9bee23df884fa55',1,'SX128x::getTimeOnAir()'],['../class_physical_layer.html#a50e730a894f60b58034507ad7730dd3c',1,'PhysicalLayer::getTimeOnAir()']]], + ['getversioninfo_938',['getVersionInfo',['../class_l_r11x0.html#ac6b6b460ba12cd92a08df16e1fe33779',1,'LR11x0']]], + ['getwifiscanresult_939',['getWifiScanResult',['../class_l_r11x0.html#a457f5dfe25385a329127f07abc4631a6',1,'LR11x0']]], + ['getwifiscanresultscount_940',['getWifiScanResultsCount',['../class_l_r11x0.html#a5ef83caa291e2d310d260a8ea140bc8e',1,'LR11x0']]], + ['gnssdelayuntilsubframe_941',['gnssDelayUntilSubframe',['../class_l_r11x0.html#ab2dbab0fe3433e914c19a8d03fe32358',1,'LR11x0']]], + ['gnssscan_942',['gnssScan',['../class_l_r11x0.html#ad9bfaf0bdd7045f5d41f18f3f953c294',1,'LR11x0']]] ]; diff --git a/search/functions_7.js b/search/functions_7.js index 102db1a8..6b5c2b98 100644 --- a/search/functions_7.js +++ b/search/functions_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['hellclient_941',['HellClient',['../class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0',1,'HellClient::HellClient(PhysicalLayer *phy)'],['../class_hell_client.html#afeb347f04148700427ad40614fd057c3',1,'HellClient::HellClient(AFSKClient *audio)']]] + ['hellclient_943',['HellClient',['../class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0',1,'HellClient::HellClient(PhysicalLayer *phy)'],['../class_hell_client.html#afeb347f04148700427ad40614fd057c3',1,'HellClient::HellClient(AFSKClient *audio)']]] ]; diff --git a/search/functions_8.js b/search/functions_8.js index 3e6d3fc8..1d6e5280 100644 --- a/search/functions_8.js +++ b/search/functions_8.js @@ -1,12 +1,12 @@ var searchData= [ - ['idle_942',['idle',['../class_f_s_k4_client.html#a79ca465012acc9223d61d5b063ff8257',1,'FSK4Client::idle()'],['../class_r_t_t_y_client.html#ac477e65ea756e56bb9043d778a51b4bc',1,'RTTYClient::idle()'],['../class_s_s_t_v_client.html#a0126ac04934f589b8cb04a038c342044',1,'SSTVClient::idle()'],['../class_bell_client.html#aabd170def79cdbfd56a1d243e6227a75',1,'BellClient::idle()']]], - ['implicitheader_943',['implicitHeader',['../class_l_r11x0.html#aba13921d2cf29cc1bc8a648e1f330aa9',1,'LR11x0::implicitHeader()'],['../class_s_x126x.html#adec09cba71494bd927ad1da786606ca6',1,'SX126x::implicitHeader()'],['../class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3',1,'SX1272::implicitHeader()'],['../class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e',1,'SX1278::implicitHeader()'],['../class_s_x128x.html#ac69cc622020419cb3393eac5cc88915b',1,'SX128x::implicitHeader()']]], - ['init_944',['init',['../class_module.html#ad1956ac81429ec1f61f83dbc081cf18c',1,'Module::init()'],['../class_radio_lib_a_e_s128.html#a2f688dbdf2b0506c077ca4501e40e22e',1,'RadioLibAES128::init()'],['../class_radio_lib_hal.html#a450037acdfeb4e87413674ac90feb4d2',1,'RadioLibHal::init()'],['../class_tock_hal.html#a9ee8dae5dc2a8cc09b73c35f39e49b7d',1,'TockHal::init()'],['../class_pico_hal.html#a9eea222b674b9f36c68dfb8db3bbf096',1,'PicoHal::init()'],['../class_pi_hal.html#a78593321f098c53fbac81b8d0d423b7f',1,'PiHal::init()'],['../class_esp_hal.html#a8d0f76eaeb787f13fe8e938678d44616',1,'EspHal::init()']]], - ['invertiq_945',['invertIQ',['../class_l_r11x0.html#af85c16956c2250dbf338a298c074d28c',1,'LR11x0::invertIQ()'],['../class_s_x126x.html#a269c8e4ae0d21af88e9422ccf9708c1e',1,'SX126x::invertIQ()'],['../class_s_x127x.html#a363a436978ba990e1bf7d73f648ad7e9',1,'SX127x::invertIQ()'],['../class_s_x128x.html#a46e7979288205689ea97f1c26d1da07e',1,'SX128x::invertIQ()'],['../class_physical_layer.html#a11b4c6d0bf3ae7b9ca04e9434180feab',1,'PhysicalLayer::invertIQ()']]], - ['invertpreamble_946',['invertPreamble',['../class_s_x127x.html#a5b79dae55315cdf25e530db77eeb140f',1,'SX127x']]], - ['isactivated_947',['isActivated',['../class_lo_ra_w_a_n_node.html#a9a44677a1ef7db1216bc482139d6be8d',1,'LoRaWANNode']]], - ['iscarrierdetected_948',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]], - ['isgnssscancapable_949',['isGnssScanCapable',['../class_l_r11x0.html#a79818dae19d69d33a5a1facbb91c3774',1,'LR11x0']]], - ['ita2string_950',['ITA2String',['../class_i_t_a2_string.html#addb6c39167aa5da53fb72e9a94c9c8f5',1,'ITA2String::ITA2String(char c)'],['../class_i_t_a2_string.html#a92ca563bdc2ae4d05ee91ce9372e7a55',1,'ITA2String::ITA2String(const char *str)'],['../class_i_t_a2_string.html#ac3c4e36f2a1cad480b045530a19d09d2',1,'ITA2String::ITA2String(const ITA2String &ita2)']]] + ['idle_944',['idle',['../class_f_s_k4_client.html#a79ca465012acc9223d61d5b063ff8257',1,'FSK4Client::idle()'],['../class_r_t_t_y_client.html#ac477e65ea756e56bb9043d778a51b4bc',1,'RTTYClient::idle()'],['../class_s_s_t_v_client.html#a0126ac04934f589b8cb04a038c342044',1,'SSTVClient::idle()'],['../class_bell_client.html#aabd170def79cdbfd56a1d243e6227a75',1,'BellClient::idle()']]], + ['implicitheader_945',['implicitHeader',['../class_l_r11x0.html#aba13921d2cf29cc1bc8a648e1f330aa9',1,'LR11x0::implicitHeader()'],['../class_s_x126x.html#adec09cba71494bd927ad1da786606ca6',1,'SX126x::implicitHeader()'],['../class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3',1,'SX1272::implicitHeader()'],['../class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e',1,'SX1278::implicitHeader()'],['../class_s_x128x.html#ac69cc622020419cb3393eac5cc88915b',1,'SX128x::implicitHeader()']]], + ['init_946',['init',['../class_module.html#ad1956ac81429ec1f61f83dbc081cf18c',1,'Module::init()'],['../class_radio_lib_a_e_s128.html#a2f688dbdf2b0506c077ca4501e40e22e',1,'RadioLibAES128::init()'],['../class_radio_lib_hal.html#a450037acdfeb4e87413674ac90feb4d2',1,'RadioLibHal::init()'],['../class_tock_hal.html#a9ee8dae5dc2a8cc09b73c35f39e49b7d',1,'TockHal::init()'],['../class_pico_hal.html#a9eea222b674b9f36c68dfb8db3bbf096',1,'PicoHal::init()'],['../class_pi_hal.html#a78593321f098c53fbac81b8d0d423b7f',1,'PiHal::init()'],['../class_esp_hal.html#a8d0f76eaeb787f13fe8e938678d44616',1,'EspHal::init()']]], + ['invertiq_947',['invertIQ',['../class_l_r11x0.html#af85c16956c2250dbf338a298c074d28c',1,'LR11x0::invertIQ()'],['../class_s_x126x.html#a269c8e4ae0d21af88e9422ccf9708c1e',1,'SX126x::invertIQ()'],['../class_s_x127x.html#a363a436978ba990e1bf7d73f648ad7e9',1,'SX127x::invertIQ()'],['../class_s_x128x.html#a46e7979288205689ea97f1c26d1da07e',1,'SX128x::invertIQ()'],['../class_physical_layer.html#a11b4c6d0bf3ae7b9ca04e9434180feab',1,'PhysicalLayer::invertIQ()']]], + ['invertpreamble_948',['invertPreamble',['../class_s_x127x.html#a5b79dae55315cdf25e530db77eeb140f',1,'SX127x']]], + ['isactivated_949',['isActivated',['../class_lo_ra_w_a_n_node.html#a9a44677a1ef7db1216bc482139d6be8d',1,'LoRaWANNode']]], + ['iscarrierdetected_950',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]], + ['isgnssscancapable_951',['isGnssScanCapable',['../class_l_r11x0.html#a79818dae19d69d33a5a1facbb91c3774',1,'LR11x0']]], + ['ita2string_952',['ITA2String',['../class_i_t_a2_string.html#addb6c39167aa5da53fb72e9a94c9c8f5',1,'ITA2String::ITA2String(char c)'],['../class_i_t_a2_string.html#a92ca563bdc2ae4d05ee91ce9372e7a55',1,'ITA2String::ITA2String(const char *str)'],['../class_i_t_a2_string.html#ac3c4e36f2a1cad480b045530a19d09d2',1,'ITA2String::ITA2String(const ITA2String &ita2)']]] ]; diff --git a/search/functions_9.js b/search/functions_9.js index 02b73e05..45b22e1c 100644 --- a/search/functions_9.js +++ b/search/functions_9.js @@ -1,10 +1,10 @@ var searchData= [ - ['length_951',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]], - ['llcc68_952',['LLCC68',['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68']]], - ['lorawannode_953',['LoRaWANNode',['../class_lo_ra_w_a_n_node.html#aae05de563f765f14fe267e4d65844f76',1,'LoRaWANNode']]], - ['lr1110_954',['LR1110',['../class_l_r1110.html#a4e492901900ad1d85c818ec473b3d123',1,'LR1110']]], - ['lr1120_955',['LR1120',['../class_l_r1120.html#ae652f10ebc1e4b8245eb5a0c97765257',1,'LR1120']]], - ['lr1121_956',['LR1121',['../class_l_r1121.html#a0015ed8c0fde10a072b5f1317779f59a',1,'LR1121']]], - ['lr11x0_957',['LR11x0',['../class_l_r11x0.html#a562f34a054e3374b812556df3b6eb421',1,'LR11x0']]] + ['length_953',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]], + ['llcc68_954',['LLCC68',['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68']]], + ['lorawannode_955',['LoRaWANNode',['../class_lo_ra_w_a_n_node.html#aae05de563f765f14fe267e4d65844f76',1,'LoRaWANNode']]], + ['lr1110_956',['LR1110',['../class_l_r1110.html#a4e492901900ad1d85c818ec473b3d123',1,'LR1110']]], + ['lr1120_957',['LR1120',['../class_l_r1120.html#ae652f10ebc1e4b8245eb5a0c97765257',1,'LR1120']]], + ['lr1121_958',['LR1121',['../class_l_r1121.html#a0015ed8c0fde10a072b5f1317779f59a',1,'LR1121']]], + ['lr11x0_959',['LR11x0',['../class_l_r11x0.html#a562f34a054e3374b812556df3b6eb421',1,'LR11x0']]] ]; diff --git a/search/functions_a.js b/search/functions_a.js index 24785d33..c7df203c 100644 --- a/search/functions_a.js +++ b/search/functions_a.js @@ -1,7 +1,7 @@ var searchData= [ - ['micros_958',['micros',['../class_esp_hal.html#a14e1e7205a3a0465101eb99bdac86973',1,'EspHal::micros()'],['../class_pi_hal.html#a99893a968bd5789511154b559f349e60',1,'PiHal::micros()'],['../class_pico_hal.html#a3eb9710f7b7702c9035833a4f8176038',1,'PicoHal::micros()'],['../class_tock_hal.html#a35d643277c35762e0ce0d66ac3fa28a0',1,'TockHal::micros()'],['../class_radio_lib_hal.html#a64d98b48668ced5ba1014f272606f370',1,'RadioLibHal::micros()']]], - ['millis_959',['millis',['../class_esp_hal.html#a3282dda7cf77988e10ff015763b2c582',1,'EspHal::millis()'],['../class_pi_hal.html#a162b953dbc7bb96be6d7ec037c4d465e',1,'PiHal::millis()'],['../class_pico_hal.html#a4e82e02b4de6d1c192f52fb0ddd1c9c4',1,'PicoHal::millis()'],['../class_tock_hal.html#a1f5aabd073320fbce5f93ad47caf78f2',1,'TockHal::millis()'],['../class_radio_lib_hal.html#a4b8e36ccf8fe372c259b963666513d37',1,'RadioLibHal::millis()']]], - ['module_960',['Module',['../class_module.html#a817178405f125e068e88bad62aeb6f3b',1,'Module::Module(RadioLibHal *hal, uint32_t cs, uint32_t irq, uint32_t rst, uint32_t gpio=RADIOLIB_NC)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]], - ['morseclient_961',['MorseClient',['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)']]] + ['micros_960',['micros',['../class_esp_hal.html#a14e1e7205a3a0465101eb99bdac86973',1,'EspHal::micros()'],['../class_pi_hal.html#a99893a968bd5789511154b559f349e60',1,'PiHal::micros()'],['../class_pico_hal.html#a3eb9710f7b7702c9035833a4f8176038',1,'PicoHal::micros()'],['../class_tock_hal.html#a35d643277c35762e0ce0d66ac3fa28a0',1,'TockHal::micros()'],['../class_radio_lib_hal.html#a64d98b48668ced5ba1014f272606f370',1,'RadioLibHal::micros()']]], + ['millis_961',['millis',['../class_esp_hal.html#a3282dda7cf77988e10ff015763b2c582',1,'EspHal::millis()'],['../class_pi_hal.html#a162b953dbc7bb96be6d7ec037c4d465e',1,'PiHal::millis()'],['../class_pico_hal.html#a4e82e02b4de6d1c192f52fb0ddd1c9c4',1,'PicoHal::millis()'],['../class_tock_hal.html#a1f5aabd073320fbce5f93ad47caf78f2',1,'TockHal::millis()'],['../class_radio_lib_hal.html#a4b8e36ccf8fe372c259b963666513d37',1,'RadioLibHal::millis()']]], + ['module_962',['Module',['../class_module.html#a817178405f125e068e88bad62aeb6f3b',1,'Module::Module(RadioLibHal *hal, uint32_t cs, uint32_t irq, uint32_t rst, uint32_t gpio=RADIOLIB_NC)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]], + ['morseclient_963',['MorseClient',['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)']]] ]; diff --git a/search/functions_b.js b/search/functions_b.js index 78685fb3..bf03d26b 100644 --- a/search/functions_b.js +++ b/search/functions_b.js @@ -1,5 +1,5 @@ var searchData= [ - ['notone_962',['noTone',['../class_pi_hal.html#a06ee4519e6226013798e03f303fe3941',1,'PiHal::noTone()'],['../class_pico_hal.html#af80164483ca2bda3a7dd0cc795549524',1,'PicoHal::noTone()'],['../class_radio_lib_hal.html#a6b5341c59728a1932e33216feee04ea5',1,'RadioLibHal::noTone()'],['../class_a_f_s_k_client.html#a664c1de9b5cd792826a5a77ac5457bae',1,'AFSKClient::noTone()']]], - ['nrf24_963',['nRF24',['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24']]] + ['notone_964',['noTone',['../class_pi_hal.html#a06ee4519e6226013798e03f303fe3941',1,'PiHal::noTone()'],['../class_pico_hal.html#af80164483ca2bda3a7dd0cc795549524',1,'PicoHal::noTone()'],['../class_radio_lib_hal.html#a6b5341c59728a1932e33216feee04ea5',1,'RadioLibHal::noTone()'],['../class_a_f_s_k_client.html#a664c1de9b5cd792826a5a77ac5457bae',1,'AFSKClient::noTone()']]], + ['nrf24_965',['nRF24',['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24']]] ]; diff --git a/search/functions_c.js b/search/functions_c.js index bf667e69..227505ef 100644 --- a/search/functions_c.js +++ b/search/functions_c.js @@ -1,4 +1,4 @@ var searchData= [ - ['operator_3d_964',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()'],['../class_a_x25_client.html#aad6b806d6f8601ec04d6b11bcde37733',1,'AX25Client::operator=()'],['../class_external_radio.html#aee6ca3af0849aed193e96cb0691e89e0',1,'ExternalRadio::operator=()'],['../class_i_t_a2_string.html#a8b572c54ca3fdd1d8ba7ef6ec0dfd384',1,'ITA2String::operator=()']]] + ['operator_3d_966',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()'],['../class_a_x25_client.html#aad6b806d6f8601ec04d6b11bcde37733',1,'AX25Client::operator=()'],['../class_external_radio.html#aee6ca3af0849aed193e96cb0691e89e0',1,'ExternalRadio::operator=()'],['../class_i_t_a2_string.html#a8b572c54ca3fdd1d8ba7ef6ec0dfd384',1,'ITA2String::operator=()']]] ]; diff --git a/search/functions_d.js b/search/functions_d.js index 2299a6c1..a6a1fdb9 100644 --- a/search/functions_d.js +++ b/search/functions_d.js @@ -1,10 +1,10 @@ var searchData= [ - ['packetmode_965',['packetMode',['../class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f',1,'RF69::packetMode()'],['../class_si443x.html#a616eb24c4b11c5d39caaade160be8092',1,'Si443x::packetMode()'],['../class_s_x127x.html#a0995088d37689a3c240a1af791df6cf1',1,'SX127x::packetMode()'],['../class_c_c1101.html#a38f6978c757b0dd73e3ef98164a735a2',1,'CC1101::packetMode()']]], - ['pagerclient_966',['PagerClient',['../class_pager_client.html#a9f978120467b13104fb356e9b7d855ec',1,'PagerClient']]], - ['physicallayer_967',['PhysicalLayer',['../class_physical_layer.html#add63d7d4fa8b14df5e185813794a49d5',1,'PhysicalLayer']]], - ['pinmode_968',['pinMode',['../class_tock_hal.html#ade8ecf3f37cc3c6ce5eda9b523ffb912',1,'TockHal::pinMode()'],['../class_stm32wlx_hal.html#a70dd9f6fb6c0307e2d9d363ce6d7f2a2',1,'Stm32wlxHal::pinMode()'],['../class_radio_lib_hal.html#af01b4e5e01352b99ce4329c9f9f8433b',1,'RadioLibHal::pinMode()'],['../class_pico_hal.html#ac539134f4517ef79de49832bb86392f2',1,'PicoHal::pinMode()'],['../class_pi_hal.html#ad2986ed862d4c429d6527bd54e472530',1,'PiHal::pinMode()'],['../class_esp_hal.html#a38acd30617d2b0c9b143ea1107ba55f7',1,'EspHal::pinMode()']]], - ['pintointerrupt_969',['pinToInterrupt',['../class_radio_lib_hal.html#a300a47d4d43dbe0c624f6e5dc1cf7a00',1,'RadioLibHal']]], - ['printglyph_970',['printGlyph',['../class_hell_client.html#a68c4a74910756ad251e626a0b4c8c267',1,'HellClient']]], - ['pulsein_971',['pulseIn',['../class_esp_hal.html#a02d00f8b2337d39390910f453e140de8',1,'EspHal::pulseIn()'],['../class_pi_hal.html#a3350f8cc20008dbe69e7180599fb80ee',1,'PiHal::pulseIn()'],['../class_pico_hal.html#a504806e3adb1a5b9f6784478bae16c10',1,'PicoHal::pulseIn()'],['../class_tock_hal.html#a416ee97a17f37cf0e686096050523a28',1,'TockHal::pulseIn()'],['../class_radio_lib_hal.html#a3f38db9475dcd0967d6dfe240b8695c9',1,'RadioLibHal::pulseIn()']]] + ['packetmode_967',['packetMode',['../class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f',1,'RF69::packetMode()'],['../class_si443x.html#a616eb24c4b11c5d39caaade160be8092',1,'Si443x::packetMode()'],['../class_s_x127x.html#a0995088d37689a3c240a1af791df6cf1',1,'SX127x::packetMode()'],['../class_c_c1101.html#a38f6978c757b0dd73e3ef98164a735a2',1,'CC1101::packetMode()']]], + ['pagerclient_968',['PagerClient',['../class_pager_client.html#a9f978120467b13104fb356e9b7d855ec',1,'PagerClient']]], + ['physicallayer_969',['PhysicalLayer',['../class_physical_layer.html#add63d7d4fa8b14df5e185813794a49d5',1,'PhysicalLayer']]], + ['pinmode_970',['pinMode',['../class_tock_hal.html#ade8ecf3f37cc3c6ce5eda9b523ffb912',1,'TockHal::pinMode()'],['../class_stm32wlx_hal.html#a70dd9f6fb6c0307e2d9d363ce6d7f2a2',1,'Stm32wlxHal::pinMode()'],['../class_radio_lib_hal.html#af01b4e5e01352b99ce4329c9f9f8433b',1,'RadioLibHal::pinMode()'],['../class_pico_hal.html#ac539134f4517ef79de49832bb86392f2',1,'PicoHal::pinMode()'],['../class_pi_hal.html#ad2986ed862d4c429d6527bd54e472530',1,'PiHal::pinMode()'],['../class_esp_hal.html#a38acd30617d2b0c9b143ea1107ba55f7',1,'EspHal::pinMode()']]], + ['pintointerrupt_971',['pinToInterrupt',['../class_radio_lib_hal.html#a300a47d4d43dbe0c624f6e5dc1cf7a00',1,'RadioLibHal']]], + ['printglyph_972',['printGlyph',['../class_hell_client.html#a68c4a74910756ad251e626a0b4c8c267',1,'HellClient']]], + ['pulsein_973',['pulseIn',['../class_esp_hal.html#a02d00f8b2337d39390910f453e140de8',1,'EspHal::pulseIn()'],['../class_pi_hal.html#a3350f8cc20008dbe69e7180599fb80ee',1,'PiHal::pulseIn()'],['../class_pico_hal.html#a504806e3adb1a5b9f6784478bae16c10',1,'PicoHal::pulseIn()'],['../class_tock_hal.html#a416ee97a17f37cf0e686096050523a28',1,'TockHal::pulseIn()'],['../class_radio_lib_hal.html#a3f38db9475dcd0967d6dfe240b8695c9',1,'RadioLibHal::pulseIn()']]] ]; diff --git a/search/functions_e.js b/search/functions_e.js index ca0047d6..c7e7e25b 100644 --- a/search/functions_e.js +++ b/search/functions_e.js @@ -1,21 +1,21 @@ var searchData= [ - ['radiolibaes128_972',['RadioLibAES128',['../class_radio_lib_a_e_s128.html#a11f816221d1c06432ff80f2678ef46fe',1,'RadioLibAES128']]], - ['radiolibbch_973',['RadioLibBCH',['../class_radio_lib_b_c_h.html#a39d55c0292e4c9337ee0672cd5241118',1,'RadioLibBCH']]], - ['radiolibconvcode_974',['RadioLibConvCode',['../class_radio_lib_conv_code.html#a4fbe7c4e90969f0be10b8484b405df78',1,'RadioLibConvCode']]], - ['radiolibcrc_975',['RadioLibCRC',['../class_radio_lib_c_r_c.html#a4f4042a369d55e234f4fc28f189139d5',1,'RadioLibCRC']]], - ['radiolibhal_976',['RadioLibHal',['../class_radio_lib_hal.html#ae75a54271cb8bea37d32dd146b9c6513',1,'RadioLibHal']]], - ['random_977',['random',['../class_physical_layer.html#acd9171bd71aa80fb86113b612c42de53',1,'PhysicalLayer::random(int32_t max)'],['../class_physical_layer.html#a76113e10481743094a1cd0280692b0a9',1,'PhysicalLayer::random(int32_t min, int32_t max)']]], - ['randombyte_978',['randomByte',['../class_c_c1101.html#a13cf332824479442cc20fc1c6972b092',1,'CC1101::randomByte()'],['../class_l_r11x0.html#a89b16d2231f588b67dc3aab0c0a467f4',1,'LR11x0::randomByte()'],['../class_r_f69.html#ac47d0f59cb190361fa9b7d10efacc297',1,'RF69::randomByte()'],['../class_si443x.html#a16750016db8a3bf27c35822b08d81155',1,'Si443x::randomByte()'],['../class_s_x126x.html#a187a616285c5872f9603a86c122deaf2',1,'SX126x::randomByte()'],['../class_s_x127x.html#a9877550ed7881be06d00ea190f230fb9',1,'SX127x::randomByte()'],['../class_s_x128x.html#a8d331080599e09ef0b11a77cffd6f13a',1,'SX128x::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()']]], - ['range_979',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]], - ['read_980',['read',['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()'],['../class_morse_client.html#a77eab03be04ef2d693348d9580ee5d3c',1,'MorseClient::read()']]], - ['readbit_981',['readBit',['../class_c_c1101.html#a11a92d885beefdf2db291301550a980c',1,'CC1101::readBit()'],['../class_r_f69.html#a5a340c38b9b8b79d4fe59fb987b12746',1,'RF69::readBit()'],['../class_si443x.html#a2bff9ba621ad00964bdfc72dd374a50b',1,'Si443x::readBit()'],['../class_s_x126x.html#acb1a1c51f207439880ae537f5ffeb17c',1,'SX126x::readBit()'],['../class_s_x127x.html#a0e149fac59b3accbc9550bf605d6bbf0',1,'SX127x::readBit()'],['../class_s_x128x.html#af2e1d173694a59082a22922a6f7d50a8',1,'SX128x::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit(uint32_t pin)']]], - ['readdata_982',['readData',['../class_physical_layer.html#a3563453988a83d22dd07d4691543a300',1,'PhysicalLayer::readData()'],['../class_s_x127x.html#a3563453988a83d22dd07d4691543a300',1,'SX127x::readData()'],['../class_c_c1101.html#a3563453988a83d22dd07d4691543a300',1,'CC1101::readData()'],['../class_l_r11x0.html#a3563453988a83d22dd07d4691543a300',1,'LR11x0::readData()'],['../classn_r_f24.html#a3563453988a83d22dd07d4691543a300',1,'nRF24::readData()'],['../class_r_f69.html#a3563453988a83d22dd07d4691543a300',1,'RF69::readData()'],['../class_si443x.html#a3563453988a83d22dd07d4691543a300',1,'Si443x::readData()'],['../class_s_x126x.html#a3563453988a83d22dd07d4691543a300',1,'SX126x::readData()'],['../class_s_x128x.html#a3563453988a83d22dd07d4691543a300',1,'SX128x::readData(uint8_t *data, size_t len)'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData(uint8_t *data, size_t len) override'],['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData()'],['../class_l_r11x0.html#a20279f1b267e936991f47fd703924833',1,'LR11x0::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()']]], - ['receive_983',['receive',['../class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX128x::receive()'],['../class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX127x::receive()'],['../class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX126x::receive()'],['../class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'Si443x::receive()'],['../class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'RF69::receive()'],['../classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'nRF24::receive()'],['../class_l_r11x0.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'LR11x0::receive()'],['../class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'CC1101::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_l_r11x0.html#a377c287f18c939c2b4da3241d8329e58',1,'LR11x0::receive()'],['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'PhysicalLayer::receive()']]], - ['receivedirect_984',['receiveDirect',['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6',1,'PhysicalLayer::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_l_r11x0.html#ae1a8e8eda78113c47f1a865e63051bb5',1,'LR11x0::receiveDirect()'],['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()']]], - ['receivedirectasync_985',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]], - ['reset_986',['reset',['../class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97',1,'Si443x::reset()'],['../class_s_x128x.html#a2643ce22176293631fea2169f5e68e66',1,'SX128x::reset()'],['../class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68',1,'SX127x::reset()'],['../class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad',1,'SX1278::reset()'],['../class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac',1,'SX1272::reset()'],['../class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f',1,'SX126x::reset()'],['../class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a',1,'RF69::reset()'],['../class_l_r11x0.html#a288bcc309d3676bc0bbe620b7d89d994',1,'LR11x0::reset()'],['../class_c_c1101.html#a1fc87275c6f5d7f6927ca51a175eba21',1,'CC1101::reset()']]], - ['resetfcntdown_987',['resetFCntDown',['../class_lo_ra_w_a_n_node.html#af4b3d07cd9bf4178d627204bae18b648',1,'LoRaWANNode']]], - ['rf69_988',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69']]], - ['rttyclient_989',['RTTYClient',['../class_r_t_t_y_client.html#ae6bc08fa88457ee00a992448be1d63ea',1,'RTTYClient::RTTYClient(PhysicalLayer *phy)'],['../class_r_t_t_y_client.html#ab0e11944c2f1e2c60fc45bcd2db18570',1,'RTTYClient::RTTYClient(AFSKClient *audio)']]] + ['radiolibaes128_974',['RadioLibAES128',['../class_radio_lib_a_e_s128.html#a11f816221d1c06432ff80f2678ef46fe',1,'RadioLibAES128']]], + ['radiolibbch_975',['RadioLibBCH',['../class_radio_lib_b_c_h.html#a39d55c0292e4c9337ee0672cd5241118',1,'RadioLibBCH']]], + ['radiolibconvcode_976',['RadioLibConvCode',['../class_radio_lib_conv_code.html#a4fbe7c4e90969f0be10b8484b405df78',1,'RadioLibConvCode']]], + ['radiolibcrc_977',['RadioLibCRC',['../class_radio_lib_c_r_c.html#a4f4042a369d55e234f4fc28f189139d5',1,'RadioLibCRC']]], + ['radiolibhal_978',['RadioLibHal',['../class_radio_lib_hal.html#ae75a54271cb8bea37d32dd146b9c6513',1,'RadioLibHal']]], + ['random_979',['random',['../class_physical_layer.html#acd9171bd71aa80fb86113b612c42de53',1,'PhysicalLayer::random(int32_t max)'],['../class_physical_layer.html#a76113e10481743094a1cd0280692b0a9',1,'PhysicalLayer::random(int32_t min, int32_t max)']]], + ['randombyte_980',['randomByte',['../class_c_c1101.html#a13cf332824479442cc20fc1c6972b092',1,'CC1101::randomByte()'],['../class_l_r11x0.html#a89b16d2231f588b67dc3aab0c0a467f4',1,'LR11x0::randomByte()'],['../class_r_f69.html#ac47d0f59cb190361fa9b7d10efacc297',1,'RF69::randomByte()'],['../class_si443x.html#a16750016db8a3bf27c35822b08d81155',1,'Si443x::randomByte()'],['../class_s_x126x.html#a187a616285c5872f9603a86c122deaf2',1,'SX126x::randomByte()'],['../class_s_x127x.html#a9877550ed7881be06d00ea190f230fb9',1,'SX127x::randomByte()'],['../class_s_x128x.html#a8d331080599e09ef0b11a77cffd6f13a',1,'SX128x::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()']]], + ['range_981',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]], + ['read_982',['read',['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()'],['../class_morse_client.html#a77eab03be04ef2d693348d9580ee5d3c',1,'MorseClient::read()']]], + ['readbit_983',['readBit',['../class_c_c1101.html#a11a92d885beefdf2db291301550a980c',1,'CC1101::readBit()'],['../class_r_f69.html#a5a340c38b9b8b79d4fe59fb987b12746',1,'RF69::readBit()'],['../class_si443x.html#a2bff9ba621ad00964bdfc72dd374a50b',1,'Si443x::readBit()'],['../class_s_x126x.html#acb1a1c51f207439880ae537f5ffeb17c',1,'SX126x::readBit()'],['../class_s_x127x.html#a0e149fac59b3accbc9550bf605d6bbf0',1,'SX127x::readBit()'],['../class_s_x128x.html#af2e1d173694a59082a22922a6f7d50a8',1,'SX128x::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit(uint32_t pin)']]], + ['readdata_984',['readData',['../class_physical_layer.html#a3563453988a83d22dd07d4691543a300',1,'PhysicalLayer::readData()'],['../class_s_x127x.html#a3563453988a83d22dd07d4691543a300',1,'SX127x::readData()'],['../class_c_c1101.html#a3563453988a83d22dd07d4691543a300',1,'CC1101::readData()'],['../class_l_r11x0.html#a3563453988a83d22dd07d4691543a300',1,'LR11x0::readData()'],['../classn_r_f24.html#a3563453988a83d22dd07d4691543a300',1,'nRF24::readData()'],['../class_r_f69.html#a3563453988a83d22dd07d4691543a300',1,'RF69::readData()'],['../class_si443x.html#a3563453988a83d22dd07d4691543a300',1,'Si443x::readData()'],['../class_s_x126x.html#a3563453988a83d22dd07d4691543a300',1,'SX126x::readData()'],['../class_s_x128x.html#a3563453988a83d22dd07d4691543a300',1,'SX128x::readData(uint8_t *data, size_t len)'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData(uint8_t *data, size_t len) override'],['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData()'],['../class_l_r11x0.html#a20279f1b267e936991f47fd703924833',1,'LR11x0::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()']]], + ['receive_985',['receive',['../class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX128x::receive()'],['../class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX127x::receive()'],['../class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX126x::receive()'],['../class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'Si443x::receive()'],['../class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'RF69::receive()'],['../classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'nRF24::receive()'],['../class_l_r11x0.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'LR11x0::receive()'],['../class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'CC1101::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_l_r11x0.html#a377c287f18c939c2b4da3241d8329e58',1,'LR11x0::receive()'],['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'PhysicalLayer::receive()']]], + ['receivedirect_986',['receiveDirect',['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6',1,'PhysicalLayer::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_l_r11x0.html#ae1a8e8eda78113c47f1a865e63051bb5',1,'LR11x0::receiveDirect()'],['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()']]], + ['receivedirectasync_987',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]], + ['reset_988',['reset',['../class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97',1,'Si443x::reset()'],['../class_s_x128x.html#a2643ce22176293631fea2169f5e68e66',1,'SX128x::reset()'],['../class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68',1,'SX127x::reset()'],['../class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad',1,'SX1278::reset()'],['../class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac',1,'SX1272::reset()'],['../class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f',1,'SX126x::reset()'],['../class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a',1,'RF69::reset()'],['../class_l_r11x0.html#a288bcc309d3676bc0bbe620b7d89d994',1,'LR11x0::reset()'],['../class_c_c1101.html#a1fc87275c6f5d7f6927ca51a175eba21',1,'CC1101::reset()']]], + ['resetfcntdown_989',['resetFCntDown',['../class_lo_ra_w_a_n_node.html#af4b3d07cd9bf4178d627204bae18b648',1,'LoRaWANNode']]], + ['rf69_990',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69']]], + ['rttyclient_991',['RTTYClient',['../class_r_t_t_y_client.html#ae6bc08fa88457ee00a992448be1d63ea',1,'RTTYClient::RTTYClient(PhysicalLayer *phy)'],['../class_r_t_t_y_client.html#ab0e11944c2f1e2c60fc45bcd2db18570',1,'RTTYClient::RTTYClient(AFSKClient *audio)']]] ]; diff --git a/search/functions_f.js b/search/functions_f.js index 444297e1..f0b9d8d9 100644 --- a/search/functions_f.js +++ b/search/functions_f.js @@ -1,160 +1,159 @@ var searchData= [ - ['scanchannel_990',['scanChannel',['../class_l_r11x0.html#a5e8f21878bdab1439805aea1e9da168d',1,'LR11x0::scanChannel(const ChannelScanConfig_t &config) override'],['../class_l_r11x0.html#a6a3034c91f5bce70c853ab1620725b3c',1,'LR11x0::scanChannel() override'],['../class_physical_layer.html#af788cf83ceb0222cd0fa4a1323b9041b',1,'PhysicalLayer::scanChannel(const ChannelScanConfig_t &config)'],['../class_physical_layer.html#abd9e39cc745acbf084cfa0d3f4d10718',1,'PhysicalLayer::scanChannel()'],['../class_s_x128x.html#ab55112682432f369fb17f8107ba5158b',1,'SX128x::scanChannel()'],['../class_s_x127x.html#a13ae97e18744dc617bc9326cfbaad3a3',1,'SX127x::scanChannel()'],['../class_s_x126x.html#a373012fb3276872238f654b66879a710',1,'SX126x::scanChannel(const ChannelScanConfig_t &config) override'],['../class_s_x126x.html#acb8611a9c3862dd1bfa73ef47b8f9b20',1,'SX126x::scanChannel() override'],['../class_s_x128x.html#a2f8427103d6609f3ac44b23fcca4f301',1,'SX128x::scanChannel()']]], - ['scheduletransmission_991',['scheduleTransmission',['../class_lo_ra_w_a_n_node.html#a16c7ae2edfe324e11498b13aa042665f',1,'LoRaWANNode']]], - ['sendframe_992',['sendFrame',['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()'],['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()']]], - ['sendheader_993',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]], - ['sendline_994',['sendLine',['../class_s_s_t_v_client.html#ab8579712e82e806960ced7bf2750d9c6',1,'SSTVClient']]], - ['sendmaccommandreq_995',['sendMacCommandReq',['../class_lo_ra_w_a_n_node.html#adef05650cf4eb92042ca5e2688c1e164',1,'LoRaWANNode']]], - ['sendmice_996',['sendMicE',['../class_a_p_r_s_client.html#af8f28eba026b0f0a25c8ba54a96f4743',1,'APRSClient']]], - ['sendposition_997',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]], - ['sendreceive_998',['sendReceive',['../class_lo_ra_w_a_n_node.html#a85cf006ffd97ece3b2d2974b715540cb',1,'LoRaWANNode::sendReceive(const char *strUp, uint8_t fPort, uint8_t *dataDown, size_t *lenDown, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a07ab107de181bde59c2731a5a64a1e2e',1,'LoRaWANNode::sendReceive(uint8_t *dataUp, size_t lenUp, uint8_t fPort, uint8_t *dataDown, size_t *lenDown, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a7123f9a907df9224b9b01282c12af459',1,'LoRaWANNode::sendReceive(uint8_t *dataUp, size_t lenUp, uint8_t fPort=1, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a11c2fbe631063da69355f8d74f4bf3b8',1,'LoRaWANNode::sendReceive(const char *strUp, uint8_t fPort, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)']]], - ['sendtone_999',['sendTone',['../class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111',1,'PagerClient']]], - ['setaccessaddress_1000',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]], - ['setaddresswidth_1001',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]], - ['setadr_1002',['setADR',['../class_lo_ra_w_a_n_node.html#ae222275f807f472083ea6100c23c75ff',1,'LoRaWANNode']]], - ['setaeskey_1003',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]], - ['setafc_1004',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]], - ['setafcagctrigger_1005',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]], - ['setafcbandwidth_1006',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], - ['setambienttemperature_1007',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], - ['setautoack_1008',['setAutoAck',['../classn_r_f24.html#ac1c3419442d93abeede39e7fda4db62e',1,'nRF24::setAutoAck(uint8_t pipeNum, bool autoAckOn)'],['../classn_r_f24.html#aca941c9235ba1212257288554eb4b7fe',1,'nRF24::setAutoAck(bool autoAckOn=true)']]], - ['setbandwidth_1009',['setBandwidth',['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::setBandwidth()'],['../class_l_r11x0.html#a70d9849eb8e5ce2090e4e332252753d7',1,'LR11x0::setBandwidth()'],['../class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08',1,'SX126x::setBandwidth()'],['../class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b',1,'SX1272::setBandwidth()'],['../class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6',1,'SX1278::setBandwidth()'],['../class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a',1,'SX128x::setBandwidth(float bw)']]], - ['setbitrate_1010',['setBitRate',['../class_s_x128x.html#ad6570f33bae09bc8b7617f9da39033ac',1,'SX128x::setBitRate()'],['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()'],['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_s_x126x.html#ac38a19db6b8b9aff438d6e23051d487d',1,'SX126x::setBitRate()'],['../class_si443x.html#afcba86e79d229b3fd7268dcbd7c47b62',1,'Si443x::setBitRate()'],['../class_r_f69.html#aa3bfb830901728e9a3c140036aa91c56',1,'RF69::setBitRate()'],['../classn_r_f24.html#a760d3f47f58ddacdf41975447484a47c',1,'nRF24::setBitRate()'],['../class_c_c1101.html#a6fd22cdec29e1e34a92aa9854b90fdc9',1,'CC1101::setBitRate()'],['../class_l_r11x0.html#ab1954e4733a7fbea4129d9a2de2285d9',1,'LR11x0::setBitRate()'],['../class_s_x1233.html#a98e0248cfcca7158261f7ebb31e0aa9f',1,'SX1233::setBitRate()']]], - ['setbitratetolerance_1011',['setBitRateTolerance',['../class_c_c1101.html#adc76af01dbc9171b3fdd7570624a4d4f',1,'CC1101']]], - ['setbroadcastaddress_1012',['setBroadcastAddress',['../class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40',1,'SX127x::setBroadcastAddress()'],['../class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034',1,'SX126x::setBroadcastAddress()'],['../class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8',1,'RF69::setBroadcastAddress()'],['../class_l_r11x0.html#af24ba794f71c4e37cd13d2f4dbec5bf7',1,'LR11x0::setBroadcastAddress()']]], - ['setbuffernonces_1013',['setBufferNonces',['../class_lo_ra_w_a_n_node.html#a11701081ac6bd39a8a2b4bdbc248fac2',1,'LoRaWANNode']]], - ['setbuffersession_1014',['setBufferSession',['../class_lo_ra_w_a_n_node.html#aadebe7a412aec8043aa2f8f57a202f49',1,'LoRaWANNode']]], - ['setchannelscanaction_1015',['setChannelScanAction',['../class_s_t_m32_w_lx.html#a119ad225f9eba91e7c38f82cf0f1c89d',1,'STM32WLx::setChannelScanAction()'],['../class_s_x126x.html#aed0e7dcd60479c9db3d7a3408e7f396d',1,'SX126x::setChannelScanAction()'],['../class_s_x127x.html#ac23c2b384ae8611d59e10ef6a14fe7e4',1,'SX127x::setChannelScanAction()'],['../class_physical_layer.html#ae11c191a7edf3116bf468b9153237260',1,'PhysicalLayer::setChannelScanAction()']]], - ['setcodingrate_1016',['setCodingRate',['../class_l_r11x0.html#a583f2d5ed601a98c609dbf0d57f2f541',1,'LR11x0::setCodingRate()'],['../class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a',1,'SX128x::setCodingRate()'],['../class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1',1,'SX1278::setCodingRate()'],['../class_s_x126x.html#afd3113858966e878e9c67a1e710bd586',1,'SX126x::setCodingRate()'],['../class_s_x1272.html#a960913438feccad4c1913a9222384a5f',1,'SX1272::setCodingRate()']]], - ['setcorrection_1017',['setCorrection',['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client::setCorrection()'],['../class_bell_client.html#a90f3f33a09a4cf8d544ca1e9a23beae2',1,'BellClient::setCorrection()'],['../class_f_s_k4_client.html#aab85cb6519e5448dc332bf17bd60f90a',1,'FSK4Client::setCorrection()'],['../class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e',1,'SSTVClient::setCorrection()']]], - ['setcrc_1018',['setCRC',['../class_l_r11x0.html#a551b82787288b0b14e4d3124e6744dc3',1,'LR11x0::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_1019',['setCrcFiltering',['../class_c_c1101.html#a60695681fc74a37f2a31a9638552e877',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#ab531ad461b250a060e92d9c744e79070',1,'SX127x::setCrcFiltering()']]], - ['setcsma_1020',['setCSMA',['../class_lo_ra_w_a_n_node.html#a2d9a53560ebfbaf006eefd9761424d80',1,'LoRaWANNode']]], - ['setcurrentlimit_1021',['setCurrentLimit',['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()'],['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()']]], - ['setdatarate_1022',['setDataRate',['../class_l_l_c_c68.html#ac630770441cadc547892173bde7504f9',1,'LLCC68']]], - ['setdatarate_1023',['setDatarate',['../class_lo_ra_w_a_n_node.html#a14e8a8a098df28ff5ee294f235500499',1,'LoRaWANNode']]], - ['setdatarate_1024',['setDataRate',['../class_physical_layer.html#a6ee1fed6bbb8d3571974153ac6f26751',1,'PhysicalLayer::setDataRate()'],['../class_s_x128x.html#adbf5a9ac62460efb1c709e51260dbe3d',1,'SX128x::setDataRate()'],['../class_s_x1278.html#a286f1ee00e2c7f2ab1bd06b66196c3f9',1,'SX1278::setDataRate()'],['../class_s_x1277.html#ac4bfae9258662381e685e46c803c984c',1,'SX1277::setDataRate()'],['../class_s_x1273.html#acaffc772f70e7db371cbe736dc4a19ab',1,'SX1273::setDataRate()'],['../class_s_x1272.html#a5b79b7cd20c4c3cd1f486f777b3457d1',1,'SX1272::setDataRate()'],['../class_s_x126x.html#af30a581d31feae6f50c0591d1ee113f1',1,'SX126x::setDataRate()'],['../class_l_r11x0.html#a056e65c58ff8fb18bd84917512790ee6',1,'LR11x0::setDataRate()']]], - ['setdatashaping_1025',['setDataShaping',['../class_physical_layer.html#aeba04366a0cf05ff3d8227c4f7c8e1e9',1,'PhysicalLayer::setDataShaping()'],['../class_l_r11x0.html#a5a33df702da3f5b010e07d5e6fac7aa6',1,'LR11x0::setDataShaping()'],['../class_external_radio.html#abe0bfb0f178783eff28bdc867e9324fd',1,'ExternalRadio::setDataShaping()'],['../class_s_x128x.html#a99491c705e88dddc820f884b778f1660',1,'SX128x::setDataShaping()'],['../class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563',1,'SX1278::setDataShaping()'],['../class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea',1,'SX1272::setDataShaping()'],['../class_si443x.html#ade08c79074c7e4414d34eefa25cee168',1,'Si443x::setDataShaping()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::setDataShaping()'],['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()'],['../class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676',1,'SX126x::setDataShaping()']]], - ['setdatashapingook_1026',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]], - ['setdevicestatus_1027',['setDeviceStatus',['../class_lo_ra_w_a_n_node.html#a5449e301634dff1838a1b024b4067034',1,'LoRaWANNode']]], - ['setdio0action_1028',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ae75bc48cc74a407370cd9f4bf95e9e30',1,'SX127x::setDio0Action()']]], - ['setdio1action_1029',['setDio1Action',['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()'],['../class_s_x127x.html#a7b4bce81839b105c464ebf922602e58b',1,'SX127x::setDio1Action()'],['../class_s_t_m32_w_lx.html#a63d61bc5057e9da3d0ea12feae67122e',1,'STM32WLx::setDio1Action()'],['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()']]], - ['setdio2asrfswitch_1030',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], - ['setdiomapping_1031',['setDIOMapping',['../class_c_c1101.html#a544bb8d7be9c0e1ff7f7103b30925862',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a7243b3396edc1e6e67575894a5033afe',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#af7d373bc93e99790912cebe8d5ae6403',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()']]], - ['setdiopreambledetect_1032',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]], - ['setdirectaction_1033',['setDirectAction',['../class_s_x128x.html#a2326cf28c385b8dd709cb62c9f665000',1,'SX128x::setDirectAction()'],['../class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966',1,'PhysicalLayer::setDirectAction()'],['../class_s_x127x.html#ae4b99d1bc67ac2c81eeb11dd6793a8c5',1,'SX127x::setDirectAction()'],['../class_si443x.html#a48a59ff1ddc7c8ec820328174955de43',1,'Si443x::setDirectAction()'],['../class_c_c1101.html#a24f4b059cc56238499c6117b88cd5505',1,'CC1101::setDirectAction()'],['../class_r_f69.html#a9852fe520aec018d2bb4aff0cd17de77',1,'RF69::setDirectAction()'],['../class_s_x126x.html#a4f514b341b8982650526c6d8e20fd1a4',1,'SX126x::setDirectAction()']]], - ['setdirectsyncword_1034',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], - ['setdutycycle_1035',['setDutyCycle',['../class_lo_ra_w_a_n_node.html#a3d4bbd6d382496838954ab4ac1168b77',1,'LoRaWANNode']]], - ['setdwelltime_1036',['setDwellTime',['../class_lo_ra_w_a_n_node.html#a62bfe68f6fe63c2e408dccbff6a34a4f',1,'LoRaWANNode']]], - ['setencoding_1037',['setEncoding',['../class_physical_layer.html#acb45b2342400a03a914a91d2ac7fb488',1,'PhysicalLayer::setEncoding()'],['../class_external_radio.html#ae619f011daea49a97098d2897e5a3c2c',1,'ExternalRadio::setEncoding()'],['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()'],['../class_l_r11x0.html#a8ae178a17f6e41b545b79cfffd3e2864',1,'LR11x0::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()']]], - ['setfhsshoppingperiod_1038',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]], - ['setfifoemptyaction_1039',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()']]], - ['setfifofullaction_1040',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]], - ['setfrequency_1041',['setFrequency',['../class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e',1,'PhysicalLayer::setFrequency()'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency()'],['../class_s_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::setFrequency()'],['../class_s_x1272.html#ac1467a23e1f1bfdbd02f6d30654ed850',1,'SX1272::setFrequency()'],['../class_s_x1276.html#a981b59110e514b7dcaec8490e1c4320c',1,'SX1276::setFrequency()'],['../class_s_x1277.html#ad68ea24b46d9e7d3f82282cdccd20e00',1,'SX1277::setFrequency()'],['../class_s_x1278.html#adb4d95d3b2798cf8ea94890ae71dcc59',1,'SX1278::setFrequency()'],['../class_s_x1279.html#ab60691d073ca75ef09dab7a8f28fb7fb',1,'SX1279::setFrequency()'],['../class_s_x128x.html#ab9e16231c2c6bd0e4b4c6c2900b5b332',1,'SX128x::setFrequency()'],['../class_s_x1268.html#af412a9361fe413b2d0c426100056d8c2',1,'SX1268::setFrequency()'],['../class_s_x1262.html#a2122feee1a3bffaaa20e85b24dc8a899',1,'SX1262::setFrequency()'],['../class_c_c1101.html#ad428d7e6fc9ac119101bb0716fa80bee',1,'CC1101::setFrequency()'],['../class_l_r1110.html#ade94d20ea438cbd92c61e28d2232d7e8',1,'LR1110::setFrequency(float freq) override'],['../class_l_r1110.html#a08c9ba9d02e7e3918f73f090c6d5ed33',1,'LR1110::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb',1,'LR1120::setFrequency(float freq) override'],['../class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2',1,'LR1120::setFrequency(float freq, bool calibrate, float band=4)'],['../class_r_f69.html#aa7f47c37eec6c7e3ebf6e6d30ebd5532',1,'RF69::setFrequency()'],['../class_si4430.html#a3959e91bcae77b8240e9e447985e05b3',1,'Si4430::setFrequency()'],['../class_si4432.html#aed3561abdb30b4eaad52d984366aadf1',1,'Si4432::setFrequency()'],['../classn_r_f24.html#a18f24764b2ecffc076e72dce0b036116',1,'nRF24::setFrequency()']]], - ['setfrequencydeviation_1042',['setFrequencyDeviation',['../class_physical_layer.html#a2f4f9b428d9ea9af886ca85e5088ed7b',1,'PhysicalLayer::setFrequencyDeviation()'],['../class_external_radio.html#a02928a19eab0eab615c02180cedda3eb',1,'ExternalRadio::setFrequencyDeviation()'],['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_l_r11x0.html#ac003cfe3a4dbd9bad1f01fd0147031d1',1,'LR11x0::setFrequencyDeviation()'],['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()']]], - ['setgain_1043',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], - ['setgaincontrol_1044',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]], - ['setgdo0action_1045',['setGdo0Action',['../class_c_c1101.html#a9bee13612cf4da067faeb57d18ee2eb7',1,'CC1101']]], - ['setgdo2action_1046',['setGdo2Action',['../class_c_c1101.html#ad71efbe54590e4431f3286ab99536fe9',1,'CC1101']]], - ['sethighsensitivitymode_1047',['setHighSensitivityMode',['../class_s_x128x.html#a6e45fbfaec7063e52e188f47a3a585a5',1,'SX128x']]], - ['setinversion_1048',['setInversion',['../class_hell_client.html#ae43025b9d55ee21a322bb5d7ee1065b0',1,'HellClient']]], - ['setirq_1049',['setIrq',['../class_physical_layer.html#a8564f9834a0247e93e7620c23559ceb8',1,'PhysicalLayer']]], - ['setirqaction_1050',['setIrqAction',['../class_l_r11x0.html#a49116d006b60128fe6f73a6a868a6d18',1,'LR11x0::setIrqAction()'],['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]], - ['setirqflags_1051',['setIrqFlags',['../class_s_x128x.html#a6a2ec5d316975f390f20b4e0a2e11e98',1,'SX128x::setIrqFlags()'],['../class_physical_layer.html#af88dcb54dc8e9a1edaf9f1c3e5ee2b74',1,'PhysicalLayer::setIrqFlags()'],['../class_l_r11x0.html#a62c715ab18ea8a2e08a2791d3e764ee9',1,'LR11x0::setIrqFlags()'],['../class_s_x126x.html#a50e757c2a63e5c7da5b0d0d6c00f91b5',1,'SX126x::setIrqFlags()'],['../class_s_x127x.html#aae42b94ab2ecf729f29f101222e97666',1,'SX127x::setIrqFlags()']]], - ['setlnatestboost_1052',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]], - ['setlowbatterythreshold_1053',['setLowBatteryThreshold',['../class_s_x127x.html#a9ca9aa18e13e8390ec437e249e1d2472',1,'SX127x']]], - ['setlrfhssconfig_1054',['setLrFhssConfig',['../class_l_r11x0.html#a8c1def9a01021a52f5bb82c119a9ad35',1,'LR11x0::setLrFhssConfig()'],['../class_s_x126x.html#aa1e7777fc8237e2c9d933cd4b6304e28',1,'SX126x::setLrFhssConfig()']]], - ['setmodem_1055',['setModem',['../class_s_x1279.html#aea8bd74e7c5d7b97d4fe4a8182680d5c',1,'SX1279::setModem()'],['../class_physical_layer.html#a77415bf4ed34be18c92c0cf4b2de7149',1,'PhysicalLayer::setModem()'],['../class_bell_client.html#a163f65f3fcce87d9bea558b34c19bd47',1,'BellClient::setModem()'],['../class_s_x128x.html#a209d69e710a785da2c69474f94fdccf3',1,'SX128x::setModem()'],['../class_s_x1278.html#a609dd3faf2036e8c2d046fd191e0137d',1,'SX1278::setModem()'],['../class_s_x1277.html#aec55de7c6622936ff48384bb33424b84',1,'SX1277::setModem()'],['../class_s_x1276.html#a36a526b6c8540cda36d058fb47a9e099',1,'SX1276::setModem()'],['../class_s_x1272.html#a2c99afea2bb3bbb1146c8a4536b4843c',1,'SX1272::setModem()'],['../class_s_x1268.html#ae66e37a6897315f36a13c8d5cefe521b',1,'SX1268::setModem()'],['../class_s_x1262.html#a7cdbfc39c779b3846aa5fd04d50d3eb8',1,'SX1262::setModem()'],['../class_l_r1120.html#a6cd250e0145ed19f2f91ed96a57a825e',1,'LR1120::setModem()'],['../class_l_r1110.html#a18f525740237b023056a8ca6f3671c6a',1,'LR1110::setModem()'],['../class_l_l_c_c68.html#aee4457d48c708f05154e931eed05c691',1,'LLCC68::setModem()'],['../class_s_x1273.html#af9f0969764fde3e12b6b05409718fa83',1,'SX1273::setModem()']]], - ['setnodeaddress_1056',['setNodeAddress',['../class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c',1,'RF69::setNodeAddress()'],['../class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95',1,'SX127x::setNodeAddress()'],['../class_s_x126x.html#adf54f7b83aa47ad0b803147622b3c580',1,'SX126x::setNodeAddress()'],['../class_l_r11x0.html#a605f5c74ce523abad256866abe133d2e',1,'LR11x0::setNodeAddress()'],['../class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8',1,'CC1101::setNodeAddress(uint8_t nodeAddr, uint8_t numBroadcastAddrs=0)']]], - ['setook_1057',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a465df5a2e1f924f6d3ba4eae765847b7',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK(bool enableOOK)']]], - ['setookfixedorfloorthreshold_1058',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]], - ['setookfixedthreshold_1059',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]], - ['setookpeakthresholddecrement_1060',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement(uint8_t value)']]], - ['setookpeakthresholdstep_1061',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]], - ['setookthresholdtype_1062',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]], - ['setoutputpower_1063',['setOutputPower',['../class_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::setOutputPower()'],['../class_physical_layer.html#ad2286dc78dbf8e3084f38e9159b99ae5',1,'PhysicalLayer::setOutputPower()'],['../class_s_x128x.html#a1bc3372c47a4e3c81ef15bee448ba6b6',1,'SX128x::setOutputPower()'],['../class_s_x1278.html#aca58a6c2e8fcef6414fdf3bc1eb62082',1,'SX1278::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1278.html#a69abc18e7fa0055e6b80024e8cde7db4',1,'SX1278::setOutputPower(int8_t power) override'],['../class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659',1,'SX1272::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1272.html#aec51f08c0902145ff5f11e27e7cab638',1,'SX1272::setOutputPower(int8_t power) override'],['../class_s_x1268.html#a6b6adaee1c8d76c3d766225298d84709',1,'SX1268::setOutputPower()'],['../class_s_x1262.html#aa455a7f0e69abdcca55cf35388d9dc52',1,'SX1262::setOutputPower()'],['../class_s_x1261.html#a3d197bb8a301f3594c7bfa1c9375aef1',1,'SX1261::setOutputPower()'],['../class_si4432.html#a5e3017bce6d66d35b867e7878d108c68',1,'Si4432::setOutputPower()'],['../class_si4431.html#ad1538dbe67ed5d3682591d1d780ab0e9',1,'Si4431::setOutputPower()'],['../class_si4430.html#ab1303e014a4b8d2307a2b1deb061fdeb',1,'Si4430::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',1,'RF69::setOutputPower()'],['../classn_r_f24.html#a4fa66ce5fb6d7b22bbb439c2f9103bf3',1,'nRF24::setOutputPower()'],['../class_l_r1120.html#a2e2ea0a2f6d3a8d81e0f2be35848bbc7',1,'LR1120::setOutputPower(int8_t power, bool forceHighPower)'],['../class_l_r1120.html#a1b1321eb695e4a6b583074bb92c33193',1,'LR1120::setOutputPower(int8_t power) override'],['../class_l_r1110.html#ae4eaaa6411bb1eeb131613fb3f43e5d1',1,'LR1110::setOutputPower(int8_t power, bool forceHighPower)'],['../class_l_r1110.html#a65c08f0475f888537e55401b75e58b23',1,'LR1110::setOutputPower(int8_t power) override'],['../class_c_c1101.html#a5d6dce30fc7da668975b6da663784cdf',1,'CC1101::setOutputPower()']]], - ['setpacketreceivedaction_1064',['setPacketReceivedAction',['../class_physical_layer.html#aec928bb26f65752aa20cd236fbabb95c',1,'PhysicalLayer::setPacketReceivedAction()'],['../class_s_x128x.html#ad98c4526ef971f9aadb30e351a37eaf9',1,'SX128x::setPacketReceivedAction()'],['../class_s_x127x.html#ae236a467095fb5364d0fc4a98d85f96e',1,'SX127x::setPacketReceivedAction()'],['../class_s_x126x.html#a7603aa60ae8d975eb262a4b7e2aed1d0',1,'SX126x::setPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#ad23dafdeb21b97165be74ef8f093866c',1,'STM32WLx::setPacketReceivedAction()'],['../class_r_f69.html#a74962c069e08890ac9566d48634c778e',1,'RF69::setPacketReceivedAction()'],['../class_si443x.html#a0e098ea9aa3945f0c38f59efe43b147e',1,'Si443x::setPacketReceivedAction()'],['../class_c_c1101.html#a29a16e8ed85432c6fae8d9e45399de6e',1,'CC1101::setPacketReceivedAction()'],['../classn_r_f24.html#a60df9afa489eabe3a3ca193ab7709165',1,'nRF24::setPacketReceivedAction()'],['../class_l_r11x0.html#ac2a8ece736198c966e3870dac09f4e87',1,'LR11x0::setPacketReceivedAction(void(*func)(void)) override']]], - ['setpacketsentaction_1065',['setPacketSentAction',['../class_l_r11x0.html#a92299e41f839590008b4e344776838a1',1,'LR11x0::setPacketSentAction()'],['../classn_r_f24.html#a26b5f873db167733df143a0608eea3ac',1,'nRF24::setPacketSentAction()'],['../class_r_f69.html#a97603856caada65676ff4b11630c7f72',1,'RF69::setPacketSentAction()'],['../class_si443x.html#af2d36121ca94736ef3ecb4c09aded753',1,'Si443x::setPacketSentAction()'],['../class_s_t_m32_w_lx.html#a7c0e3aef03f0b6834d0465d8f8568c32',1,'STM32WLx::setPacketSentAction()'],['../class_s_x126x.html#ac79f7ebab97ae91fff6933be3207c873',1,'SX126x::setPacketSentAction()'],['../class_s_x127x.html#a3530e8e19cfe4d96fe49ca4e6386b099',1,'SX127x::setPacketSentAction()'],['../class_s_x128x.html#a1e6f938ce715dad9a6609bf56626a50d',1,'SX128x::setPacketSentAction()'],['../class_physical_layer.html#a32b512b34f6575b2109ae3c3f35d1369',1,'PhysicalLayer::setPacketSentAction()'],['../class_c_c1101.html#a336999da23e554073a9fa628131883f5',1,'CC1101::setPacketSentAction()']]], - ['setpaconfig_1066',['setPaConfig',['../class_s_x126x.html#a1623e7d5450c97ca092913ad79d62208',1,'SX126x']]], - ['setparamptime_1067',['setPaRampTime',['../class_s_x126x.html#ad90a56cb55c5bb64037a0d412d84a80d',1,'SX126x']]], - ['setpreamblelength_1068',['setPreambleLength',['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_physical_layer.html#a85db1ff64e6c56e054f276c511194633',1,'PhysicalLayer::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()'],['../class_s_x127x.html#a844499bace6ae001446d71bee2877656',1,'SX127x::setPreambleLength()'],['../class_s_x126x.html#ad6274222ccf534e98e3cd17dfa1520d4',1,'SX126x::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_l_r11x0.html#aa5d7ae65666f8f9abcb7e9b169884a4a',1,'LR11x0::setPreambleLength()'],['../class_c_c1101.html#ae77c828c9c7cc12012fe011e8c4d3570',1,'CC1101::setPreambleLength(uint8_t preambleLength, uint8_t qualityThreshold)']]], - ['setpromiscuousmode_1069',['setPromiscuousMode',['../class_c_c1101.html#ac1155543b27e46fa27aa4c9180da18bb',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#ae004326d663a9d6a9c30e792aa368b49',1,'RF69::setPromiscuousMode()']]], - ['setreceivepipe_1070',['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_1071',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]], - ['setregulatordcdc_1072',['setRegulatorDCDC',['../class_l_r11x0.html#a1ad485f14a333f06b642f2d60aacf76c',1,'LR11x0::setRegulatorDCDC()'],['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x::setRegulatorDCDC()']]], - ['setregulatorldo_1073',['setRegulatorLDO',['../class_l_r11x0.html#a92ae10630cc327f441809ac1406737fd',1,'LR11x0::setRegulatorLDO()'],['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x::setRegulatorLDO()']]], - ['setrepeaters_1074',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]], - ['setrfswitchpins_1075',['setRfSwitchPins',['../class_c_c1101.html#a5ef45183690bb1879f106af079b01140',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#ac341945538a84430c61f80f610a94411',1,'RF69::setRfSwitchPins()'],['../class_si443x.html#a43e7ceeff9114b35ab89f1d69916b375',1,'Si443x::setRfSwitchPins()'],['../class_s_x126x.html#a0a0df468eacc71c1b2a093ac06bfff51',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#a8ca9edcae05060cce3ff7ee58faeb4e2',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5ba683fbc4a46418ce3736f224fb55f2',1,'SX128x::setRfSwitchPins()'],['../class_module.html#a7d3adea64acab11c47c804afc74bd4f3',1,'Module::setRfSwitchPins(uint32_t rxEn, uint32_t txEn)']]], - ['setrfswitchstate_1076',['setRfSwitchState',['../class_module.html#afbed643f082286012bf44bba22381ae6',1,'Module']]], - ['setrfswitchtable_1077',['setRfSwitchTable',['../class_s_x128x.html#ad5789bd27d46b24f54aac9ca55ec9958',1,'SX128x::setRfSwitchTable()'],['../class_s_t_m32_w_lx.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'STM32WLx::setRfSwitchTable()'],['../class_s_x127x.html#ab9625a5246a45112267ce441ac2de254',1,'SX127x::setRfSwitchTable()'],['../class_s_x126x.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'SX126x::setRfSwitchTable()'],['../class_r_f69.html#afff64ceef5f496ce035ff6d12d6bcc3c',1,'RF69::setRfSwitchTable()'],['../class_l_r11x0.html#a1981f0dfceca2b6175a69530ea13d643',1,'LR11x0::setRfSwitchTable()'],['../class_c_c1101.html#a7b401995be4bc136063a035ce1820634',1,'CC1101::setRfSwitchTable()'],['../class_module.html#ac308fa817a5c36c5dc724a0d15cefd4d',1,'Module::setRfSwitchTable()'],['../class_si443x.html#a8898f11cf9dabd9a5ad717376fdbffa6',1,'Si443x::setRfSwitchTable()']]], - ['setrssiconfig_1078',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], - ['setrssithreshold_1079',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]], - ['setrx2dr_1080',['setRx2Dr',['../class_lo_ra_w_a_n_node.html#addfd8ac3d0bfe5a273e9ba10e51f8025',1,'LoRaWANNode']]], - ['setrxbandwidth_1081',['setRxBandwidth',['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()'],['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()'],['../class_l_r11x0.html#a25f5ee68b3c2638ae613c87ed1c3fc64',1,'LR11x0::setRxBandwidth(float rxBw)']]], - ['setrxboostedgainmode_1082',['setRxBoostedGainMode',['../class_l_r11x0.html#ab0cf34cc0b67484fbf0f258bff7e9a9a',1,'LR11x0::setRxBoostedGainMode()'],['../class_s_x126x.html#a920aa76ff5f0f579424ef6de92e588c8',1,'SX126x::setRxBoostedGainMode()']]], - ['setsendsequence_1083',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], - ['setspreadingfactor_1084',['setSpreadingFactor',['../class_l_r11x0.html#adf6895cbf7af7e00ea06c5b2b5040cb4',1,'LR11x0::setSpreadingFactor()'],['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_s_x128x.html#ae435f57132f76f4283abb870176acf54',1,'SX128x::setSpreadingFactor()'],['../class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08',1,'SX1278::setSpreadingFactor()'],['../class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf',1,'SX1277::setSpreadingFactor()'],['../class_s_x1272.html#a82084ac58502c83d2ada998410307490',1,'SX1272::setSpreadingFactor()'],['../class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d',1,'SX126x::setSpreadingFactor()'],['../class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f',1,'SX1273::setSpreadingFactor()']]], - ['setsyncbits_1085',['setSyncBits',['../class_l_r11x0.html#a6501ef362df1a5b71927cfe4e43c202d',1,'LR11x0::setSyncBits()'],['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x::setSyncBits()']]], - ['setsyncword_1086',['setSyncWord',['../class_s_x127x.html#aaf400f33e17c1679c0b55cd70bef90b0',1,'SX127x::setSyncWord()'],['../class_physical_layer.html#a6c71cdc1238e1368274670758431a977',1,'PhysicalLayer::setSyncWord()'],['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_s_x128x.html#ad9584464d2e4cc09686cf4e83e65d3e0',1,'SX128x::setSyncWord(const uint8_t *syncWord, uint8_t len)'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord()'],['../class_s_x126x.html#a827a4754ea53388513d263e5d9171395',1,'SX126x::setSyncWord()'],['../class_si443x.html#af257fb09afaa6162e1506cfe87b219b3',1,'Si443x::setSyncWord()'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_l_r11x0.html#ab8c54b1b105605ffe0908c5ff9362932',1,'LR11x0::setSyncWord(uint8_t *syncWord, size_t len) override'],['../class_l_r11x0.html#a7ffa48f1b6aaaa3f48e4b51f8ada59d8',1,'LR11x0::setSyncWord(uint32_t syncWord)'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord(uint8_t *syncWord, uint8_t len, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)']]], - ['settcxo_1087',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x::setTCXO()'],['../class_l_r11x0.html#a971b4ccd1d5479e9d72aa9649e8fef55',1,'LR11x0::setTCXO()']]], - ['settransmitpipe_1088',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]], - ['settxpower_1089',['setTxPower',['../class_lo_ra_w_a_n_node.html#a9af613f7d923e7bdcfdbd020132c6d4b',1,'LoRaWANNode']]], - ['setwhitening_1090',['setWhitening',['../class_l_r11x0.html#adcde55b8660c24cf5783942a4132786d',1,'LR11x0::setWhitening()'],['../class_s_x126x.html#ae500bad45638a47264b7e5955a93107d',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]], - ['setwifiscanaction_1091',['setWiFiScanAction',['../class_l_r11x0.html#aff6060e116701c60e078d3d930723b4b',1,'LR11x0']]], - ['si4430_1092',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430']]], - ['si4431_1093',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431']]], - ['si4432_1094',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432']]], - ['si443x_1095',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x']]], - ['sleep_1096',['sleep',['../class_l_r11x0.html#ad5dde79f751bbd7ea277872e237f2a69',1,'LR11x0::sleep() override'],['../class_l_r11x0.html#ad2786a2f17af5769c772ebc73df88e1f',1,'LR11x0::sleep(bool retainConfig, uint32_t sleepTime)'],['../classn_r_f24.html#a69b75e0889c609099487a43c8c3b6721',1,'nRF24::sleep()'],['../class_r_f69.html#adec9debf69f5ee846a5b6e34831ade3c',1,'RF69::sleep()'],['../class_si443x.html#ab0cc51d6b4264acf8e3e49a3a490dee9',1,'Si443x::sleep()'],['../class_s_x126x.html#a882cec40d9aa98a0d536e6afb65b1719',1,'SX126x::sleep() override'],['../class_s_x126x.html#aad7e4df3e1ca20d524e1d776047e1013',1,'SX126x::sleep(bool retainConfig)'],['../class_s_x127x.html#a1ff85ee7979da08b4e66316f1ba2c6a9',1,'SX127x::sleep()'],['../class_s_x128x.html#ab0c26aebd432d36974b3066055df6b01',1,'SX128x::sleep() override'],['../class_s_x128x.html#a98ef7dc21647642b40baf8c0194788c4',1,'SX128x::sleep(bool retainConfig)'],['../class_physical_layer.html#af1bb9a5da26da8829795ebb72e9c666e',1,'PhysicalLayer::sleep()']]], - ['spectralscanabort_1097',['spectralScanAbort',['../class_s_x126x.html#a865397e1cca38bec2d055c047825ea07',1,'SX126x']]], - ['spectralscangetresult_1098',['spectralScanGetResult',['../class_s_x126x.html#ae473773e5bed4b08452e80311bdb26f2',1,'SX126x']]], - ['spectralscangetstatus_1099',['spectralScanGetStatus',['../class_s_x126x.html#a5595fff99d76d50d711b8cdad98527c4',1,'SX126x']]], - ['spectralscanstart_1100',['spectralScanStart',['../class_s_x126x.html#a8a3ad4e12df862ab18b326d9dba26d66',1,'SX126x']]], - ['spibegin_1101',['spiBegin',['../class_esp_hal.html#a960996535b8a28b59c8b72aeffff1826',1,'EspHal::spiBegin()'],['../class_pi_hal.html#a40d237c2f5f4ead26c39f33481b4d7e3',1,'PiHal::spiBegin()'],['../class_pico_hal.html#a414de51bef859659b8cac66df32bdb5a',1,'PicoHal::spiBegin()'],['../class_tock_hal.html#a04cc3c2c2c2554812557466ab5c0edc9',1,'TockHal::spiBegin()'],['../class_radio_lib_hal.html#aa1f8e5cd323e53ef9fa977734a05d030',1,'RadioLibHal::spiBegin()']]], - ['spibegintransaction_1102',['spiBeginTransaction',['../class_esp_hal.html#a1a552e8a34dcbe532171efd4f1d08ec9',1,'EspHal::spiBeginTransaction()'],['../class_pi_hal.html#ab8c97e2b1c42368793d48d08b815fd69',1,'PiHal::spiBeginTransaction()'],['../class_pico_hal.html#a2b6136b2c90e83c1ab94bd92ef32805c',1,'PicoHal::spiBeginTransaction()'],['../class_tock_hal.html#a89091e5e7ed86cc7320f80e9a01713a6',1,'TockHal::spiBeginTransaction()'],['../class_radio_lib_hal.html#abe787d5e556190eef2c63e1581235460',1,'RadioLibHal::spiBeginTransaction()']]], - ['spicheckstream_1103',['SPIcheckStream',['../class_module.html#a5efa7ae78cab1d7f43005e965923f769',1,'Module']]], - ['spiend_1104',['spiEnd',['../class_radio_lib_hal.html#a41c85e560155d644f5b4ce8444dd8b64',1,'RadioLibHal::spiEnd()'],['../class_pi_hal.html#a6b0d64ed834b91f67b3344ce8c573d7b',1,'PiHal::spiEnd()'],['../class_tock_hal.html#a1d4520f65f5c7a7e2e188d32d2c001e2',1,'TockHal::spiEnd()'],['../class_esp_hal.html#ae0c2bcd6d667e475bbaf9ddfc6ebaede',1,'EspHal::spiEnd()'],['../class_pico_hal.html#ac932d26b6a31a0cd7f577d4f8812896c',1,'PicoHal::spiEnd()']]], - ['spiendtransaction_1105',['spiEndTransaction',['../class_esp_hal.html#a213a813fd83d86105977e1c781381510',1,'EspHal::spiEndTransaction()'],['../class_pi_hal.html#a7debfa73095e727950831af2e8aab5f7',1,'PiHal::spiEndTransaction()'],['../class_pico_hal.html#ae6773c6f0aac24774614a3179a4da475',1,'PicoHal::spiEndTransaction()'],['../class_tock_hal.html#ae4cef7494b98e3d0fc0b1788d3f283c4',1,'TockHal::spiEndTransaction()'],['../class_radio_lib_hal.html#a68d9271c76f8c96afb734a4634bf92e9',1,'RadioLibHal::spiEndTransaction()']]], - ['spigetregvalue_1106',['SPIgetRegValue',['../class_module.html#a369e916626c821ecec85f25d5b46d752',1,'Module']]], - ['spireadregister_1107',['SPIreadRegister',['../class_module.html#ab250eb929068e0c890e16e8e6d7cd7e6',1,'Module']]], - ['spireadregisterburst_1108',['SPIreadRegisterBurst',['../class_module.html#ac993ab8e2ea0f5aa93339d1f6ffb54ee',1,'Module']]], - ['spireadstream_1109',['SPIreadStream',['../class_module.html#adacceb57ecfecb09150c135b2b44436f',1,'Module::SPIreadStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a085415b49ff72238f118b937ad896cbd',1,'Module::SPIreadStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]], - ['spisetregvalue_1110',['SPIsetRegValue',['../class_module.html#ade75c5403a05156b43cc7562563ae2d7',1,'Module']]], - ['spitransfer_1111',['spiTransfer',['../class_radio_lib_hal.html#aebcaaf0cefdaaf5b572d4261e472ac8a',1,'RadioLibHal::spiTransfer()'],['../class_tock_hal.html#a55bab852d0b8c31a15050efdc28afe33',1,'TockHal::spiTransfer()'],['../class_pico_hal.html#acc961bf30af621d0dfec2b3f7e25cf5c',1,'PicoHal::spiTransfer()'],['../class_esp_hal.html#afe94bf2e29c22898916b59c00a3dd23f',1,'EspHal::spiTransfer()']]], - ['spitransfer_1112',['SPItransfer',['../class_module.html#aa6df70520aa015dd3a1bccdceae67232',1,'Module']]], - ['spitransfer_1113',['spiTransfer',['../class_pi_hal.html#a96a0f36efd8e23893add3242bdef8be4',1,'PiHal']]], - ['spitransferstream_1114',['SPItransferStream',['../class_module.html#a4174159e476de5cef6ea3f89c883cb5e',1,'Module']]], - ['spiwriteregister_1115',['SPIwriteRegister',['../class_module.html#a60ca6b4cae98f7d935191a569d519913',1,'Module']]], - ['spiwriteregisterburst_1116',['SPIwriteRegisterBurst',['../class_module.html#a2826f0fa116eb0a4dd18ddb9b21e4caf',1,'Module']]], - ['spiwritestream_1117',['SPIwriteStream',['../class_module.html#af99b0e74e67417a88f500ab7261ddd20',1,'Module::SPIwriteStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a7acbe601ebe6398781d0f2de5177305e',1,'Module::SPIwriteStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]], - ['sstvclient_1118',['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_1119',['standby',['../class_s_x126x.html#a2fa0384a529746811e2dcb2eeb4188ec',1,'SX126x::standby()'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby()'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby() override'],['../class_s_x127x.html#aa565bbff460e487672953dc05d335cb0',1,'SX127x::standby(uint8_t mode) override'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x128x.html#a389aab93e24ec8c7cc9c14de90e5dfae',1,'SX128x::standby(uint8_t mode, bool wakeup=false)'],['../class_bell_client.html#a57c19c733b0dfe80bd321f23b18c1e80',1,'BellClient::standby()'],['../class_f_s_k4_client.html#a8b5765371ebbf68a21bc0bbfdf9f82ac',1,'FSK4Client::standby()'],['../class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018',1,'PhysicalLayer::standby()'],['../class_physical_layer.html#a7d5da4311092e3df6b193ff303a0c5e8',1,'PhysicalLayer::standby(uint8_t mode)'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()'],['../class_si443x.html#acbc0f95f32ca961294666405596ff529',1,'Si443x::standby()'],['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby()'],['../class_r_f69.html#a6e3002ab0c58e2087a7d101eda7afa82',1,'RF69::standby(uint8_t mode) override'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby() override'],['../classn_r_f24.html#a03e9ae7fbd0d55887acf1996df28ed5b',1,'nRF24::standby(uint8_t mode) override'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby() override'],['../class_l_r11x0.html#a2d682ec2ca0ddf4da41a93dd8e728665',1,'LR11x0::standby(uint8_t mode, bool wakeup=true)'],['../class_l_r11x0.html#a74c3f3f8409f1fd0f41347b7d3c7dc24',1,'LR11x0::standby() override'],['../class_c_c1101.html#af374ad0ecd820a01baef7d177a30132a',1,'CC1101::standby()'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby()']]], - ['startchannelscan_1120',['startChannelScan',['../class_s_x128x.html#a948156af6e886bc46a6c6c5fb10a087a',1,'SX128x::startChannelScan()'],['../class_physical_layer.html#a82a52062d9259c2c546d7bf8072b7a72',1,'PhysicalLayer::startChannelScan(const ChannelScanConfig_t &config)'],['../class_physical_layer.html#ae30dfbb5445bb674898fc54f5f90b2f9',1,'PhysicalLayer::startChannelScan()'],['../class_s_x128x.html#acdee68d9be73509f464226722551c4d9',1,'SX128x::startChannelScan()'],['../class_s_x126x.html#a09a8fe05c23c652c7ace2e2f1bf51d93',1,'SX126x::startChannelScan(const ChannelScanConfig_t &config) override'],['../class_s_x126x.html#a001c4637f01ed6f0216cd6c4d7e10da3',1,'SX126x::startChannelScan() override'],['../class_l_r11x0.html#ab073ade3f6b9bbb383e388904812f575',1,'LR11x0::startChannelScan(const ChannelScanConfig_t &config) override'],['../class_l_r11x0.html#a4f3bc362530b85dd643669705f03998d',1,'LR11x0::startChannelScan() override'],['../class_s_x127x.html#a6fa5723724393576ed597509200e17d1',1,'SX127x::startChannelScan()']]], - ['startdirect_1121',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], - ['startranging_1122',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]], - ['startreceive_1123',['startReceive',['../class_s_x126x.html#a44856b641060cff8e9e2019901cd4751',1,'SX126x::startReceive()'],['../class_s_x127x.html#abbe1076252a366c3c4aa323fdff7d40c',1,'SX127x::startReceive() override'],['../class_s_x127x.html#acaab95d4bf57bf33f6269d2f099e48e0',1,'SX127x::startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0) override'],['../class_s_x128x.html#a803eaca8bb7fdfa3570cf4aa95f8e729',1,'SX128x::startReceive()'],['../classn_r_f24.html#a38b0084ad11090f918f4f370b9df7514',1,'nRF24::startReceive()'],['../class_s_x128x.html#a299dd5c01a6f7d2f8a96becd4fff1f09',1,'SX128x::startReceive()'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive(uint32_t pin, uint32_t addr, uint32_t mask=0xFFFFF)'],['../class_pager_client.html#a9c0f13846fbc333a35a16a98b6575ca6',1,'PagerClient::startReceive(uint32_t pin, uint32_t *addrs, uint32_t *masks, size_t numAddress)'],['../class_physical_layer.html#a18664ad615c5507ff1690baaca90b094',1,'PhysicalLayer::startReceive()'],['../class_physical_layer.html#ac88f9185b5e9fdc1d89df9797dcdd9b7',1,'PhysicalLayer::startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags, RadioLibIrqFlags_t irqMask, size_t len)'],['../class_si443x.html#ad5adec16d570b0d1b09420919dbe77e4',1,'Si443x::startReceive()'],['../class_s_x126x.html#a66ad433561b02fe61b09afd735ce56cc',1,'SX126x::startReceive()'],['../class_c_c1101.html#ae71e947abf6a07b194c6c6d64fd3eb19',1,'CC1101::startReceive() override'],['../class_c_c1101.html#abf153c8fcf2a0d60439426b03692642e',1,'CC1101::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_l_r11x0.html#aa6ce285cc1b76ce028db6442a421ed8d',1,'LR11x0::startReceive() override'],['../class_l_r11x0.html#ae79c42c4ceceb7a6897731d01d365281',1,'LR11x0::startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)'],['../classn_r_f24.html#a3c6aa3622c887118fb8d8cb2689fdff2',1,'nRF24::startReceive()'],['../class_r_f69.html#a3bece228d369dcc1aab6a5b29d0685a8',1,'RF69::startReceive() override'],['../class_r_f69.html#a21ae7524fe573f1a7e74dee342418222',1,'RF69::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_si443x.html#ae188dec3175a3aec96844a613e911500',1,'Si443x::startReceive()']]], - ['startreceivedutycycle_1124',['startReceiveDutyCycle',['../class_s_x126x.html#af9352e49d893151d68a314109140fe29',1,'SX126x']]], - ['startreceivedutycycleauto_1125',['startReceiveDutyCycleAuto',['../class_s_x126x.html#ad0f95b62ee987010b00f4be75bf9ab4e',1,'SX126x']]], - ['startsignal_1126',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], - ['starttransmit_1127',['startTransmit',['../class_r_f69.html#a923654706eff5118ef6e84214e837f27',1,'RF69::startTransmit()'],['../classn_r_f24.html#a923654706eff5118ef6e84214e837f27',1,'nRF24::startTransmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#af79757dbbd62e080c1bad2e608ab940c',1,'nRF24::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_l_r11x0.html#af79757dbbd62e080c1bad2e608ab940c',1,'LR11x0::startTransmit()'],['../class_r_f69.html#af79757dbbd62e080c1bad2e608ab940c',1,'RF69::startTransmit()'],['../class_si443x.html#a923654706eff5118ef6e84214e837f27',1,'Si443x::startTransmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#af79757dbbd62e080c1bad2e608ab940c',1,'Si443x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x126x.html#a923654706eff5118ef6e84214e837f27',1,'SX126x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX126x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x127x.html#a923654706eff5118ef6e84214e837f27',1,'SX127x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX127x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a923654706eff5118ef6e84214e837f27',1,'SX128x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX128x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#a187ea9ee96a67cd48e5b28be5b237c95',1,'Si443x::startTransmit()'],['../class_l_r11x0.html#a923654706eff5118ef6e84214e837f27',1,'LR11x0::startTransmit()'],['../class_c_c1101.html#a6ff7e4066d189482c142e05384a38df0',1,'CC1101::startTransmit()'],['../class_l_r11x0.html#a459825c5b46a2ca515e62042d605aa67',1,'LR11x0::startTransmit()'],['../classn_r_f24.html#a8b2365ad11840d1d05b0e17b37ddacd2',1,'nRF24::startTransmit()'],['../class_r_f69.html#af645f6b5d37812f6bb9ec11788e12066',1,'RF69::startTransmit()'],['../class_s_x126x.html#adf06ca0d64a61ce16a0a2f4f9a7d6a86',1,'SX126x::startTransmit()'],['../class_s_x127x.html#ae0902a990203ec67c628e5d006cbaa96',1,'SX127x::startTransmit()'],['../class_s_x128x.html#a46fff7c4b2bb0eed3fd313d6413dc4e9',1,'SX128x::startTransmit()'],['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af79757dbbd62e080c1bad2e608ab940c',1,'PhysicalLayer::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_c_c1101.html#a923654706eff5118ef6e84214e837f27',1,'CC1101::startTransmit(const char *str, uint8_t addr=0)'],['../class_c_c1101.html#af79757dbbd62e080c1bad2e608ab940c',1,'CC1101::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)']]], - ['startwifiscan_1128',['startWifiScan',['../class_l_r11x0.html#a3498e0e621f341e415145879989e0948',1,'LR11x0']]], - ['stm32wlx_1129',['STM32WLx',['../class_s_t_m32_w_lx.html#ac0e8787dbb8e8aaa172b089ace6eaa09',1,'STM32WLx']]], - ['sx1231_1130',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231']]], - ['sx1233_1131',['SX1233',['../class_s_x1233.html#a23d2fbf2473e48d46e341e6afe31f82f',1,'SX1233']]], - ['sx1261_1132',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261']]], - ['sx1262_1133',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262']]], - ['sx1268_1134',['SX1268',['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268']]], - ['sx126x_1135',['SX126x',['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x']]], - ['sx1272_1136',['SX1272',['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272']]], - ['sx1273_1137',['SX1273',['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273']]], - ['sx1276_1138',['SX1276',['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276']]], - ['sx1277_1139',['SX1277',['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277']]], - ['sx1278_1140',['SX1278',['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278']]], - ['sx1279_1141',['SX1279',['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279']]], - ['sx127x_1142',['SX127x',['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x']]], - ['sx1280_1143',['SX1280',['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280']]], - ['sx1281_1144',['SX1281',['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281']]], - ['sx1282_1145',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282']]], - ['sx128x_1146',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x']]] + ['scanchannel_992',['scanChannel',['../class_l_r11x0.html#a5e8f21878bdab1439805aea1e9da168d',1,'LR11x0::scanChannel(const ChannelScanConfig_t &config) override'],['../class_l_r11x0.html#a6a3034c91f5bce70c853ab1620725b3c',1,'LR11x0::scanChannel() override'],['../class_physical_layer.html#af788cf83ceb0222cd0fa4a1323b9041b',1,'PhysicalLayer::scanChannel(const ChannelScanConfig_t &config)'],['../class_physical_layer.html#abd9e39cc745acbf084cfa0d3f4d10718',1,'PhysicalLayer::scanChannel()'],['../class_s_x128x.html#ab55112682432f369fb17f8107ba5158b',1,'SX128x::scanChannel()'],['../class_s_x127x.html#a13ae97e18744dc617bc9326cfbaad3a3',1,'SX127x::scanChannel()'],['../class_s_x126x.html#a373012fb3276872238f654b66879a710',1,'SX126x::scanChannel(const ChannelScanConfig_t &config) override'],['../class_s_x126x.html#acb8611a9c3862dd1bfa73ef47b8f9b20',1,'SX126x::scanChannel() override'],['../class_s_x128x.html#a2f8427103d6609f3ac44b23fcca4f301',1,'SX128x::scanChannel()']]], + ['scheduletransmission_993',['scheduleTransmission',['../class_lo_ra_w_a_n_node.html#a16c7ae2edfe324e11498b13aa042665f',1,'LoRaWANNode']]], + ['sendframe_994',['sendFrame',['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()'],['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()']]], + ['sendheader_995',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]], + ['sendline_996',['sendLine',['../class_s_s_t_v_client.html#ab8579712e82e806960ced7bf2750d9c6',1,'SSTVClient']]], + ['sendmaccommandreq_997',['sendMacCommandReq',['../class_lo_ra_w_a_n_node.html#adef05650cf4eb92042ca5e2688c1e164',1,'LoRaWANNode']]], + ['sendmice_998',['sendMicE',['../class_a_p_r_s_client.html#af8f28eba026b0f0a25c8ba54a96f4743',1,'APRSClient']]], + ['sendposition_999',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]], + ['sendreceive_1000',['sendReceive',['../class_lo_ra_w_a_n_node.html#a85cf006ffd97ece3b2d2974b715540cb',1,'LoRaWANNode::sendReceive(const char *strUp, uint8_t fPort, uint8_t *dataDown, size_t *lenDown, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a07ab107de181bde59c2731a5a64a1e2e',1,'LoRaWANNode::sendReceive(uint8_t *dataUp, size_t lenUp, uint8_t fPort, uint8_t *dataDown, size_t *lenDown, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a7123f9a907df9224b9b01282c12af459',1,'LoRaWANNode::sendReceive(uint8_t *dataUp, size_t lenUp, uint8_t fPort=1, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a11c2fbe631063da69355f8d74f4bf3b8',1,'LoRaWANNode::sendReceive(const char *strUp, uint8_t fPort, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)']]], + ['sendtone_1001',['sendTone',['../class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111',1,'PagerClient']]], + ['setaccessaddress_1002',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]], + ['setaddresswidth_1003',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]], + ['setadr_1004',['setADR',['../class_lo_ra_w_a_n_node.html#ae222275f807f472083ea6100c23c75ff',1,'LoRaWANNode']]], + ['setaeskey_1005',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]], + ['setafc_1006',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]], + ['setafcagctrigger_1007',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]], + ['setafcbandwidth_1008',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], + ['setambienttemperature_1009',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], + ['setautoack_1010',['setAutoAck',['../classn_r_f24.html#ac1c3419442d93abeede39e7fda4db62e',1,'nRF24::setAutoAck(uint8_t pipeNum, bool autoAckOn)'],['../classn_r_f24.html#aca941c9235ba1212257288554eb4b7fe',1,'nRF24::setAutoAck(bool autoAckOn=true)']]], + ['setbandwidth_1011',['setBandwidth',['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::setBandwidth()'],['../class_l_r11x0.html#a70d9849eb8e5ce2090e4e332252753d7',1,'LR11x0::setBandwidth()'],['../class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08',1,'SX126x::setBandwidth()'],['../class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b',1,'SX1272::setBandwidth()'],['../class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6',1,'SX1278::setBandwidth()'],['../class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a',1,'SX128x::setBandwidth(float bw)']]], + ['setbitrate_1012',['setBitRate',['../class_s_x128x.html#ad6570f33bae09bc8b7617f9da39033ac',1,'SX128x::setBitRate()'],['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()'],['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_s_x126x.html#ac38a19db6b8b9aff438d6e23051d487d',1,'SX126x::setBitRate()'],['../class_si443x.html#afcba86e79d229b3fd7268dcbd7c47b62',1,'Si443x::setBitRate()'],['../class_r_f69.html#aa3bfb830901728e9a3c140036aa91c56',1,'RF69::setBitRate()'],['../classn_r_f24.html#a760d3f47f58ddacdf41975447484a47c',1,'nRF24::setBitRate()'],['../class_c_c1101.html#a6fd22cdec29e1e34a92aa9854b90fdc9',1,'CC1101::setBitRate()'],['../class_l_r11x0.html#ab1954e4733a7fbea4129d9a2de2285d9',1,'LR11x0::setBitRate()'],['../class_s_x1233.html#a98e0248cfcca7158261f7ebb31e0aa9f',1,'SX1233::setBitRate()']]], + ['setbitratetolerance_1013',['setBitRateTolerance',['../class_c_c1101.html#adc76af01dbc9171b3fdd7570624a4d4f',1,'CC1101']]], + ['setbroadcastaddress_1014',['setBroadcastAddress',['../class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40',1,'SX127x::setBroadcastAddress()'],['../class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034',1,'SX126x::setBroadcastAddress()'],['../class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8',1,'RF69::setBroadcastAddress()'],['../class_l_r11x0.html#af24ba794f71c4e37cd13d2f4dbec5bf7',1,'LR11x0::setBroadcastAddress()']]], + ['setbuffernonces_1015',['setBufferNonces',['../class_lo_ra_w_a_n_node.html#a11701081ac6bd39a8a2b4bdbc248fac2',1,'LoRaWANNode']]], + ['setbuffersession_1016',['setBufferSession',['../class_lo_ra_w_a_n_node.html#aadebe7a412aec8043aa2f8f57a202f49',1,'LoRaWANNode']]], + ['setchannelscanaction_1017',['setChannelScanAction',['../class_s_t_m32_w_lx.html#a119ad225f9eba91e7c38f82cf0f1c89d',1,'STM32WLx::setChannelScanAction()'],['../class_s_x126x.html#aed0e7dcd60479c9db3d7a3408e7f396d',1,'SX126x::setChannelScanAction()'],['../class_s_x127x.html#ac23c2b384ae8611d59e10ef6a14fe7e4',1,'SX127x::setChannelScanAction()'],['../class_physical_layer.html#ae11c191a7edf3116bf468b9153237260',1,'PhysicalLayer::setChannelScanAction()']]], + ['setcodingrate_1018',['setCodingRate',['../class_l_r11x0.html#a583f2d5ed601a98c609dbf0d57f2f541',1,'LR11x0::setCodingRate()'],['../class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a',1,'SX128x::setCodingRate()'],['../class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1',1,'SX1278::setCodingRate()'],['../class_s_x126x.html#afd3113858966e878e9c67a1e710bd586',1,'SX126x::setCodingRate()'],['../class_s_x1272.html#a960913438feccad4c1913a9222384a5f',1,'SX1272::setCodingRate()']]], + ['setcorrection_1019',['setCorrection',['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client::setCorrection()'],['../class_bell_client.html#a90f3f33a09a4cf8d544ca1e9a23beae2',1,'BellClient::setCorrection()'],['../class_f_s_k4_client.html#aab85cb6519e5448dc332bf17bd60f90a',1,'FSK4Client::setCorrection()'],['../class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e',1,'SSTVClient::setCorrection()']]], + ['setcrc_1020',['setCRC',['../class_l_r11x0.html#a551b82787288b0b14e4d3124e6744dc3',1,'LR11x0::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_1021',['setCrcFiltering',['../class_c_c1101.html#a60695681fc74a37f2a31a9638552e877',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#ab531ad461b250a060e92d9c744e79070',1,'SX127x::setCrcFiltering()']]], + ['setcsma_1022',['setCSMA',['../class_lo_ra_w_a_n_node.html#a2d9a53560ebfbaf006eefd9761424d80',1,'LoRaWANNode']]], + ['setcurrentlimit_1023',['setCurrentLimit',['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()'],['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()']]], + ['setdatarate_1024',['setDataRate',['../class_l_l_c_c68.html#ac630770441cadc547892173bde7504f9',1,'LLCC68']]], + ['setdatarate_1025',['setDatarate',['../class_lo_ra_w_a_n_node.html#a14e8a8a098df28ff5ee294f235500499',1,'LoRaWANNode']]], + ['setdatarate_1026',['setDataRate',['../class_physical_layer.html#a6ee1fed6bbb8d3571974153ac6f26751',1,'PhysicalLayer::setDataRate()'],['../class_s_x128x.html#adbf5a9ac62460efb1c709e51260dbe3d',1,'SX128x::setDataRate()'],['../class_s_x1278.html#a286f1ee00e2c7f2ab1bd06b66196c3f9',1,'SX1278::setDataRate()'],['../class_s_x1277.html#ac4bfae9258662381e685e46c803c984c',1,'SX1277::setDataRate()'],['../class_s_x1273.html#acaffc772f70e7db371cbe736dc4a19ab',1,'SX1273::setDataRate()'],['../class_s_x1272.html#a5b79b7cd20c4c3cd1f486f777b3457d1',1,'SX1272::setDataRate()'],['../class_s_x126x.html#af30a581d31feae6f50c0591d1ee113f1',1,'SX126x::setDataRate()'],['../class_l_r11x0.html#a056e65c58ff8fb18bd84917512790ee6',1,'LR11x0::setDataRate()']]], + ['setdatashaping_1027',['setDataShaping',['../class_physical_layer.html#aeba04366a0cf05ff3d8227c4f7c8e1e9',1,'PhysicalLayer::setDataShaping()'],['../class_l_r11x0.html#a5a33df702da3f5b010e07d5e6fac7aa6',1,'LR11x0::setDataShaping()'],['../class_external_radio.html#abe0bfb0f178783eff28bdc867e9324fd',1,'ExternalRadio::setDataShaping()'],['../class_s_x128x.html#a99491c705e88dddc820f884b778f1660',1,'SX128x::setDataShaping()'],['../class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563',1,'SX1278::setDataShaping()'],['../class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea',1,'SX1272::setDataShaping()'],['../class_si443x.html#ade08c79074c7e4414d34eefa25cee168',1,'Si443x::setDataShaping()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::setDataShaping()'],['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()'],['../class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676',1,'SX126x::setDataShaping()']]], + ['setdatashapingook_1028',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]], + ['setdevicestatus_1029',['setDeviceStatus',['../class_lo_ra_w_a_n_node.html#a5449e301634dff1838a1b024b4067034',1,'LoRaWANNode']]], + ['setdio0action_1030',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ae75bc48cc74a407370cd9f4bf95e9e30',1,'SX127x::setDio0Action()']]], + ['setdio1action_1031',['setDio1Action',['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()'],['../class_s_x127x.html#a7b4bce81839b105c464ebf922602e58b',1,'SX127x::setDio1Action()'],['../class_s_t_m32_w_lx.html#a63d61bc5057e9da3d0ea12feae67122e',1,'STM32WLx::setDio1Action()'],['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()']]], + ['setdio2asrfswitch_1032',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], + ['setdiomapping_1033',['setDIOMapping',['../class_c_c1101.html#a544bb8d7be9c0e1ff7f7103b30925862',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a7243b3396edc1e6e67575894a5033afe',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#af7d373bc93e99790912cebe8d5ae6403',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()']]], + ['setdiopreambledetect_1034',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]], + ['setdirectaction_1035',['setDirectAction',['../class_s_x128x.html#a2326cf28c385b8dd709cb62c9f665000',1,'SX128x::setDirectAction()'],['../class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966',1,'PhysicalLayer::setDirectAction()'],['../class_s_x127x.html#ae4b99d1bc67ac2c81eeb11dd6793a8c5',1,'SX127x::setDirectAction()'],['../class_si443x.html#a48a59ff1ddc7c8ec820328174955de43',1,'Si443x::setDirectAction()'],['../class_c_c1101.html#a24f4b059cc56238499c6117b88cd5505',1,'CC1101::setDirectAction()'],['../class_r_f69.html#a9852fe520aec018d2bb4aff0cd17de77',1,'RF69::setDirectAction()'],['../class_s_x126x.html#a4f514b341b8982650526c6d8e20fd1a4',1,'SX126x::setDirectAction()']]], + ['setdirectsyncword_1036',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], + ['setdutycycle_1037',['setDutyCycle',['../class_lo_ra_w_a_n_node.html#a3d4bbd6d382496838954ab4ac1168b77',1,'LoRaWANNode']]], + ['setdwelltime_1038',['setDwellTime',['../class_lo_ra_w_a_n_node.html#a62bfe68f6fe63c2e408dccbff6a34a4f',1,'LoRaWANNode']]], + ['setencoding_1039',['setEncoding',['../class_physical_layer.html#acb45b2342400a03a914a91d2ac7fb488',1,'PhysicalLayer::setEncoding()'],['../class_external_radio.html#ae619f011daea49a97098d2897e5a3c2c',1,'ExternalRadio::setEncoding()'],['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()'],['../class_l_r11x0.html#a8ae178a17f6e41b545b79cfffd3e2864',1,'LR11x0::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()']]], + ['setfhsshoppingperiod_1040',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]], + ['setfifoemptyaction_1041',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()']]], + ['setfifofullaction_1042',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]], + ['setfrequency_1043',['setFrequency',['../class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e',1,'PhysicalLayer::setFrequency()'],['../class_s_x1262.html#a87e496bf7f1ac2857e3f67438ea754db',1,'SX1262::setFrequency()'],['../class_s_x1268.html#ad721d6feb4a8f62f2651049a68fe019b',1,'SX1268::setFrequency()'],['../class_s_x1272.html#ac1467a23e1f1bfdbd02f6d30654ed850',1,'SX1272::setFrequency()'],['../class_s_x1276.html#a981b59110e514b7dcaec8490e1c4320c',1,'SX1276::setFrequency()'],['../class_s_x1277.html#ad68ea24b46d9e7d3f82282cdccd20e00',1,'SX1277::setFrequency()'],['../class_s_x1278.html#adb4d95d3b2798cf8ea94890ae71dcc59',1,'SX1278::setFrequency()'],['../class_s_x1279.html#ab60691d073ca75ef09dab7a8f28fb7fb',1,'SX1279::setFrequency()'],['../class_s_x128x.html#ab9e16231c2c6bd0e4b4c6c2900b5b332',1,'SX128x::setFrequency()'],['../class_s_x1268.html#af412a9361fe413b2d0c426100056d8c2',1,'SX1268::setFrequency()'],['../class_s_x1262.html#a2122feee1a3bffaaa20e85b24dc8a899',1,'SX1262::setFrequency()'],['../class_c_c1101.html#ad428d7e6fc9ac119101bb0716fa80bee',1,'CC1101::setFrequency()'],['../class_l_r1110.html#ade94d20ea438cbd92c61e28d2232d7e8',1,'LR1110::setFrequency(float freq) override'],['../class_l_r1110.html#a4f9272d078b79d76315be7a57be3e547',1,'LR1110::setFrequency(float freq, bool skipCalibration, float band=4)'],['../class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb',1,'LR1120::setFrequency(float freq) override'],['../class_l_r1120.html#ac34c2ec79e4a36cf0423acb308538811',1,'LR1120::setFrequency(float freq, bool skipCalibration, float band=4)'],['../class_r_f69.html#aa7f47c37eec6c7e3ebf6e6d30ebd5532',1,'RF69::setFrequency()'],['../class_si4430.html#a3959e91bcae77b8240e9e447985e05b3',1,'Si4430::setFrequency()'],['../class_si4432.html#aed3561abdb30b4eaad52d984366aadf1',1,'Si4432::setFrequency()'],['../classn_r_f24.html#a18f24764b2ecffc076e72dce0b036116',1,'nRF24::setFrequency()']]], + ['setfrequencydeviation_1044',['setFrequencyDeviation',['../class_physical_layer.html#a2f4f9b428d9ea9af886ca85e5088ed7b',1,'PhysicalLayer::setFrequencyDeviation()'],['../class_external_radio.html#a02928a19eab0eab615c02180cedda3eb',1,'ExternalRadio::setFrequencyDeviation()'],['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_l_r11x0.html#ac003cfe3a4dbd9bad1f01fd0147031d1',1,'LR11x0::setFrequencyDeviation()'],['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()']]], + ['setgain_1045',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], + ['setgaincontrol_1046',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]], + ['setgdo0action_1047',['setGdo0Action',['../class_c_c1101.html#a9bee13612cf4da067faeb57d18ee2eb7',1,'CC1101']]], + ['setgdo2action_1048',['setGdo2Action',['../class_c_c1101.html#ad71efbe54590e4431f3286ab99536fe9',1,'CC1101']]], + ['sethighsensitivitymode_1049',['setHighSensitivityMode',['../class_s_x128x.html#a6e45fbfaec7063e52e188f47a3a585a5',1,'SX128x']]], + ['setinversion_1050',['setInversion',['../class_hell_client.html#ae43025b9d55ee21a322bb5d7ee1065b0',1,'HellClient']]], + ['setirq_1051',['setIrq',['../class_physical_layer.html#a8564f9834a0247e93e7620c23559ceb8',1,'PhysicalLayer']]], + ['setirqaction_1052',['setIrqAction',['../class_l_r11x0.html#a49116d006b60128fe6f73a6a868a6d18',1,'LR11x0::setIrqAction()'],['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]], + ['setirqflags_1053',['setIrqFlags',['../class_s_x128x.html#a6a2ec5d316975f390f20b4e0a2e11e98',1,'SX128x::setIrqFlags()'],['../class_physical_layer.html#af88dcb54dc8e9a1edaf9f1c3e5ee2b74',1,'PhysicalLayer::setIrqFlags()'],['../class_l_r11x0.html#a62c715ab18ea8a2e08a2791d3e764ee9',1,'LR11x0::setIrqFlags()'],['../class_s_x126x.html#a50e757c2a63e5c7da5b0d0d6c00f91b5',1,'SX126x::setIrqFlags()'],['../class_s_x127x.html#aae42b94ab2ecf729f29f101222e97666',1,'SX127x::setIrqFlags()']]], + ['setlnatestboost_1054',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]], + ['setlowbatterythreshold_1055',['setLowBatteryThreshold',['../class_s_x127x.html#a9ca9aa18e13e8390ec437e249e1d2472',1,'SX127x']]], + ['setlrfhssconfig_1056',['setLrFhssConfig',['../class_l_r11x0.html#a8c1def9a01021a52f5bb82c119a9ad35',1,'LR11x0::setLrFhssConfig()'],['../class_s_x126x.html#aa1e7777fc8237e2c9d933cd4b6304e28',1,'SX126x::setLrFhssConfig()']]], + ['setmodem_1057',['setModem',['../class_s_x1279.html#aea8bd74e7c5d7b97d4fe4a8182680d5c',1,'SX1279::setModem()'],['../class_physical_layer.html#a77415bf4ed34be18c92c0cf4b2de7149',1,'PhysicalLayer::setModem()'],['../class_bell_client.html#a163f65f3fcce87d9bea558b34c19bd47',1,'BellClient::setModem()'],['../class_s_x128x.html#a209d69e710a785da2c69474f94fdccf3',1,'SX128x::setModem()'],['../class_s_x1278.html#a609dd3faf2036e8c2d046fd191e0137d',1,'SX1278::setModem()'],['../class_s_x1277.html#aec55de7c6622936ff48384bb33424b84',1,'SX1277::setModem()'],['../class_s_x1276.html#a36a526b6c8540cda36d058fb47a9e099',1,'SX1276::setModem()'],['../class_s_x1272.html#a2c99afea2bb3bbb1146c8a4536b4843c',1,'SX1272::setModem()'],['../class_s_x1268.html#ae66e37a6897315f36a13c8d5cefe521b',1,'SX1268::setModem()'],['../class_s_x1262.html#a7cdbfc39c779b3846aa5fd04d50d3eb8',1,'SX1262::setModem()'],['../class_l_r1120.html#a6cd250e0145ed19f2f91ed96a57a825e',1,'LR1120::setModem()'],['../class_l_r1110.html#a18f525740237b023056a8ca6f3671c6a',1,'LR1110::setModem()'],['../class_l_l_c_c68.html#aee4457d48c708f05154e931eed05c691',1,'LLCC68::setModem()'],['../class_s_x1273.html#af9f0969764fde3e12b6b05409718fa83',1,'SX1273::setModem()']]], + ['setnodeaddress_1058',['setNodeAddress',['../class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c',1,'RF69::setNodeAddress()'],['../class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95',1,'SX127x::setNodeAddress()'],['../class_s_x126x.html#adf54f7b83aa47ad0b803147622b3c580',1,'SX126x::setNodeAddress()'],['../class_l_r11x0.html#a605f5c74ce523abad256866abe133d2e',1,'LR11x0::setNodeAddress()'],['../class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8',1,'CC1101::setNodeAddress(uint8_t nodeAddr, uint8_t numBroadcastAddrs=0)']]], + ['setook_1059',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a465df5a2e1f924f6d3ba4eae765847b7',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK(bool enableOOK)']]], + ['setookfixedorfloorthreshold_1060',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]], + ['setookfixedthreshold_1061',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]], + ['setookpeakthresholddecrement_1062',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement(uint8_t value)']]], + ['setookpeakthresholdstep_1063',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]], + ['setookthresholdtype_1064',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]], + ['setoutputpower_1065',['setOutputPower',['../class_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::setOutputPower()'],['../class_physical_layer.html#ad2286dc78dbf8e3084f38e9159b99ae5',1,'PhysicalLayer::setOutputPower()'],['../class_s_x128x.html#a1bc3372c47a4e3c81ef15bee448ba6b6',1,'SX128x::setOutputPower()'],['../class_s_x1278.html#aca58a6c2e8fcef6414fdf3bc1eb62082',1,'SX1278::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1278.html#a69abc18e7fa0055e6b80024e8cde7db4',1,'SX1278::setOutputPower(int8_t power) override'],['../class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659',1,'SX1272::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1272.html#aec51f08c0902145ff5f11e27e7cab638',1,'SX1272::setOutputPower(int8_t power) override'],['../class_s_x1268.html#a6b6adaee1c8d76c3d766225298d84709',1,'SX1268::setOutputPower()'],['../class_s_x1262.html#aa455a7f0e69abdcca55cf35388d9dc52',1,'SX1262::setOutputPower()'],['../class_s_x1261.html#a3d197bb8a301f3594c7bfa1c9375aef1',1,'SX1261::setOutputPower()'],['../class_si4432.html#a5e3017bce6d66d35b867e7878d108c68',1,'Si4432::setOutputPower()'],['../class_si4431.html#ad1538dbe67ed5d3682591d1d780ab0e9',1,'Si4431::setOutputPower()'],['../class_si4430.html#ab1303e014a4b8d2307a2b1deb061fdeb',1,'Si4430::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',1,'RF69::setOutputPower()'],['../classn_r_f24.html#a4fa66ce5fb6d7b22bbb439c2f9103bf3',1,'nRF24::setOutputPower()'],['../class_l_r1120.html#a2e2ea0a2f6d3a8d81e0f2be35848bbc7',1,'LR1120::setOutputPower(int8_t power, bool forceHighPower)'],['../class_l_r1120.html#a1b1321eb695e4a6b583074bb92c33193',1,'LR1120::setOutputPower(int8_t power) override'],['../class_l_r1110.html#ae4eaaa6411bb1eeb131613fb3f43e5d1',1,'LR1110::setOutputPower(int8_t power, bool forceHighPower)'],['../class_l_r1110.html#a65c08f0475f888537e55401b75e58b23',1,'LR1110::setOutputPower(int8_t power) override'],['../class_c_c1101.html#a5d6dce30fc7da668975b6da663784cdf',1,'CC1101::setOutputPower()']]], + ['setpacketreceivedaction_1066',['setPacketReceivedAction',['../class_physical_layer.html#aec928bb26f65752aa20cd236fbabb95c',1,'PhysicalLayer::setPacketReceivedAction()'],['../class_s_x128x.html#ad98c4526ef971f9aadb30e351a37eaf9',1,'SX128x::setPacketReceivedAction()'],['../class_s_x127x.html#ae236a467095fb5364d0fc4a98d85f96e',1,'SX127x::setPacketReceivedAction()'],['../class_s_x126x.html#a7603aa60ae8d975eb262a4b7e2aed1d0',1,'SX126x::setPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#ad23dafdeb21b97165be74ef8f093866c',1,'STM32WLx::setPacketReceivedAction()'],['../class_r_f69.html#a74962c069e08890ac9566d48634c778e',1,'RF69::setPacketReceivedAction()'],['../class_si443x.html#a0e098ea9aa3945f0c38f59efe43b147e',1,'Si443x::setPacketReceivedAction()'],['../class_c_c1101.html#a29a16e8ed85432c6fae8d9e45399de6e',1,'CC1101::setPacketReceivedAction()'],['../classn_r_f24.html#a60df9afa489eabe3a3ca193ab7709165',1,'nRF24::setPacketReceivedAction()'],['../class_l_r11x0.html#ac2a8ece736198c966e3870dac09f4e87',1,'LR11x0::setPacketReceivedAction(void(*func)(void)) override']]], + ['setpacketsentaction_1067',['setPacketSentAction',['../class_l_r11x0.html#a92299e41f839590008b4e344776838a1',1,'LR11x0::setPacketSentAction()'],['../classn_r_f24.html#a26b5f873db167733df143a0608eea3ac',1,'nRF24::setPacketSentAction()'],['../class_r_f69.html#a97603856caada65676ff4b11630c7f72',1,'RF69::setPacketSentAction()'],['../class_si443x.html#af2d36121ca94736ef3ecb4c09aded753',1,'Si443x::setPacketSentAction()'],['../class_s_t_m32_w_lx.html#a7c0e3aef03f0b6834d0465d8f8568c32',1,'STM32WLx::setPacketSentAction()'],['../class_s_x126x.html#ac79f7ebab97ae91fff6933be3207c873',1,'SX126x::setPacketSentAction()'],['../class_s_x127x.html#a3530e8e19cfe4d96fe49ca4e6386b099',1,'SX127x::setPacketSentAction()'],['../class_s_x128x.html#a1e6f938ce715dad9a6609bf56626a50d',1,'SX128x::setPacketSentAction()'],['../class_physical_layer.html#a32b512b34f6575b2109ae3c3f35d1369',1,'PhysicalLayer::setPacketSentAction()'],['../class_c_c1101.html#a336999da23e554073a9fa628131883f5',1,'CC1101::setPacketSentAction()']]], + ['setpaconfig_1068',['setPaConfig',['../class_s_x126x.html#a1623e7d5450c97ca092913ad79d62208',1,'SX126x']]], + ['setparamptime_1069',['setPaRampTime',['../class_s_x126x.html#ad90a56cb55c5bb64037a0d412d84a80d',1,'SX126x']]], + ['setpreamblelength_1070',['setPreambleLength',['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_physical_layer.html#a85db1ff64e6c56e054f276c511194633',1,'PhysicalLayer::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()'],['../class_s_x127x.html#a844499bace6ae001446d71bee2877656',1,'SX127x::setPreambleLength()'],['../class_s_x126x.html#ad6274222ccf534e98e3cd17dfa1520d4',1,'SX126x::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_l_r11x0.html#aa5d7ae65666f8f9abcb7e9b169884a4a',1,'LR11x0::setPreambleLength()'],['../class_c_c1101.html#ae77c828c9c7cc12012fe011e8c4d3570',1,'CC1101::setPreambleLength(uint8_t preambleLength, uint8_t qualityThreshold)']]], + ['setpromiscuousmode_1071',['setPromiscuousMode',['../class_c_c1101.html#ac1155543b27e46fa27aa4c9180da18bb',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#ae004326d663a9d6a9c30e792aa368b49',1,'RF69::setPromiscuousMode()']]], + ['setreceivepipe_1072',['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_1073',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]], + ['setregulatordcdc_1074',['setRegulatorDCDC',['../class_l_r11x0.html#a1ad485f14a333f06b642f2d60aacf76c',1,'LR11x0::setRegulatorDCDC()'],['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x::setRegulatorDCDC()']]], + ['setregulatorldo_1075',['setRegulatorLDO',['../class_l_r11x0.html#a92ae10630cc327f441809ac1406737fd',1,'LR11x0::setRegulatorLDO()'],['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x::setRegulatorLDO()']]], + ['setrepeaters_1076',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]], + ['setrfswitchpins_1077',['setRfSwitchPins',['../class_c_c1101.html#a5ef45183690bb1879f106af079b01140',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#ac341945538a84430c61f80f610a94411',1,'RF69::setRfSwitchPins()'],['../class_si443x.html#a43e7ceeff9114b35ab89f1d69916b375',1,'Si443x::setRfSwitchPins()'],['../class_s_x126x.html#a0a0df468eacc71c1b2a093ac06bfff51',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#a8ca9edcae05060cce3ff7ee58faeb4e2',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5ba683fbc4a46418ce3736f224fb55f2',1,'SX128x::setRfSwitchPins()'],['../class_module.html#a7d3adea64acab11c47c804afc74bd4f3',1,'Module::setRfSwitchPins(uint32_t rxEn, uint32_t txEn)']]], + ['setrfswitchstate_1078',['setRfSwitchState',['../class_module.html#afbed643f082286012bf44bba22381ae6',1,'Module']]], + ['setrfswitchtable_1079',['setRfSwitchTable',['../class_s_x128x.html#ad5789bd27d46b24f54aac9ca55ec9958',1,'SX128x::setRfSwitchTable()'],['../class_s_t_m32_w_lx.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'STM32WLx::setRfSwitchTable()'],['../class_s_x127x.html#ab9625a5246a45112267ce441ac2de254',1,'SX127x::setRfSwitchTable()'],['../class_s_x126x.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'SX126x::setRfSwitchTable()'],['../class_r_f69.html#afff64ceef5f496ce035ff6d12d6bcc3c',1,'RF69::setRfSwitchTable()'],['../class_l_r11x0.html#a1981f0dfceca2b6175a69530ea13d643',1,'LR11x0::setRfSwitchTable()'],['../class_c_c1101.html#a7b401995be4bc136063a035ce1820634',1,'CC1101::setRfSwitchTable()'],['../class_module.html#ac308fa817a5c36c5dc724a0d15cefd4d',1,'Module::setRfSwitchTable()'],['../class_si443x.html#a8898f11cf9dabd9a5ad717376fdbffa6',1,'Si443x::setRfSwitchTable()']]], + ['setrssiconfig_1080',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], + ['setrssithreshold_1081',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]], + ['setrx2dr_1082',['setRx2Dr',['../class_lo_ra_w_a_n_node.html#addfd8ac3d0bfe5a273e9ba10e51f8025',1,'LoRaWANNode']]], + ['setrxbandwidth_1083',['setRxBandwidth',['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()'],['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()'],['../class_l_r11x0.html#a25f5ee68b3c2638ae613c87ed1c3fc64',1,'LR11x0::setRxBandwidth(float rxBw)']]], + ['setrxboostedgainmode_1084',['setRxBoostedGainMode',['../class_l_r11x0.html#ab0cf34cc0b67484fbf0f258bff7e9a9a',1,'LR11x0::setRxBoostedGainMode()'],['../class_s_x126x.html#a920aa76ff5f0f579424ef6de92e588c8',1,'SX126x::setRxBoostedGainMode()']]], + ['setsendsequence_1085',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], + ['setspreadingfactor_1086',['setSpreadingFactor',['../class_l_r11x0.html#adf6895cbf7af7e00ea06c5b2b5040cb4',1,'LR11x0::setSpreadingFactor()'],['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_s_x128x.html#ae435f57132f76f4283abb870176acf54',1,'SX128x::setSpreadingFactor()'],['../class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08',1,'SX1278::setSpreadingFactor()'],['../class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf',1,'SX1277::setSpreadingFactor()'],['../class_s_x1272.html#a82084ac58502c83d2ada998410307490',1,'SX1272::setSpreadingFactor()'],['../class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d',1,'SX126x::setSpreadingFactor()'],['../class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f',1,'SX1273::setSpreadingFactor()']]], + ['setsyncbits_1087',['setSyncBits',['../class_l_r11x0.html#a6501ef362df1a5b71927cfe4e43c202d',1,'LR11x0::setSyncBits()'],['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x::setSyncBits()']]], + ['setsyncword_1088',['setSyncWord',['../class_s_x127x.html#aaf400f33e17c1679c0b55cd70bef90b0',1,'SX127x::setSyncWord()'],['../class_physical_layer.html#a6c71cdc1238e1368274670758431a977',1,'PhysicalLayer::setSyncWord()'],['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_s_x128x.html#ad9584464d2e4cc09686cf4e83e65d3e0',1,'SX128x::setSyncWord(const uint8_t *syncWord, uint8_t len)'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord()'],['../class_s_x126x.html#a827a4754ea53388513d263e5d9171395',1,'SX126x::setSyncWord()'],['../class_si443x.html#af257fb09afaa6162e1506cfe87b219b3',1,'Si443x::setSyncWord()'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_l_r11x0.html#ab8c54b1b105605ffe0908c5ff9362932',1,'LR11x0::setSyncWord(uint8_t *syncWord, size_t len) override'],['../class_l_r11x0.html#a7ffa48f1b6aaaa3f48e4b51f8ada59d8',1,'LR11x0::setSyncWord(uint32_t syncWord)'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord(uint8_t *syncWord, uint8_t len, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)']]], + ['settcxo_1089',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x::setTCXO()'],['../class_l_r11x0.html#a971b4ccd1d5479e9d72aa9649e8fef55',1,'LR11x0::setTCXO()']]], + ['settransmitpipe_1090',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]], + ['settxpower_1091',['setTxPower',['../class_lo_ra_w_a_n_node.html#a9af613f7d923e7bdcfdbd020132c6d4b',1,'LoRaWANNode']]], + ['setwhitening_1092',['setWhitening',['../class_l_r11x0.html#adcde55b8660c24cf5783942a4132786d',1,'LR11x0::setWhitening()'],['../class_s_x126x.html#ae500bad45638a47264b7e5955a93107d',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]], + ['setwifiscanaction_1093',['setWiFiScanAction',['../class_l_r11x0.html#aff6060e116701c60e078d3d930723b4b',1,'LR11x0']]], + ['si4430_1094',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430']]], + ['si4431_1095',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431']]], + ['si4432_1096',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432']]], + ['si443x_1097',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x']]], + ['sleep_1098',['sleep',['../class_l_r11x0.html#ad5dde79f751bbd7ea277872e237f2a69',1,'LR11x0::sleep() override'],['../class_l_r11x0.html#ad2786a2f17af5769c772ebc73df88e1f',1,'LR11x0::sleep(bool retainConfig, uint32_t sleepTime)'],['../classn_r_f24.html#a69b75e0889c609099487a43c8c3b6721',1,'nRF24::sleep()'],['../class_r_f69.html#adec9debf69f5ee846a5b6e34831ade3c',1,'RF69::sleep()'],['../class_si443x.html#ab0cc51d6b4264acf8e3e49a3a490dee9',1,'Si443x::sleep()'],['../class_s_x126x.html#a882cec40d9aa98a0d536e6afb65b1719',1,'SX126x::sleep() override'],['../class_s_x126x.html#aad7e4df3e1ca20d524e1d776047e1013',1,'SX126x::sleep(bool retainConfig)'],['../class_s_x127x.html#a1ff85ee7979da08b4e66316f1ba2c6a9',1,'SX127x::sleep()'],['../class_s_x128x.html#ab0c26aebd432d36974b3066055df6b01',1,'SX128x::sleep() override'],['../class_s_x128x.html#a98ef7dc21647642b40baf8c0194788c4',1,'SX128x::sleep(bool retainConfig)'],['../class_physical_layer.html#af1bb9a5da26da8829795ebb72e9c666e',1,'PhysicalLayer::sleep()']]], + ['spectralscanabort_1099',['spectralScanAbort',['../class_s_x126x.html#a865397e1cca38bec2d055c047825ea07',1,'SX126x']]], + ['spectralscangetresult_1100',['spectralScanGetResult',['../class_s_x126x.html#ae473773e5bed4b08452e80311bdb26f2',1,'SX126x']]], + ['spectralscangetstatus_1101',['spectralScanGetStatus',['../class_s_x126x.html#a5595fff99d76d50d711b8cdad98527c4',1,'SX126x']]], + ['spectralscanstart_1102',['spectralScanStart',['../class_s_x126x.html#a8a3ad4e12df862ab18b326d9dba26d66',1,'SX126x']]], + ['spibegin_1103',['spiBegin',['../class_esp_hal.html#a960996535b8a28b59c8b72aeffff1826',1,'EspHal::spiBegin()'],['../class_pi_hal.html#a40d237c2f5f4ead26c39f33481b4d7e3',1,'PiHal::spiBegin()'],['../class_pico_hal.html#a414de51bef859659b8cac66df32bdb5a',1,'PicoHal::spiBegin()'],['../class_tock_hal.html#a04cc3c2c2c2554812557466ab5c0edc9',1,'TockHal::spiBegin()'],['../class_radio_lib_hal.html#aa1f8e5cd323e53ef9fa977734a05d030',1,'RadioLibHal::spiBegin()']]], + ['spibegintransaction_1104',['spiBeginTransaction',['../class_esp_hal.html#a1a552e8a34dcbe532171efd4f1d08ec9',1,'EspHal::spiBeginTransaction()'],['../class_pi_hal.html#ab8c97e2b1c42368793d48d08b815fd69',1,'PiHal::spiBeginTransaction()'],['../class_pico_hal.html#a2b6136b2c90e83c1ab94bd92ef32805c',1,'PicoHal::spiBeginTransaction()'],['../class_tock_hal.html#a89091e5e7ed86cc7320f80e9a01713a6',1,'TockHal::spiBeginTransaction()'],['../class_radio_lib_hal.html#abe787d5e556190eef2c63e1581235460',1,'RadioLibHal::spiBeginTransaction()']]], + ['spicheckstream_1105',['SPIcheckStream',['../class_module.html#a5efa7ae78cab1d7f43005e965923f769',1,'Module']]], + ['spiend_1106',['spiEnd',['../class_radio_lib_hal.html#a41c85e560155d644f5b4ce8444dd8b64',1,'RadioLibHal::spiEnd()'],['../class_pi_hal.html#a6b0d64ed834b91f67b3344ce8c573d7b',1,'PiHal::spiEnd()'],['../class_tock_hal.html#a1d4520f65f5c7a7e2e188d32d2c001e2',1,'TockHal::spiEnd()'],['../class_esp_hal.html#ae0c2bcd6d667e475bbaf9ddfc6ebaede',1,'EspHal::spiEnd()'],['../class_pico_hal.html#ac932d26b6a31a0cd7f577d4f8812896c',1,'PicoHal::spiEnd()']]], + ['spiendtransaction_1107',['spiEndTransaction',['../class_esp_hal.html#a213a813fd83d86105977e1c781381510',1,'EspHal::spiEndTransaction()'],['../class_pi_hal.html#a7debfa73095e727950831af2e8aab5f7',1,'PiHal::spiEndTransaction()'],['../class_pico_hal.html#ae6773c6f0aac24774614a3179a4da475',1,'PicoHal::spiEndTransaction()'],['../class_tock_hal.html#ae4cef7494b98e3d0fc0b1788d3f283c4',1,'TockHal::spiEndTransaction()'],['../class_radio_lib_hal.html#a68d9271c76f8c96afb734a4634bf92e9',1,'RadioLibHal::spiEndTransaction()']]], + ['spigetregvalue_1108',['SPIgetRegValue',['../class_module.html#a369e916626c821ecec85f25d5b46d752',1,'Module']]], + ['spireadregister_1109',['SPIreadRegister',['../class_module.html#ab250eb929068e0c890e16e8e6d7cd7e6',1,'Module']]], + ['spireadregisterburst_1110',['SPIreadRegisterBurst',['../class_module.html#ac993ab8e2ea0f5aa93339d1f6ffb54ee',1,'Module']]], + ['spireadstream_1111',['SPIreadStream',['../class_module.html#adacceb57ecfecb09150c135b2b44436f',1,'Module::SPIreadStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a085415b49ff72238f118b937ad896cbd',1,'Module::SPIreadStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]], + ['spisetregvalue_1112',['SPIsetRegValue',['../class_module.html#ade75c5403a05156b43cc7562563ae2d7',1,'Module']]], + ['spitransfer_1113',['SPItransfer',['../class_module.html#aa6df70520aa015dd3a1bccdceae67232',1,'Module']]], + ['spitransfer_1114',['spiTransfer',['../class_radio_lib_hal.html#aebcaaf0cefdaaf5b572d4261e472ac8a',1,'RadioLibHal::spiTransfer()'],['../class_tock_hal.html#a55bab852d0b8c31a15050efdc28afe33',1,'TockHal::spiTransfer()'],['../class_pi_hal.html#a96a0f36efd8e23893add3242bdef8be4',1,'PiHal::spiTransfer()'],['../class_esp_hal.html#afe94bf2e29c22898916b59c00a3dd23f',1,'EspHal::spiTransfer()'],['../class_pico_hal.html#acc961bf30af621d0dfec2b3f7e25cf5c',1,'PicoHal::spiTransfer()']]], + ['spitransferstream_1115',['SPItransferStream',['../class_module.html#a4174159e476de5cef6ea3f89c883cb5e',1,'Module']]], + ['spiwriteregister_1116',['SPIwriteRegister',['../class_module.html#a60ca6b4cae98f7d935191a569d519913',1,'Module']]], + ['spiwriteregisterburst_1117',['SPIwriteRegisterBurst',['../class_module.html#a2826f0fa116eb0a4dd18ddb9b21e4caf',1,'Module']]], + ['spiwritestream_1118',['SPIwriteStream',['../class_module.html#af99b0e74e67417a88f500ab7261ddd20',1,'Module::SPIwriteStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a7acbe601ebe6398781d0f2de5177305e',1,'Module::SPIwriteStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]], + ['sstvclient_1119',['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_1120',['standby',['../class_s_x126x.html#a2fa0384a529746811e2dcb2eeb4188ec',1,'SX126x::standby()'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby()'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby() override'],['../class_s_x127x.html#aa565bbff460e487672953dc05d335cb0',1,'SX127x::standby(uint8_t mode) override'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x128x.html#a389aab93e24ec8c7cc9c14de90e5dfae',1,'SX128x::standby(uint8_t mode, bool wakeup=false)'],['../class_bell_client.html#a57c19c733b0dfe80bd321f23b18c1e80',1,'BellClient::standby()'],['../class_f_s_k4_client.html#a8b5765371ebbf68a21bc0bbfdf9f82ac',1,'FSK4Client::standby()'],['../class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018',1,'PhysicalLayer::standby()'],['../class_physical_layer.html#a7d5da4311092e3df6b193ff303a0c5e8',1,'PhysicalLayer::standby(uint8_t mode)'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()'],['../class_si443x.html#acbc0f95f32ca961294666405596ff529',1,'Si443x::standby()'],['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby()'],['../class_r_f69.html#a6e3002ab0c58e2087a7d101eda7afa82',1,'RF69::standby(uint8_t mode) override'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby() override'],['../classn_r_f24.html#a03e9ae7fbd0d55887acf1996df28ed5b',1,'nRF24::standby(uint8_t mode) override'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby() override'],['../class_l_r11x0.html#a2d682ec2ca0ddf4da41a93dd8e728665',1,'LR11x0::standby(uint8_t mode, bool wakeup=true)'],['../class_l_r11x0.html#a74c3f3f8409f1fd0f41347b7d3c7dc24',1,'LR11x0::standby() override'],['../class_c_c1101.html#af374ad0ecd820a01baef7d177a30132a',1,'CC1101::standby()'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby()']]], + ['startchannelscan_1121',['startChannelScan',['../class_s_x128x.html#a948156af6e886bc46a6c6c5fb10a087a',1,'SX128x::startChannelScan()'],['../class_physical_layer.html#a82a52062d9259c2c546d7bf8072b7a72',1,'PhysicalLayer::startChannelScan(const ChannelScanConfig_t &config)'],['../class_physical_layer.html#ae30dfbb5445bb674898fc54f5f90b2f9',1,'PhysicalLayer::startChannelScan()'],['../class_s_x128x.html#acdee68d9be73509f464226722551c4d9',1,'SX128x::startChannelScan()'],['../class_s_x126x.html#a09a8fe05c23c652c7ace2e2f1bf51d93',1,'SX126x::startChannelScan(const ChannelScanConfig_t &config) override'],['../class_s_x126x.html#a001c4637f01ed6f0216cd6c4d7e10da3',1,'SX126x::startChannelScan() override'],['../class_l_r11x0.html#ab073ade3f6b9bbb383e388904812f575',1,'LR11x0::startChannelScan(const ChannelScanConfig_t &config) override'],['../class_l_r11x0.html#a4f3bc362530b85dd643669705f03998d',1,'LR11x0::startChannelScan() override'],['../class_s_x127x.html#a6fa5723724393576ed597509200e17d1',1,'SX127x::startChannelScan()']]], + ['startdirect_1122',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], + ['startranging_1123',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]], + ['startreceive_1124',['startReceive',['../class_s_x126x.html#a44856b641060cff8e9e2019901cd4751',1,'SX126x::startReceive()'],['../class_s_x127x.html#abbe1076252a366c3c4aa323fdff7d40c',1,'SX127x::startReceive() override'],['../class_s_x127x.html#acaab95d4bf57bf33f6269d2f099e48e0',1,'SX127x::startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0) override'],['../class_s_x128x.html#a803eaca8bb7fdfa3570cf4aa95f8e729',1,'SX128x::startReceive()'],['../classn_r_f24.html#a38b0084ad11090f918f4f370b9df7514',1,'nRF24::startReceive()'],['../class_s_x128x.html#a299dd5c01a6f7d2f8a96becd4fff1f09',1,'SX128x::startReceive()'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive(uint32_t pin, uint32_t addr, uint32_t mask=0xFFFFF)'],['../class_pager_client.html#a9c0f13846fbc333a35a16a98b6575ca6',1,'PagerClient::startReceive(uint32_t pin, uint32_t *addrs, uint32_t *masks, size_t numAddress)'],['../class_physical_layer.html#a18664ad615c5507ff1690baaca90b094',1,'PhysicalLayer::startReceive()'],['../class_physical_layer.html#ac88f9185b5e9fdc1d89df9797dcdd9b7',1,'PhysicalLayer::startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags, RadioLibIrqFlags_t irqMask, size_t len)'],['../class_si443x.html#ad5adec16d570b0d1b09420919dbe77e4',1,'Si443x::startReceive()'],['../class_s_x126x.html#a66ad433561b02fe61b09afd735ce56cc',1,'SX126x::startReceive()'],['../class_c_c1101.html#ae71e947abf6a07b194c6c6d64fd3eb19',1,'CC1101::startReceive() override'],['../class_c_c1101.html#abf153c8fcf2a0d60439426b03692642e',1,'CC1101::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_l_r11x0.html#aa6ce285cc1b76ce028db6442a421ed8d',1,'LR11x0::startReceive() override'],['../class_l_r11x0.html#ae79c42c4ceceb7a6897731d01d365281',1,'LR11x0::startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)'],['../classn_r_f24.html#a3c6aa3622c887118fb8d8cb2689fdff2',1,'nRF24::startReceive()'],['../class_r_f69.html#a3bece228d369dcc1aab6a5b29d0685a8',1,'RF69::startReceive() override'],['../class_r_f69.html#a21ae7524fe573f1a7e74dee342418222',1,'RF69::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_si443x.html#ae188dec3175a3aec96844a613e911500',1,'Si443x::startReceive()']]], + ['startreceivedutycycle_1125',['startReceiveDutyCycle',['../class_s_x126x.html#af9352e49d893151d68a314109140fe29',1,'SX126x']]], + ['startreceivedutycycleauto_1126',['startReceiveDutyCycleAuto',['../class_s_x126x.html#ad0f95b62ee987010b00f4be75bf9ab4e',1,'SX126x']]], + ['startsignal_1127',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], + ['starttransmit_1128',['startTransmit',['../class_r_f69.html#a923654706eff5118ef6e84214e837f27',1,'RF69::startTransmit()'],['../classn_r_f24.html#a923654706eff5118ef6e84214e837f27',1,'nRF24::startTransmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#af79757dbbd62e080c1bad2e608ab940c',1,'nRF24::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_l_r11x0.html#af79757dbbd62e080c1bad2e608ab940c',1,'LR11x0::startTransmit()'],['../class_r_f69.html#af79757dbbd62e080c1bad2e608ab940c',1,'RF69::startTransmit()'],['../class_si443x.html#a923654706eff5118ef6e84214e837f27',1,'Si443x::startTransmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#af79757dbbd62e080c1bad2e608ab940c',1,'Si443x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x126x.html#a923654706eff5118ef6e84214e837f27',1,'SX126x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX126x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x127x.html#a923654706eff5118ef6e84214e837f27',1,'SX127x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX127x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a923654706eff5118ef6e84214e837f27',1,'SX128x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX128x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#a187ea9ee96a67cd48e5b28be5b237c95',1,'Si443x::startTransmit()'],['../class_l_r11x0.html#a923654706eff5118ef6e84214e837f27',1,'LR11x0::startTransmit()'],['../class_c_c1101.html#a6ff7e4066d189482c142e05384a38df0',1,'CC1101::startTransmit()'],['../class_l_r11x0.html#a459825c5b46a2ca515e62042d605aa67',1,'LR11x0::startTransmit()'],['../classn_r_f24.html#a8b2365ad11840d1d05b0e17b37ddacd2',1,'nRF24::startTransmit()'],['../class_r_f69.html#af645f6b5d37812f6bb9ec11788e12066',1,'RF69::startTransmit()'],['../class_s_x126x.html#adf06ca0d64a61ce16a0a2f4f9a7d6a86',1,'SX126x::startTransmit()'],['../class_s_x127x.html#ae0902a990203ec67c628e5d006cbaa96',1,'SX127x::startTransmit()'],['../class_s_x128x.html#a46fff7c4b2bb0eed3fd313d6413dc4e9',1,'SX128x::startTransmit()'],['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af79757dbbd62e080c1bad2e608ab940c',1,'PhysicalLayer::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_c_c1101.html#a923654706eff5118ef6e84214e837f27',1,'CC1101::startTransmit(const char *str, uint8_t addr=0)'],['../class_c_c1101.html#af79757dbbd62e080c1bad2e608ab940c',1,'CC1101::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)']]], + ['startwifiscan_1129',['startWifiScan',['../class_l_r11x0.html#a3498e0e621f341e415145879989e0948',1,'LR11x0']]], + ['stm32wlx_1130',['STM32WLx',['../class_s_t_m32_w_lx.html#ac0e8787dbb8e8aaa172b089ace6eaa09',1,'STM32WLx']]], + ['sx1231_1131',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231']]], + ['sx1233_1132',['SX1233',['../class_s_x1233.html#a23d2fbf2473e48d46e341e6afe31f82f',1,'SX1233']]], + ['sx1261_1133',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261']]], + ['sx1262_1134',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262']]], + ['sx1268_1135',['SX1268',['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268']]], + ['sx126x_1136',['SX126x',['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x']]], + ['sx1272_1137',['SX1272',['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272']]], + ['sx1273_1138',['SX1273',['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273']]], + ['sx1276_1139',['SX1276',['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276']]], + ['sx1277_1140',['SX1277',['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277']]], + ['sx1278_1141',['SX1278',['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278']]], + ['sx1279_1142',['SX1279',['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279']]], + ['sx127x_1143',['SX127x',['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x']]], + ['sx1280_1144',['SX1280',['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280']]], + ['sx1281_1145',['SX1281',['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281']]], + ['sx1282_1146',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282']]], + ['sx128x_1147',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x']]] ]; diff --git a/search/groups_0.js b/search/groups_0.js index 025045cb..3b40ca1f 100644 --- a/search/groups_0.js +++ b/search/groups_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['data_20shaping_20filter_20values_20aliases_2e_1357',['Data shaping filter values aliases.',['../group__config__shaping.html',1,'']]] + ['data_20shaping_20filter_20values_20aliases_2e_1358',['Data shaping filter values aliases.',['../group__config__shaping.html',1,'']]] ]; diff --git a/search/groups_1.js b/search/groups_1.js index 30f312ef..fb186c37 100644 --- a/search/groups_1.js +++ b/search/groups_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['encoding_20type_20aliases_2e_1358',['Encoding type aliases.',['../group__config__encoding.html',1,'']]] + ['encoding_20type_20aliases_2e_1359',['Encoding type aliases.',['../group__config__encoding.html',1,'']]] ]; diff --git a/search/groups_2.js b/search/groups_2.js index f8fcdff7..1f72dca0 100644 --- a/search/groups_2.js +++ b/search/groups_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['mic_2de_20message_20types_2e_1359',['Mic-E message types.',['../group__mic__e__message__types.html',1,'']]] + ['mic_2de_20message_20types_2e_1360',['Mic-E message types.',['../group__mic__e__message__types.html',1,'']]] ]; diff --git a/search/groups_3.js b/search/groups_3.js index 93faeae6..48ec1bcf 100644 --- a/search/groups_3.js +++ b/search/groups_3.js @@ -1,5 +1,5 @@ var searchData= [ - ['position_20of_20bit_20field_20widths_20in_20module_3a_3aspiconfig_20width_20array_2e_1360',['Position of bit field widths in Module::spiConfig width array.',['../group__module__spi__width__pos.html',1,'']]], - ['position_20of_20commands_20in_20module_3a_3aspiconfig_20command_20array_2e_1361',['Position of commands in Module::spiConfig command array.',['../group__module__spi__command__pos.html',1,'']]] + ['position_20of_20bit_20field_20widths_20in_20module_3a_3aspiconfig_20width_20array_2e_1361',['Position of bit field widths in Module::spiConfig width array.',['../group__module__spi__width__pos.html',1,'']]], + ['position_20of_20commands_20in_20module_3a_3aspiconfig_20command_20array_2e_1362',['Position of commands in Module::spiConfig command array.',['../group__module__spi__command__pos.html',1,'']]] ]; diff --git a/search/groups_4.js b/search/groups_4.js index d814f4f5..5f4692e4 100644 --- a/search/groups_4.js +++ b/search/groups_4.js @@ -1,5 +1,5 @@ var searchData= [ - ['standby_20mode_20type_20aliases_2e_1362',['Standby mode type aliases.',['../group__config__standby.html',1,'']]], - ['status_20codes_1363',['Status Codes',['../group__status__codes.html',1,'']]] + ['standby_20mode_20type_20aliases_2e_1363',['Standby mode type aliases.',['../group__config__standby.html',1,'']]], + ['status_20codes_1364',['Status Codes',['../group__status__codes.html',1,'']]] ]; diff --git a/search/groups_5.js b/search/groups_5.js index b288d0f4..e97fb5ff 100644 --- a/search/groups_5.js +++ b/search/groups_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['type_20aliases_20used_20by_20radiolib_2e_1364',['Type aliases used by RadioLib.',['../group__typedefs.html',1,'']]] + ['type_20aliases_20used_20by_20radiolib_2e_1365',['Type aliases used by RadioLib.',['../group__typedefs.html',1,'']]] ]; diff --git a/search/pages_0.js b/search/pages_0.js index d03bc992..7dcf8334 100644 --- a/search/pages_0.js +++ b/search/pages_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['radiolib_20documentation_1365',['RadioLib Documentation',['../index.html',1,'']]] + ['radiolib_20documentation_1366',['RadioLib Documentation',['../index.html',1,'']]] ]; diff --git a/search/pages_1.js b/search/pages_1.js index 37185454..946ef6a6 100644 --- a/search/pages_1.js +++ b/search/pages_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['todo_20list_1366',['Todo List',['../todo.html',1,'']]] + ['todo_20list_1367',['Todo List',['../todo.html',1,'']]] ]; diff --git a/search/typedefs_0.js b/search/typedefs_0.js index 9ec5dc3f..adc5feab 100644 --- a/search/typedefs_0.js +++ b/search/typedefs_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['radiolibirqflags_5ft_1339',['RadioLibIrqFlags_t',['../group__typedefs.html#gafaf66becf1112a55ba8ad7402b802b77',1,'TypeDef.h']]], - ['radiolibtime_5ft_1340',['RadioLibTime_t',['../group__typedefs.html#ga210f31dd2bff7fb80563275648a5bbbd',1,'TypeDef.h']]] + ['radiolibirqflags_5ft_1340',['RadioLibIrqFlags_t',['../group__typedefs.html#gafaf66becf1112a55ba8ad7402b802b77',1,'TypeDef.h']]], + ['radiolibtime_5ft_1341',['RadioLibTime_t',['../group__typedefs.html#ga210f31dd2bff7fb80563275648a5bbbd',1,'TypeDef.h']]] ]; diff --git a/search/typedefs_1.js b/search/typedefs_1.js index 9dcc63d2..85ec7610 100644 --- a/search/typedefs_1.js +++ b/search/typedefs_1.js @@ -1,5 +1,5 @@ var searchData= [ - ['spicheckstatuscb_5ft_1341',['SPIcheckStatusCb_t',['../class_module.html#a1ad7bef7d380d3b6b88dca99bd35d640',1,'Module']]], - ['spiparsestatuscb_5ft_1342',['SPIparseStatusCb_t',['../class_module.html#a9393088249856eab568126aeb2493e4a',1,'Module']]] + ['spicheckstatuscb_5ft_1342',['SPIcheckStatusCb_t',['../class_module.html#a1ad7bef7d380d3b6b88dca99bd35d640',1,'Module']]], + ['spiparsestatuscb_5ft_1343',['SPIparseStatusCb_t',['../class_module.html#a9393088249856eab568126aeb2493e4a',1,'Module']]] ]; diff --git a/search/variables_0.js b/search/variables_0.js index d2f95026..8a2014f1 100644 --- a/search/variables_0.js +++ b/search/variables_0.js @@ -1,7 +1,7 @@ var searchData= [ - ['accuracy_1167',['accuracy',['../struct_l_r11x0_gnss_position__t.html#a3fd469e32f9df19574cab167e32124e5',1,'LR11x0GnssPosition_t']]], - ['almanacgnss_1168',['almanacGNSS',['../struct_l_r11x0_version_info__t.html#ad1839f1cb6a067cc21651d95908cff67',1,'LR11x0VersionInfo_t']]], - ['ap_1169',['ap',['../struct_l_r11x0_wifi_result__t.html#a18a5615328bfc7b549a7ef1a5514c087',1,'LR11x0WifiResult_t']]], - ['available_1170',['available',['../struct_lo_ra_w_a_n_channel__t.html#a5d8fc9046c6351b3bc54825052c471dd',1,'LoRaWANChannel_t']]] + ['accuracy_1168',['accuracy',['../struct_l_r11x0_gnss_position__t.html#a3fd469e32f9df19574cab167e32124e5',1,'LR11x0GnssPosition_t']]], + ['almanacgnss_1169',['almanacGNSS',['../struct_l_r11x0_version_info__t.html#ad1839f1cb6a067cc21651d95908cff67',1,'LR11x0VersionInfo_t']]], + ['ap_1170',['ap',['../struct_l_r11x0_wifi_result__t.html#a18a5615328bfc7b549a7ef1a5514c087',1,'LR11x0WifiResult_t']]], + ['available_1171',['available',['../struct_lo_ra_w_a_n_channel__t.html#a5d8fc9046c6351b3bc54825052c471dd',1,'LoRaWANChannel_t']]] ]; diff --git a/search/variables_1.js b/search/variables_1.js index 49048c11..bad9c590 100644 --- a/search/variables_1.js +++ b/search/variables_1.js @@ -1,11 +1,11 @@ var searchData= [ - ['bandnum_1171',['bandNum',['../struct_lo_ra_w_a_n_band__t.html#abb14a7c48ec89a944f441517b1d55986',1,'LoRaWANBand_t']]], - ['bandtype_1172',['bandType',['../struct_lo_ra_w_a_n_band__t.html#ad7ab17cc0b530fb99c3be39fd6411802',1,'LoRaWANBand_t']]], - ['bandwidth_1173',['bandwidth',['../struct_lo_ra_rate__t.html#a97626ff6c8f659ecad84734cca7a87b1',1,'LoRaRate_t']]], - ['baudrate_1174',['baudRate',['../struct_bell_modem__t.html#a8e16be8997a90db9a4b2482ec7e93171',1,'BellModem_t']]], - ['beidou_1175',['beidou',['../struct_l_r11x0_gnss_almanac_status__t.html#a6ecc7d7bbc090f380ca6d2d8774f7ca0',1,'LR11x0GnssAlmanacStatus_t']]], - ['beidousvnoalmanacflags_1176',['beidouSvNoAlmanacFlags',['../struct_l_r11x0_gnss_almanac_status__t.html#ab040b1d9ccf9c6497b008d11a93ebfdf',1,'LR11x0GnssAlmanacStatus_t']]], - ['bitrate_1177',['bitRate',['../struct_f_s_k_rate__t.html#a2500c6dee65326b52d4e58ecf4b6d107',1,'FSKRate_t']]], - ['bw_1178',['bw',['../struct_lr_fhss_rate__t.html#a965dcb7da1b9adc4818ae9e908585f21',1,'LrFhssRate_t']]] + ['bandnum_1172',['bandNum',['../struct_lo_ra_w_a_n_band__t.html#abb14a7c48ec89a944f441517b1d55986',1,'LoRaWANBand_t']]], + ['bandtype_1173',['bandType',['../struct_lo_ra_w_a_n_band__t.html#ad7ab17cc0b530fb99c3be39fd6411802',1,'LoRaWANBand_t']]], + ['bandwidth_1174',['bandwidth',['../struct_lo_ra_rate__t.html#a97626ff6c8f659ecad84734cca7a87b1',1,'LoRaRate_t']]], + ['baudrate_1175',['baudRate',['../struct_bell_modem__t.html#a8e16be8997a90db9a4b2482ec7e93171',1,'BellModem_t']]], + ['beidou_1176',['beidou',['../struct_l_r11x0_gnss_almanac_status__t.html#a6ecc7d7bbc090f380ca6d2d8774f7ca0',1,'LR11x0GnssAlmanacStatus_t']]], + ['beidousvnoalmanacflags_1177',['beidouSvNoAlmanacFlags',['../struct_l_r11x0_gnss_almanac_status__t.html#ab040b1d9ccf9c6497b008d11a93ebfdf',1,'LR11x0GnssAlmanacStatus_t']]], + ['bitrate_1178',['bitRate',['../struct_f_s_k_rate__t.html#a2500c6dee65326b52d4e58ecf4b6d107',1,'FSKRate_t']]], + ['bw_1179',['bw',['../struct_lr_fhss_rate__t.html#a965dcb7da1b9adc4818ae9e908585f21',1,'LrFhssRate_t']]] ]; diff --git a/search/variables_10.js b/search/variables_10.js index e9a323fb..e53718d6 100644 --- a/search/variables_10.js +++ b/search/variables_10.js @@ -1,20 +1,20 @@ var searchData= [ - ['scanguard_1304',['scanGuard',['../class_lo_ra_w_a_n_node.html#a2176aa3d546e6b00e870a7e1e310c403',1,'LoRaWANNode']]], - ['scanpixellen_1305',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]], - ['sendseqnumber_1306',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]], - ['seqctrl_1307',['seqCtrl',['../struct_l_r11x0_wifi_result_extended__t.html#ad86cb8ec2fca8dc1858a4fe6b0e1e9cf',1,'LR11x0WifiResultExtended_t']]], - ['service_1308',['service',['../struct_l_r11x0_wifi_result_extended__t.html#a4ffbb47fb23051dfeb2fe7ae52ae6dea',1,'LR11x0WifiResultExtended_t']]], - ['size_1309',['size',['../class_radio_lib_c_r_c.html#ad09b067c00cda1cc676c13602dee2f5a',1,'RadioLibCRC']]], - ['spiconfig_1310',['spiConfig',['../class_module.html#a3a4fc4101fb3f134152b458c447b8ecb',1,'Module']]], - ['spreadingfactor_1311',['spreadingFactor',['../struct_lo_ra_rate__t.html#a24fcb6220c0577f985478dc109750076',1,'LoRaRate_t']]], - ['srccallsign_1312',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]], - ['srcssid_1313',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]], - ['ssid_1314',['ssid',['../struct_l_r11x0_wifi_result_extended__t.html#a640fdd5b33e6ab2f6867cd63da567147',1,'LR11x0WifiResultExtended_t']]], - ['standbyxosc_1315',['standbyXOSC',['../class_s_x126x.html#ae731568798d03d9722a440fd6a23faf2',1,'SX126x']]], - ['start_1316',['start',['../struct_l_r11x0_gnss_almanac_status__t.html#a2228a69fda1002c027b7b487aa579afb',1,'LR11x0GnssAlmanacStatus_t']]], - ['statuspos_1317',['statusPos',['../struct_module_1_1_s_p_i_config__t.html#a5b689d2722b8980a211a562ed394d23e',1,'Module::SPIConfig_t']]], - ['stream_1318',['stream',['../struct_module_1_1_s_p_i_config__t.html#a1a088c02ed02361746621ffbc2526681',1,'Module::SPIConfig_t']]], - ['svid_1319',['svId',['../struct_l_r11x0_gnss_satellite__t.html#a0513395fd04c052b862c443dfbe75e84',1,'LR11x0GnssSatellite_t']]], - ['symnum_1320',['symNum',['../struct_c_a_d_scan_config__t.html#a5cb000f071f740c8cc81ea2f04dd9b60',1,'CADScanConfig_t']]] + ['scanguard_1305',['scanGuard',['../class_lo_ra_w_a_n_node.html#a2176aa3d546e6b00e870a7e1e310c403',1,'LoRaWANNode']]], + ['scanpixellen_1306',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]], + ['sendseqnumber_1307',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]], + ['seqctrl_1308',['seqCtrl',['../struct_l_r11x0_wifi_result_extended__t.html#ad86cb8ec2fca8dc1858a4fe6b0e1e9cf',1,'LR11x0WifiResultExtended_t']]], + ['service_1309',['service',['../struct_l_r11x0_wifi_result_extended__t.html#a4ffbb47fb23051dfeb2fe7ae52ae6dea',1,'LR11x0WifiResultExtended_t']]], + ['size_1310',['size',['../class_radio_lib_c_r_c.html#ad09b067c00cda1cc676c13602dee2f5a',1,'RadioLibCRC']]], + ['spiconfig_1311',['spiConfig',['../class_module.html#a3a4fc4101fb3f134152b458c447b8ecb',1,'Module']]], + ['spreadingfactor_1312',['spreadingFactor',['../struct_lo_ra_rate__t.html#a24fcb6220c0577f985478dc109750076',1,'LoRaRate_t']]], + ['srccallsign_1313',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]], + ['srcssid_1314',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]], + ['ssid_1315',['ssid',['../struct_l_r11x0_wifi_result_extended__t.html#a640fdd5b33e6ab2f6867cd63da567147',1,'LR11x0WifiResultExtended_t']]], + ['standbyxosc_1316',['standbyXOSC',['../class_s_x126x.html#ae731568798d03d9722a440fd6a23faf2',1,'SX126x']]], + ['start_1317',['start',['../struct_l_r11x0_gnss_almanac_status__t.html#a2228a69fda1002c027b7b487aa579afb',1,'LR11x0GnssAlmanacStatus_t']]], + ['statuspos_1318',['statusPos',['../struct_module_1_1_s_p_i_config__t.html#a5b689d2722b8980a211a562ed394d23e',1,'Module::SPIConfig_t']]], + ['stream_1319',['stream',['../struct_module_1_1_s_p_i_config__t.html#a1a088c02ed02361746621ffbc2526681',1,'Module::SPIConfig_t']]], + ['svid_1320',['svId',['../struct_l_r11x0_gnss_satellite__t.html#a0513395fd04c052b862c443dfbe75e84',1,'LR11x0GnssSatellite_t']]], + ['symnum_1321',['symNum',['../struct_c_a_d_scan_config__t.html#a5cb000f071f740c8cc81ea2f04dd9b60',1,'CADScanConfig_t']]] ]; diff --git a/search/variables_11.js b/search/variables_11.js index d172d0aa..0bd95aa5 100644 --- a/search/variables_11.js +++ b/search/variables_11.js @@ -1,15 +1,15 @@ var searchData= [ - ['timeout_1321',['timeout',['../struct_module_1_1_s_p_i_config__t.html#a56ecc0b9c1207d655c581e90faa77bb5',1,'Module::SPIConfig_t::timeout()'],['../struct_c_a_d_scan_config__t.html#a44223617e2d046318e75f863c618e26c',1,'CADScanConfig_t::timeout()']]], - ['timestamp_1322',['timestamp',['../struct_l_r11x0_wifi_result_full__t.html#a4fbd2bfd834c890da47ab94c6f688738',1,'LR11x0WifiResultFull_t']]], - ['todistributionsystem_1323',['toDistributionSystem',['../struct_l_r11x0_wifi_result_full__t.html#abe8e8b5e22a75ac988de6f98afa5fd61',1,'LR11x0WifiResultFull_t']]], - ['tones_1324',['tones',['../struct_s_s_t_v_mode__t.html#a7993c913a63cda9d927938fe0b08b8ea',1,'SSTVMode_t']]], - ['ts009_1325',['TS009',['../class_lo_ra_w_a_n_node.html#a8226f4d0329d15da9ffc706e5781403a',1,'LoRaWANNode']]], - ['txack_1326',['txAck',['../struct_lo_ra_w_a_n_band__t.html#a709fdad617bd9138eef52bc7220c29f2',1,'LoRaWANBand_t']]], - ['txfreqs_1327',['txFreqs',['../struct_lo_ra_w_a_n_band__t.html#a9bd952022473cb08e067c763325d689c',1,'LoRaWANBand_t']]], - ['txjoinreq_1328',['txJoinReq',['../struct_lo_ra_w_a_n_band__t.html#a9f6f43346f7c2e281b90d58a44565d38',1,'LoRaWANBand_t']]], - ['txparamsupported_1329',['txParamSupported',['../struct_lo_ra_w_a_n_band__t.html#a4bbc7445702c32199f0bbd011d6f4da6',1,'LoRaWANBand_t']]], - ['txspans_1330',['txSpans',['../struct_lo_ra_w_a_n_band__t.html#aa37a3cae13a68c2deb2968de26ad9bd3',1,'LoRaWANBand_t']]], - ['txwor_1331',['txWoR',['../struct_lo_ra_w_a_n_band__t.html#a918f643c1fc6df722efd8f969c68cf7e',1,'LoRaWANBand_t']]], - ['type_1332',['type',['../struct_l_r11x0_wifi_result__t.html#a7750bb14648b6ee4e96b73cd76a1ca2a',1,'LR11x0WifiResult_t::type()'],['../structtone__t.html#abc1079d3ec7d98466dc948930a348d65',1,'tone_t::type()']]] + ['timeout_1322',['timeout',['../struct_module_1_1_s_p_i_config__t.html#a56ecc0b9c1207d655c581e90faa77bb5',1,'Module::SPIConfig_t::timeout()'],['../struct_c_a_d_scan_config__t.html#a44223617e2d046318e75f863c618e26c',1,'CADScanConfig_t::timeout()']]], + ['timestamp_1323',['timestamp',['../struct_l_r11x0_wifi_result_full__t.html#a4fbd2bfd834c890da47ab94c6f688738',1,'LR11x0WifiResultFull_t']]], + ['todistributionsystem_1324',['toDistributionSystem',['../struct_l_r11x0_wifi_result_full__t.html#abe8e8b5e22a75ac988de6f98afa5fd61',1,'LR11x0WifiResultFull_t']]], + ['tones_1325',['tones',['../struct_s_s_t_v_mode__t.html#a7993c913a63cda9d927938fe0b08b8ea',1,'SSTVMode_t']]], + ['ts009_1326',['TS009',['../class_lo_ra_w_a_n_node.html#a8226f4d0329d15da9ffc706e5781403a',1,'LoRaWANNode']]], + ['txack_1327',['txAck',['../struct_lo_ra_w_a_n_band__t.html#a709fdad617bd9138eef52bc7220c29f2',1,'LoRaWANBand_t']]], + ['txfreqs_1328',['txFreqs',['../struct_lo_ra_w_a_n_band__t.html#a9bd952022473cb08e067c763325d689c',1,'LoRaWANBand_t']]], + ['txjoinreq_1329',['txJoinReq',['../struct_lo_ra_w_a_n_band__t.html#a9f6f43346f7c2e281b90d58a44565d38',1,'LoRaWANBand_t']]], + ['txparamsupported_1330',['txParamSupported',['../struct_lo_ra_w_a_n_band__t.html#a4bbc7445702c32199f0bbd011d6f4da6',1,'LoRaWANBand_t']]], + ['txspans_1331',['txSpans',['../struct_lo_ra_w_a_n_band__t.html#aa37a3cae13a68c2deb2968de26ad9bd3',1,'LoRaWANBand_t']]], + ['txwor_1332',['txWoR',['../struct_lo_ra_w_a_n_band__t.html#a918f643c1fc6df722efd8f969c68cf7e',1,'LoRaWANBand_t']]], + ['type_1333',['type',['../struct_l_r11x0_wifi_result__t.html#a7750bb14648b6ee4e96b73cd76a1ca2a',1,'LR11x0WifiResult_t::type()'],['../structtone__t.html#abc1079d3ec7d98466dc948930a348d65',1,'tone_t::type()']]] ]; diff --git a/search/variables_12.js b/search/variables_12.js index 14953acf..ada2b79d 100644 --- a/search/variables_12.js +++ b/search/variables_12.js @@ -1,4 +1,4 @@ var searchData= [ - ['user_1333',['user',['../struct_lo_ra_w_a_n_mac_command__t.html#a269530a63c3e2a66393fb10286a3b5b6',1,'LoRaWANMacCommand_t']]] + ['user_1334',['user',['../struct_lo_ra_w_a_n_mac_command__t.html#a269530a63c3e2a66393fb10286a3b5b6',1,'LoRaWANMacCommand_t']]] ]; diff --git a/search/variables_13.js b/search/variables_13.js index 99af2955..70732782 100644 --- a/search/variables_13.js +++ b/search/variables_13.js @@ -1,5 +1,5 @@ var searchData= [ - ['values_1334',['values',['../struct_module_1_1_rf_switch_mode__t.html#a694fecae172f868d8ca400319920ed66',1,'Module::RfSwitchMode_t']]], - ['viscode_1335',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]] + ['values_1335',['values',['../struct_module_1_1_rf_switch_mode__t.html#a694fecae172f868d8ca400319920ed66',1,'Module::RfSwitchMode_t']]], + ['viscode_1336',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]] ]; diff --git a/search/variables_14.js b/search/variables_14.js index effd8b69..4b50c68b 100644 --- a/search/variables_14.js +++ b/search/variables_14.js @@ -1,5 +1,5 @@ var searchData= [ - ['width_1336',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]], - ['widths_1337',['widths',['../struct_module_1_1_s_p_i_config__t.html#a8cd88af331563749f10ac69b63e1755a',1,'Module::SPIConfig_t']]] + ['width_1337',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]], + ['widths_1338',['widths',['../struct_module_1_1_s_p_i_config__t.html#a8cd88af331563749f10ac69b63e1755a',1,'Module::SPIConfig_t']]] ]; diff --git a/search/variables_15.js b/search/variables_15.js index a05f9e7a..eac2da2f 100644 --- a/search/variables_15.js +++ b/search/variables_15.js @@ -1,4 +1,4 @@ var searchData= [ - ['xtal_1338',['XTAL',['../class_l_r11x0.html#a3ccfd35d26960457214d2a0192d6b312',1,'LR11x0::XTAL()'],['../class_s_x126x.html#ada0fe6c3d31885952b439135cf0c18f1',1,'SX126x::XTAL()']]] + ['xtal_1339',['XTAL',['../class_l_r11x0.html#a3ccfd35d26960457214d2a0192d6b312',1,'LR11x0::XTAL()'],['../class_s_x126x.html#ada0fe6c3d31885952b439135cf0c18f1',1,'SX126x::XTAL()']]] ]; diff --git a/search/variables_2.js b/search/variables_2.js index 59f00132..6f6b3c58 100644 --- a/search/variables_2.js +++ b/search/variables_2.js @@ -1,16 +1,16 @@ var searchData= [ - ['c_5fn0_1179',['c_n0',['../struct_l_r11x0_gnss_satellite__t.html#a1ca3d11db7b677955b7f1f3c4f85157f',1,'LR11x0GnssSatellite_t']]], - ['cad_1180',['cad',['../union_channel_scan_config__t.html#ad9cdc4ce1a4664a12802d1e652c9e098',1,'ChannelScanConfig_t']]], - ['channelfreq_1181',['channelFreq',['../struct_l_r11x0_wifi_result__t.html#a520382420ad088ac1ace3754192cbfeb',1,'LR11x0WifiResult_t']]], - ['checkstatuscb_1182',['checkStatusCb',['../struct_module_1_1_s_p_i_config__t.html#ac1e7f50d134ec054ed2074b846f1124e',1,'Module::SPIConfig_t']]], - ['cid_1183',['cid',['../struct_lo_ra_w_a_n_mac_command__t.html#a79d26324cafccbae8b95927935e0d0dc',1,'LoRaWANMacCommand_t']]], - ['cmds_1184',['cmds',['../struct_module_1_1_s_p_i_config__t.html#a57ecca17835380862426d3cf38561185',1,'Module::SPIConfig_t']]], - ['codingrate_1185',['codingRate',['../struct_lo_ra_rate__t.html#ae382629257949329b2fcb01d565183df',1,'LoRaRate_t']]], - ['confirmed_1186',['confirmed',['../struct_lo_ra_w_a_n_event__t.html#a09079dc76b5367d23766e357d2ddb794',1,'LoRaWANEvent_t']]], - ['confirming_1187',['confirming',['../struct_lo_ra_w_a_n_event__t.html#a506755c4731be16d126bdef873c420f8',1,'LoRaWANEvent_t']]], - ['control_1188',['control',['../class_a_x25_frame.html#a5b196079b539dc417ca65dd4ad622f8f',1,'AX25Frame']]], - ['countrycode_1189',['countryCode',['../struct_l_r11x0_wifi_result_extended__t.html#ae9bf4bc28c72985edc131ad1b69cb06a',1,'LR11x0WifiResultExtended_t']]], - ['cr_1190',['cr',['../struct_lr_fhss_rate__t.html#a3eb7a2c2f4f23face4d6706aa8084c6b',1,'LrFhssRate_t']]], - ['currentchannel_1191',['currentChannel',['../struct_l_r11x0_wifi_result_extended__t.html#a7314104129f9ceb6d91c85578d85d252',1,'LR11x0WifiResultExtended_t']]] + ['c_5fn0_1180',['c_n0',['../struct_l_r11x0_gnss_satellite__t.html#a1ca3d11db7b677955b7f1f3c4f85157f',1,'LR11x0GnssSatellite_t']]], + ['cad_1181',['cad',['../union_channel_scan_config__t.html#ad9cdc4ce1a4664a12802d1e652c9e098',1,'ChannelScanConfig_t']]], + ['channelfreq_1182',['channelFreq',['../struct_l_r11x0_wifi_result__t.html#a520382420ad088ac1ace3754192cbfeb',1,'LR11x0WifiResult_t']]], + ['checkstatuscb_1183',['checkStatusCb',['../struct_module_1_1_s_p_i_config__t.html#ac1e7f50d134ec054ed2074b846f1124e',1,'Module::SPIConfig_t']]], + ['cid_1184',['cid',['../struct_lo_ra_w_a_n_mac_command__t.html#a79d26324cafccbae8b95927935e0d0dc',1,'LoRaWANMacCommand_t']]], + ['cmds_1185',['cmds',['../struct_module_1_1_s_p_i_config__t.html#a57ecca17835380862426d3cf38561185',1,'Module::SPIConfig_t']]], + ['codingrate_1186',['codingRate',['../struct_lo_ra_rate__t.html#ae382629257949329b2fcb01d565183df',1,'LoRaRate_t']]], + ['confirmed_1187',['confirmed',['../struct_lo_ra_w_a_n_event__t.html#a09079dc76b5367d23766e357d2ddb794',1,'LoRaWANEvent_t']]], + ['confirming_1188',['confirming',['../struct_lo_ra_w_a_n_event__t.html#a506755c4731be16d126bdef873c420f8',1,'LoRaWANEvent_t']]], + ['control_1189',['control',['../class_a_x25_frame.html#a5b196079b539dc417ca65dd4ad622f8f',1,'AX25Frame']]], + ['countrycode_1190',['countryCode',['../struct_l_r11x0_wifi_result_extended__t.html#ae9bf4bc28c72985edc131ad1b69cb06a',1,'LR11x0WifiResultExtended_t']]], + ['cr_1191',['cr',['../struct_lr_fhss_rate__t.html#a3eb7a2c2f4f23face4d6706aa8084c6b',1,'LrFhssRate_t']]], + ['currentchannel_1192',['currentChannel',['../struct_l_r11x0_wifi_result_extended__t.html#a7314104129f9ceb6d91c85578d85d252',1,'LR11x0WifiResultExtended_t']]] ]; diff --git a/search/variables_3.js b/search/variables_3.js index 81a62515..f6692548 100644 --- a/search/variables_3.js +++ b/search/variables_3.js @@ -1,22 +1,22 @@ var searchData= [ - ['datarate_1192',['datarate',['../struct_lo_ra_w_a_n_event__t.html#a56281d98efee007a0c03e6a6ae8a592b',1,'LoRaWANEvent_t']]], - ['datarateid_1193',['dataRateId',['../struct_l_r11x0_wifi_result__t.html#ac1768e3f878366d2187ffe6d4bc196bd',1,'LR11x0WifiResult_t']]], - ['datarates_1194',['dataRates',['../struct_lo_ra_w_a_n_band__t.html#a8b518a570756048dec56bec703a0b25b',1,'LoRaWANBand_t']]], - ['demodstat_1195',['demodStat',['../struct_l_r11x0_gnss_result__t.html#a6142622b9fb790108546b4d09b063b6c',1,'LR11x0GnssResult_t']]], - ['destcallsign_1196',['destCallsign',['../class_a_x25_frame.html#a7fe9805148e2dd46d163cd989473dbff',1,'AX25Frame']]], - ['destssid_1197',['destSSID',['../class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8',1,'AX25Frame']]], - ['detmin_1198',['detMin',['../struct_c_a_d_scan_config__t.html#af44adcf8659f5e3f861f4b29e9a997d1',1,'CADScanConfig_t']]], - ['detpeak_1199',['detPeak',['../struct_c_a_d_scan_config__t.html#a474cc14f2a00ff351aac5aa0f3fa4e3a',1,'CADScanConfig_t']]], - ['device_1200',['device',['../struct_l_r11x0_version_info__t.html#a6686a59a55b567b11b325b7087d682b2',1,'LR11x0VersionInfo_t']]], - ['devnonce_1201',['devNonce',['../struct_lo_ra_w_a_n_join_event__t.html#abdb57ec1e16ea0d1822ba0a5632c9372',1,'LoRaWANJoinEvent_t']]], - ['dir_1202',['dir',['../struct_lo_ra_w_a_n_event__t.html#a698a1956ffafa152e7c2cada3a2a2805',1,'LoRaWANEvent_t']]], - ['doppler_1203',['doppler',['../struct_l_r11x0_gnss_satellite__t.html#a670c9e916637b5fede43c5fbb26cbfd8',1,'LR11x0GnssSatellite_t']]], - ['dr_1204',['dr',['../struct_lo_ra_w_a_n_channel__t.html#a8332e2b32f822524c6a1ed04de3144bf',1,'LoRaWANChannel_t']]], - ['drjoinrequest_1205',['drJoinRequest',['../struct_lo_ra_w_a_n_channel_span__t.html#a17203af63259911cba8b2ae05be25ff5',1,'LoRaWANChannelSpan_t']]], - ['drmax_1206',['drMax',['../struct_lo_ra_w_a_n_channel__t.html#aeabadf186d7bc105f6d289e3a491412c',1,'LoRaWANChannel_t::drMax()'],['../struct_lo_ra_w_a_n_channel_span__t.html#a914d2b6f54e9c8d2841acf1d0652fd79',1,'LoRaWANChannelSpan_t::drMax()']]], - ['drmin_1207',['drMin',['../struct_lo_ra_w_a_n_channel__t.html#abb028e93f3fe15ed6f95e5fcd8a62f53',1,'LoRaWANChannel_t::drMin()'],['../struct_lo_ra_w_a_n_channel_span__t.html#ab613b4ca3a2c99ef0aa53f8132f54535',1,'LoRaWANChannelSpan_t::drMin()']]], - ['dutycycle_1208',['dutyCycle',['../struct_lo_ra_w_a_n_band__t.html#a743d3a23aa5c58e156dff633b830ee4f',1,'LoRaWANBand_t']]], - ['dwelltimedn_1209',['dwellTimeDn',['../struct_lo_ra_w_a_n_band__t.html#aef289b63007a6e085c7c66f71209d84c',1,'LoRaWANBand_t']]], - ['dwelltimeup_1210',['dwellTimeUp',['../struct_lo_ra_w_a_n_band__t.html#a8bd0d705d9c0dbe87d25e83cc54e922c',1,'LoRaWANBand_t']]] + ['datarate_1193',['datarate',['../struct_lo_ra_w_a_n_event__t.html#a56281d98efee007a0c03e6a6ae8a592b',1,'LoRaWANEvent_t']]], + ['datarateid_1194',['dataRateId',['../struct_l_r11x0_wifi_result__t.html#ac1768e3f878366d2187ffe6d4bc196bd',1,'LR11x0WifiResult_t']]], + ['datarates_1195',['dataRates',['../struct_lo_ra_w_a_n_band__t.html#a8b518a570756048dec56bec703a0b25b',1,'LoRaWANBand_t']]], + ['demodstat_1196',['demodStat',['../struct_l_r11x0_gnss_result__t.html#a6142622b9fb790108546b4d09b063b6c',1,'LR11x0GnssResult_t']]], + ['destcallsign_1197',['destCallsign',['../class_a_x25_frame.html#a7fe9805148e2dd46d163cd989473dbff',1,'AX25Frame']]], + ['destssid_1198',['destSSID',['../class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8',1,'AX25Frame']]], + ['detmin_1199',['detMin',['../struct_c_a_d_scan_config__t.html#af44adcf8659f5e3f861f4b29e9a997d1',1,'CADScanConfig_t']]], + ['detpeak_1200',['detPeak',['../struct_c_a_d_scan_config__t.html#a474cc14f2a00ff351aac5aa0f3fa4e3a',1,'CADScanConfig_t']]], + ['device_1201',['device',['../struct_l_r11x0_version_info__t.html#a6686a59a55b567b11b325b7087d682b2',1,'LR11x0VersionInfo_t']]], + ['devnonce_1202',['devNonce',['../struct_lo_ra_w_a_n_join_event__t.html#abdb57ec1e16ea0d1822ba0a5632c9372',1,'LoRaWANJoinEvent_t']]], + ['dir_1203',['dir',['../struct_lo_ra_w_a_n_event__t.html#a698a1956ffafa152e7c2cada3a2a2805',1,'LoRaWANEvent_t']]], + ['doppler_1204',['doppler',['../struct_l_r11x0_gnss_satellite__t.html#a670c9e916637b5fede43c5fbb26cbfd8',1,'LR11x0GnssSatellite_t']]], + ['dr_1205',['dr',['../struct_lo_ra_w_a_n_channel__t.html#a8332e2b32f822524c6a1ed04de3144bf',1,'LoRaWANChannel_t']]], + ['drjoinrequest_1206',['drJoinRequest',['../struct_lo_ra_w_a_n_channel_span__t.html#a17203af63259911cba8b2ae05be25ff5',1,'LoRaWANChannelSpan_t']]], + ['drmax_1207',['drMax',['../struct_lo_ra_w_a_n_channel__t.html#aeabadf186d7bc105f6d289e3a491412c',1,'LoRaWANChannel_t::drMax()'],['../struct_lo_ra_w_a_n_channel_span__t.html#a914d2b6f54e9c8d2841acf1d0652fd79',1,'LoRaWANChannelSpan_t::drMax()']]], + ['drmin_1208',['drMin',['../struct_lo_ra_w_a_n_channel__t.html#abb028e93f3fe15ed6f95e5fcd8a62f53',1,'LoRaWANChannel_t::drMin()'],['../struct_lo_ra_w_a_n_channel_span__t.html#ab613b4ca3a2c99ef0aa53f8132f54535',1,'LoRaWANChannelSpan_t::drMin()']]], + ['dutycycle_1209',['dutyCycle',['../struct_lo_ra_w_a_n_band__t.html#a743d3a23aa5c58e156dff633b830ee4f',1,'LoRaWANBand_t']]], + ['dwelltimedn_1210',['dwellTimeDn',['../struct_lo_ra_w_a_n_band__t.html#aef289b63007a6e085c7c66f71209d84c',1,'LoRaWANBand_t']]], + ['dwelltimeup_1211',['dwellTimeUp',['../struct_lo_ra_w_a_n_band__t.html#a8bd0d705d9c0dbe87d25e83cc54e922c',1,'LoRaWANBand_t']]] ]; diff --git a/search/variables_4.js b/search/variables_4.js index e051df2c..f64f27ee 100644 --- a/search/variables_4.js +++ b/search/variables_4.js @@ -1,6 +1,6 @@ var searchData= [ - ['enabled_1211',['enabled',['../struct_lo_ra_w_a_n_channel__t.html#acde186d519eca4dc43d053f2146b75a0',1,'LoRaWANChannel_t']]], - ['err_1212',['err',['../struct_module_1_1_s_p_i_config__t.html#ae11c030be96a72cd09fdfe9778ecdd51',1,'Module::SPIConfig_t']]], - ['exitmode_1213',['exitMode',['../struct_c_a_d_scan_config__t.html#a7830e01090d9a95d71cc6546d2dce3c1',1,'CADScanConfig_t']]] + ['enabled_1212',['enabled',['../struct_lo_ra_w_a_n_channel__t.html#acde186d519eca4dc43d053f2146b75a0',1,'LoRaWANChannel_t']]], + ['err_1213',['err',['../struct_module_1_1_s_p_i_config__t.html#ae11c030be96a72cd09fdfe9778ecdd51',1,'Module::SPIConfig_t']]], + ['exitmode_1214',['exitMode',['../struct_c_a_d_scan_config__t.html#a7830e01090d9a95d71cc6546d2dce3c1',1,'CADScanConfig_t']]] ]; diff --git a/search/variables_5.js b/search/variables_5.js index 42831477..9a563098 100644 --- a/search/variables_5.js +++ b/search/variables_5.js @@ -1,26 +1,26 @@ var searchData= [ - ['fcnt_1214',['fCnt',['../struct_lo_ra_w_a_n_event__t.html#a73ecb624afeda6ddb32c1007d3dcb846',1,'LoRaWANEvent_t']]], - ['fcscheckok_1215',['fcsCheckOk',['../struct_l_r11x0_wifi_result_extended__t.html#a45bbafdcc16a5ae8ee52d0ea40b40326',1,'LR11x0WifiResultExtended_t']]], - ['fport_1216',['fPort',['../struct_lo_ra_w_a_n_event__t.html#a14f360e64ae4a6090c04333567f1a513',1,'LoRaWANEvent_t']]], - ['framesubtype_1217',['frameSubType',['../struct_l_r11x0_wifi_result_full__t.html#ab4f5ee1a99afca09242ae31ae8bc75c2',1,'LR11x0WifiResultFull_t']]], - ['frametype_1218',['frameType',['../struct_l_r11x0_wifi_result_full__t.html#aac254fd90872d9e3457a0c44409ff9fb',1,'LR11x0WifiResultFull_t']]], - ['freq_1219',['freq',['../struct_lo_ra_w_a_n_channel__t.html#a96620451b311ba0126b9575aec81ec2f',1,'LoRaWANChannel_t::freq()'],['../struct_lo_ra_w_a_n_event__t.html#a01e1843dcd39911a0fbbb86cdca35d33',1,'LoRaWANEvent_t::freq()'],['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t::freq()']]], - ['freqdev_1220',['freqDev',['../struct_f_s_k_rate__t.html#a9d8801cd6a3533922db9410f81e2a244',1,'FSKRate_t']]], - ['freqmark_1221',['freqMark',['../struct_bell_modem__t.html#ac57de3660aafb52bcf1b3197380c6ce5',1,'BellModem_t']]], - ['freqmarkreply_1222',['freqMarkReply',['../struct_bell_modem__t.html#aa26b8a2f2ae9722de9a69aab991ce229',1,'BellModem_t']]], - ['freqmax_1223',['freqMax',['../struct_lo_ra_w_a_n_band__t.html#ac6b39e29fe554cd53349d80dfff1f479',1,'LoRaWANBand_t']]], - ['freqmin_1224',['freqMin',['../struct_lo_ra_w_a_n_band__t.html#a92195dec46b60a55913cd3af43f410f9',1,'LoRaWANBand_t']]], - ['freqspace_1225',['freqSpace',['../struct_bell_modem__t.html#a27c1a411df3d887ca0ce246c3b5521f7',1,'BellModem_t']]], - ['freqspacereply_1226',['freqSpaceReply',['../struct_bell_modem__t.html#a40fe8a17a9b4fae3f313fea34077eacc',1,'BellModem_t']]], - ['freqstart_1227',['freqStart',['../struct_lo_ra_w_a_n_channel_span__t.html#a1bfba15154185b75693542cd0547cb96',1,'LoRaWANChannelSpan_t']]], - ['freqstep_1228',['freqStep',['../struct_lo_ra_w_a_n_channel_span__t.html#a958f8056a2611c7a503169457278541e',1,'LoRaWANChannelSpan_t']]], - ['frmpending_1229',['frmPending',['../struct_lo_ra_w_a_n_event__t.html#afe256fb2ed02e2ffdf0ae85f92951778',1,'LoRaWANEvent_t']]], - ['fromdistributionsystem_1230',['fromDistributionSystem',['../struct_l_r11x0_wifi_result_full__t.html#a47cb77c1ccf8da32d3a4102518c0d72c',1,'LR11x0WifiResultFull_t']]], - ['fsk_1231',['fsk',['../union_data_rate__t.html#abfa0cbc4b33c49435e67662b6e6027cf',1,'DataRate_t']]], - ['fwgnss_1232',['fwGNSS',['../struct_l_r11x0_version_info__t.html#aba5ac25e1acff5678991483d3a56084a',1,'LR11x0VersionInfo_t']]], - ['fwmajor_1233',['fwMajor',['../struct_l_r11x0_version_info__t.html#a50d3cf257fb187c00a6290c8c7d95edc',1,'LR11x0VersionInfo_t']]], - ['fwmajorwifi_1234',['fwMajorWiFi',['../struct_l_r11x0_version_info__t.html#add0c362641afcfff4a2ef3563e5f1c36',1,'LR11x0VersionInfo_t']]], - ['fwminor_1235',['fwMinor',['../struct_l_r11x0_version_info__t.html#a93ffc624cb2545411a409e7879a6d597',1,'LR11x0VersionInfo_t']]], - ['fwminorwifi_1236',['fwMinorWiFi',['../struct_l_r11x0_version_info__t.html#a5505724d8dd4b361a30cc4afd7fba19f',1,'LR11x0VersionInfo_t']]] + ['fcnt_1215',['fCnt',['../struct_lo_ra_w_a_n_event__t.html#a73ecb624afeda6ddb32c1007d3dcb846',1,'LoRaWANEvent_t']]], + ['fcscheckok_1216',['fcsCheckOk',['../struct_l_r11x0_wifi_result_extended__t.html#a45bbafdcc16a5ae8ee52d0ea40b40326',1,'LR11x0WifiResultExtended_t']]], + ['fport_1217',['fPort',['../struct_lo_ra_w_a_n_event__t.html#a14f360e64ae4a6090c04333567f1a513',1,'LoRaWANEvent_t']]], + ['framesubtype_1218',['frameSubType',['../struct_l_r11x0_wifi_result_full__t.html#ab4f5ee1a99afca09242ae31ae8bc75c2',1,'LR11x0WifiResultFull_t']]], + ['frametype_1219',['frameType',['../struct_l_r11x0_wifi_result_full__t.html#aac254fd90872d9e3457a0c44409ff9fb',1,'LR11x0WifiResultFull_t']]], + ['freq_1220',['freq',['../struct_lo_ra_w_a_n_channel__t.html#a96620451b311ba0126b9575aec81ec2f',1,'LoRaWANChannel_t::freq()'],['../struct_lo_ra_w_a_n_event__t.html#a01e1843dcd39911a0fbbb86cdca35d33',1,'LoRaWANEvent_t::freq()'],['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t::freq()']]], + ['freqdev_1221',['freqDev',['../struct_f_s_k_rate__t.html#a9d8801cd6a3533922db9410f81e2a244',1,'FSKRate_t']]], + ['freqmark_1222',['freqMark',['../struct_bell_modem__t.html#ac57de3660aafb52bcf1b3197380c6ce5',1,'BellModem_t']]], + ['freqmarkreply_1223',['freqMarkReply',['../struct_bell_modem__t.html#aa26b8a2f2ae9722de9a69aab991ce229',1,'BellModem_t']]], + ['freqmax_1224',['freqMax',['../struct_lo_ra_w_a_n_band__t.html#ac6b39e29fe554cd53349d80dfff1f479',1,'LoRaWANBand_t']]], + ['freqmin_1225',['freqMin',['../struct_lo_ra_w_a_n_band__t.html#a92195dec46b60a55913cd3af43f410f9',1,'LoRaWANBand_t']]], + ['freqspace_1226',['freqSpace',['../struct_bell_modem__t.html#a27c1a411df3d887ca0ce246c3b5521f7',1,'BellModem_t']]], + ['freqspacereply_1227',['freqSpaceReply',['../struct_bell_modem__t.html#a40fe8a17a9b4fae3f313fea34077eacc',1,'BellModem_t']]], + ['freqstart_1228',['freqStart',['../struct_lo_ra_w_a_n_channel_span__t.html#a1bfba15154185b75693542cd0547cb96',1,'LoRaWANChannelSpan_t']]], + ['freqstep_1229',['freqStep',['../struct_lo_ra_w_a_n_channel_span__t.html#a958f8056a2611c7a503169457278541e',1,'LoRaWANChannelSpan_t']]], + ['frmpending_1230',['frmPending',['../struct_lo_ra_w_a_n_event__t.html#afe256fb2ed02e2ffdf0ae85f92951778',1,'LoRaWANEvent_t']]], + ['fromdistributionsystem_1231',['fromDistributionSystem',['../struct_l_r11x0_wifi_result_full__t.html#a47cb77c1ccf8da32d3a4102518c0d72c',1,'LR11x0WifiResultFull_t']]], + ['fsk_1232',['fsk',['../union_data_rate__t.html#abfa0cbc4b33c49435e67662b6e6027cf',1,'DataRate_t']]], + ['fwgnss_1233',['fwGNSS',['../struct_l_r11x0_version_info__t.html#aba5ac25e1acff5678991483d3a56084a',1,'LR11x0VersionInfo_t']]], + ['fwmajor_1234',['fwMajor',['../struct_l_r11x0_version_info__t.html#a50d3cf257fb187c00a6290c8c7d95edc',1,'LR11x0VersionInfo_t']]], + ['fwmajorwifi_1235',['fwMajorWiFi',['../struct_l_r11x0_version_info__t.html#add0c362641afcfff4a2ef3563e5f1c36',1,'LR11x0VersionInfo_t']]], + ['fwminor_1236',['fwMinor',['../struct_l_r11x0_version_info__t.html#a93ffc624cb2545411a409e7879a6d597',1,'LR11x0VersionInfo_t']]], + ['fwminorwifi_1237',['fwMinorWiFi',['../struct_l_r11x0_version_info__t.html#a5505724d8dd4b361a30cc4afd7fba19f',1,'LR11x0VersionInfo_t']]] ]; diff --git a/search/variables_6.js b/search/variables_6.js index ec2a7923..85adbe65 100644 --- a/search/variables_6.js +++ b/search/variables_6.js @@ -1,10 +1,10 @@ var searchData= [ - ['gpiointerruptfalling_1237',['GpioInterruptFalling',['../class_radio_lib_hal.html#a01f73b66a632fc9dba41a23f592e0936',1,'RadioLibHal']]], - ['gpiointerruptrising_1238',['GpioInterruptRising',['../class_radio_lib_hal.html#a7ff9f3c608d68575dfc8962ba3669851',1,'RadioLibHal']]], - ['gpiolevelhigh_1239',['GpioLevelHigh',['../class_radio_lib_hal.html#a409c719ef8a11e8765c90e98ba42316d',1,'RadioLibHal']]], - ['gpiolevellow_1240',['GpioLevelLow',['../class_radio_lib_hal.html#a3cfca7ff9303fe84119ba2f4a4e1bbf4',1,'RadioLibHal']]], - ['gpiomodeinput_1241',['GpioModeInput',['../class_radio_lib_hal.html#a2d197fc1f62be4cd2d2c22be30744769',1,'RadioLibHal']]], - ['gpiomodeoutput_1242',['GpioModeOutput',['../class_radio_lib_hal.html#a18a711dd900a796ccfd7dddbdd2e6afe',1,'RadioLibHal']]], - ['gps_1243',['gps',['../struct_l_r11x0_gnss_almanac_status__t.html#acec44165b211b49be3ca624ae03bc7cc',1,'LR11x0GnssAlmanacStatus_t']]] + ['gpiointerruptfalling_1238',['GpioInterruptFalling',['../class_radio_lib_hal.html#a01f73b66a632fc9dba41a23f592e0936',1,'RadioLibHal']]], + ['gpiointerruptrising_1239',['GpioInterruptRising',['../class_radio_lib_hal.html#a7ff9f3c608d68575dfc8962ba3669851',1,'RadioLibHal']]], + ['gpiolevelhigh_1240',['GpioLevelHigh',['../class_radio_lib_hal.html#a409c719ef8a11e8765c90e98ba42316d',1,'RadioLibHal']]], + ['gpiolevellow_1241',['GpioLevelLow',['../class_radio_lib_hal.html#a3cfca7ff9303fe84119ba2f4a4e1bbf4',1,'RadioLibHal']]], + ['gpiomodeinput_1242',['GpioModeInput',['../class_radio_lib_hal.html#a2d197fc1f62be4cd2d2c22be30744769',1,'RadioLibHal']]], + ['gpiomodeoutput_1243',['GpioModeOutput',['../class_radio_lib_hal.html#a18a711dd900a796ccfd7dddbdd2e6afe',1,'RadioLibHal']]], + ['gps_1244',['gps',['../struct_l_r11x0_gnss_almanac_status__t.html#acec44165b211b49be3ca624ae03bc7cc',1,'LR11x0GnssAlmanacStatus_t']]] ]; diff --git a/search/variables_7.js b/search/variables_7.js index d21888af..6e6a3854 100644 --- a/search/variables_7.js +++ b/search/variables_7.js @@ -1,6 +1,6 @@ var searchData= [ - ['hal_1244',['hal',['../class_module.html#a4483f0a39a523dd1b37b467d81418f7d',1,'Module']]], - ['hardware_1245',['hardware',['../struct_l_r11x0_version_info__t.html#a8c572580b8dba18d46ae50b4a4dd5a8d',1,'LR11x0VersionInfo_t']]], - ['height_1246',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]] + ['hal_1245',['hal',['../class_module.html#a4483f0a39a523dd1b37b467d81418f7d',1,'Module']]], + ['hardware_1246',['hardware',['../struct_l_r11x0_version_info__t.html#a8c572580b8dba18d46ae50b4a4dd5a8d',1,'LR11x0VersionInfo_t']]], + ['height_1247',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]] ]; diff --git a/search/variables_8.js b/search/variables_8.js index f9e15f22..9d81f3c3 100644 --- a/search/variables_8.js +++ b/search/variables_8.js @@ -1,10 +1,10 @@ var searchData= [ - ['idx_1247',['idx',['../struct_lo_ra_w_a_n_channel__t.html#a9fc4b7ec0b298df267cc2c39ef12cfa0',1,'LoRaWANChannel_t']]], - ['info_1248',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]], - ['infolen_1249',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]], - ['init_1250',['init',['../class_radio_lib_c_r_c.html#a579acc51fe7a01b0b9b3f2e0e57b7d5f',1,'RadioLibCRC']]], - ['ioreg_1251',['ioReg',['../struct_l_r11x0_wifi_result_extended__t.html#af9391a0e26fc6ef4cc1a5f5c61689409',1,'LR11x0WifiResultExtended_t']]], - ['irqflags_1252',['irqFlags',['../struct_c_a_d_scan_config__t.html#ab390fd53aba1e32ae1b41aae4aa835a5',1,'CADScanConfig_t']]], - ['irqmask_1253',['irqMask',['../struct_c_a_d_scan_config__t.html#ae86870cda342f39ad417abdfcb832ac3',1,'CADScanConfig_t']]] + ['idx_1248',['idx',['../struct_lo_ra_w_a_n_channel__t.html#a9fc4b7ec0b298df267cc2c39ef12cfa0',1,'LoRaWANChannel_t']]], + ['info_1249',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]], + ['infolen_1250',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]], + ['init_1251',['init',['../class_radio_lib_c_r_c.html#a579acc51fe7a01b0b9b3f2e0e57b7d5f',1,'RadioLibCRC']]], + ['ioreg_1252',['ioReg',['../struct_l_r11x0_wifi_result_extended__t.html#af9391a0e26fc6ef4cc1a5f5c61689409',1,'LR11x0WifiResultExtended_t']]], + ['irqflags_1253',['irqFlags',['../struct_c_a_d_scan_config__t.html#ab390fd53aba1e32ae1b41aae4aa835a5',1,'CADScanConfig_t']]], + ['irqmask_1254',['irqMask',['../struct_c_a_d_scan_config__t.html#ae86870cda342f39ad417abdfcb832ac3',1,'CADScanConfig_t']]] ]; diff --git a/search/variables_9.js b/search/variables_9.js index a809dca1..0b593d74 100644 --- a/search/variables_9.js +++ b/search/variables_9.js @@ -1,4 +1,4 @@ var searchData= [ - ['joinnonce_1254',['joinNonce',['../struct_lo_ra_w_a_n_join_event__t.html#a935bc95eb2c02242c61f192fa2c68d8b',1,'LoRaWANJoinEvent_t']]] + ['joinnonce_1255',['joinNonce',['../struct_lo_ra_w_a_n_join_event__t.html#a935bc95eb2c02242c61f192fa2c68d8b',1,'LoRaWANJoinEvent_t']]] ]; diff --git a/search/variables_a.js b/search/variables_a.js index ba592b7e..df86f316 100644 --- a/search/variables_a.js +++ b/search/variables_a.js @@ -1,13 +1,13 @@ var searchData= [ - ['latitude_1255',['latitude',['../struct_l_r11x0_gnss_position__t.html#a1dc2c58c51b870cccf6542005f8afdc8',1,'LR11x0GnssPosition_t']]], - ['len_1256',['len',['../structtone__t.html#a7916c2e2d0011aead6f355076b8fb36c',1,'tone_t']]], - ['lendn_1257',['lenDn',['../struct_lo_ra_w_a_n_mac_command__t.html#a07d546268f6ac9ae191a7cca4791de37',1,'LoRaWANMacCommand_t']]], - ['length_1258',['length',['../struct_l_r11x0_wifi_result_extended__t.html#a403e9bde552ca9b07cdf49a2d295c563',1,'LR11x0WifiResultExtended_t']]], - ['lenup_1259',['lenUp',['../struct_lo_ra_w_a_n_mac_command__t.html#a89f71b4d17ad16089772ed070cc0949e',1,'LoRaWANMacCommand_t']]], - ['limit_1260',['limit',['../struct_r_s_s_i_scan_config__t.html#a8a9bf05648e82b49d43d6275ecf3cc3b',1,'RSSIScanConfig_t']]], - ['longitude_1261',['longitude',['../struct_l_r11x0_gnss_position__t.html#aa43d5bcce01522eb518cd8db0f73a057',1,'LR11x0GnssPosition_t']]], - ['lora_1262',['lora',['../union_data_rate__t.html#ab25c3fcaf1934cd9d6d5e9820749137d',1,'DataRate_t']]], - ['lr11xx_5ffirmware_5fimage_1263',['lr11xx_firmware_image',['../lr1110__transceiver__0307_8h.html#a3e84b323eea7cc20fb619e3d48818e64',1,'lr11xx_firmware_image(): lr1110_transceiver_0307.h'],['../lr1120__transceiver__0101_8h.html#a3e84b323eea7cc20fb619e3d48818e64',1,'lr11xx_firmware_image(): lr1120_transceiver_0101.h'],['../lr1120__transceiver__0102_8h.html#a3e84b323eea7cc20fb619e3d48818e64',1,'lr11xx_firmware_image(): lr1120_transceiver_0102.h']]], - ['lrfhss_1264',['lrFhss',['../union_data_rate__t.html#aa11056b982f023a4572dee8d6ac5f9ef',1,'DataRate_t']]] + ['latitude_1256',['latitude',['../struct_l_r11x0_gnss_position__t.html#a1dc2c58c51b870cccf6542005f8afdc8',1,'LR11x0GnssPosition_t']]], + ['len_1257',['len',['../structtone__t.html#a7916c2e2d0011aead6f355076b8fb36c',1,'tone_t']]], + ['lendn_1258',['lenDn',['../struct_lo_ra_w_a_n_mac_command__t.html#a07d546268f6ac9ae191a7cca4791de37',1,'LoRaWANMacCommand_t']]], + ['length_1259',['length',['../struct_l_r11x0_wifi_result_extended__t.html#a403e9bde552ca9b07cdf49a2d295c563',1,'LR11x0WifiResultExtended_t']]], + ['lenup_1260',['lenUp',['../struct_lo_ra_w_a_n_mac_command__t.html#a89f71b4d17ad16089772ed070cc0949e',1,'LoRaWANMacCommand_t']]], + ['limit_1261',['limit',['../struct_r_s_s_i_scan_config__t.html#a8a9bf05648e82b49d43d6275ecf3cc3b',1,'RSSIScanConfig_t']]], + ['longitude_1262',['longitude',['../struct_l_r11x0_gnss_position__t.html#aa43d5bcce01522eb518cd8db0f73a057',1,'LR11x0GnssPosition_t']]], + ['lora_1263',['lora',['../union_data_rate__t.html#ab25c3fcaf1934cd9d6d5e9820749137d',1,'DataRate_t']]], + ['lr11xx_5ffirmware_5fimage_1264',['lr11xx_firmware_image',['../lr1110__transceiver__0307_8h.html#a3e84b323eea7cc20fb619e3d48818e64',1,'lr11xx_firmware_image(): lr1110_transceiver_0307.h'],['../lr1120__transceiver__0101_8h.html#a3e84b323eea7cc20fb619e3d48818e64',1,'lr11xx_firmware_image(): lr1120_transceiver_0101.h'],['../lr1120__transceiver__0102_8h.html#a3e84b323eea7cc20fb619e3d48818e64',1,'lr11xx_firmware_image(): lr1120_transceiver_0102.h']]], + ['lrfhss_1265',['lrFhss',['../union_data_rate__t.html#aa11056b982f023a4572dee8d6ac5f9ef',1,'DataRate_t']]] ]; diff --git a/search/variables_b.js b/search/variables_b.js index 01eb03aa..fc097153 100644 --- a/search/variables_b.js +++ b/search/variables_b.js @@ -1,7 +1,7 @@ var searchData= [ - ['mac_1265',['mac',['../struct_l_r11x0_wifi_result__t.html#a9fb28ba0ff8e6625322b081a4bda5628',1,'LR11x0WifiResult_t']]], - ['mac0_1266',['mac0',['../struct_l_r11x0_wifi_result_extended__t.html#ae689651117f96ba356caea064cdeb191',1,'LR11x0WifiResultExtended_t']]], - ['mac2_1267',['mac2',['../struct_l_r11x0_wifi_result_extended__t.html#a530ba85cf4b0b41e519b2d89e37b2497',1,'LR11x0WifiResultExtended_t']]], - ['mode_1268',['mode',['../struct_module_1_1_rf_switch_mode__t.html#a2442217bfabfb124a3f46bb128aa7462',1,'Module::RfSwitchMode_t']]] + ['mac_1266',['mac',['../struct_l_r11x0_wifi_result__t.html#a9fb28ba0ff8e6625322b081a4bda5628',1,'LR11x0WifiResult_t']]], + ['mac0_1267',['mac0',['../struct_l_r11x0_wifi_result_extended__t.html#ae689651117f96ba356caea064cdeb191',1,'LR11x0WifiResultExtended_t']]], + ['mac2_1268',['mac2',['../struct_l_r11x0_wifi_result_extended__t.html#a530ba85cf4b0b41e519b2d89e37b2497',1,'LR11x0WifiResultExtended_t']]], + ['mode_1269',['mode',['../struct_module_1_1_rf_switch_mode__t.html#a2442217bfabfb124a3f46bb128aa7462',1,'Module::RfSwitchMode_t']]] ]; diff --git a/search/variables_c.js b/search/variables_c.js index a48942f8..3c6bb201 100644 --- a/search/variables_c.js +++ b/search/variables_c.js @@ -1,13 +1,13 @@ var searchData= [ - ['narrowgrid_1269',['narrowGrid',['../struct_lr_fhss_rate__t.html#a29dec307a472c34e9fafb10af3c4fb9c',1,'LrFhssRate_t']]], - ['nbtrans_1270',['nbTrans',['../struct_lo_ra_w_a_n_event__t.html#a6e46d7cf9c75ff511ad4d063692c16e7',1,'LoRaWANEvent_t']]], - ['newsession_1271',['newSession',['../struct_lo_ra_w_a_n_join_event__t.html#a5b233f8c9d2841b8db64df7f079ab0ee',1,'LoRaWANJoinEvent_t']]], - ['nextalmanacid_1272',['nextAlmanacId',['../struct_l_r11x0_gnss_almanac_status__t.html#aace4c0ad339bda11ee3c9c409f6492fb',1,'LR11x0GnssAlmanacStatus_t']]], - ['numchannels_1273',['numChannels',['../struct_lo_ra_w_a_n_channel_span__t.html#a50f5701ae19b79a0c8c487673135b2f2',1,'LoRaWANChannelSpan_t']]], - ['numrepeaters_1274',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]], - ['numsatsdet_1275',['numSatsDet',['../struct_l_r11x0_gnss_result__t.html#a9e3cdbdf86357bfd0226926d7c5d97e3',1,'LR11x0GnssResult_t']]], - ['numsatsused_1276',['numSatsUsed',['../struct_l_r11x0_gnss_position__t.html#afd8b7a02f519af12ddb7d0dba5288b3f',1,'LR11x0GnssPosition_t']]], - ['numtones_1277',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]], - ['numtxspans_1278',['numTxSpans',['../struct_lo_ra_w_a_n_band__t.html#ae58f859a72e64aa4a6fe218ba7e21c10',1,'LoRaWANBand_t']]] + ['narrowgrid_1270',['narrowGrid',['../struct_lr_fhss_rate__t.html#a29dec307a472c34e9fafb10af3c4fb9c',1,'LrFhssRate_t']]], + ['nbtrans_1271',['nbTrans',['../struct_lo_ra_w_a_n_event__t.html#a6e46d7cf9c75ff511ad4d063692c16e7',1,'LoRaWANEvent_t']]], + ['newsession_1272',['newSession',['../struct_lo_ra_w_a_n_join_event__t.html#a5b233f8c9d2841b8db64df7f079ab0ee',1,'LoRaWANJoinEvent_t']]], + ['nextalmanacid_1273',['nextAlmanacId',['../struct_l_r11x0_gnss_almanac_status__t.html#aace4c0ad339bda11ee3c9c409f6492fb',1,'LR11x0GnssAlmanacStatus_t']]], + ['numchannels_1274',['numChannels',['../struct_lo_ra_w_a_n_channel_span__t.html#a50f5701ae19b79a0c8c487673135b2f2',1,'LoRaWANChannelSpan_t']]], + ['numrepeaters_1275',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]], + ['numsatsdet_1276',['numSatsDet',['../struct_l_r11x0_gnss_result__t.html#a9e3cdbdf86357bfd0226926d7c5d97e3',1,'LR11x0GnssResult_t']]], + ['numsatsused_1277',['numSatsUsed',['../struct_l_r11x0_gnss_position__t.html#afd8b7a02f519af12ddb7d0dba5288b3f',1,'LR11x0GnssPosition_t']]], + ['numtones_1278',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]], + ['numtxspans_1279',['numTxSpans',['../struct_lo_ra_w_a_n_band__t.html#ae58f859a72e64aa4a6fe218ba7e21c10',1,'LoRaWANBand_t']]] ]; diff --git a/search/variables_d.js b/search/variables_d.js index 80ac2f80..9832c3d4 100644 --- a/search/variables_d.js +++ b/search/variables_d.js @@ -1,5 +1,5 @@ var searchData= [ - ['origin_1279',['origin',['../struct_l_r11x0_wifi_result__t.html#aedbfd390bee0e0995321e0a5caedac53',1,'LR11x0WifiResult_t']]], - ['out_1280',['out',['../class_radio_lib_c_r_c.html#a46616ef58e9eeeca646de0c9fe681050',1,'RadioLibCRC']]] + ['origin_1280',['origin',['../struct_l_r11x0_wifi_result__t.html#aedbfd390bee0e0995321e0a5caedac53',1,'LR11x0WifiResult_t']]], + ['out_1281',['out',['../class_radio_lib_c_r_c.html#a46616ef58e9eeeca646de0c9fe681050',1,'RadioLibCRC']]] ]; diff --git a/search/variables_e.js b/search/variables_e.js index 5df910b9..49b3a9b4 100644 --- a/search/variables_e.js +++ b/search/variables_e.js @@ -1,13 +1,13 @@ var searchData= [ - ['parsestatuscb_1281',['parseStatusCb',['../struct_module_1_1_s_p_i_config__t.html#a9619dcb8b269bcbd125e5a05e6c0fc77',1,'Module::SPIConfig_t']]], - ['payloadlenmax_1282',['payloadLenMax',['../struct_lo_ra_w_a_n_band__t.html#a9b8143ac9bbf3ed45e7cc80fc71ce055',1,'LoRaWANBand_t']]], - ['periodbeacon_1283',['periodBeacon',['../struct_l_r11x0_wifi_result_full__t.html#a0e2539bf62ddd7fb7a9671f4e8c58bf8',1,'LR11x0WifiResultFull_t']]], - ['persist_1284',['persist',['../struct_lo_ra_w_a_n_mac_command__t.html#aa253350bc95c821bf42eaee170922355',1,'LoRaWANMacCommand_t']]], - ['phioffset_1285',['phiOffset',['../struct_l_r11x0_wifi_result_full__t.html#a37d3203c39ca6d6f0ab42662a09bab13',1,'LR11x0WifiResultFull_t']]], - ['poly_1286',['poly',['../class_radio_lib_c_r_c.html#af3942e08bde9d9d127f735bd10392f6d',1,'RadioLibCRC']]], - ['power_1287',['power',['../struct_lo_ra_w_a_n_event__t.html#a49eebe64d351bb2e91901ef8fae044ff',1,'LoRaWANEvent_t']]], - ['powermax_1288',['powerMax',['../struct_lo_ra_w_a_n_band__t.html#a43fdafd540c93348f9b4a8958e021a4c',1,'LoRaWANBand_t']]], - ['powernumsteps_1289',['powerNumSteps',['../struct_lo_ra_w_a_n_band__t.html#aa22d7d7670846b36d3104439d18e5f15',1,'LoRaWANBand_t']]], - ['protocolid_1290',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]] + ['parsestatuscb_1282',['parseStatusCb',['../struct_module_1_1_s_p_i_config__t.html#a9619dcb8b269bcbd125e5a05e6c0fc77',1,'Module::SPIConfig_t']]], + ['payloadlenmax_1283',['payloadLenMax',['../struct_lo_ra_w_a_n_band__t.html#a9b8143ac9bbf3ed45e7cc80fc71ce055',1,'LoRaWANBand_t']]], + ['periodbeacon_1284',['periodBeacon',['../struct_l_r11x0_wifi_result_full__t.html#a0e2539bf62ddd7fb7a9671f4e8c58bf8',1,'LR11x0WifiResultFull_t']]], + ['persist_1285',['persist',['../struct_lo_ra_w_a_n_mac_command__t.html#aa253350bc95c821bf42eaee170922355',1,'LoRaWANMacCommand_t']]], + ['phioffset_1286',['phiOffset',['../struct_l_r11x0_wifi_result_full__t.html#a37d3203c39ca6d6f0ab42662a09bab13',1,'LR11x0WifiResultFull_t']]], + ['poly_1287',['poly',['../class_radio_lib_c_r_c.html#af3942e08bde9d9d127f735bd10392f6d',1,'RadioLibCRC']]], + ['power_1288',['power',['../struct_lo_ra_w_a_n_event__t.html#a49eebe64d351bb2e91901ef8fae044ff',1,'LoRaWANEvent_t']]], + ['powermax_1289',['powerMax',['../struct_lo_ra_w_a_n_band__t.html#a43fdafd540c93348f9b4a8958e021a4c',1,'LoRaWANBand_t']]], + ['powernumsteps_1290',['powerNumSteps',['../struct_lo_ra_w_a_n_band__t.html#aa22d7d7670846b36d3104439d18e5f15',1,'LoRaWANBand_t']]], + ['protocolid_1291',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]] ]; diff --git a/search/variables_f.js b/search/variables_f.js index 8254b43f..e0d202e7 100644 --- a/search/variables_f.js +++ b/search/variables_f.js @@ -1,16 +1,16 @@ var searchData= [ - ['radiolib_5flr1110_5ffirmware_5fattr_1291',['RADIOLIB_LR1110_FIRMWARE_ATTR',['../lr1121__transceiver__0103_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1121_transceiver_0103.h'],['../lr1120__transceiver__0201_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1120_transceiver_0201.h'],['../lr1110__transceiver__0401_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0401.h'],['../lr1110__transceiver__0306_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0305_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0305.h']]], - ['rate_1292',['rate',['../struct_l_r11x0_wifi_result_extended__t.html#a16a6732a8af0332f64c0f6bcc0d5257f',1,'LR11x0WifiResultExtended_t']]], - ['rcvseqnumber_1293',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], - ['refin_1294',['refIn',['../class_radio_lib_c_r_c.html#ac65a358753efd05067c19fcf1098ec04',1,'RadioLibCRC']]], - ['refout_1295',['refOut',['../class_radio_lib_c_r_c.html#ab1b5aa578ed5818a7618df8c6cf98087',1,'RadioLibCRC']]], - ['repeatercallsigns_1296',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]], - ['repeaterssids_1297',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]], - ['reply_1298',['reply',['../class_bell_client.html#a9233e10bc794af85e3e86b4ec2a8746d',1,'BellClient']]], - ['ressize_1299',['resSize',['../struct_l_r11x0_gnss_result__t.html#a2fcd901f5815f3e4760f61d2bc7a7a9b',1,'LR11x0GnssResult_t']]], - ['rfswitch_5fmax_5fpins_1300',['RFSWITCH_MAX_PINS',['../class_module.html#a0c11551e12579bbabf57b19e12555b3c',1,'Module']]], - ['rssi_1301',['rssi',['../struct_l_r11x0_wifi_result__t.html#acac3f837ac4fa56e5fda3221f89f3d9f',1,'LR11x0WifiResult_t::rssi()'],['../union_channel_scan_config__t.html#ad728b1bd8f0410660f51df0b27f2797e',1,'ChannelScanConfig_t::rssi()']]], - ['rx1span_1302',['rx1Span',['../struct_lo_ra_w_a_n_band__t.html#af8def1e0b5c3dc122557f71f5637a529',1,'LoRaWANBand_t']]], - ['rx2_1303',['rx2',['../struct_lo_ra_w_a_n_band__t.html#ae3ed10eddc647a6f770121a1662a854f',1,'LoRaWANBand_t']]] + ['radiolib_5flr1110_5ffirmware_5fattr_1292',['RADIOLIB_LR1110_FIRMWARE_ATTR',['../lr1121__transceiver__0103_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1121_transceiver_0103.h'],['../lr1120__transceiver__0201_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1120_transceiver_0201.h'],['../lr1110__transceiver__0401_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0401.h'],['../lr1110__transceiver__0306_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0305_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0305.h']]], + ['rate_1293',['rate',['../struct_l_r11x0_wifi_result_extended__t.html#a16a6732a8af0332f64c0f6bcc0d5257f',1,'LR11x0WifiResultExtended_t']]], + ['rcvseqnumber_1294',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], + ['refin_1295',['refIn',['../class_radio_lib_c_r_c.html#ac65a358753efd05067c19fcf1098ec04',1,'RadioLibCRC']]], + ['refout_1296',['refOut',['../class_radio_lib_c_r_c.html#ab1b5aa578ed5818a7618df8c6cf98087',1,'RadioLibCRC']]], + ['repeatercallsigns_1297',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]], + ['repeaterssids_1298',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]], + ['reply_1299',['reply',['../class_bell_client.html#a9233e10bc794af85e3e86b4ec2a8746d',1,'BellClient']]], + ['ressize_1300',['resSize',['../struct_l_r11x0_gnss_result__t.html#a2fcd901f5815f3e4760f61d2bc7a7a9b',1,'LR11x0GnssResult_t']]], + ['rfswitch_5fmax_5fpins_1301',['RFSWITCH_MAX_PINS',['../class_module.html#a0c11551e12579bbabf57b19e12555b3c',1,'Module']]], + ['rssi_1302',['rssi',['../struct_l_r11x0_wifi_result__t.html#acac3f837ac4fa56e5fda3221f89f3d9f',1,'LR11x0WifiResult_t::rssi()'],['../union_channel_scan_config__t.html#ad728b1bd8f0410660f51df0b27f2797e',1,'ChannelScanConfig_t::rssi()']]], + ['rx1span_1303',['rx1Span',['../struct_lo_ra_w_a_n_band__t.html#af8def1e0b5c3dc122557f71f5637a529',1,'LoRaWANBand_t']]], + ['rx2_1304',['rx2',['../struct_lo_ra_w_a_n_band__t.html#ae3ed10eddc647a6f770121a1662a854f',1,'LoRaWANBand_t']]] ]; diff --git a/todo.html b/todo.html index 81e093c4..8d45111f 100644 --- a/todo.html +++ b/todo.html @@ -97,7 +97,7 @@ $(document).ready(function(){initNavTree('todo.html',''); initResizable(); });
    use header as address field?
    Member Si443x::transmitDirect (uint32_t frf=0) override
    integers only
    -
    Member SX1268::setFrequency (float freq, bool calibrate)
    +
    Member SX1268::setFrequency (float freq, bool skipCalibration)
    integers only (all modules - frequency, data rate, bandwidth etc.)
    Member SX1282::SX1282 (Module *mod)
    implement advanced ranging