diff --git a/_l_l_c_c68_8h_source.html b/_l_l_c_c68_8h_source.html index d2c5267e..f83fc75c 100644 --- a/_l_l_c_c68_8h_source.html +++ b/_l_l_c_c68_8h_source.html @@ -118,36 +118,42 @@ $(document).ready(function(){initNavTree('_l_l_c_c68_8h_source.html',''); initRe
25 LLCC68(Module* mod); // cppcheck-suppress noExplicitConstructor
26
42 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 pwr = 10, uint16_t preambleLength = 8, float tcxoVoltage = 0, bool useRegulatorLDO = false);
-
43
-
44 // configuration methods
-
45
-
51 int16_t setBandwidth(float bw) override;
-
52
-
58 int16_t setSpreadingFactor(uint8_t sf) override;
-
59
-
65 int16_t setDataRate(DataRate_t dr) override;
-
66
-
72 int16_t checkDataRate(DataRate_t dr) override;
-
73
-
80 int16_t setModem(ModemType_t modem) override;
-
81
-
82#if !RADIOLIB_GODMODE
-
83 private:
-
84#endif
-
85
-
86};
+
43
+
58 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);
+
59
+
73 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);
+
74
+
75 // configuration methods
+
76
+
82 int16_t setBandwidth(float bw) override;
+
83
+
89 int16_t setSpreadingFactor(uint8_t sf) override;
+
90
+
96 int16_t setDataRate(DataRate_t dr) override;
+
97
+
103 int16_t checkDataRate(DataRate_t dr) override;
+
104
+
111 int16_t setModem(ModemType_t modem) override;
+
112
+
113#if !RADIOLIB_GODMODE
+
114 private:
+
115#endif
+
116
+
117};
-
87
-
88#endif
-
89
-
90#endif
+
118
+
119#endif
+
120
+
121#endif
LLCC68
Derived class for LLCC68 modules.
Definition LLCC68.h:19
-
LLCC68::checkDataRate
int16_t checkDataRate(DataRate_t dr) override
Check the data rate can be configured by this module.
Definition LLCC68.cpp:92
+
LLCC68::checkDataRate
int16_t checkDataRate(DataRate_t dr) override
Check the data rate can be configured by this module.
Definition LLCC68.cpp:142
LLCC68::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 pwr=10, uint16_t preambleLength=8, float tcxoVoltage=0, bool useRegulatorLDO=false)
Initialization method for LoRa modem.
Definition LLCC68.cpp:9
-
LLCC68::setDataRate
int16_t setDataRate(DataRate_t dr) override
Set data.
Definition LLCC68.cpp:63
-
LLCC68::setBandwidth
int16_t setBandwidth(float bw) override
Sets LoRa bandwidth. Allowed values are 125.0, 250.0 and 500.0 kHz.
Definition LLCC68.cpp:40
-
LLCC68::setSpreadingFactor
int16_t setSpreadingFactor(uint8_t sf) override
Sets LoRa spreading factor. Allowed values range from 5 to 11, depending on currently set spreading f...
Definition LLCC68.cpp:45
-
LLCC68::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 LLCC68.cpp:126
+
LLCC68::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 LLCC68.cpp:40
+
LLCC68::setDataRate
int16_t setDataRate(DataRate_t dr) override
Set data.
Definition LLCC68.cpp:113
+
LLCC68::setBandwidth
int16_t setBandwidth(float bw) override
Sets LoRa bandwidth. Allowed values are 125.0, 250.0 and 500.0 kHz.
Definition LLCC68.cpp:90
+
LLCC68::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 LLCC68.cpp:65
+
LLCC68::setSpreadingFactor
int16_t setSpreadingFactor(uint8_t sf) override
Sets LoRa spreading factor. Allowed values range from 5 to 11, depending on currently set spreading f...
Definition LLCC68.cpp:95
+
LLCC68::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 LLCC68.cpp:176
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition Module.h:73
SX1262
Derived class for SX1262 modules.
Definition SX1262.h:22
DataRate_t
Common data rate structure.
Definition PhysicalLayer.h:74
diff --git a/class_l_l_c_c68-members.html b/class_l_l_c_c68-members.html index b61db51b..0825e922 100644 --- a/class_l_l_c_c68-members.html +++ b/class_l_l_c_c68-members.html @@ -100,9 +100,9 @@ $(document).ready(function(){initNavTree('class_l_l_c_c68.html',''); initResizab available()PhysicalLayer 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 pwr=10, uint16_t preambleLength=8, float tcxoVoltage=0, bool useRegulatorLDO=false)LLCC68virtual SX126x::begin(uint8_t cr, uint8_t syncWord, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO=false)SX126x - 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)SX1262virtual + 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)LLCC68virtual SX126x::beginFSK(float br, float freqDev, float rxBw, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO=false)SX126x - 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 + 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)LLCC68 SX126x::beginLRFHSS(uint8_t bw, uint8_t cr, bool narrowGrid, float tcxoVoltage, bool useRegulatorLDO=false)SX126x calculateRxTimeout(RadioLibTime_t timeoutUs) overrideSX126xvirtual calibrateImage(float freq)SX126x diff --git a/class_l_l_c_c68.html b/class_l_l_c_c68.html index 3be5f87e..e54a2abe 100644 --- a/class_l_l_c_c68.html +++ b/class_l_l_c_c68.html @@ -121,6 +121,12 @@ Public Member Functions 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 pwr=10, uint16_t preambleLength=8, float tcxoVoltage=0, bool useRegulatorLDO=false)  Initialization method for LoRa modem.
  +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.
+  +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!
+  int16_t setBandwidth (float bw) override  Sets LoRa bandwidth. Allowed values are 125.0, 250.0 and 500.0 kHz.
  @@ -140,9 +146,6 @@ Public Member Functions  SX1262 (Module *mod)  Default constructor.
  -virtual 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.
