diff --git a/_s_s_t_v_8h_source.html b/_s_s_t_v_8h_source.html index 6f1384fa..9c9150ac 100644 --- a/_s_s_t_v_8h_source.html +++ b/_s_s_t_v_8h_source.html @@ -174,60 +174,63 @@ $(document).ready(function(){initNavTree('_s_s_t_v_8h_source.html',''); initResi
137 
138  // basic methods
139 
-
151  int16_t begin(float base, const SSTVMode_t& mode, float correction = 1.0);
+
149  int16_t begin(float base, const SSTVMode_t& mode);
+
150 
+
151  #if !defined(RADIOLIB_EXCLUDE_AFSK)
152 
-
153  #if !defined(RADIOLIB_EXCLUDE_AFSK)
-
154 
-
163  int16_t begin(const SSTVMode_t& mode, float correction = 1.0);
-
164  #endif
-
165 
-
169  void idle();
+
159  int16_t begin(const SSTVMode_t& mode);
+
160  #endif
+
161 
+
169  int16_t setCorrection(float correction);
170 
-
174  void sendHeader();
+
174  void idle();
175 
-
181  void sendLine(uint32_t* imgLine);
-
182 
-
188  uint16_t getPictureHeight() const;
-
189 
-
190 #if !defined(RADIOLIB_GODMODE)
-
191  private:
-
192 #endif
-
193  PhysicalLayer* _phy;
-
194  #if !defined(RADIOLIB_EXCLUDE_AFSK)
-
195  AFSKClient* _audio;
-
196  #endif
-
197 
-
198  uint32_t _base = 0;
-
199  SSTVMode_t _mode = Scottie1;
-
200  bool _firstLine = true;
-
201 
-
202  void tone(float freq, uint32_t len = 0);
-
203 };
-
204 
-
205 #endif
+
179  void sendHeader();
+
180 
+
186  void sendLine(uint32_t* imgLine);
+
187 
+
193  uint16_t getPictureHeight() const;
+
194 
+
195 #if !defined(RADIOLIB_GODMODE)
+
196  private:
+
197 #endif
+
198  PhysicalLayer* _phy;
+
199  #if !defined(RADIOLIB_EXCLUDE_AFSK)
+
200  AFSKClient* _audio;
+
201  #endif
+
202 
+
203  uint32_t _base = 0;
+
204  SSTVMode_t _mode = Scottie1;
+
205  bool _firstLine = true;
206 
-
207 #endif
+
207  void tone(float freq, uint32_t len = 0);
+
208 };
+
209 
+
210 #endif
+
211 
+
212 #endif
-
SSTVClient::sendHeader
void sendHeader()
Sends synchronization header for the SSTV mode set in begin method.
Definition: SSTV.cpp:204
+
SSTVClient::sendHeader
void sendHeader()
Sends synchronization header for the SSTV mode set in begin method.
Definition: SSTV.cpp:212
SSTVMode_t::height
uint16_t height
Picture height in pixels.
Definition: SSTV.h:86
SSTVMode_t::width
uint16_t width
Picture width in pixels.
Definition: SSTV.h:81
SSTVMode_t
Structure to save data about supported SSTV modes.
Definition: SSTV.h:71
SSTVMode_t::visCode
uint8_t visCode
Unique VIS code of the SSTV mode.
Definition: SSTV.h:76
AFSKClient
Client for audio-based transmissions. Requires Arduino tone() function, and a module capable of direc...
Definition: AFSK.h:17
tone_t
Structure to save data about tone.
Definition: SSTV.h:43
-
SSTVClient::sendLine
void sendLine(uint32_t *imgLine)
Sends single picture line in the currently configured SSTV mode.
Definition: SSTV.cpp:241
+
SSTVClient::sendLine
void sendLine(uint32_t *imgLine)
Sends single picture line in the currently configured SSTV mode.
Definition: SSTV.cpp:249
SSTVMode_t::scanPixelLen
uint16_t scanPixelLen
Pixel scan length in us.
Definition: SSTV.h:91
+
SSTVClient::setCorrection
int16_t setCorrection(float correction)
Set correction coefficient for tone length.
Definition: SSTV.cpp:193
tone_t::freq
uint16_t freq
Frequency of tone in Hz, set to 0 for picture scan tones.
Definition: SSTV.h:63
SSTVClient::SSTVClient
SSTVClient(PhysicalLayer *phy)
Constructor for 2-FSK mode.
Definition: SSTV.cpp:157
SSTVMode_t::numTones
uint8_t numTones
Number of tones in each transmission line. Picture scan data is considered single tone.
Definition: SSTV.h:96
tone_t::len
uint32_t len
Length of tone in us, set to 0 for picture scan tones.
Definition: SSTV.h:58
SSTVMode_t::tones
tone_t tones[8]
Sequence of tones in each transmission line. This is used to create the correct encoding sequence.
Definition: SSTV.h:101
-
SSTVClient::idle
void idle()
Sends out tone at 1900 Hz.
Definition: SSTV.cpp:199
+
SSTVClient::idle
void idle()
Sends out tone at 1900 Hz.
Definition: SSTV.cpp:207
PhysicalLayer
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:14
-
SSTVClient::begin
int16_t begin(float base, const SSTVMode_t &mode, float correction=1.0)
Initialization method for 2-FSK.
Definition: SSTV.cpp:182
SSTVClient
Client for SSTV transmissions.
Definition: SSTV.h:120
-
SSTVClient::getPictureHeight
uint16_t getPictureHeight() const
Get picture height of the currently configured SSTV mode.
Definition: SSTV.cpp:280
+
SSTVClient::begin
int16_t begin(float base, const SSTVMode_t &mode)
Initialization method for 2-FSK.
Definition: SSTV.cpp:182
+
SSTVClient::getPictureHeight
uint16_t getPictureHeight() const
Get picture height of the currently configured SSTV mode.
Definition: SSTV.cpp:288
tone_t::type
enum tone_t::@0 type
Tone type: GENERIC for sync and porch tones, SCAN_GREEN, SCAN_BLUE and SCAN_RED for scan lines.
diff --git a/class_s_s_t_v_client.html b/class_s_s_t_v_client.html index ec6c24f2..f63f22e7 100644 --- a/class_s_s_t_v_client.html +++ b/class_s_s_t_v_client.html @@ -103,12 +103,15 @@ Public Member Functions  SSTVClient (AFSKClient *audio)  Constructor for AFSK mode. More...
  -int16_t begin (float base, const SSTVMode_t &mode, float correction=1.0) - Initialization method for 2-FSK. More...
