diff --git a/_a_x25_8h_source.html b/_a_x25_8h_source.html
index ab6602d3..cff38b38 100644
--- a/_a_x25_8h_source.html
+++ b/_a_x25_8h_source.html
@@ -240,35 +240,37 @@ $(document).ready(function(){initNavTree('_a_x25_8h_source.html',''); initResiza
321 int16_t
begin(
const char* srcCallsign, uint8_t srcSSID = 0x00, uint8_t preambleLen = 8);
- 334 int16_t
transmit(
const char* str,
const char* destCallsign, uint8_t destSSID = 0x00);
+ 334 int16_t
transmit(String& str,
const char* destCallsign, uint8_t destSSID = 0x00);
-
-
- 345 #if !defined(RADIOLIB_GODMODE)
-
-
-
-
-
- 351 #if !defined(RADIOLIB_EXCLUDE_AFSK)
-
-
-
-
-
- 357 char _srcCallsign[RADIOLIB_AX25_MAX_CALLSIGN_LEN + 1] = {0, 0, 0, 0, 0, 0, 0};
- 358 uint8_t _srcSSID = 0;
- 359 uint16_t _preambleLen = 0;
-
- 361 static uint16_t getFrameCheckSequence(uint8_t* buff,
size_t len);
+ 347 int16_t
transmit(
const char* str,
const char* destCallsign, uint8_t destSSID = 0x00);
+
+
+
+ 358 #if !defined(RADIOLIB_GODMODE)
+
+
+
- 363 void getCallsign(
char* buff);
-
-
-
-
-
-
+
+ 364 #if !defined(RADIOLIB_EXCLUDE_AFSK)
+
+
+
+
+
+ 370 char _srcCallsign[RADIOLIB_AX25_MAX_CALLSIGN_LEN + 1] = {0, 0, 0, 0, 0, 0, 0};
+ 371 uint8_t _srcSSID = 0;
+ 372 uint16_t _preambleLen = 0;
+
+ 374 static uint16_t getFrameCheckSequence(uint8_t* buff,
size_t len);
+
+ 376 void getCallsign(
char* buff);
+
+
+
+
+
+
uint16_t infoLen
Number of bytes in the information field.
Definition: AX25.h:128
@@ -281,13 +283,13 @@ $(document).ready(function(){initNavTree('_a_x25_8h_source.html',''); initResiza
uint8_t * info
The info field.
Definition: AX25.h:144
int16_t begin(const char *srcCallsign, uint8_t srcSSID=0x00, uint8_t preambleLen=8)
Initialization method.
Definition: AX25.cpp:175
int16_t setRepeaters(char **repeaterCallsigns, uint8_t *repeaterSSIDs, uint8_t numRepeaters)
Method to set the repeater callsigns and SSIDs.
Definition: AX25.cpp:109
+int16_t transmit(String &str, const char *destCallsign, uint8_t destSSID=0x00)
Transmit unnumbered information (UI) frame.
Definition: AX25.cpp:195
void setRecvSequence(uint8_t seqNumber)
Method to set receive sequence number.
Definition: AX25.cpp:145
AX25Client(PhysicalLayer *phy)
Constructor for 2-FSK mode.
Definition: AX25.cpp:153
int16_t setCorrection(int16_t mark, int16_t space)
Set AFSK tone correction offset. On some platforms, this is required to get the audio produced by the...
Definition: AX25.cpp:168
uint8_t * repeaterSSIDs
Array of repeater SSIDs.
Definition: AX25.h:154
uint8_t destSSID
SSID of the destination station.
Definition: AX25.h:98
Client for APRS communication.
Definition: APRS.h:66
-int16_t transmit(const char *str, const char *destCallsign, uint8_t destSSID=0x00)
Transmit unnumbered information (UI) frame.
Definition: AX25.cpp:195
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:14
uint8_t control
The control field.
Definition: AX25.h:118
char destCallsign[RADIOLIB_AX25_MAX_CALLSIGN_LEN+1]
Callsign of the destination station.
Definition: AX25.h:93
@@ -298,7 +300,7 @@ $(document).ready(function(){initNavTree('_a_x25_8h_source.html',''); initResiza
AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control)
Overloaded constructor, for frames without info field.
Definition: AX25.cpp:4
AX25Frame & operator=(const AX25Frame &frame)
Overload for assignment operator.
Definition: AX25.cpp:74
uint8_t numRepeaters
Number of repeaters to be used.
Definition: AX25.h:113
-int16_t sendFrame(AX25Frame *frame)
Transmit arbitrary AX.25 frame.
Definition: AX25.cpp:206
+int16_t sendFrame(AX25Frame *frame)
Transmit arbitrary AX.25 frame.
Definition: AX25.cpp:210
char ** repeaterCallsigns
Array of repeater callsigns.
Definition: AX25.h:149
diff --git a/class_a_x25_client-members.html b/class_a_x25_client-members.html
index 6fb84f16..8b0c877f 100644
--- a/class_a_x25_client-members.html
+++ b/class_a_x25_client-members.html
@@ -95,7 +95,8 @@ $(document).ready(function(){initNavTree('class_a_x25_client.html',''); initResi
begin(const char *srcCallsign, uint8_t srcSSID=0x00, uint8_t preambleLen=8) | AX25Client | |
sendFrame(AX25Frame *frame) | AX25Client | |
setCorrection(int16_t mark, int16_t space) | AX25Client | |
-
transmit(const char *str, const char *destCallsign, uint8_t destSSID=0x00) | AX25Client | |
+
transmit(String &str, const char *destCallsign, uint8_t destSSID=0x00) | AX25Client | |
+
transmit(const char *str, const char *destCallsign, uint8_t destSSID=0x00) | AX25Client | |
diff --git a/class_a_x25_client.html b/class_a_x25_client.html
index 0ff541e3..a174279e 100644
--- a/class_a_x25_client.html
+++ b/class_a_x25_client.html
@@ -110,6 +110,9 @@ Public Member Functions
int16_t | begin (const char *srcCallsign, uint8_t srcSSID=0x00, uint8_t preambleLen=8) |
| Initialization method. More...
|
|
+int16_t | transmit (String &str, const char *destCallsign, uint8_t destSSID=0x00) |
+ | Transmit unnumbered information (UI) frame. More...
|
+ |
int16_t | transmit (const char *str, const char *destCallsign, uint8_t destSSID=0x00) |
| Transmit unnumbered information (UI) frame. More...
|
|
@@ -306,7 +309,7 @@ class APRSClient | <
-◆ transmit()
+◆ transmit() [1/2]
@@ -348,6 +351,51 @@ class
APRSClient | <
- Returns
- Status Codes
+
+
+
+◆ transmit() [2/2]
+
+
+
+
+
+ int16_t AX25Client::transmit |
+ ( |
+ String & |
+ str, |
+
+
+ |
+ |
+ const char * |
+ destCallsign, |
+
+
+ |
+ |
+ uint8_t |
+ destSSID = 0x00 |
+
+
+ |
+ ) |
+ | |
+
+
+
+
+
Transmit unnumbered information (UI) frame.
+
- Parameters
-
+
+ str | Data to be sent as Arduino String. |
+ destCallsign | Callsign of the destination station. |
+ destSSID | 4-bit SSID of the destination station (in case there are more stations with the same callsign). Defaults to 0. |
+
+
+
+
- Returns
- Status Codes
+
The documentation for this class was generated from the following files:
diff --git a/class_a_x25_client.js b/class_a_x25_client.js
index 4f4899bb..46a28528 100644
--- a/class_a_x25_client.js
+++ b/class_a_x25_client.js
@@ -6,5 +6,6 @@ var class_a_x25_client =
[ "sendFrame", "class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6", null ],
[ "setCorrection", "class_a_x25_client.html#aa6a10784d59428a4d5c13067ba6af69c", null ],
[ "transmit", "class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98", null ],
+ [ "transmit", "class_a_x25_client.html#ada21695e373b3e9b0e0f5d3cfbf29826", null ],
[ "APRSClient", "class_a_x25_client.html#ac7d2ea7e69067b7b4c6492e198505289", null ]
];
\ No newline at end of file
diff --git a/functions_func_t.html b/functions_func_t.html
index 6c04672b..e95659aa 100644
--- a/functions_func_t.html
+++ b/functions_func_t.html
@@ -96,11 +96,11 @@ $(document).ready(function(){initNavTree('functions_func_t.html',''); initResiza
: Module
- transmit()
-: AX25Client
+: AX25Client
, CC1101
, nRF24
-, PagerClient
-, PhysicalLayer
+, PagerClient
+, PhysicalLayer
, RF69
, Si443x
, SX126x
diff --git a/functions_t.html b/functions_t.html
index f5d4989d..4655d9a5 100644
--- a/functions_t.html
+++ b/functions_t.html
@@ -99,10 +99,10 @@ $(document).ready(function(){initNavTree('functions_t.html',''); initResizable()
: Module
- transmit()
-: AX25Client
+: AX25Client
, CC1101
, nRF24
-, PagerClient
+, PagerClient
, PhysicalLayer
, RF69
, Si443x
diff --git a/navtreedata.js b/navtreedata.js
index 248bf162..34a08cea 100644
--- a/navtreedata.js
+++ b/navtreedata.js
@@ -45,10 +45,10 @@ var NAVTREE =
var NAVTREEINDEX =
[
"_a_f_s_k_8h_source.html",
-"class_module.html#ae76932d2c2895939f8074c58848b61e8",
-"class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2",
-"class_s_x128x.html#a69ee7379f4b79abf626df186b2db6441",
-"group__status__codes.html#ga6b75df06d8c18366f85848331c49a1af"
+"class_module.html#ae7201089f1789070192ef1ea0c4f2498",
+"class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676",
+"class_s_x128x.html#a5f11803b3430bc059321b443f407e78b",
+"group__status__codes.html#ga691e968e9f057a6cecb37a5dd5d8bd68"
];
var SYNCONMSG = 'click to disable panel synchronisation';
diff --git a/navtreeindex0.js b/navtreeindex0.js
index 8315930c..26fffc8b 100644
--- a/navtreeindex0.js
+++ b/navtreeindex0.js
@@ -67,7 +67,8 @@ var NAVTREEINDEX0 =
"class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98":[3,0,2,5],
"class_a_x25_client.html#aa6a10784d59428a4d5c13067ba6af69c":[3,0,2,4],
"class_a_x25_client.html#ab074563d4d22a42d5ea9ad1693d6f373":[3,0,2,0],
-"class_a_x25_client.html#ac7d2ea7e69067b7b4c6492e198505289":[3,0,2,6],
+"class_a_x25_client.html#ac7d2ea7e69067b7b4c6492e198505289":[3,0,2,7],
+"class_a_x25_client.html#ada21695e373b3e9b0e0f5d3cfbf29826":[3,0,2,6],
"class_a_x25_frame.html":[3,0,3],
"class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70":[3,0,3,8],
"class_a_x25_frame.html#a138d97d90a371bef7ebd86cce1cc4979":[3,0,3,0],
@@ -248,6 +249,5 @@ var NAVTREEINDEX0 =
"class_module.html#ad21d31efe1ca5b4da8487f5e234b916a":[3,0,9,38],
"class_module.html#ad7ca9ae5a22cdacdf9437ca9cd37c9b4":[3,0,9,46],
"class_module.html#ae352c7a7b997fc1b17189c1312a8347f":[3,0,9,15],
-"class_module.html#ae53e355a77f2b7ce6473c62ac5f37334":[3,0,9,12],
-"class_module.html#ae7201089f1789070192ef1ea0c4f2498":[3,0,9,33]
+"class_module.html#ae53e355a77f2b7ce6473c62ac5f37334":[3,0,9,12]
};
diff --git a/navtreeindex1.js b/navtreeindex1.js
index 492ffe84..bed582af 100644
--- a/navtreeindex1.js
+++ b/navtreeindex1.js
@@ -1,5 +1,6 @@
var NAVTREEINDEX1 =
{
+"class_module.html#ae7201089f1789070192ef1ea0c4f2498":[3,0,9,33],
"class_module.html#ae76932d2c2895939f8074c58848b61e8":[3,0,9,23],
"class_module.html#ae89764d15e8df5694a6aec0e18f72d3f":[3,0,9,59],
"class_module.html#aeb4c7447372d56a7cae6db91994aacfc":[3,0,9,13],
@@ -248,6 +249,5 @@ var NAVTREEINDEX1 =
"class_s_x1268.html#af6b041392136b599eec57085e2067a6f":[3,0,31,2],
"class_s_x126x.html":[3,0,32],
"class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d":[3,0,32,40],
-"class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925":[3,0,32,17],
-"class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676":[3,0,32,39]
+"class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925":[3,0,32,17]
};
diff --git a/navtreeindex2.js b/navtreeindex2.js
index d6899b1f..67584d55 100644
--- a/navtreeindex2.js
+++ b/navtreeindex2.js
@@ -1,5 +1,6 @@
var NAVTREEINDEX2 =
{
+"class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676":[3,0,32,39],
"class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2":[3,0,32,48],
"class_s_x126x.html#a288257242e483cb3eb6944333179dd26":[3,0,32,49],
"class_s_x126x.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,32,29],
@@ -248,6 +249,5 @@ var NAVTREEINDEX2 =
"class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4":[3,0,43,7],
"class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee":[3,0,43,29],
"class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,43,56],
-"class_s_x128x.html#a53892566b0259d348158efe3c3c3601a":[3,0,43,60],
-"class_s_x128x.html#a5f11803b3430bc059321b443f407e78b":[3,0,43,42]
+"class_s_x128x.html#a53892566b0259d348158efe3c3c3601a":[3,0,43,60]
};
diff --git a/navtreeindex3.js b/navtreeindex3.js
index a4f0b337..ab58e0ef 100644
--- a/navtreeindex3.js
+++ b/navtreeindex3.js
@@ -1,5 +1,6 @@
var NAVTREEINDEX3 =
{
+"class_s_x128x.html#a5f11803b3430bc059321b443f407e78b":[3,0,43,42],
"class_s_x128x.html#a69ee7379f4b79abf626df186b2db6441":[3,0,43,10],
"class_s_x128x.html#a73e3655e92bca9a06e2d0abbf1a4bed4":[3,0,43,39],
"class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947":[3,0,43,35],
@@ -168,8 +169,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],
@@ -248,6 +249,5 @@ var NAVTREEINDEX3 =
"group__status__codes.html#ga55da4b2ee0661872a37f1c57fc61c666":[2,3,29],
"group__status__codes.html#ga58ff08f4dba334cf8e26474ec2d3facd":[2,3,60],
"group__status__codes.html#ga5d11e8ce64fb412c2169d0f30b9e9c62":[2,3,3],
-"group__status__codes.html#ga684497ce1c94442b5fe0396ea4ec930d":[2,3,33],
-"group__status__codes.html#ga691e968e9f057a6cecb37a5dd5d8bd68":[2,3,43]
+"group__status__codes.html#ga684497ce1c94442b5fe0396ea4ec930d":[2,3,33]
};
diff --git a/navtreeindex4.js b/navtreeindex4.js
index d3dfa891..9cbaf0b2 100644
--- a/navtreeindex4.js
+++ b/navtreeindex4.js
@@ -1,5 +1,6 @@
var NAVTREEINDEX4 =
{
+"group__status__codes.html#ga691e968e9f057a6cecb37a5dd5d8bd68":[2,3,43],
"group__status__codes.html#ga6b75df06d8c18366f85848331c49a1af":[2,3,36],
"group__status__codes.html#ga72b849c71b8fdf112d318518a3b1ac7d":[2,3,53],
"group__status__codes.html#ga733a7f3f12109103384522dac4d1146e":[2,3,9],
@@ -37,8 +38,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_10.js b/search/all_10.js
index 130ef14b..19a3f050 100644
--- a/search/all_10.js
+++ b/search/all_10.js
@@ -6,7 +6,7 @@ var searchData=
['tone_5ft_330',['tone_t',['../structtone__t.html',1,'']]],
['tones_331',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]],
['transfer_332',['transfer',['../class_module.html#a45e7823c44ac0aa8a10bd4f365890c98',1,'Module']]],
- ['transmit_333',['transmit',['../class_c_c1101.html#a7cb99a9200b21829b50e3fc3878573f4',1,'CC1101::transmit()'],['../classn_r_f24.html#a583d505bd3a638ecc5576dd2dd95f044',1,'nRF24::transmit()'],['../class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847',1,'RF69::transmit()'],['../class_si443x.html#a782748025e19ec6e597293afb6570bff',1,'Si443x::transmit()'],['../class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009',1,'SX126x::transmit()'],['../class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29',1,'SX127x::transmit()'],['../class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5',1,'SX128x::transmit()'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit()'],['../class_pager_client.html#a897f990002a4a2196fcdb31c547e0648',1,'PagerClient::transmit(String &str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_pager_client.html#aab6a8977f89d43620b98bcedf5a47dbd',1,'PagerClient::transmit(const char *str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_pager_client.html#a77aafe7c86e6e1e4e22990be4e7f090b',1,'PagerClient::transmit(uint8_t *data, size_t len, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f',1,'PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b',1,'PhysicalLayer::transmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'PhysicalLayer::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]],
+ ['transmit_333',['transmit',['../class_c_c1101.html#a7cb99a9200b21829b50e3fc3878573f4',1,'CC1101::transmit()'],['../classn_r_f24.html#a583d505bd3a638ecc5576dd2dd95f044',1,'nRF24::transmit()'],['../class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847',1,'RF69::transmit()'],['../class_si443x.html#a782748025e19ec6e597293afb6570bff',1,'Si443x::transmit()'],['../class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009',1,'SX126x::transmit()'],['../class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29',1,'SX127x::transmit()'],['../class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5',1,'SX128x::transmit()'],['../class_a_x25_client.html#ada21695e373b3e9b0e0f5d3cfbf29826',1,'AX25Client::transmit(String &str, const char *destCallsign, uint8_t destSSID=0x00)'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit(const char *str, const char *destCallsign, uint8_t destSSID=0x00)'],['../class_pager_client.html#a897f990002a4a2196fcdb31c547e0648',1,'PagerClient::transmit(String &str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_pager_client.html#aab6a8977f89d43620b98bcedf5a47dbd',1,'PagerClient::transmit(const char *str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_pager_client.html#a77aafe7c86e6e1e4e22990be4e7f090b',1,'PagerClient::transmit(uint8_t *data, size_t len, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f',1,'PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b',1,'PhysicalLayer::transmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'PhysicalLayer::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]],
['transmitdirect_334',['transmitDirect',['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect()'],['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_physical_layer.html#a4b04eb6155b06d8ef400131c647d54e7',1,'PhysicalLayer::transmitDirect()']]],
['transmitdirectasync_335',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]],
['type_336',['type',['../structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40',1,'tone_t']]]
diff --git a/search/functions_10.js b/search/functions_10.js
index 1ce5aa7f..a5cd6dd6 100644
--- a/search/functions_10.js
+++ b/search/functions_10.js
@@ -3,7 +3,7 @@ var searchData=
['term_616',['term',['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module']]],
['tone_617',['tone',['../class_module.html#a33e33df69d58660b8cd0e2dafe5e9189',1,'Module::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]],
['transfer_618',['transfer',['../class_module.html#a45e7823c44ac0aa8a10bd4f365890c98',1,'Module']]],
- ['transmit_619',['transmit',['../class_c_c1101.html#a7cb99a9200b21829b50e3fc3878573f4',1,'CC1101::transmit()'],['../classn_r_f24.html#a583d505bd3a638ecc5576dd2dd95f044',1,'nRF24::transmit()'],['../class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847',1,'RF69::transmit()'],['../class_si443x.html#a782748025e19ec6e597293afb6570bff',1,'Si443x::transmit()'],['../class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009',1,'SX126x::transmit()'],['../class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29',1,'SX127x::transmit()'],['../class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5',1,'SX128x::transmit()'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit()'],['../class_pager_client.html#a897f990002a4a2196fcdb31c547e0648',1,'PagerClient::transmit(String &str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_pager_client.html#aab6a8977f89d43620b98bcedf5a47dbd',1,'PagerClient::transmit(const char *str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_pager_client.html#a77aafe7c86e6e1e4e22990be4e7f090b',1,'PagerClient::transmit(uint8_t *data, size_t len, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f',1,'PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b',1,'PhysicalLayer::transmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'PhysicalLayer::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]],
+ ['transmit_619',['transmit',['../class_c_c1101.html#a7cb99a9200b21829b50e3fc3878573f4',1,'CC1101::transmit()'],['../classn_r_f24.html#a583d505bd3a638ecc5576dd2dd95f044',1,'nRF24::transmit()'],['../class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847',1,'RF69::transmit()'],['../class_si443x.html#a782748025e19ec6e597293afb6570bff',1,'Si443x::transmit()'],['../class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009',1,'SX126x::transmit()'],['../class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29',1,'SX127x::transmit()'],['../class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5',1,'SX128x::transmit()'],['../class_a_x25_client.html#ada21695e373b3e9b0e0f5d3cfbf29826',1,'AX25Client::transmit(String &str, const char *destCallsign, uint8_t destSSID=0x00)'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit(const char *str, const char *destCallsign, uint8_t destSSID=0x00)'],['../class_pager_client.html#a897f990002a4a2196fcdb31c547e0648',1,'PagerClient::transmit(String &str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_pager_client.html#aab6a8977f89d43620b98bcedf5a47dbd',1,'PagerClient::transmit(const char *str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_pager_client.html#a77aafe7c86e6e1e4e22990be4e7f090b',1,'PagerClient::transmit(uint8_t *data, size_t len, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD)'],['../class_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f',1,'PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b',1,'PhysicalLayer::transmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'PhysicalLayer::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]],
['transmitdirect_620',['transmitDirect',['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect()'],['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_physical_layer.html#a4b04eb6155b06d8ef400131c647d54e7',1,'PhysicalLayer::transmitDirect()']]],
['transmitdirectasync_621',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]]
];