-  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!
  @@ -651,6 +654,169 @@ bool standbyXOSC<

Reimplemented from SX1262.

+ + + +

◆ beginFSK()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
int16_t LLCC68::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 
)
+
+virtual
+
+ +

Initialization method for FSK modem.

+
Parameters
+ + + + + + + + + +
freqCarrier frequency in MHz. Defaults to 434.0 MHz.
brFSK bit rate in kbps. Defaults to 4.8 kbps.
freqDevFrequency deviation from carrier frequency in kHz. Defaults to 5.0 kHz.
rxBwReceiver bandwidth in kHz. Defaults to 156.2 kHz.
powerOutput power in dBm. Defaults to 10 dBm.
preambleLengthFSK preamble length in bits. Defaults to 16 bits.
tcxoVoltageTCXO reference voltage to be set on DIO3. Defaults to 1.6 V. If you are seeing -706/-707 error codes, it likely means you are using non-0 value for module with XTAL. To use XTAL, either set this value to 0, or set SX126x::XTAL to true.
useRegulatorLDOWhether to use only LDO regulator (true) or DC-DC regulator (false). Defaults to false.
+
+
+
Returns
Status Codes
+ +

Reimplemented from SX1262.

+ +
+
+ +

◆ beginLRFHSS()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
int16_t LLCC68::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!