-  -int16_t begin (const SSTVMode_t &mode, float correction=1.0) - Initialization method for AFSK. More...
-  +int16_t begin (float base, const SSTVMode_t &mode) + Initialization method for 2-FSK. More...
+  +int16_t begin (const SSTVMode_t &mode) + Initialization method for AFSK. More...
+  +int16_t setCorrection (float correction) + Set correction coefficient for tone length. More...
void idle ()  Sends out tone at 1900 Hz.
@@ -196,8 +199,8 @@ void Member Function Documentation - -

◆ begin() [1/2]

+ +

◆ begin() [1/2]

@@ -206,18 +209,8 @@ void int16_t SSTVClient::begin ( const SSTVMode_t &  - mode, - - - + mode) - float  - correction = 1.0  - - - - ) -
@@ -226,7 +219,6 @@ void 
Parameters
-
modeSSTV mode to be used. Currently supported modes are Scottie1, Scottie2, ScottieDX, Martin1, Martin2, Wrasse, PasokonP3, PasokonP5 and PasokonP7.
correctionTiming correction factor, used to adjust the length of timing pulses. Less than 1.0 leads to shorter timing pulses, defaults to 1.0 (no correction).
@@ -234,8 +226,8 @@ void 
-

◆ begin() [2/2]

+ +

◆ begin() [2/2]

@@ -250,13 +242,7 @@ void  const SSTVMode_t &  - mode, - - - - - float  - correction = 1.0  + mode  @@ -271,7 +257,6 @@ void  baseBase "0 Hz tone" RF frequency to be used in MHz. modeSSTV mode to be used. Currently supported modes are Scottie1, Scottie2, ScottieDX, Martin1, Martin2, Wrasse, PasokonP3, PasokonP5 and PasokonP7. - correctionTiming correction factor, used to adjust the length of timing pulses. Less than 1.0 leads to shorter timing pulses, defaults to 1.0 (no correction). @@ -323,6 +308,33 @@ void  +

