From cb8dfa99258d0c19a4947257b99640ee9ae339eb Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 12 Dec 2021 10:27:35 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20=20@=20c1240?= =?UTF-8?q?c551f33f7cccb9047ed9bcd9846f5740318=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _r_f_m95_8h_source.html | 29 ++++++++------- _r_f_m96_8h_source.html | 31 +++++++++------- class_r_f_m95-members.html | 2 +- class_r_f_m95.html | 76 ++++++++++++++++++++++++++++++++++++++ class_r_f_m95.js | 1 + class_r_f_m96-members.html | 2 +- class_r_f_m96.html | 76 ++++++++++++++++++++++++++++++++++++++ class_r_f_m96.js | 1 + class_r_f_m97-members.html | 2 +- class_r_f_m97.html | 3 ++ functions_b.html | 4 +- functions_func_b.html | 4 +- navtreedata.js | 4 +- navtreeindex1.js | 10 ++--- navtreeindex2.js | 6 +-- navtreeindex3.js | 4 +- search/all_1.js | 2 +- search/functions_1.js | 2 +- 18 files changed, 214 insertions(+), 45 deletions(-) diff --git a/_r_f_m95_8h_source.html b/_r_f_m95_8h_source.html index 76d864e3..c6793a61 100644 --- a/_r_f_m95_8h_source.html +++ b/_r_f_m95_8h_source.html @@ -112,22 +112,25 @@ $(document).ready(function(){initNavTree('_r_f_m95_8h_source.html',''); initResi
34 
58  int16_t begin(float freq = 915.0, float bw = 125.0, uint8_t sf = 9, uint8_t cr = 7, uint8_t syncWord = RADIOLIB_SX127X_SYNC_WORD, int8_t power = 10, uint16_t preambleLength = 8, uint8_t gain = 0);
59 
-
60  // configuration methods
-
61 
-
69  int16_t setFrequency(float freq);
-
70 
-
71 #if !defined(RADIOLIB_GODMODE)
-
72  private:
-
73 #endif
-
74 
-
75 };
-
76 
-
77 #endif
-
78 
-
79 #endif
+
80  int16_t beginFSK(float freq, float br, float freqDev, float rxBw, int8_t power, uint16_t preambleLength, bool enableOOK);
+
81 
+
82  // configuration methods
+
83 
+
91  int16_t setFrequency(float freq);
+
92 
+
93 #if !defined(RADIOLIB_GODMODE)
+
94  private:
+
95 #endif
+
96 
+
97 };
+
98 
+
99 #endif
+
100 
+
101 #endif
Derived class for SX1278 modules. Also used as base class for SX1276, SX1277, SX1279,...
Definition: SX1278.h:104
+
int16_t beginFSK(float freq, float br, float freqDev, float rxBw, int8_t power, uint16_t preambleLength, bool enableOOK)
FSK modem initialization method. Must be called at least once from Arduino sketch to initialize the m...
Definition: RFM95.cpp:43
Derived class for RFM95 modules. Overrides some methods from SX1278 due to different parameter ranges...
Definition: RFM95.h:21
RFM95(Module *mod)
Default constructor. Called from Arduino sketch when creating new LoRa instance.
Definition: RFM95.cpp:4
int16_t setFrequency(float freq)
Sets carrier frequency. Allowed values range from 868.0 MHz to 915.0 MHz.
Definition: RFM95.cpp:79
diff --git a/_r_f_m96_8h_source.html b/_r_f_m96_8h_source.html index 05d8aab3..14c2fb71 100644 --- a/_r_f_m96_8h_source.html +++ b/_r_f_m96_8h_source.html @@ -112,21 +112,23 @@ $(document).ready(function(){initNavTree('_r_f_m96_8h_source.html',''); initResi
34 
58  int16_t begin(float freq = 434.0, float bw = 125.0, uint8_t sf = 9, uint8_t cr = 7, uint8_t syncWord = RADIOLIB_SX127X_SYNC_WORD, int8_t power = 10, uint16_t preambleLength = 8, uint8_t gain = 0);
59 
-
60  // configuration methods
-
61 
-
69  int16_t setFrequency(float freq);
-
70 
-
71 #if !defined(RADIOLIB_GODMODE)
-
72  private:
-
73 #endif
-
74 
-
75 };
-
76 
-
82 RADIOLIB_TYPE_ALIAS(RFM96, RFM98);
+
80  int16_t beginFSK(float freq, float br, float freqDev, float rxBw, int8_t power, uint16_t preambleLength, bool enableOOK);
+
81 
+
82  // configuration methods
83 
-
84 #endif
-
85 
-
86 #endif
+
91  int16_t setFrequency(float freq);
+
92 
+
93 #if !defined(RADIOLIB_GODMODE)
+
94  private:
+
95 #endif
+
96 
+
97 };
+
98 
+
104 RADIOLIB_TYPE_ALIAS(RFM96, RFM98);
+
105 
+
106 #endif
+
107 
+
108 #endif
int16_t begin(float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_SX127X_SYNC_WORD, int8_t power=10, uint16_t preambleLength=8, uint8_t gain=0)
LoRa modem initialization method. Must be called at least once from Arduino sketch to initialize the ...
Definition: RFM96.cpp:8
@@ -134,6 +136,7 @@ $(document).ready(function(){initNavTree('_r_f_m96_8h_source.html',''); initResi
Derived class for RFM96 modules. Overrides some methods from SX1278 due to different parameter ranges...
Definition: RFM96.h:21
Derived class for SX1278 modules. Also used as base class for SX1276, SX1277, SX1279,...
Definition: SX1278.h:104
RFM96(Module *mod)
Default constructor. Called from Arduino sketch when creating new LoRa instance.
Definition: RFM96.cpp:4
+
int16_t beginFSK(float freq, float br, float freqDev, float rxBw, int8_t power, uint16_t preambleLength, bool enableOOK)
FSK modem initialization method. Must be called at least once from Arduino sketch to initialize the m...
Definition: RFM96.cpp:44
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:16
Only exists as alias for RFM96, since there seems to be no difference between RFM96 and RFM98 modules...
diff --git a/class_r_f_m95-members.html b/class_r_f_m95-members.html index 50368e46..15d7c720 100644 --- a/class_r_f_m95-members.html +++ b/class_r_f_m95-members.html @@ -93,7 +93,7 @@ $(document).ready(function(){initNavTree('class_r_f_m95.html',''); initResizable available()PhysicalLayer begin(float freq=915.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_SX127X_SYNC_WORD, int8_t power=10, uint16_t preambleLength=8, uint8_t gain=0)RFM95 SX127x::begin(uint8_t chipVersion, uint8_t syncWord, uint16_t preambleLength)SX127x - beginFSK(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=125.0, int8_t power=10, uint16_t preambleLength=16, bool enableOOK=false)SX1278 + beginFSK(float freq, float br, float freqDev, float rxBw, int8_t power, uint16_t preambleLength, bool enableOOK)RFM95 SX127x::beginFSK(uint8_t chipVersion, float br, float freqDev, float rxBw, uint16_t preambleLength, bool enableOOK)SX127x clearDio0Action()SX127x clearDio1Action()SX127x diff --git a/class_r_f_m95.html b/class_r_f_m95.html index 71733c78..5c0030a3 100644 --- a/class_r_f_m95.html +++ b/class_r_f_m95.html @@ -115,6 +115,9 @@ Public Member Functions int16_t begin (float freq=915.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_SX127X_SYNC_WORD, int8_t power=10, uint16_t preambleLength=8, uint8_t gain=0)  LoRa modem initialization method. Must be called at least once from Arduino sketch to initialize the module. More...
  +int16_t beginFSK (float freq, float br, float freqDev, float rxBw, int8_t power, uint16_t preambleLength, bool enableOOK) + FSK modem initialization method. Must be called at least once from Arduino sketch to initialize the module. More...
+  int16_t setFrequency (float freq)  Sets carrier frequency. Allowed values range from 868.0 MHz to 915.0 MHz. More...
  @@ -536,6 +539,79 @@ void 
Returns
Status Codes
+ + + +

◆ beginFSK()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
int16_t RFM95::beginFSK (float freq,
float br,
float freqDev,
float rxBw,
int8_t power,
uint16_t preambleLength,
bool enableOOK 
)
+
+ +

FSK modem initialization method. Must be called at least once from Arduino sketch to initialize the module.

+
Parameters
+ + + + + + + + +
freqCarrier frequency in MHz. Allowed values range from 137.0 MHz to 525.0 MHz.
brBit rate of the FSK transmission in kbps (kilobits per second). Allowed values range from 1.2 to 300.0 kbps.
freqDevFrequency deviation of the FSK transmission in kHz. Allowed values range from 0.6 to 200.0 kHz. Note that the allowed range changes based on bit rate setting, so that the condition FreqDev + BitRate/2 <= 250 kHz is always met.
rxBwReceiver bandwidth in kHz. Allowed values are 2.6, 3.1, 3.9, 5.2, 6.3, 7.8, 10.4, 12.5, 15.6, 20.8, 25, 31.3, 41.7, 50, 62.5, 83.3, 100, 125, 166.7, 200 and 250 kHz.
powerTransmission output power in dBm. Allowed values range from 2 to 17 dBm.
preambleLengthLength of FSK preamble in bits.
enableOOKUse OOK modulation instead of FSK.
+
+
+
Returns
Status Codes
+
diff --git a/class_r_f_m95.js b/class_r_f_m95.js index f987b0fc..c825178f 100644 --- a/class_r_f_m95.js +++ b/class_r_f_m95.js @@ -2,5 +2,6 @@ var class_r_f_m95 = [ [ "RFM95", "class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326", null ], [ "begin", "class_r_f_m95.html#a5c37eaf6ae8c558a9a623157dd9f894a", null ], + [ "beginFSK", "class_r_f_m95.html#a878cb6f8df95b3bdfa4553384a43e974", null ], [ "setFrequency", "class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87", null ] ]; \ No newline at end of file diff --git a/class_r_f_m96-members.html b/class_r_f_m96-members.html index 1d36a42a..fc86a942 100644 --- a/class_r_f_m96-members.html +++ b/class_r_f_m96-members.html @@ -93,7 +93,7 @@ $(document).ready(function(){initNavTree('class_r_f_m96.html',''); initResizable available()PhysicalLayer begin(float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_SX127X_SYNC_WORD, int8_t power=10, uint16_t preambleLength=8, uint8_t gain=0)RFM96 SX127x::begin(uint8_t chipVersion, uint8_t syncWord, uint16_t preambleLength)SX127x - beginFSK(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=125.0, int8_t power=10, uint16_t preambleLength=16, bool enableOOK=false)SX1278 + beginFSK(float freq, float br, float freqDev, float rxBw, int8_t power, uint16_t preambleLength, bool enableOOK)RFM96 SX127x::beginFSK(uint8_t chipVersion, float br, float freqDev, float rxBw, uint16_t preambleLength, bool enableOOK)SX127x clearDio0Action()SX127x clearDio1Action()SX127x diff --git a/class_r_f_m96.html b/class_r_f_m96.html index 4a9f7370..a394c2fc 100644 --- a/class_r_f_m96.html +++ b/class_r_f_m96.html @@ -114,6 +114,9 @@ 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_SX127X_SYNC_WORD, int8_t power=10, uint16_t preambleLength=8, uint8_t gain=0)  LoRa modem initialization method. Must be called at least once from Arduino sketch to initialize the module. More...
  +int16_t beginFSK (float freq, float br, float freqDev, float rxBw, int8_t power, uint16_t preambleLength, bool enableOOK) + FSK modem initialization method. Must be called at least once from Arduino sketch to initialize the module. More...
+  int16_t setFrequency (float freq)  Sets carrier frequency. Allowed values range from 433.0 MHz to 470.0 MHz. More...
  @@ -535,6 +538,79 @@ void 
Returns
Status Codes
+ + + +

◆ beginFSK()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
int16_t RFM96::beginFSK (float freq,
float br,
float freqDev,
float rxBw,
int8_t power,
uint16_t preambleLength,
bool enableOOK 
)
+
+ +

FSK modem initialization method. Must be called at least once from Arduino sketch to initialize the module.

+
Parameters
+ + + + + + + + +
freqCarrier frequency in MHz. Allowed values range from 137.0 MHz to 525.0 MHz.
brBit rate of the FSK transmission in kbps (kilobits per second). Allowed values range from 1.2 to 300.0 kbps.
freqDevFrequency deviation of the FSK transmission in kHz. Allowed values range from 0.6 to 200.0 kHz. Note that the allowed range changes based on bit rate setting, so that the condition FreqDev + BitRate/2 <= 250 kHz is always met.
rxBwReceiver bandwidth in kHz. Allowed values are 2.6, 3.1, 3.9, 5.2, 6.3, 7.8, 10.4, 12.5, 15.6, 20.8, 25, 31.3, 41.7, 50, 62.5, 83.3, 100, 125, 166.7, 200 and 250 kHz.
powerTransmission output power in dBm. Allowed values range from 2 to 17 dBm.
preambleLengthLength of FSK preamble in bits.
enableOOKUse OOK modulation instead of FSK.
+
+
+
Returns
Status Codes
+
diff --git a/class_r_f_m96.js b/class_r_f_m96.js index c8617ae9..c91eb7e5 100644 --- a/class_r_f_m96.js +++ b/class_r_f_m96.js @@ -2,5 +2,6 @@ var class_r_f_m96 = [ [ "RFM96", "class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a", null ], [ "begin", "class_r_f_m96.html#aef1588799e5855cb464259e8ce2d865b", null ], + [ "beginFSK", "class_r_f_m96.html#ae92d6950e533f2501be22c3923681a86", null ], [ "setFrequency", "class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84", null ] ]; \ No newline at end of file diff --git a/class_r_f_m97-members.html b/class_r_f_m97-members.html index 3158bc1f..497eb8f9 100644 --- a/class_r_f_m97-members.html +++ b/class_r_f_m97-members.html @@ -93,7 +93,7 @@ $(document).ready(function(){initNavTree('class_r_f_m97.html',''); initResizable available()PhysicalLayer begin(float freq=915.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_SX127X_SYNC_WORD, int8_t power=10, uint16_t preambleLength=8, uint8_t gain=0)RFM95 SX127x::begin(uint8_t chipVersion, uint8_t syncWord, uint16_t preambleLength)SX127x - beginFSK(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=125.0, int8_t power=10, uint16_t preambleLength=16, bool enableOOK=false)SX1278 + beginFSK(float freq, float br, float freqDev, float rxBw, int8_t power, uint16_t preambleLength, bool enableOOK)RFM95 SX127x::beginFSK(uint8_t chipVersion, float br, float freqDev, float rxBw, uint16_t preambleLength, bool enableOOK)SX127x clearDio0Action()SX127x clearDio1Action()SX127x diff --git a/class_r_f_m97.html b/class_r_f_m97.html index 979b3c02..4a54c65b 100644 --- a/class_r_f_m97.html +++ b/class_r_f_m97.html @@ -122,6 +122,9 @@ Public Member Functions int16_t begin (float freq=915.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_SX127X_SYNC_WORD, int8_t power=10, uint16_t preambleLength=8, uint8_t gain=0)  LoRa modem initialization method. Must be called at least once from Arduino sketch to initialize the module. More...
  +int16_t beginFSK (float freq, float br, float freqDev, float rxBw, int8_t power, uint16_t preambleLength, bool enableOOK) + FSK modem initialization method. Must be called at least once from Arduino sketch to initialize the module. More...
+  int16_t setFrequency (float freq)  Sets carrier frequency. Allowed values range from 868.0 MHz to 915.0 MHz. More...
  diff --git a/functions_b.html b/functions_b.html index 11e7495d..d540d618 100644 --- a/functions_b.html +++ b/functions_b.html @@ -124,7 +124,9 @@ $(document).ready(function(){initNavTree('functions_b.html',''); initResizable() : SX128x
  • beginFSK() -: SX1262 +: RFM95 +, RFM96 +, SX1262 , SX1268 , SX126x , SX1272 diff --git a/functions_func_b.html b/functions_func_b.html index d9defd5d..a555d81f 100644 --- a/functions_func_b.html +++ b/functions_func_b.html @@ -124,7 +124,9 @@ $(document).ready(function(){initNavTree('functions_func_b.html',''); initResiza : SX128x
  • beginFSK() -: SX1262 +: RFM95 +, RFM96 +, SX1262 , SX1268 , SX126x , SX1272 diff --git a/navtreedata.js b/navtreedata.js index 903b5836..080d9934 100644 --- a/navtreedata.js +++ b/navtreedata.js @@ -46,8 +46,8 @@ var NAVTREEINDEX = [ "_a_f_s_k_8h_source.html", "class_morse_client.html#a1b7a4467adf49a3afa062fc93bf6f80f", -"class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136", -"class_si443x.html#a8d019f58551346c3f3bd8b72d2486109" +"class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9", +"class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/navtreeindex1.js b/navtreeindex1.js index 397414d8..5f130801 100644 --- a/navtreeindex1.js +++ b/navtreeindex1.js @@ -127,11 +127,13 @@ var NAVTREEINDEX1 = "class_r_f_m23.html":[3,0,15], "class_r_f_m95.html":[3,0,16], "class_r_f_m95.html#a5c37eaf6ae8c558a9a623157dd9f894a":[3,0,16,1], +"class_r_f_m95.html#a878cb6f8df95b3bdfa4553384a43e974":[3,0,16,2], "class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326":[3,0,16,0], -"class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87":[3,0,16,2], +"class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87":[3,0,16,3], "class_r_f_m96.html":[3,0,17], "class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a":[3,0,17,0], -"class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84":[3,0,17,2], +"class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84":[3,0,17,3], +"class_r_f_m96.html#ae92d6950e533f2501be22c3923681a86":[3,0,17,2], "class_r_f_m96.html#aef1588799e5855cb464259e8ce2d865b":[3,0,17,1], "class_r_f_m97.html":[3,0,18], "class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be":[3,0,18,0], @@ -247,7 +249,5 @@ var NAVTREEINDEX1 = "class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034":[3,0,31,32], "class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f":[3,0,31,9], "class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987":[3,0,31,13], -"class_s_x126x.html#ac594fbb30c5010658c970a64654c7162":[3,0,31,49], -"class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9":[3,0,31,11], -"class_s_x126x.html#ad7569396f09f3867dc1bd4d4a0613acd":[3,0,31,56] +"class_s_x126x.html#ac594fbb30c5010658c970a64654c7162":[3,0,31,49] }; diff --git a/navtreeindex2.js b/navtreeindex2.js index 82610c6a..c46e4bc6 100644 --- a/navtreeindex2.js +++ b/navtreeindex2.js @@ -1,5 +1,7 @@ var NAVTREEINDEX2 = { +"class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9":[3,0,31,11], +"class_s_x126x.html#ad7569396f09f3867dc1bd4d4a0613acd":[3,0,31,56], "class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136":[3,0,31,59], "class_s_x126x.html#adec09cba71494bd927ad1da786606ca6":[3,0,31,18], "class_s_x126x.html#ae36664f9c605a8fe74b2f357e0ec3323":[3,0,31,15], @@ -247,7 +249,5 @@ var NAVTREEINDEX2 = "class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99":[3,0,24,39], "class_si443x.html#a616eb24c4b11c5d39caaade160be8092":[3,0,24,6], "class_si443x.html#a74848176d435227e601c86ff37b0edbe":[3,0,24,7], -"class_si443x.html#a782748025e19ec6e597293afb6570bff":[3,0,24,37], -"class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66":[3,0,24,21], -"class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726":[3,0,24,22] +"class_si443x.html#a782748025e19ec6e597293afb6570bff":[3,0,24,37] }; diff --git a/navtreeindex3.js b/navtreeindex3.js index 0b605a2a..6a725b8f 100644 --- a/navtreeindex3.js +++ b/navtreeindex3.js @@ -1,5 +1,7 @@ var NAVTREEINDEX3 = { +"class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66":[3,0,24,21], +"class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726":[3,0,24,22], "class_si443x.html#a8d019f58551346c3f3bd8b72d2486109":[3,0,24,2], "class_si443x.html#a923654706eff5118ef6e84214e837f27":[3,0,24,30], "class_si443x.html#aabca3ba8eda212938febab1df2e764b4":[3,0,24,13], @@ -88,8 +90,8 @@ var NAVTREEINDEX3 = "dir_ed12d23d857ca7061030f8751e72e77c.html":[4,0,0,0,10], "dir_f980efad9544c0545d0fa50a84ff12f2.html":[4,0,0,0,9], "files.html":[4,0], -"functions.html":[3,3,0], "functions.html":[3,3,0,0], +"functions.html":[3,3,0], "functions_b.html":[3,3,0,1], "functions_c.html":[3,3,0,2], "functions_d.html":[3,3,0,3], diff --git a/search/all_1.js b/search/all_1.js index 301927ff..6fca6979 100644 --- a/search/all_1.js +++ b/search/all_1.js @@ -3,7 +3,7 @@ var searchData= ['begin_7',['begin',['../class_module.html#af6bfd022681d360082e3dd31a984e1f7',1,'Module::begin()'],['../class_c_c1101.html#a3b40fd5505fec6bad5986f67a5062593',1,'CC1101::begin()'],['../classn_r_f24.html#a60eb59262c5004b587b1d8177706ff28',1,'nRF24::begin()'],['../class_r_f69.html#a35944b24d27a1ac98c1034cfcdb816cd',1,'RF69::begin()'],['../class_r_f_m95.html#a5c37eaf6ae8c558a9a623157dd9f894a',1,'RFM95::begin()'],['../class_r_f_m96.html#aef1588799e5855cb464259e8ce2d865b',1,'RFM96::begin()'],['../class_si4430.html#aaed612b8936609442042d8156e085d2c',1,'Si4430::begin()'],['../class_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3',1,'Si4431::begin()'],['../class_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_s_x126x.html#a1b97488c6887df2e0291bba1b852605e',1,'SX126x::begin()'],['../class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9',1,'SX1272::begin()'],['../class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()'],['../class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3',1,'SX1277::begin()'],['../class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf',1,'SX1278::begin()'],['../class_s_x1279.html#a324a37dee0522f43692cd414141becc2',1,'SX1279::begin()'],['../class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430',1,'SX127x::begin()'],['../class_s_x128x.html#acbd0d1a48051ccd35f4a89c9b8d05bdf',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a4befd17d1f753049f7ec08c48d8b8496',1,'APRSClient::begin()'],['../class_a_x25_client.html#a38be2b9385e4804339b3e4b57b90c2ca',1,'AX25Client::begin()'],['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::begin()'],['../class_hell_client.html#a225775fe87f9ed3c3a04142697641242',1,'HellClient::begin()'],['../class_morse_client.html#a516f19bb51b87ead7f7ed149f2ca92cf',1,'MorseClient::begin()'],['../class_r_t_t_y_client.html#ac4ae2458f8005c87161c74cf827d35b9',1,'RTTYClient::begin()'],['../class_s_s_t_v_client.html#a3d85be3941250366eec2cd9a147a4f5c',1,'SSTVClient::begin(float base, const SSTVMode_t &mode, float correction=1.0)'],['../class_s_s_t_v_client.html#a8606cf73f86f6f1b29cea9ae9b46c81e',1,'SSTVClient::begin(const SSTVMode_t &mode, float correction=1.0)']]], ['beginble_8',['beginBLE',['../class_s_x128x.html#a316340d7ba2a6e7cb5742e3ff21e728c',1,'SX128x']]], ['beginflrc_9',['beginFLRC',['../class_s_x128x.html#ac7df67afbb0b1a88daf5ec50f3d65660',1,'SX128x']]], - ['beginfsk_10',['beginFSK',['../class_s_x1262.html#a85dadad94eb55ea62a9626a2602e3bde',1,'SX1262::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840',1,'SX1276::beginFSK()'],['../class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44',1,'SX1277::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b',1,'SX1279::beginFSK()'],['../class_s_x127x.html#add78edb65673d9e88931a55b0672a9f3',1,'SX127x::beginFSK()']]], + ['beginfsk_10',['beginFSK',['../class_r_f_m95.html#a878cb6f8df95b3bdfa4553384a43e974',1,'RFM95::beginFSK()'],['../class_r_f_m96.html#ae92d6950e533f2501be22c3923681a86',1,'RFM96::beginFSK()'],['../class_s_x1262.html#a85dadad94eb55ea62a9626a2602e3bde',1,'SX1262::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840',1,'SX1276::beginFSK()'],['../class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44',1,'SX1277::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b',1,'SX1279::beginFSK()'],['../class_s_x127x.html#add78edb65673d9e88931a55b0672a9f3',1,'SX127x::beginFSK()']]], ['begingfsk_11',['beginGFSK',['../class_s_x128x.html#a8dd8ce38bc9d0d8dbd711b373e864e93',1,'SX128x']]], ['begintransaction_12',['beginTransaction',['../class_module.html#a3d0caa9f5e38cfa2c609570a89a4a703',1,'Module']]], ['bytearr_13',['byteArr',['../class_i_t_a2_string.html#a3f42f7ad98473dbe36515e676622ed3d',1,'ITA2String']]] diff --git a/search/functions_1.js b/search/functions_1.js index 764e91a3..24384787 100644 --- a/search/functions_1.js +++ b/search/functions_1.js @@ -3,7 +3,7 @@ var searchData= ['begin_358',['begin',['../class_module.html#af6bfd022681d360082e3dd31a984e1f7',1,'Module::begin()'],['../class_c_c1101.html#a3b40fd5505fec6bad5986f67a5062593',1,'CC1101::begin()'],['../classn_r_f24.html#a60eb59262c5004b587b1d8177706ff28',1,'nRF24::begin()'],['../class_r_f69.html#a35944b24d27a1ac98c1034cfcdb816cd',1,'RF69::begin()'],['../class_r_f_m95.html#a5c37eaf6ae8c558a9a623157dd9f894a',1,'RFM95::begin()'],['../class_r_f_m96.html#aef1588799e5855cb464259e8ce2d865b',1,'RFM96::begin()'],['../class_si4430.html#aaed612b8936609442042d8156e085d2c',1,'Si4430::begin()'],['../class_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3',1,'Si4431::begin()'],['../class_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_s_x126x.html#a1b97488c6887df2e0291bba1b852605e',1,'SX126x::begin()'],['../class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9',1,'SX1272::begin()'],['../class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()'],['../class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3',1,'SX1277::begin()'],['../class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf',1,'SX1278::begin()'],['../class_s_x1279.html#a324a37dee0522f43692cd414141becc2',1,'SX1279::begin()'],['../class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430',1,'SX127x::begin()'],['../class_s_x128x.html#acbd0d1a48051ccd35f4a89c9b8d05bdf',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a4befd17d1f753049f7ec08c48d8b8496',1,'APRSClient::begin()'],['../class_a_x25_client.html#a38be2b9385e4804339b3e4b57b90c2ca',1,'AX25Client::begin()'],['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::begin()'],['../class_hell_client.html#a225775fe87f9ed3c3a04142697641242',1,'HellClient::begin()'],['../class_morse_client.html#a516f19bb51b87ead7f7ed149f2ca92cf',1,'MorseClient::begin()'],['../class_r_t_t_y_client.html#ac4ae2458f8005c87161c74cf827d35b9',1,'RTTYClient::begin()'],['../class_s_s_t_v_client.html#a3d85be3941250366eec2cd9a147a4f5c',1,'SSTVClient::begin(float base, const SSTVMode_t &mode, float correction=1.0)'],['../class_s_s_t_v_client.html#a8606cf73f86f6f1b29cea9ae9b46c81e',1,'SSTVClient::begin(const SSTVMode_t &mode, float correction=1.0)']]], ['beginble_359',['beginBLE',['../class_s_x128x.html#a316340d7ba2a6e7cb5742e3ff21e728c',1,'SX128x']]], ['beginflrc_360',['beginFLRC',['../class_s_x128x.html#ac7df67afbb0b1a88daf5ec50f3d65660',1,'SX128x']]], - ['beginfsk_361',['beginFSK',['../class_s_x1262.html#a85dadad94eb55ea62a9626a2602e3bde',1,'SX1262::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840',1,'SX1276::beginFSK()'],['../class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44',1,'SX1277::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b',1,'SX1279::beginFSK()'],['../class_s_x127x.html#add78edb65673d9e88931a55b0672a9f3',1,'SX127x::beginFSK()']]], + ['beginfsk_361',['beginFSK',['../class_r_f_m95.html#a878cb6f8df95b3bdfa4553384a43e974',1,'RFM95::beginFSK()'],['../class_r_f_m96.html#ae92d6950e533f2501be22c3923681a86',1,'RFM96::beginFSK()'],['../class_s_x1262.html#a85dadad94eb55ea62a9626a2602e3bde',1,'SX1262::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840',1,'SX1276::beginFSK()'],['../class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44',1,'SX1277::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b',1,'SX1279::beginFSK()'],['../class_s_x127x.html#add78edb65673d9e88931a55b0672a9f3',1,'SX127x::beginFSK()']]], ['begingfsk_362',['beginGFSK',['../class_s_x128x.html#a8dd8ce38bc9d0d8dbd711b373e864e93',1,'SX128x']]], ['begintransaction_363',['beginTransaction',['../class_module.html#a3d0caa9f5e38cfa2c609570a89a4a703',1,'Module']]], ['bytearr_364',['byteArr',['../class_i_t_a2_string.html#a3f42f7ad98473dbe36515e676622ed3d',1,'ITA2String']]]