+
Parameters
+ + + + + + + + +
freqCarrier frequency in MHz. Defaults to 434.0 MHz.
bwLR-FHSS bandwidth, one of RADIOLIB_SX126X_LR_FHSS_BW_* values. Defaults to 722.66 kHz.
crLR-FHSS coding rate, one of RADIOLIB_SX126X_LR_FHSS_CR_* values. Defaults to 2/3 coding rate.
narrowGridWhether to use narrow (3.9 kHz) or wide (25.39 kHz) grid spacing. Defaults to true (narrow/non-FCC) grid.
powerOutput power in dBm. Defaults to 10 dBm.
tcxoVoltageTCXO reference voltage to be set. Defaults to 1.6 V. If you are seeing -706/-707 error codes, it likely means you are using non-0 value for module with XTAL. To use XTAL, either set this value to 0, or set SX126x::XTAL to true.
useRegulatorLDOWhether to use only LDO regulator (true) or DC-DC regulator (false). Defaults to false.
+
+
+
Returns
Status Codes
+
diff --git a/class_l_l_c_c68.js b/class_l_l_c_c68.js index c4194220..e53e286b 100644 --- a/class_l_l_c_c68.js +++ b/class_l_l_c_c68.js @@ -2,6 +2,8 @@ var class_l_l_c_c68 = [ [ "LLCC68", "class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261", null ], [ "begin", "class_l_l_c_c68.html#aa835ee301567f7dac079b42a2055c38c", null ], + [ "beginFSK", "class_l_l_c_c68.html#ab81931957180533a2d61a90bf7094b73", null ], + [ "beginLRFHSS", "class_l_l_c_c68.html#ae9a0480a268b338b16c4d9abdac5dbee", null ], [ "checkDataRate", "class_l_l_c_c68.html#a708183645ec0b9fec54d6369e7b1345f", null ], [ "setBandwidth", "class_l_l_c_c68.html#ae1badfd85c9f1c79bd6868c0528a5f17", null ], [ "setDataRate", "class_l_l_c_c68.html#ac630770441cadc547892173bde7504f9", null ], diff --git a/class_s_x1262.html b/class_s_x1262.html index d61eb7e6..1b6a730a 100644 --- a/class_s_x1262.html +++ b/class_s_x1262.html @@ -728,7 +728,7 @@ bool standbyXOSC<
Returns
Status Codes
-

Reimplemented in STM32WLx.

+

Reimplemented in LLCC68, and STM32WLx.

diff --git a/functions_b.html b/functions_b.html index b9cee911..3b681974 100644 --- a/functions_b.html +++ b/functions_b.html @@ -101,11 +101,11 @@ $(document).ready(function(){initNavTree('functions_b.html',''); initResizable()
  • beginABP() : LoRaWANNode
  • beginBLE() : SX128x
  • beginFLRC() : SX128x
  • -
  • beginFSK() : STM32WLx, SX1262, SX1268, SX126x, SX1272, SX1276, SX1277, SX1278, SX1279, SX127x
  • +
  • beginFSK() : LLCC68, STM32WLx, SX1262, SX1268, SX126x, SX1272, SX1276, SX1277, SX1278, SX1279, SX127x
  • beginFSK4() : CC1101
  • beginGFSK() : LR1110, LR1120, LR11x0, SX128x
  • beginGNSS() : LR11x0
  • -
  • beginLRFHSS() : LR1110, LR1120, LR11x0, SX1262, SX1268, SX126x
  • +
  • beginLRFHSS() : LLCC68, LR1110, LR1120, LR11x0, SX1262, SX1268, SX126x
  • beginOTAA() : LoRaWANNode
  • beidou : LR11x0GnssAlmanacStatus_t
  • beidouSvNoAlmanacFlags : LR11x0GnssAlmanacStatus_t
  • diff --git a/functions_func_b.html b/functions_func_b.html index 34e81e19..52fe3a19 100644 --- a/functions_func_b.html +++ b/functions_func_b.html @@ -97,11 +97,11 @@ $(document).ready(function(){initNavTree('functions_func_b.html',''); initResiza
  • beginABP() : LoRaWANNode
  • beginBLE() : SX128x
  • beginFLRC() : SX128x
  • -
  • beginFSK() : STM32WLx, SX1262, SX1268, SX126x, SX1272, SX1276, SX1277, SX1278, SX1279, SX127x
  • +
  • beginFSK() : LLCC68, STM32WLx, SX1262, SX1268, SX126x, SX1272, SX1276, SX1277, SX1278, SX1279, SX127x
  • beginFSK4() : CC1101
  • beginGFSK() : LR1110, LR1120, LR11x0, SX128x
  • beginGNSS() : LR11x0
  • -
  • beginLRFHSS() : LR1110, LR1120, LR11x0, SX1262, SX1268, SX126x
  • +
  • beginLRFHSS() : LLCC68, LR1110, LR1120, LR11x0, SX1262, SX1268, SX126x
  • beginOTAA() : LoRaWANNode
  • BellClient() : BellClient
  • byteArr() : ITA2String
  • diff --git a/functions_func_g.html b/functions_func_g.html index ba39eb01..1d31817e 100644 --- a/functions_func_g.html +++ b/functions_func_g.html @@ -115,9 +115,9 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza
  • getGnssSatellites() : LR11x0
  • getGpio() : Module
  • getIrq() : Module
  • -
  • getIrqFlags() : LR11x0, PhysicalLayer, SX126x
  • +
  • getIrqFlags() : LR11x0, PhysicalLayer, SX126x, SX127x
  • getIRQFlags() : SX127x
  • -
  • getIrqFlags() : SX127x, SX128x
  • +
  • getIrqFlags() : SX128x
  • getIrqMapped() : PhysicalLayer
  • getIrqStatus() : LR11x0, SX128x
  • getLastToA() : LoRaWANNode
  • diff --git a/functions_g.html b/functions_g.html index 5db6e1bb..6b360624 100644 --- a/functions_g.html +++ b/functions_g.html @@ -115,9 +115,9 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable()
  • getGnssSatellites() : LR11x0
  • getGpio() : Module
  • getIrq() : Module
  • -
  • getIrqFlags() : LR11x0, PhysicalLayer, SX126x
  • +
  • getIrqFlags() : LR11x0, PhysicalLayer, SX126x, SX127x
  • getIRQFlags() : SX127x
  • -
  • getIrqFlags() : SX127x, SX128x
  • +
  • getIrqFlags() : SX128x
  • getIrqMapped() : PhysicalLayer
  • getIrqStatus() : LR11x0, SX128x
  • getLastToA() : LoRaWANNode
  • diff --git a/navtreedata.js b/navtreedata.js index db74c454..fbc0a890 100644 --- a/navtreedata.js +++ b/navtreedata.js @@ -55,12 +55,12 @@ var NAVTREE = var NAVTREEINDEX = [ "_a_f_s_k_8h_source.html", -"class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb", -"class_physical_layer.html#ac88f9185b5e9fdc1d89df9797dcdd9b7", -"class_s_x1233.html#aec5f4cb505e9c1f200405e6535d2fc47", -"class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359", -"classn_r_f24.html#ada508497ee2e70170da3afe078e2fe0e", -"lr1120__transceiver__0101_8h.html#a3e84b323eea7cc20fb619e3d48818e64" +"class_l_r1120.html#a4c6b867146f00de5c45aeb4164d51cc5", +"class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966", +"class_s_x1233.html#a23d2fbf2473e48d46e341e6afe31f82f", +"class_s_x127x.html#a6cbc4c256d37f9cdabf9e5f2ef16aa92", +"classn_r_f24.html#aca941c9235ba1212257288554eb4b7fe", +"lr1110__transceiver__0401_8h_source.html" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/navtreeindex0.js b/navtreeindex0.js index 26e812da..a6152419 100644 --- a/navtreeindex0.js +++ b/navtreeindex0.js @@ -224,13 +224,15 @@ var NAVTREEINDEX0 = "class_i_t_a2_string.html#addb6c39167aa5da53fb72e9a94c9c8f5":[3,0,14,0], "class_i_t_a2_string.html#afde24c931997581878953660192e09a2":[3,0,14,3], "class_l_l_c_c68.html":[3,0,15], -"class_l_l_c_c68.html#a708183645ec0b9fec54d6369e7b1345f":[3,0,15,2], +"class_l_l_c_c68.html#a708183645ec0b9fec54d6369e7b1345f":[3,0,15,4], "class_l_l_c_c68.html#aa835ee301567f7dac079b42a2055c38c":[3,0,15,1], +"class_l_l_c_c68.html#ab81931957180533a2d61a90bf7094b73":[3,0,15,2], "class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261":[3,0,15,0], -"class_l_l_c_c68.html#ac630770441cadc547892173bde7504f9":[3,0,15,4], -"class_l_l_c_c68.html#ae1badfd85c9f1c79bd6868c0528a5f17":[3,0,15,3], -"class_l_l_c_c68.html#aec65cb4a7a577c46573c9b0757dc52f4":[3,0,15,6], -"class_l_l_c_c68.html#aee4457d48c708f05154e931eed05c691":[3,0,15,5], +"class_l_l_c_c68.html#ac630770441cadc547892173bde7504f9":[3,0,15,6], +"class_l_l_c_c68.html#ae1badfd85c9f1c79bd6868c0528a5f17":[3,0,15,5], +"class_l_l_c_c68.html#ae9a0480a268b338b16c4d9abdac5dbee":[3,0,15,3], +"class_l_l_c_c68.html#aec65cb4a7a577c46573c9b0757dc52f4":[3,0,15,8], +"class_l_l_c_c68.html#aee4457d48c708f05154e931eed05c691":[3,0,15,7], "class_l_r1110.html":[3,0,25], "class_l_r1110.html#a18f525740237b023056a8ca6f3671c6a":[3,0,25,8], "class_l_r1110.html#a4e492901900ad1d85c818ec473b3d123":[3,0,25,0], @@ -247,7 +249,5 @@ var NAVTREEINDEX0 = "class_l_r1120.html#a0393071d4403d06c665f28c49e755382":[3,0,26,1], "class_l_r1120.html#a1b1321eb695e4a6b583074bb92c33193":[3,0,26,9], "class_l_r1120.html#a2e2ea0a2f6d3a8d81e0f2be35848bbc7":[3,0,26,10], -"class_l_r1120.html#a369b667c81e1ec724148b401c5aad79d":[3,0,26,5], -"class_l_r1120.html#a4c6b867146f00de5c45aeb4164d51cc5":[3,0,26,2], -"class_l_r1120.html#a6cd250e0145ed19f2f91ed96a57a825e":[3,0,26,8] +"class_l_r1120.html#a369b667c81e1ec724148b401c5aad79d":[3,0,26,5] }; diff --git a/navtreeindex1.js b/navtreeindex1.js index 003839ca..30c75fa9 100644 --- a/navtreeindex1.js +++ b/navtreeindex1.js @@ -1,5 +1,7 @@ var NAVTREEINDEX1 = { +"class_l_r1120.html#a4c6b867146f00de5c45aeb4164d51cc5":[3,0,26,2], +"class_l_r1120.html#a6cd250e0145ed19f2f91ed96a57a825e":[3,0,26,8], "class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb":[3,0,26,6], "class_l_r1120.html#ac34c2ec79e4a36cf0423acb308538811":[3,0,26,7], "class_l_r1120.html#acf6ea475643c6eba63133641a8681a8f":[3,0,26,4], @@ -247,7 +249,5 @@ var NAVTREEINDEX1 = "class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b":[3,0,43,19], "class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26":[3,0,43,1], "class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,43,29], -"class_physical_layer.html#abd9e39cc745acbf084cfa0d3f4d10718":[3,0,43,31], -"class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966":[3,0,43,38], -"class_physical_layer.html#ac282bb78da4f4da4661dce191cbd6d87":[3,0,43,8] +"class_physical_layer.html#abd9e39cc745acbf084cfa0d3f4d10718":[3,0,43,31] }; diff --git a/navtreeindex2.js b/navtreeindex2.js index c5093380..1404a8bc 100644 --- a/navtreeindex2.js +++ b/navtreeindex2.js @@ -1,5 +1,7 @@ var NAVTREEINDEX2 = { +"class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966":[3,0,43,38], +"class_physical_layer.html#ac282bb78da4f4da4661dce191cbd6d87":[3,0,43,8], "class_physical_layer.html#ac88f9185b5e9fdc1d89df9797dcdd9b7":[3,0,43,58], "class_physical_layer.html#acb45b2342400a03a914a91d2ac7fb488":[3,0,43,40], "class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018":[3,0,43,52], @@ -247,7 +249,5 @@ var NAVTREEINDEX2 = "class_s_x1231.html":[3,0,70], "class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244":[3,0,70,1], "class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269":[3,0,70,0], -"class_s_x1233.html":[3,0,71], -"class_s_x1233.html#a23d2fbf2473e48d46e341e6afe31f82f":[3,0,71,0], -"class_s_x1233.html#a98e0248cfcca7158261f7ebb31e0aa9f":[3,0,71,2] +"class_s_x1233.html":[3,0,71] }; diff --git a/navtreeindex3.js b/navtreeindex3.js index fafc7310..8b56559b 100644 --- a/navtreeindex3.js +++ b/navtreeindex3.js @@ -1,5 +1,7 @@ var NAVTREEINDEX3 = { +"class_s_x1233.html#a23d2fbf2473e48d46e341e6afe31f82f":[3,0,71,0], +"class_s_x1233.html#a98e0248cfcca7158261f7ebb31e0aa9f":[3,0,71,2], "class_s_x1233.html#aec5f4cb505e9c1f200405e6535d2fc47":[3,0,71,1], "class_s_x1261.html":[3,0,72], "class_s_x1261.html#a3d197bb8a301f3594c7bfa1c9375aef1":[3,0,72,2], @@ -247,7 +249,5 @@ var NAVTREEINDEX3 = "class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c":[3,0,82,24], "class_s_x127x.html#a5b79dae55315cdf25e530db77eeb140f":[3,0,82,37], "class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef":[3,0,82,50], -"class_s_x127x.html#a66fe001474583d490df1d0b38260bf8e":[3,0,82,2], -"class_s_x127x.html#a6cbc4c256d37f9cdabf9e5f2ef16aa92":[3,0,82,11], -"class_s_x127x.html#a6fa5723724393576ed597509200e17d1":[3,0,82,87] +"class_s_x127x.html#a66fe001474583d490df1d0b38260bf8e":[3,0,82,2] }; diff --git a/navtreeindex4.js b/navtreeindex4.js index ab4f2312..1b43fc43 100644 --- a/navtreeindex4.js +++ b/navtreeindex4.js @@ -1,5 +1,7 @@ var NAVTREEINDEX4 = { +"class_s_x127x.html#a6cbc4c256d37f9cdabf9e5f2ef16aa92":[3,0,82,11], +"class_s_x127x.html#a6fa5723724393576ed597509200e17d1":[3,0,82,87], "class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359":[3,0,82,19], "class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb":[3,0,82,62], "class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823":[3,0,82,5], @@ -247,7 +249,5 @@ var NAVTREEINDEX4 = "classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,41,12], "classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3":[3,0,41,24], "classn_r_f24.html#ac1c3419442d93abeede39e7fda4db62e":[3,0,41,17], -"classn_r_f24.html#ac3595667329715aef0e9f8d85f4116c4":[3,0,41,28], -"classn_r_f24.html#aca941c9235ba1212257288554eb4b7fe":[3,0,41,16], -"classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37":[3,0,41,9] +"classn_r_f24.html#ac3595667329715aef0e9f8d85f4116c4":[3,0,41,28] }; diff --git a/navtreeindex5.js b/navtreeindex5.js index ba7ca04b..55a38921 100644 --- a/navtreeindex5.js +++ b/navtreeindex5.js @@ -1,5 +1,7 @@ var NAVTREEINDEX5 = { +"classn_r_f24.html#aca941c9235ba1212257288554eb4b7fe":[3,0,41,16], +"classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37":[3,0,41,9], "classn_r_f24.html#ada508497ee2e70170da3afe078e2fe0e":[3,0,41,41], "classn_r_f24.html#af0c21ff66c011dfdc1ad12bc7dd11c2f":[3,0,41,6], "classn_r_f24.html#af79757dbbd62e080c1bad2e608ab940c":[3,0,41,38], @@ -40,8 +42,8 @@ var NAVTREEINDEX5 = "dir_ed12d23d857ca7061030f8751e72e77c.html":[4,0,0,1,10], "dir_f980efad9544c0545d0fa50a84ff12f2.html":[4,0,0,1,9], "files.html":[4,0], -"functions.html":[3,3,0,0], "functions.html":[3,3,0], +"functions.html":[3,3,0,0], "functions_b.html":[3,3,0,1], "functions_c.html":[3,3,0,2], "functions_d.html":[3,3,0,3], @@ -49,8 +51,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,0], "functions_func.html":[3,3,1], +"functions_func.html":[3,3,1,0], "functions_func_b.html":[3,3,1,1], "functions_func_c.html":[3,3,1,2], "functions_func_d.html":[3,3,1,3], @@ -247,7 +249,5 @@ var NAVTREEINDEX5 = "lr1110__transceiver__0401_8h.html#a41b3993acc55d29c9be76a82718c2ba4":[4,0,0,1,2,0,6,2], "lr1110__transceiver__0401_8h.html#a9d71ed93e8016b97a4d70b4194f622db":[4,0,0,1,2,0,6,3], "lr1110__transceiver__0401_8h.html#aa6490d72623bacfc624619b3c378ac5d":[4,0,0,1,2,0,6,0], -"lr1110__transceiver__0401_8h.html#abc3d6c6ac5598d4ced54b6429770b305":[4,0,0,1,2,0,6,1], -"lr1110__transceiver__0401_8h_source.html":[4,0,0,1,2,0,6], -"lr1120__transceiver__0101_8h.html":[4,0,0,1,2,0,7] +"lr1110__transceiver__0401_8h.html#abc3d6c6ac5598d4ced54b6429770b305":[4,0,0,1,2,0,6,1] }; diff --git a/navtreeindex6.js b/navtreeindex6.js index fa257c00..1dc42bbe 100644 --- a/navtreeindex6.js +++ b/navtreeindex6.js @@ -1,5 +1,7 @@ var NAVTREEINDEX6 = { +"lr1110__transceiver__0401_8h_source.html":[4,0,0,1,2,0,6], +"lr1120__transceiver__0101_8h.html":[4,0,0,1,2,0,7], "lr1120__transceiver__0101_8h.html#a3e84b323eea7cc20fb619e3d48818e64":[4,0,0,1,2,0,7,3], "lr1120__transceiver__0101_8h.html#a41b3993acc55d29c9be76a82718c2ba4":[4,0,0,1,2,0,7,2], "lr1120__transceiver__0101_8h.html#aa6490d72623bacfc624619b3c378ac5d":[4,0,0,1,2,0,7,0], diff --git a/search/all_1.js b/search/all_1.js index 932b29d8..8ef03d60 100644 --- a/search/all_1.js +++ b/search/all_1.js @@ -8,11 +8,11 @@ var searchData= ['beginabp_5',['beginABP',['../class_lo_ra_w_a_n_node.html#a43b259fd8804ef8d9d4922962e9ecae5',1,'LoRaWANNode']]], ['beginble_6',['beginBLE',['../class_s_x128x.html#ace5ede905bf85aada0c61b9cfaaea127',1,'SX128x']]], ['beginflrc_7',['beginFLRC',['../class_s_x128x.html#a2c4a24623c5fd27b3cc937e55783d709',1,'SX128x']]], - ['beginfsk_8',['beginfsk',['../class_s_x1276.html#aad2a12f233378d75d28ab9a2307331a8',1,'SX1276::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x1279.html#a2a0634c2a60c21045388377a2c8c2617',1,'SX1279::beginFSK()'],['../class_s_x1277.html#ab04763764dceef0543197aa0316d0030',1,'SX1277::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1',1,'SX1262::beginFSK()'],['../class_s_t_m32_w_lx.html#ae7f54bfff828901c4effbcc38ca8edc8',1,'STM32WLx::beginFSK()'],['../class_s_x127x.html#a66fe001474583d490df1d0b38260bf8e',1,'SX127x::beginFSK()']]], + ['beginfsk_8',['beginfsk',['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1279.html#a2a0634c2a60c21045388377a2c8c2617',1,'SX1279::beginFSK()'],['../class_s_x1276.html#aad2a12f233378d75d28ab9a2307331a8',1,'SX1276::beginFSK()'],['../class_s_x1277.html#ab04763764dceef0543197aa0316d0030',1,'SX1277::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1',1,'SX1262::beginFSK()'],['../class_s_t_m32_w_lx.html#ae7f54bfff828901c4effbcc38ca8edc8',1,'STM32WLx::beginFSK()'],['../class_l_l_c_c68.html#ab81931957180533a2d61a90bf7094b73',1,'LLCC68::beginFSK()'],['../class_s_x127x.html#a66fe001474583d490df1d0b38260bf8e',1,'SX127x::beginFSK()']]], ['beginfsk4_9',['beginFSK4',['../class_c_c1101.html#afff1ff2e763a3ad598bdae535595db63',1,'CC1101']]], ['begingfsk_10',['begingfsk',['../class_l_r1120.html#a4c6b867146f00de5c45aeb4164d51cc5',1,'LR1120::beginGFSK()'],['../class_l_r11x0.html#abcc4c776d1a09bb002226ac95574766d',1,'LR11x0::beginGFSK()'],['../class_l_r1110.html#afcabcd9b422581cd8a63a63373a98155',1,'LR1110::beginGFSK()'],['../class_s_x128x.html#a6ed60dfbd142315bb4e1abd2555a470a',1,'SX128x::beginGFSK()']]], ['begingnss_11',['beginGNSS',['../class_l_r11x0.html#ad7f31060cbab41ad53ee6fa7126cd17b',1,'LR11x0']]], - ['beginlrfhss_12',['beginlrfhss',['../class_s_x1268.html#a4f990f9e58d35cefa560c4fc767198fd',1,'SX1268::beginLRFHSS()'],['../class_l_r11x0.html#a244ee48075d44c7064b454eb9c4afdb8',1,'LR11x0::beginLRFHSS()'],['../class_s_x1262.html#aeeea8315c04afccc8cae8ec0dba2e426',1,'SX1262::beginLRFHSS()'],['../class_l_r1120.html#ad49ce378101cf0c3894297808ae27f3a',1,'LR1120::beginLRFHSS()'],['../class_l_r1110.html#acc15335d41446254c3b9a87572080388',1,'LR1110::beginLRFHSS()'],['../class_s_x126x.html#af404471ef9d379c58b5b08757593fe6d',1,'SX126x::beginLRFHSS()']]], + ['beginlrfhss_12',['beginlrfhss',['../class_s_x1268.html#a4f990f9e58d35cefa560c4fc767198fd',1,'SX1268::beginLRFHSS()'],['../class_l_r1120.html#ad49ce378101cf0c3894297808ae27f3a',1,'LR1120::beginLRFHSS()'],['../class_l_r11x0.html#a244ee48075d44c7064b454eb9c4afdb8',1,'LR11x0::beginLRFHSS()'],['../class_s_x1262.html#aeeea8315c04afccc8cae8ec0dba2e426',1,'SX1262::beginLRFHSS()'],['../class_l_r1110.html#acc15335d41446254c3b9a87572080388',1,'LR1110::beginLRFHSS()'],['../class_l_l_c_c68.html#ae9a0480a268b338b16c4d9abdac5dbee',1,'LLCC68::beginLRFHSS()'],['../class_s_x126x.html#af404471ef9d379c58b5b08757593fe6d',1,'SX126x::beginLRFHSS()']]], ['beginotaa_13',['beginOTAA',['../class_lo_ra_w_a_n_node.html#ab2df20a240812f184786dda5ace171ef',1,'LoRaWANNode']]], ['beidou_14',['beidou',['../struct_l_r11x0_gnss_almanac_status__t.html#a6ecc7d7bbc090f380ca6d2d8774f7ca0',1,'LR11x0GnssAlmanacStatus_t']]], ['beidousvnoalmanacflags_15',['beidouSvNoAlmanacFlags',['../struct_l_r11x0_gnss_almanac_status__t.html#ab040b1d9ccf9c6497b008d11a93ebfdf',1,'LR11x0GnssAlmanacStatus_t']]], diff --git a/search/all_10.js b/search/all_10.js index 34111276..c3b352ca 100644 --- a/search/all_10.js +++ b/search/all_10.js @@ -131,7 +131,7 @@ var searchData= ['spireadregisterburst_128',['SPIreadRegisterBurst',['../class_module.html#ac993ab8e2ea0f5aa93339d1f6ffb54ee',1,'Module']]], ['spireadstream_129',['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#ad4af5fc5fd60e0aadb8a69606e511946',1,'Module::SPIreadStream(const uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]], ['spisetregvalue_130',['SPIsetRegValue',['../class_module.html#aed95fba2ee72d7a2a21f98dd63ae4ad1',1,'Module']]], - ['spitransfer_131',['spitransfer',['../class_module.html#a2bfbddb1ff044f8b1865aac89246445d',1,'Module::SPItransfer()'],['../class_radio_lib_hal.html#aebcaaf0cefdaaf5b572d4261e472ac8a',1,'RadioLibHal::spiTransfer()'],['../class_pi_hal.html#a96a0f36efd8e23893add3242bdef8be4',1,'PiHal::spiTransfer()'],['../class_pico_hal.html#acc961bf30af621d0dfec2b3f7e25cf5c',1,'PicoHal::spiTransfer()']]], + ['spitransfer_131',['spitransfer',['../class_radio_lib_hal.html#aebcaaf0cefdaaf5b572d4261e472ac8a',1,'RadioLibHal::spiTransfer()'],['../class_pi_hal.html#a96a0f36efd8e23893add3242bdef8be4',1,'PiHal::spiTransfer()'],['../class_pico_hal.html#acc961bf30af621d0dfec2b3f7e25cf5c',1,'PicoHal::spiTransfer()'],['../class_module.html#a2bfbddb1ff044f8b1865aac89246445d',1,'Module::SPItransfer(uint16_t cmd, uint32_t reg, const uint8_t *dataOut, uint8_t *dataIn, size_t numBytes)']]], ['spitransferstream_132',['SPItransferStream',['../class_module.html#a2b3f89fc63a82eb5fd55a7ddd72318fe',1,'Module']]], ['spiwriteregister_133',['SPIwriteRegister',['../class_module.html#a60ca6b4cae98f7d935191a569d519913',1,'Module']]], ['spiwriteregisterburst_134',['SPIwriteRegisterBurst',['../class_module.html#a10809e942c686b4e605269e58bd637b9',1,'Module']]], diff --git a/search/all_6.js b/search/all_6.js index f0840c7e..1b092232 100644 --- a/search/all_6.js +++ b/search/all_6.js @@ -22,7 +22,7 @@ var searchData= ['getgnsssatellites_19',['getGnssSatellites',['../class_l_r11x0.html#a97a3f23b796257135a9afd33c28e8ed5',1,'LR11x0']]], ['getgpio_20',['getGpio',['../class_module.html#a4ec27f0ba5e0009ea9661a5110526b52',1,'Module']]], ['getirq_21',['getIrq',['../class_module.html#ab61bc5066c356e2d0d79f08a2bd0fbc9',1,'Module']]], - ['getirqflags_22',['getirqflags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x::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()']]], + ['getirqflags_22',['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()'],['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x::getIRQFlags()']]], ['getirqmapped_23',['getIrqMapped',['../class_physical_layer.html#ae602ebd46d60da8670c9f353cef695d9',1,'PhysicalLayer']]], ['getirqstatus_24',['getirqstatus',['../class_l_r11x0.html#a0309154558a0d88e2e8957e4dbf6a2f8',1,'LR11x0::getIrqStatus()'],['../class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22',1,'SX128x::getIrqStatus()']]], ['getlasttoa_25',['getLastToA',['../class_lo_ra_w_a_n_node.html#a683b02b63867bb7de5df45c94d190305',1,'LoRaWANNode']]], diff --git a/search/functions_1.js b/search/functions_1.js index 6557f28f..4ac4beb4 100644 --- a/search/functions_1.js +++ b/search/functions_1.js @@ -1,14 +1,14 @@ var searchData= [ - ['begin_0',['begin',['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::begin()'],['../class_s_x1277.html#af2327920562514632256895602c1f68b',1,'SX1277::begin()'],['../class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf',1,'SX1278::begin()'],['../class_s_x1279.html#ace52854eb22ac331e887eb320d2cd873',1,'SX1279::begin()'],['../class_s_x127x.html#a7ddbde7fd8eb06d38abfb658eee29bc1',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#a5391412e6081f1fb6fc4e6dabcb0c450',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#a61844a7f08f7aadac00cf6617f991191',1,'SX1273::begin()'],['../class_s_x1276.html#a729cfac96ccd76fa96cfae93d17a2d92',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#a9e45de584e2624c1132eb0d327d12433',1,'Si4430::begin()'],['../class_si4431.html#a42dad1ef76ecab9353d5a03c984d5d1e',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#a8a326d469313286aa165730cf41d4994',1,'STM32WLx::begin()'],['../class_s_x1233.html#aec5f4cb505e9c1f200405e6535d2fc47',1,'SX1233::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()']]], + ['begin_0',['begin',['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::begin()'],['../class_s_x1277.html#af2327920562514632256895602c1f68b',1,'SX1277::begin()'],['../class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf',1,'SX1278::begin()'],['../class_s_x1279.html#ace52854eb22ac331e887eb320d2cd873',1,'SX1279::begin()'],['../class_s_x127x.html#a7ddbde7fd8eb06d38abfb658eee29bc1',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#a5391412e6081f1fb6fc4e6dabcb0c450',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#a61844a7f08f7aadac00cf6617f991191',1,'SX1273::begin()'],['../class_s_x1276.html#a729cfac96ccd76fa96cfae93d17a2d92',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#a9e45de584e2624c1132eb0d327d12433',1,'Si4430::begin()'],['../class_si4431.html#a42dad1ef76ecab9353d5a03c984d5d1e',1,'Si4431::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_s_x1233.html#aec5f4cb505e9c1f200405e6535d2fc47',1,'SX1233::begin()'],['../class_s_t_m32_w_lx.html#a8a326d469313286aa165730cf41d4994',1,'STM32WLx::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_s_x126x.html#a936a40038e05740a528f2b53f8e17010',1,'SX126x::begin()'],['../class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9',1,'SX1272::begin()'],['../class_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()']]], ['beginabp_1',['beginABP',['../class_lo_ra_w_a_n_node.html#a43b259fd8804ef8d9d4922962e9ecae5',1,'LoRaWANNode']]], ['beginble_2',['beginBLE',['../class_s_x128x.html#ace5ede905bf85aada0c61b9cfaaea127',1,'SX128x']]], ['beginflrc_3',['beginFLRC',['../class_s_x128x.html#a2c4a24623c5fd27b3cc937e55783d709',1,'SX128x']]], - ['beginfsk_4',['beginfsk',['../class_s_x127x.html#a66fe001474583d490df1d0b38260bf8e',1,'SX127x::beginFSK()'],['../class_s_x1279.html#a2a0634c2a60c21045388377a2c8c2617',1,'SX1279::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1277.html#ab04763764dceef0543197aa0316d0030',1,'SX1277::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1',1,'SX1262::beginFSK()'],['../class_s_t_m32_w_lx.html#ae7f54bfff828901c4effbcc38ca8edc8',1,'STM32WLx::beginFSK()'],['../class_s_x1276.html#aad2a12f233378d75d28ab9a2307331a8',1,'SX1276::beginFSK()']]], + ['beginfsk_4',['beginfsk',['../class_s_x127x.html#a66fe001474583d490df1d0b38260bf8e',1,'SX127x::beginFSK()'],['../class_s_x1279.html#a2a0634c2a60c21045388377a2c8c2617',1,'SX1279::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_x1277.html#ab04763764dceef0543197aa0316d0030',1,'SX1277::beginFSK()'],['../class_s_x1276.html#aad2a12f233378d75d28ab9a2307331a8',1,'SX1276::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1',1,'SX1262::beginFSK()'],['../class_s_t_m32_w_lx.html#ae7f54bfff828901c4effbcc38ca8edc8',1,'STM32WLx::beginFSK()'],['../class_l_l_c_c68.html#ab81931957180533a2d61a90bf7094b73',1,'LLCC68::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()']]], ['beginfsk4_5',['beginFSK4',['../class_c_c1101.html#afff1ff2e763a3ad598bdae535595db63',1,'CC1101']]], ['begingfsk_6',['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_7',['beginGNSS',['../class_l_r11x0.html#ad7f31060cbab41ad53ee6fa7126cd17b',1,'LR11x0']]], - ['beginlrfhss_8',['beginlrfhss',['../class_l_r1110.html#acc15335d41446254c3b9a87572080388',1,'LR1110::beginLRFHSS()'],['../class_l_r1120.html#ad49ce378101cf0c3894297808ae27f3a',1,'LR1120::beginLRFHSS()'],['../class_l_r11x0.html#a244ee48075d44c7064b454eb9c4afdb8',1,'LR11x0::beginLRFHSS()'],['../class_s_x1262.html#aeeea8315c04afccc8cae8ec0dba2e426',1,'SX1262::beginLRFHSS()'],['../class_s_x1268.html#a4f990f9e58d35cefa560c4fc767198fd',1,'SX1268::beginLRFHSS()'],['../class_s_x126x.html#af404471ef9d379c58b5b08757593fe6d',1,'SX126x::beginLRFHSS()']]], + ['beginlrfhss_8',['beginlrfhss',['../class_l_l_c_c68.html#ae9a0480a268b338b16c4d9abdac5dbee',1,'LLCC68::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()'],['../class_l_r1110.html#acc15335d41446254c3b9a87572080388',1,'LR1110::beginLRFHSS()']]], ['beginotaa_9',['beginOTAA',['../class_lo_ra_w_a_n_node.html#ab2df20a240812f184786dda5ace171ef',1,'LoRaWANNode']]], ['bellclient_10',['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_11',['byteArr',['../class_i_t_a2_string.html#a3f42f7ad98473dbe36515e676622ed3d',1,'ITA2String']]] diff --git a/search/functions_6.js b/search/functions_6.js index c7405e8e..e5f1f218 100644 --- a/search/functions_6.js +++ b/search/functions_6.js @@ -22,7 +22,7 @@ var searchData= ['getgnsssatellites_19',['getGnssSatellites',['../class_l_r11x0.html#a97a3f23b796257135a9afd33c28e8ed5',1,'LR11x0']]], ['getgpio_20',['getGpio',['../class_module.html#a4ec27f0ba5e0009ea9661a5110526b52',1,'Module']]], ['getirq_21',['getIrq',['../class_module.html#ab61bc5066c356e2d0d79f08a2bd0fbc9',1,'Module']]], - ['getirqflags_22',['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()'],['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x::getIRQFlags()']]], + ['getirqflags_22',['getirqflags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x::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_23',['getIrqMapped',['../class_physical_layer.html#ae602ebd46d60da8670c9f353cef695d9',1,'PhysicalLayer']]], ['getirqstatus_24',['getirqstatus',['../class_l_r11x0.html#a0309154558a0d88e2e8957e4dbf6a2f8',1,'LR11x0::getIrqStatus()'],['../class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22',1,'SX128x::getIrqStatus()']]], ['getlasttoa_25',['getLastToA',['../class_lo_ra_w_a_n_node.html#a683b02b63867bb7de5df45c94d190305',1,'LoRaWANNode']]], diff --git a/search/functions_f.js b/search/functions_f.js index f50445f6..5b3707f5 100644 --- a/search/functions_f.js +++ b/search/functions_f.js @@ -120,7 +120,7 @@ var searchData= ['spireadregisterburst_117',['SPIreadRegisterBurst',['../class_module.html#ac993ab8e2ea0f5aa93339d1f6ffb54ee',1,'Module']]], ['spireadstream_118',['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#ad4af5fc5fd60e0aadb8a69606e511946',1,'Module::SPIreadStream(const uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]], ['spisetregvalue_119',['SPIsetRegValue',['../class_module.html#aed95fba2ee72d7a2a21f98dd63ae4ad1',1,'Module']]], - ['spitransfer_120',['spitransfer',['../class_module.html#a2bfbddb1ff044f8b1865aac89246445d',1,'Module::SPItransfer()'],['../class_radio_lib_hal.html#aebcaaf0cefdaaf5b572d4261e472ac8a',1,'RadioLibHal::spiTransfer()'],['../class_pi_hal.html#a96a0f36efd8e23893add3242bdef8be4',1,'PiHal::spiTransfer()'],['../class_pico_hal.html#acc961bf30af621d0dfec2b3f7e25cf5c',1,'PicoHal::spiTransfer()']]], + ['spitransfer_120',['spitransfer',['../class_radio_lib_hal.html#aebcaaf0cefdaaf5b572d4261e472ac8a',1,'RadioLibHal::spiTransfer()'],['../class_pi_hal.html#a96a0f36efd8e23893add3242bdef8be4',1,'PiHal::spiTransfer()'],['../class_pico_hal.html#acc961bf30af621d0dfec2b3f7e25cf5c',1,'PicoHal::spiTransfer()'],['../class_module.html#a2bfbddb1ff044f8b1865aac89246445d',1,'Module::SPItransfer(uint16_t cmd, uint32_t reg, const uint8_t *dataOut, uint8_t *dataIn, size_t numBytes)']]], ['spitransferstream_121',['SPItransferStream',['../class_module.html#a2b3f89fc63a82eb5fd55a7ddd72318fe',1,'Module']]], ['spiwriteregister_122',['SPIwriteRegister',['../class_module.html#a60ca6b4cae98f7d935191a569d519913',1,'Module']]], ['spiwriteregisterburst_123',['SPIwriteRegisterBurst',['../class_module.html#a10809e942c686b4e605269e58bd637b9',1,'Module']]],