◆ setCorrection()

+ +
+
+ + + + + + + + +
int16_t SSTVClient::setCorrection (float correction)
+
+ +

Set correction coefficient for tone length.

+
Parameters
+ + +
correctionTiming correction factor, used to adjust the length of timing pulses. Less than 1.0 leads to shorter timing pulses, defaults to 1.0 (no correction).
+
+
+
Returns
Status Codes
+

The documentation for this class was generated from the following files:
    diff --git a/class_s_s_t_v_client.js b/class_s_s_t_v_client.js index 10b35046..a390bb5f 100644 --- a/class_s_s_t_v_client.js +++ b/class_s_s_t_v_client.js @@ -2,10 +2,11 @@ var class_s_s_t_v_client = [ [ "SSTVClient", "class_s_s_t_v_client.html#af15cf501c00172270d2d2c43d7a7100a", null ], [ "SSTVClient", "class_s_s_t_v_client.html#a99e46bec8403dfc36b9e5b102b1f7cf1", null ], - [ "begin", "class_s_s_t_v_client.html#a8606cf73f86f6f1b29cea9ae9b46c81e", null ], - [ "begin", "class_s_s_t_v_client.html#a3d85be3941250366eec2cd9a147a4f5c", null ], + [ "begin", "class_s_s_t_v_client.html#afd4257e858a88e5847854a46f166a9b0", null ], + [ "begin", "class_s_s_t_v_client.html#a3769dcdebf8b1fa01eb2d8bd2bb3815a", null ], [ "getPictureHeight", "class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d", null ], [ "idle", "class_s_s_t_v_client.html#a0126ac04934f589b8cb04a038c342044", null ], [ "sendHeader", "class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e", null ], - [ "sendLine", "class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0", null ] + [ "sendLine", "class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0", null ], + [ "setCorrection", "class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e", null ] ]; \ No newline at end of file diff --git a/functions_b.html b/functions_b.html index 44cc5ed8..ca73c7a6 100644 --- a/functions_b.html +++ b/functions_b.html @@ -105,7 +105,7 @@ $(document).ready(function(){initNavTree('functions_b.html',''); initResizable() , Si4431 , Si4432 , Si443x -, SSTVClient +, SSTVClient , SX1231 , SX1262 , SX1268 diff --git a/functions_func_b.html b/functions_func_b.html index 367feca9..fe100289 100644 --- a/functions_func_b.html +++ b/functions_func_b.html @@ -105,7 +105,7 @@ $(document).ready(function(){initNavTree('functions_func_b.html',''); initResiza , Si4431 , Si4432 , Si443x -, SSTVClient +, SSTVClient , SX1231 , SX1262 , SX1268 diff --git a/functions_func_s.html b/functions_func_s.html index 87de2968..c184944d 100644 --- a/functions_func_s.html +++ b/functions_func_s.html @@ -160,6 +160,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
  • setCorrection() : AX25Client +, SSTVClient
  • setCRC() : SX126x @@ -417,8 +418,8 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza : CC1101 , RF69 , Si443x -, SX126x -, SX127x +, SX126x +, SX127x , SX128x
  • setTCXO() @@ -482,9 +483,9 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza , RF69 , RTTYClient , Si443x -, SX126x +, SX126x , SX127x -, SX128x +, SX128x
  • startChannelScan() : SX126x diff --git a/functions_s.html b/functions_s.html index 2847a682..0e27eaa5 100644 --- a/functions_s.html +++ b/functions_s.html @@ -166,6 +166,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • setCorrection() : AX25Client +, SSTVClient
  • setCRC() : SX126x @@ -363,7 +364,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() , RF69
  • setReceivePipe() -: nRF24 +: nRF24
  • setRecvSequence() : AX25Frame @@ -423,9 +424,9 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() : CC1101 , RF69 , Si443x -, SX126x +, SX126x , SX127x -, SX128x +, SX128x
  • setTCXO() : SX126x @@ -500,7 +501,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() , RF69 , RTTYClient , Si443x -, SX126x +, SX126x , SX127x , SX128x
  • @@ -536,7 +537,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • startTransmit() : CC1101 , nRF24 -, PhysicalLayer +, PhysicalLayer , RF69 , Si443x , SX126x diff --git a/navtreedata.js b/navtreedata.js index 727478e8..45673995 100644 --- a/navtreedata.js +++ b/navtreedata.js @@ -46,9 +46,9 @@ var NAVTREEINDEX = [ "_a_f_s_k_8h_source.html", "class_morse_client.html#a2f4433a88741564f28f673cf51486615", -"class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8", -"class_s_x128x.html#aa11ba80f0cebb3e6927c775ad5f96b4e", -"group__status__codes.html#gab0f9cb8ee829a8504fc110de18c4ff67" +"class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22", +"class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a", +"group__status__codes.html#gaabe141287f2d6ba723658309f4464662" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/navtreeindex1.js b/navtreeindex1.js index a93c94b3..decdde74 100644 --- a/navtreeindex1.js +++ b/navtreeindex1.js @@ -203,13 +203,14 @@ var NAVTREEINDEX1 = "class_r_t_t_y_client.html#af51f7af5ca169a1dcfab604789b466dc":[3,0,21,18], "class_s_s_t_v_client.html":[3,0,26], "class_s_s_t_v_client.html#a0126ac04934f589b8cb04a038c342044":[3,0,26,5], +"class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e":[3,0,26,8], "class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e":[3,0,26,6], -"class_s_s_t_v_client.html#a3d85be3941250366eec2cd9a147a4f5c":[3,0,26,3], +"class_s_s_t_v_client.html#a3769dcdebf8b1fa01eb2d8bd2bb3815a":[3,0,26,3], "class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0":[3,0,26,7], -"class_s_s_t_v_client.html#a8606cf73f86f6f1b29cea9ae9b46c81e":[3,0,26,2], "class_s_s_t_v_client.html#a99e46bec8403dfc36b9e5b102b1f7cf1":[3,0,26,1], "class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d":[3,0,26,4], "class_s_s_t_v_client.html#af15cf501c00172270d2d2c43d7a7100a":[3,0,26,0], +"class_s_s_t_v_client.html#afd4257e858a88e5847854a46f166a9b0":[3,0,26,2], "class_s_x1231.html":[3,0,28], "class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244":[3,0,28,1], "class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269":[3,0,28,0], @@ -248,6 +249,5 @@ var NAVTREEINDEX1 = "class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8":[3,0,32,9], "class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,32,69], "class_s_x126x.html#a514cabe74bbe3434d7e4f244c4077752":[3,0,32,45], -"class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6":[3,0,32,55], -"class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22":[3,0,32,50] +"class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6":[3,0,32,55] }; diff --git a/navtreeindex2.js b/navtreeindex2.js index 1075622a..3e20c48d 100644 --- a/navtreeindex2.js +++ b/navtreeindex2.js @@ -1,5 +1,6 @@ var NAVTREEINDEX2 = { +"class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22":[3,0,32,50], "class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8":[3,0,32,47], "class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376":[3,0,32,56], "class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd":[3,0,32,4], @@ -248,6 +249,5 @@ var NAVTREEINDEX2 = "class_s_x128x.html#a94d3003277925e2dc3372548b3311008":[3,0,43,12], "class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a":[3,0,43,16], "class_s_x128x.html#a99491c705e88dddc820f884b778f1660":[3,0,43,32], -"class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7":[3,0,43,0], -"class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a":[3,0,43,30] +"class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7":[3,0,43,0] }; diff --git a/navtreeindex3.js b/navtreeindex3.js index 2549596f..e04cbbb3 100644 --- a/navtreeindex3.js +++ b/navtreeindex3.js @@ -1,5 +1,6 @@ var NAVTREEINDEX3 = { +"class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a":[3,0,43,30], "class_s_x128x.html#aa11ba80f0cebb3e6927c775ad5f96b4e":[3,0,43,49], "class_s_x128x.html#aa4b1e0b96347011522e053f30202c0fe":[3,0,43,31], "class_s_x128x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,43,55], @@ -248,6 +249,5 @@ var NAVTREEINDEX3 = "group__status__codes.html#ga9dc55947447ed9c91217f86a9bca75bb":[2,3,32], "group__status__codes.html#ga9f80eb00fad12bb0bec384ad83b6941b":[2,3,18], "group__status__codes.html#gaa1f484c73f9abe05408c84fe5891539b":[2,3,37], -"group__status__codes.html#gaa5d0e76a10099c6e1cfd8f24e48995a2":[2,3,27], -"group__status__codes.html#gaabe141287f2d6ba723658309f4464662":[2,3,19] +"group__status__codes.html#gaa5d0e76a10099c6e1cfd8f24e48995a2":[2,3,27] }; diff --git a/navtreeindex4.js b/navtreeindex4.js index 633d69b6..5038d4b6 100644 --- a/navtreeindex4.js +++ b/navtreeindex4.js @@ -1,5 +1,6 @@ var NAVTREEINDEX4 = { +"group__status__codes.html#gaabe141287f2d6ba723658309f4464662":[2,3,19], "group__status__codes.html#gab0f9cb8ee829a8504fc110de18c4ff67":[2,3,23], "group__status__codes.html#gab152891bb13f6f70e6631820904e9d90":[2,3,44], "group__status__codes.html#gabc695a4fae689e856ae6f618e334066f":[2,3,51], @@ -21,8 +22,8 @@ var NAVTREEINDEX4 = "group__status__codes.html#gafbc04b924d23cba05307e94972d7d607":[2,3,5], "group__status__codes.html#gafeff72bd7b618959d86b804a11f09063":[2,3,1], "hierarchy.html":[3,2], -"index.html":[], "index.html":[0], +"index.html":[], "modules.html":[2], "n_r_f24_8h_source.html":[4,0,0,0,2,0], "pages.html":[], diff --git a/search/all_1.js b/search/all_1.js index 40855f5c..70a162aa 100644 --- a/search/all_1.js +++ b/search/all_1.js @@ -1,6 +1,6 @@ var searchData= [ - ['begin_7',['begin',['../class_module.html#af6bfd022681d360082e3dd31a984e1f7',1,'Module::begin()'],['../class_c_c1101.html#a3b40fd5505fec6bad5986f67a5062593',1,'CC1101::begin()'],['../class_l_l_c_c68.html#a039fc3259e4f208d96eaa310720b161d',1,'LLCC68::begin()'],['../classn_r_f24.html#a60eb59262c5004b587b1d8177706ff28',1,'nRF24::begin()'],['../class_r_f69.html#a35944b24d27a1ac98c1034cfcdb816cd',1,'RF69::begin()'],['../class_r_f_m95.html#a5c37eaf6ae8c558a9a623157dd9f894a',1,'RFM95::begin()'],['../class_r_f_m96.html#aef1588799e5855cb464259e8ce2d865b',1,'RFM96::begin()'],['../class_si4430.html#aaed612b8936609442042d8156e085d2c',1,'Si4430::begin()'],['../class_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3',1,'Si4431::begin()'],['../class_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_s_x126x.html#a936a40038e05740a528f2b53f8e17010',1,'SX126x::begin()'],['../class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9',1,'SX1272::begin()'],['../class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()'],['../class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3',1,'SX1277::begin()'],['../class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf',1,'SX1278::begin()'],['../class_s_x1279.html#a324a37dee0522f43692cd414141becc2',1,'SX1279::begin()'],['../class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430',1,'SX127x::begin()'],['../class_s_x128x.html#acbd0d1a48051ccd35f4a89c9b8d05bdf',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a4befd17d1f753049f7ec08c48d8b8496',1,'APRSClient::begin()'],['../class_a_x25_client.html#a38be2b9385e4804339b3e4b57b90c2ca',1,'AX25Client::begin()'],['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::begin()'],['../class_hell_client.html#a225775fe87f9ed3c3a04142697641242',1,'HellClient::begin()'],['../class_morse_client.html#a516f19bb51b87ead7f7ed149f2ca92cf',1,'MorseClient::begin()'],['../class_pager_client.html#a7c9b5107f17b181ad8c99b6fc5046ee5',1,'PagerClient::begin()'],['../class_r_t_t_y_client.html#ac4ae2458f8005c87161c74cf827d35b9',1,'RTTYClient::begin()'],['../class_s_s_t_v_client.html#a3d85be3941250366eec2cd9a147a4f5c',1,'SSTVClient::begin(float base, const SSTVMode_t &mode, float correction=1.0)'],['../class_s_s_t_v_client.html#a8606cf73f86f6f1b29cea9ae9b46c81e',1,'SSTVClient::begin(const SSTVMode_t &mode, float correction=1.0)']]], + ['begin_7',['begin',['../class_module.html#af6bfd022681d360082e3dd31a984e1f7',1,'Module::begin()'],['../class_c_c1101.html#a3b40fd5505fec6bad5986f67a5062593',1,'CC1101::begin()'],['../class_l_l_c_c68.html#a039fc3259e4f208d96eaa310720b161d',1,'LLCC68::begin()'],['../classn_r_f24.html#a60eb59262c5004b587b1d8177706ff28',1,'nRF24::begin()'],['../class_r_f69.html#a35944b24d27a1ac98c1034cfcdb816cd',1,'RF69::begin()'],['../class_r_f_m95.html#a5c37eaf6ae8c558a9a623157dd9f894a',1,'RFM95::begin()'],['../class_r_f_m96.html#aef1588799e5855cb464259e8ce2d865b',1,'RFM96::begin()'],['../class_si4430.html#aaed612b8936609442042d8156e085d2c',1,'Si4430::begin()'],['../class_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3',1,'Si4431::begin()'],['../class_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_s_x126x.html#a936a40038e05740a528f2b53f8e17010',1,'SX126x::begin()'],['../class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9',1,'SX1272::begin()'],['../class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()'],['../class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3',1,'SX1277::begin()'],['../class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf',1,'SX1278::begin()'],['../class_s_x1279.html#a324a37dee0522f43692cd414141becc2',1,'SX1279::begin()'],['../class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430',1,'SX127x::begin()'],['../class_s_x128x.html#acbd0d1a48051ccd35f4a89c9b8d05bdf',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a4befd17d1f753049f7ec08c48d8b8496',1,'APRSClient::begin()'],['../class_a_x25_client.html#a38be2b9385e4804339b3e4b57b90c2ca',1,'AX25Client::begin()'],['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::begin()'],['../class_hell_client.html#a225775fe87f9ed3c3a04142697641242',1,'HellClient::begin()'],['../class_morse_client.html#a516f19bb51b87ead7f7ed149f2ca92cf',1,'MorseClient::begin()'],['../class_pager_client.html#a7c9b5107f17b181ad8c99b6fc5046ee5',1,'PagerClient::begin()'],['../class_r_t_t_y_client.html#ac4ae2458f8005c87161c74cf827d35b9',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)']]], ['beginble_8',['beginBLE',['../class_s_x128x.html#a316340d7ba2a6e7cb5742e3ff21e728c',1,'SX128x']]], ['beginflrc_9',['beginFLRC',['../class_s_x128x.html#ac7df67afbb0b1a88daf5ec50f3d65660',1,'SX128x']]], ['beginfsk_10',['beginFSK',['../class_r_f_m95.html#a7e0f8fa59ddd48f7b026b0f996202b30',1,'RFM95::beginFSK()'],['../class_r_f_m96.html#a82ef1b7354238637eee6f4d65b9be6e5',1,'RFM96::beginFSK()'],['../class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1',1,'SX1262::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840',1,'SX1276::beginFSK()'],['../class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44',1,'SX1277::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b',1,'SX1279::beginFSK()'],['../class_s_x127x.html#add78edb65673d9e88931a55b0672a9f3',1,'SX127x::beginFSK()']]], diff --git a/search/all_f.js b/search/all_f.js index 896f0027..24adc690 100644 --- a/search/all_f.js +++ b/search/all_f.js @@ -20,7 +20,7 @@ var searchData= ['setbitrate_227',['setBitRate',['../class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::setBitRate()'],['../classn_r_f24.html#a0873f58ae62e41cff99813e21cc8b02a',1,'nRF24::setBitRate()'],['../class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13',1,'RF69::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e',1,'SX126x::setBitRate()'],['../class_s_x127x.html#a606d839b3a992c681ac9ad7ca6020022',1,'SX127x::setBitRate()'],['../class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee',1,'SX128x::setBitRate()'],['../class_physical_layer.html#a56e9cf39bc8847492f7f3cd67ebf1c46',1,'PhysicalLayer::setBitRate()']]], ['setbroadcastaddress_228',['setBroadcastAddress',['../class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8',1,'RF69::setBroadcastAddress()'],['../class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034',1,'SX126x::setBroadcastAddress()'],['../class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40',1,'SX127x::setBroadcastAddress()']]], ['setcodingrate_229',['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_230',['setCorrection',['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client']]], + ['setcorrection_230',['setCorrection',['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client::setCorrection()'],['../class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e',1,'SSTVClient::setCorrection()']]], ['setcrc_231',['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_232',['setCrcFiltering',['../class_c_c1101.html#aafac40359c4a1bb01aae12da6b03be26',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#a9b3a76eb89cad60dcad92513e6848f5a',1,'SX127x::setCrcFiltering()']]], ['setcurrentlimit_233',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]], diff --git a/search/functions_1.js b/search/functions_1.js index df2777fe..828d7f61 100644 --- a/search/functions_1.js +++ b/search/functions_1.js @@ -1,6 +1,6 @@ var searchData= [ - ['begin_396',['begin',['../class_module.html#af6bfd022681d360082e3dd31a984e1f7',1,'Module::begin()'],['../class_c_c1101.html#a3b40fd5505fec6bad5986f67a5062593',1,'CC1101::begin()'],['../class_l_l_c_c68.html#a039fc3259e4f208d96eaa310720b161d',1,'LLCC68::begin()'],['../classn_r_f24.html#a60eb59262c5004b587b1d8177706ff28',1,'nRF24::begin()'],['../class_r_f69.html#a35944b24d27a1ac98c1034cfcdb816cd',1,'RF69::begin()'],['../class_r_f_m95.html#a5c37eaf6ae8c558a9a623157dd9f894a',1,'RFM95::begin()'],['../class_r_f_m96.html#aef1588799e5855cb464259e8ce2d865b',1,'RFM96::begin()'],['../class_si4430.html#aaed612b8936609442042d8156e085d2c',1,'Si4430::begin()'],['../class_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3',1,'Si4431::begin()'],['../class_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_s_x126x.html#a936a40038e05740a528f2b53f8e17010',1,'SX126x::begin()'],['../class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9',1,'SX1272::begin()'],['../class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()'],['../class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3',1,'SX1277::begin()'],['../class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf',1,'SX1278::begin()'],['../class_s_x1279.html#a324a37dee0522f43692cd414141becc2',1,'SX1279::begin()'],['../class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430',1,'SX127x::begin()'],['../class_s_x128x.html#acbd0d1a48051ccd35f4a89c9b8d05bdf',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a4befd17d1f753049f7ec08c48d8b8496',1,'APRSClient::begin()'],['../class_a_x25_client.html#a38be2b9385e4804339b3e4b57b90c2ca',1,'AX25Client::begin()'],['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::begin()'],['../class_hell_client.html#a225775fe87f9ed3c3a04142697641242',1,'HellClient::begin()'],['../class_morse_client.html#a516f19bb51b87ead7f7ed149f2ca92cf',1,'MorseClient::begin()'],['../class_pager_client.html#a7c9b5107f17b181ad8c99b6fc5046ee5',1,'PagerClient::begin()'],['../class_r_t_t_y_client.html#ac4ae2458f8005c87161c74cf827d35b9',1,'RTTYClient::begin()'],['../class_s_s_t_v_client.html#a3d85be3941250366eec2cd9a147a4f5c',1,'SSTVClient::begin(float base, const SSTVMode_t &mode, float correction=1.0)'],['../class_s_s_t_v_client.html#a8606cf73f86f6f1b29cea9ae9b46c81e',1,'SSTVClient::begin(const SSTVMode_t &mode, float correction=1.0)']]], + ['begin_396',['begin',['../class_module.html#af6bfd022681d360082e3dd31a984e1f7',1,'Module::begin()'],['../class_c_c1101.html#a3b40fd5505fec6bad5986f67a5062593',1,'CC1101::begin()'],['../class_l_l_c_c68.html#a039fc3259e4f208d96eaa310720b161d',1,'LLCC68::begin()'],['../classn_r_f24.html#a60eb59262c5004b587b1d8177706ff28',1,'nRF24::begin()'],['../class_r_f69.html#a35944b24d27a1ac98c1034cfcdb816cd',1,'RF69::begin()'],['../class_r_f_m95.html#a5c37eaf6ae8c558a9a623157dd9f894a',1,'RFM95::begin()'],['../class_r_f_m96.html#aef1588799e5855cb464259e8ce2d865b',1,'RFM96::begin()'],['../class_si4430.html#aaed612b8936609442042d8156e085d2c',1,'Si4430::begin()'],['../class_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3',1,'Si4431::begin()'],['../class_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_s_x126x.html#a936a40038e05740a528f2b53f8e17010',1,'SX126x::begin()'],['../class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9',1,'SX1272::begin()'],['../class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()'],['../class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3',1,'SX1277::begin()'],['../class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf',1,'SX1278::begin()'],['../class_s_x1279.html#a324a37dee0522f43692cd414141becc2',1,'SX1279::begin()'],['../class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430',1,'SX127x::begin()'],['../class_s_x128x.html#acbd0d1a48051ccd35f4a89c9b8d05bdf',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a4befd17d1f753049f7ec08c48d8b8496',1,'APRSClient::begin()'],['../class_a_x25_client.html#a38be2b9385e4804339b3e4b57b90c2ca',1,'AX25Client::begin()'],['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::begin()'],['../class_hell_client.html#a225775fe87f9ed3c3a04142697641242',1,'HellClient::begin()'],['../class_morse_client.html#a516f19bb51b87ead7f7ed149f2ca92cf',1,'MorseClient::begin()'],['../class_pager_client.html#a7c9b5107f17b181ad8c99b6fc5046ee5',1,'PagerClient::begin()'],['../class_r_t_t_y_client.html#ac4ae2458f8005c87161c74cf827d35b9',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)']]], ['beginble_397',['beginBLE',['../class_s_x128x.html#a316340d7ba2a6e7cb5742e3ff21e728c',1,'SX128x']]], ['beginflrc_398',['beginFLRC',['../class_s_x128x.html#ac7df67afbb0b1a88daf5ec50f3d65660',1,'SX128x']]], ['beginfsk_399',['beginFSK',['../class_r_f_m95.html#a7e0f8fa59ddd48f7b026b0f996202b30',1,'RFM95::beginFSK()'],['../class_r_f_m96.html#a82ef1b7354238637eee6f4d65b9be6e5',1,'RFM96::beginFSK()'],['../class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1',1,'SX1262::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840',1,'SX1276::beginFSK()'],['../class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44',1,'SX1277::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b',1,'SX1279::beginFSK()'],['../class_s_x127x.html#add78edb65673d9e88931a55b0672a9f3',1,'SX127x::beginFSK()']]], diff --git a/search/functions_f.js b/search/functions_f.js index f58ca7de..61bea915 100644 --- a/search/functions_f.js +++ b/search/functions_f.js @@ -18,7 +18,7 @@ var searchData= ['setbitrate_523',['setBitRate',['../class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::setBitRate()'],['../classn_r_f24.html#a0873f58ae62e41cff99813e21cc8b02a',1,'nRF24::setBitRate()'],['../class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13',1,'RF69::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e',1,'SX126x::setBitRate()'],['../class_s_x127x.html#a606d839b3a992c681ac9ad7ca6020022',1,'SX127x::setBitRate()'],['../class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee',1,'SX128x::setBitRate()'],['../class_physical_layer.html#a56e9cf39bc8847492f7f3cd67ebf1c46',1,'PhysicalLayer::setBitRate()']]], ['setbroadcastaddress_524',['setBroadcastAddress',['../class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8',1,'RF69::setBroadcastAddress()'],['../class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034',1,'SX126x::setBroadcastAddress()'],['../class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40',1,'SX127x::setBroadcastAddress()']]], ['setcodingrate_525',['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_526',['setCorrection',['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client']]], + ['setcorrection_526',['setCorrection',['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client::setCorrection()'],['../class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e',1,'SSTVClient::setCorrection()']]], ['setcrc_527',['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_528',['setCrcFiltering',['../class_c_c1101.html#aafac40359c4a1bb01aae12da6b03be26',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#a9b3a76eb89cad60dcad92513e6848f5a',1,'SX127x::setCrcFiltering()']]], ['setcurrentlimit_529',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]],