From b2fc1197aaa102b64dcae075b011fe7c7854950f Mon Sep 17 00:00:00 2001 From: jgromes Date: Fri, 21 Jul 2023 16:20:02 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20=20@=20247ca?= =?UTF-8?q?753f1bf90f7f6de283e3fc457a611143f9f=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _a_p_r_s_8h_source.html | 72 ++++++++++++++++++------------- _a_x25_8h_source.html | 6 +-- class_a_p_r_s_client-members.html | 9 ++-- class_a_p_r_s_client.html | 67 ++++++++++++++++++++++++---- class_a_p_r_s_client.js | 3 +- functions_b.html | 2 +- functions_func_b.html | 2 +- navtreedata.js | 8 ++-- navtreeindex0.js | 12 +++--- navtreeindex1.js | 4 +- navtreeindex2.js | 4 +- navtreeindex3.js | 4 +- navtreeindex4.js | 5 ++- search/all_0.js | 2 +- search/all_1.js | 2 +- search/functions_0.js | 2 +- search/functions_1.js | 2 +- 17 files changed, 136 insertions(+), 70 deletions(-) diff --git a/_a_p_r_s_8h_source.html b/_a_p_r_s_8h_source.html index d2d1bcb4..e44a6967 100644 --- a/_a_p_r_s_8h_source.html +++ b/_a_p_r_s_8h_source.html @@ -137,40 +137,52 @@ $(document).ready(function(){initNavTree('_a_p_r_s_8h_source.html',''); initResi
58 // alias for unused altitude in Mic-E
59 #define RADIOLIB_APRS_MIC_E_ALTITUDE_UNUSED -1000000
60 
-
65 class APRSClient {
-
66  public:
-
71  explicit APRSClient(AX25Client* ax);
-
72 
-
73  // basic methods
-
74 
-
81  int16_t begin(char sym, bool alt = false);
+
61 // special header applied for APRS over LoRa
+
62 #define RADIOLIB_APRS_LORA_HEADER "<\xff\x01"
+
63 #define RADIOLIB_APRS_LORA_HEADER_LEN (3)
+
64 
+
69 class APRSClient {
+
70  public:
+
75  explicit APRSClient(AX25Client* ax);
+
76 
+
81  explicit APRSClient(PhysicalLayer* phy);
82 
-
93  int16_t sendPosition(char* destCallsign, uint8_t destSSID, char* lat, char* lon, char* msg = NULL, char* time = NULL);
+
83  // basic methods
+
84 
+
93  int16_t begin(char sym, char* callsign = NULL, uint8_t ssid = 0, bool alt = false);
94 
-
108  int16_t sendMicE(float lat, float lon, uint16_t heading, uint16_t speed, uint8_t type, uint8_t* telem = NULL, size_t telemLen = 0, char* grid = NULL, char* status = NULL, int32_t alt = RADIOLIB_APRS_MIC_E_ALTITUDE_UNUSED);
-
109 
-
117  int16_t sendFrame(char* destCallsign, uint8_t destSSID, char* info);
-
118 
-
119 #if !defined(RADIOLIB_GODMODE)
-
120  private:
-
121 #endif
-
122  AX25Client* axClient;
-
123 
-
124  // default APRS symbol (car)
-
125  char symbol = '>';
-
126  char table = '/';
-
127 };
-
128 
-
129 #endif
+
105  int16_t sendPosition(char* destCallsign, uint8_t destSSID, char* lat, char* lon, char* msg = NULL, char* time = NULL);
+
106 
+
120  int16_t sendMicE(float lat, float lon, uint16_t heading, uint16_t speed, uint8_t type, uint8_t* telem = NULL, size_t telemLen = 0, char* grid = NULL, char* status = NULL, int32_t alt = RADIOLIB_APRS_MIC_E_ALTITUDE_UNUSED);
+
121 
+
129  int16_t sendFrame(char* destCallsign, uint8_t destSSID, char* info);
130 
-
131 #endif
-
Client for APRS communication.
Definition: APRS.h:65
-
int16_t sendFrame(char *destCallsign, uint8_t destSSID, char *info)
Transmit generic APRS frame.
Definition: APRS.cpp:221
-
APRSClient(AX25Client *ax)
Default constructor.
Definition: APRS.cpp:7
-
int16_t begin(char sym, bool alt=false)
Initialization method.
Definition: APRS.cpp:11
-
int16_t sendPosition(char *destCallsign, uint8_t destSSID, char *lat, char *lon, char *msg=NULL, char *time=NULL)
Transmit position.
Definition: APRS.cpp:24
-
int16_t sendMicE(float lat, float lon, uint16_t heading, uint16_t speed, uint8_t type, uint8_t *telem=NULL, size_t telemLen=0, char *grid=NULL, char *status=NULL, int32_t alt=RADIOLIB_APRS_MIC_E_ALTITUDE_UNUSED)
Transmit position using Mic-E encoding.
Definition: APRS.cpp:61
+
131 #if !defined(RADIOLIB_GODMODE)
+
132  private:
+
133 #endif
+
134  AX25Client* axClient;
+
135  PhysicalLayer* phyLayer;
+
136 
+
137  // default APRS symbol (car)
+
138  char symbol = '>';
+
139  char table = '/';
+
140 
+
141  // source callsign when using APRS over LoRa
+
142  char src[RADIOLIB_AX25_MAX_CALLSIGN_LEN + 1] = { 0 };
+
143  uint8_t id = 0;
+
144 };
+
145 
+
146 #endif
+
147 
+
148 #endif
+
Client for APRS communication.
Definition: APRS.h:69
+
int16_t sendFrame(char *destCallsign, uint8_t destSSID, char *info)
Transmit generic APRS frame.
Definition: APRS.cpp:243
+
APRSClient(AX25Client *ax)
Constructor for "classic" mode using AX.25/AFSK.
Definition: APRS.cpp:7
+
int16_t begin(char sym, char *callsign=NULL, uint8_t ssid=0, bool alt=false)
Initialization method.
Definition: APRS.cpp:17
+
int16_t sendPosition(char *destCallsign, uint8_t destSSID, char *lat, char *lon, char *msg=NULL, char *time=NULL)
Transmit position.
Definition: APRS.cpp:40
+
int16_t sendMicE(float lat, float lon, uint16_t heading, uint16_t speed, uint8_t type, uint8_t *telem=NULL, size_t telemLen=0, char *grid=NULL, char *status=NULL, int32_t alt=RADIOLIB_APRS_MIC_E_ALTITUDE_UNUSED)
Transmit position using Mic-E encoding.
Definition: APRS.cpp:78
Client for AX25 communication.
Definition: AX25.h:238
+
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:33
diff --git a/_a_x25_8h_source.html b/_a_x25_8h_source.html index 2048b9ec..6a53e141 100644 --- a/_a_x25_8h_source.html +++ b/_a_x25_8h_source.html @@ -256,11 +256,11 @@ $(document).ready(function(){initNavTree('_a_x25_8h_source.html',''); initResiza
325 
326 #endif
Client for audio-based transmissions. Requires Arduino tone() function, and a module capable of direc...
Definition: AFSK.h:16
-
Client for APRS communication.
Definition: APRS.h:65
+
Client for APRS communication.
Definition: APRS.h:69
Client for AX25 communication.
Definition: AX25.h:238
-
int16_t sendFrame(AX25Frame *frame)
Transmit arbitrary AX.25 frame.
Definition: AX25.cpp:217
+
int16_t sendFrame(AX25Frame *frame)
Transmit arbitrary AX.25 frame.
Definition: AX25.cpp:222
int16_t setCorrection(int16_t mark, int16_t space, float length=1.0f)
Set AFSK tone correction offset. On some platforms, this is required to get the audio produced by the...
Definition: AX25.cpp:168
-
int16_t transmit(const char *str, const char *destCallsign, uint8_t destSSID=0x00)
Transmit unnumbered information (UI) frame.
Definition: AX25.cpp:206
+
int16_t transmit(const char *str, const char *destCallsign, uint8_t destSSID=0x00)
Transmit unnumbered information (UI) frame.
Definition: AX25.cpp:211
int16_t begin(const char *srcCallsign, uint8_t srcSSID=0x00, uint8_t preLen=8)
Initialization method.
Definition: AX25.cpp:180
AX25Client(PhysicalLayer *phy)
Constructor for 2-FSK mode.
Definition: AX25.cpp:154
Abstraction of AX.25 frame format.
Definition: AX25.h:76
diff --git a/class_a_p_r_s_client-members.html b/class_a_p_r_s_client-members.html index 28eaecdd..19b272e1 100644 --- a/class_a_p_r_s_client-members.html +++ b/class_a_p_r_s_client-members.html @@ -90,10 +90,11 @@ $(document).ready(function(){initNavTree('class_a_p_r_s_client.html',''); initRe

This is the complete list of members for APRSClient, including all inherited members.

- - - - + + + + +
APRSClient(AX25Client *ax)APRSClientexplicit
begin(char sym, bool alt=false)APRSClient
sendFrame(char *destCallsign, uint8_t destSSID, char *info)APRSClient
sendMicE(float lat, float lon, uint16_t heading, uint16_t speed, uint8_t type, uint8_t *telem=NULL, size_t telemLen=0, char *grid=NULL, char *status=NULL, int32_t alt=RADIOLIB_APRS_MIC_E_ALTITUDE_UNUSED)APRSClient
sendPosition(char *destCallsign, uint8_t destSSID, char *lat, char *lon, char *msg=NULL, char *time=NULL)APRSClient
APRSClient(PhysicalLayer *phy)APRSClientexplicit
begin(char sym, char *callsign=NULL, uint8_t ssid=0, bool alt=false)APRSClient
sendFrame(char *destCallsign, uint8_t destSSID, char *info)APRSClient
sendMicE(float lat, float lon, uint16_t heading, uint16_t speed, uint8_t type, uint8_t *telem=NULL, size_t telemLen=0, char *grid=NULL, char *status=NULL, int32_t alt=RADIOLIB_APRS_MIC_E_ALTITUDE_UNUSED)APRSClient
sendPosition(char *destCallsign, uint8_t destSSID, char *lat, char *lon, char *msg=NULL, char *time=NULL)APRSClient
diff --git a/class_a_p_r_s_client.html b/class_a_p_r_s_client.html index c6310c51..bec9c6cc 100644 --- a/class_a_p_r_s_client.html +++ b/class_a_p_r_s_client.html @@ -98,11 +98,14 @@ $(document).ready(function(){initNavTree('class_a_p_r_s_client.html',''); initRe

Public Member Functions

 APRSClient (AX25Client *ax) - Default constructor. More...
+ Constructor for "classic" mode using AX.25/AFSK. More...
  -int16_t begin (char sym, bool alt=false) - Initialization method. More...
-  + APRSClient (PhysicalLayer *phy) + Constructor for LoRa mode. More...
+  +int16_t begin (char sym, char *callsign=NULL, uint8_t ssid=0, bool alt=false) + Initialization method. More...
+  int16_t sendPosition (char *destCallsign, uint8_t destSSID, char *lat, char *lon, char *msg=NULL, char *time=NULL)  Transmit position. More...
  @@ -117,7 +120,7 @@ Public Member Functions

Client for APRS communication.

Constructor & Destructor Documentation

-

◆ APRSClient()

+

◆ APRSClient() [1/2]

@@ -140,7 +143,7 @@ Public Member Functions
-

Default constructor.

+

Constructor for "classic" mode using AX.25/AFSK.

Parameters
@@ -148,11 +151,45 @@ Public Member Functions + + + +

◆ APRSClient() [2/2]

+ +
+
+
axPointer to the instance of AX25Client to be used for APRS.
+ + + + +
+ + + + + + + + +
APRSClient::APRSClient (PhysicalLayerphy)
+
+explicit
+
+ +

Constructor for LoRa mode.

+
Parameters
+ + +
phyPointer to the wireless module providing PhysicalLayer communication.
+
+
+

Member Function Documentation

- -

◆ begin()

+ +

◆ begin()

@@ -163,6 +200,18 @@ Public Member Functions char  sym, + + + + char *  + callsign = NULL, + + + + + uint8_t  + ssid = 0, + @@ -181,6 +230,8 @@ Public Member Functions
Parameters
+ +
symAPRS symbol to be displayed.
callsignSource callsign. Required and only used for APRS over LoRa, ignored in classic mode.
ssidSource SSID. Only used for APRS over LoRa, ignored in classic mode, defaults to 0.
altWhether to use the primary (false) or alternate (true) symbol table. Defaults to primary table.
diff --git a/class_a_p_r_s_client.js b/class_a_p_r_s_client.js index d65ff302..a3f86fc6 100644 --- a/class_a_p_r_s_client.js +++ b/class_a_p_r_s_client.js @@ -1,7 +1,8 @@ var class_a_p_r_s_client = [ [ "APRSClient", "class_a_p_r_s_client.html#a08e166ed706d79c66c1d5b48f195724c", null ], - [ "begin", "class_a_p_r_s_client.html#a916fa8b4477199c92ca630d1de7fdab5", null ], + [ "APRSClient", "class_a_p_r_s_client.html#afa314fad96837523df4a73cf47986f82", null ], + [ "begin", "class_a_p_r_s_client.html#a4d1468be141940a12fd3964957f79c1a", null ], [ "sendFrame", "class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1", null ], [ "sendMicE", "class_a_p_r_s_client.html#af8f28eba026b0f0a25c8ba54a96f4743", null ], [ "sendPosition", "class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e", null ] diff --git a/functions_b.html b/functions_b.html index 9ffb3c99..f466199d 100644 --- a/functions_b.html +++ b/functions_b.html @@ -93,7 +93,7 @@ $(document).ready(function(){initNavTree('functions_b.html',''); initResizable()
  • begin() : AFSKClient -, APRSClient +, APRSClient , AX25Client , BellClient , CC1101 diff --git a/functions_func_b.html b/functions_func_b.html index a8c68d1b..4c3ea121 100644 --- a/functions_func_b.html +++ b/functions_func_b.html @@ -87,7 +87,7 @@ $(document).ready(function(){initNavTree('functions_func_b.html',''); initResiza

    - b -

    • begin() : AFSKClient -, APRSClient +, APRSClient , AX25Client , BellClient , CC1101 diff --git a/navtreedata.js b/navtreedata.js index 9c53a60a..e7b11a77 100644 --- a/navtreedata.js +++ b/navtreedata.js @@ -50,10 +50,10 @@ var NAVTREE = var NAVTREEINDEX = [ "_a_f_s_k_8h_source.html", -"class_module.html#a817178405f125e068e88bad62aeb6f3b", -"class_radio_lib_print.html#a00bbdff41954312512167cb2b799cb01", -"class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544", -"dir_313caf1132e152dd9b58bea13a4052ca.html" +"class_module.html#a7d3adea64acab11c47c804afc74bd4f3", +"class_radio_lib_print.html", +"class_s_x127x.html#a4c27736905cf848a67d6cbc92df823b8", +"dir_2d04440730a0443b949b3f3ffedccfc3.html" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/navtreeindex0.js b/navtreeindex0.js index 58fad002..c508cfa6 100644 --- a/navtreeindex0.js +++ b/navtreeindex0.js @@ -71,11 +71,12 @@ var NAVTREEINDEX0 = "class_a_f_s_k_client.html#af9f435b28f04a142bdf136fc6fdc49b3":[3,0,0,6], "class_a_f_s_k_client.html#afeb005bab389f137def61f1acc3714d3":[3,0,0,8], "class_a_p_r_s_client.html":[3,0,1], -"class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1":[3,0,1,2], +"class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1":[3,0,1,3], "class_a_p_r_s_client.html#a08e166ed706d79c66c1d5b48f195724c":[3,0,1,0], -"class_a_p_r_s_client.html#a916fa8b4477199c92ca630d1de7fdab5":[3,0,1,1], -"class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e":[3,0,1,4], -"class_a_p_r_s_client.html#af8f28eba026b0f0a25c8ba54a96f4743":[3,0,1,3], +"class_a_p_r_s_client.html#a4d1468be141940a12fd3964957f79c1a":[3,0,1,2], +"class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e":[3,0,1,5], +"class_a_p_r_s_client.html#af8f28eba026b0f0a25c8ba54a96f4743":[3,0,1,4], +"class_a_p_r_s_client.html#afa314fad96837523df4a73cf47986f82":[3,0,1,1], "class_a_x25_client.html":[3,0,2], "class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6":[3,0,2,3], "class_a_x25_client.html#a6e81e629817cdf1b377e4b4f7e4d6520":[3,0,2,1], @@ -248,6 +249,5 @@ var NAVTREEINDEX0 = "class_module.html#a66b06e69d57b97116bed1c6f185381f1":[3,0,21,37], "class_module.html#a74ce586afa403130007a474d3295d762":[3,0,21,28], "class_module.html#a78dd39aa71d97e2220a880df8162fdde":[3,0,21,23], -"class_module.html#a7acbe601ebe6398781d0f2de5177305e":[3,0,21,27], -"class_module.html#a7d3adea64acab11c47c804afc74bd4f3":[3,0,21,13] +"class_module.html#a7acbe601ebe6398781d0f2de5177305e":[3,0,21,27] }; diff --git a/navtreeindex1.js b/navtreeindex1.js index 19b4327b..c60090af 100644 --- a/navtreeindex1.js +++ b/navtreeindex1.js @@ -1,5 +1,6 @@ var NAVTREEINDEX1 = { +"class_module.html#a7d3adea64acab11c47c804afc74bd4f3":[3,0,21,13], "class_module.html#a817178405f125e068e88bad62aeb6f3b":[3,0,21,3], "class_module.html#a849ad85fc1bc3a7130e660c13973ab26":[3,0,21,35], "class_module.html#a874e030f1931e606e380930d37dd83ee":[3,0,21,19], @@ -248,6 +249,5 @@ var NAVTREEINDEX1 = "class_radio_lib_hal.html#aebcaaf0cefdaaf5b572d4261e472ac8a":[3,0,29,22], "class_radio_lib_hal.html#aedf55424bc4aa28379b6f4f6b04151d3":[3,0,29,10], "class_radio_lib_hal.html#af01b4e5e01352b99ce4329c9f9f8433b":[3,0,29,13], -"class_radio_lib_hal.html#af142f747becacd1e3e13503f79fd5ebe":[3,0,29,1], -"class_radio_lib_print.html":[3,0,30] +"class_radio_lib_hal.html#af142f747becacd1e3e13503f79fd5ebe":[3,0,29,1] }; diff --git a/navtreeindex2.js b/navtreeindex2.js index bba5ae2c..be1c17e3 100644 --- a/navtreeindex2.js +++ b/navtreeindex2.js @@ -1,5 +1,6 @@ var NAVTREEINDEX2 = { +"class_radio_lib_print.html":[3,0,30], "class_radio_lib_print.html#a00bbdff41954312512167cb2b799cb01":[3,0,30,11], "class_radio_lib_print.html#a02b4c3892a70d7bc0868e74622e4a97e":[3,0,30,6], "class_radio_lib_print.html#a0c5d589d814403fb1be6351e1f93f8e8":[3,0,30,17], @@ -248,6 +249,5 @@ var NAVTREEINDEX2 = "class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679":[3,0,59,57], "class_s_x127x.html#a462fa74275e67c296328a01f361892d5":[3,0,59,26], "class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54":[3,0,59,62], -"class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,59,84], -"class_s_x127x.html#a4c27736905cf848a67d6cbc92df823b8":[3,0,59,24] +"class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,59,84] }; diff --git a/navtreeindex3.js b/navtreeindex3.js index 679fa8eb..3fedb88c 100644 --- a/navtreeindex3.js +++ b/navtreeindex3.js @@ -1,5 +1,6 @@ var NAVTREEINDEX3 = { +"class_s_x127x.html#a4c27736905cf848a67d6cbc92df823b8":[3,0,59,24], "class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544":[3,0,59,17], "class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76":[3,0,59,70], "class_s_x127x.html#a53d9bd78635a97dc0e3309b675763510":[3,0,59,27], @@ -248,6 +249,5 @@ var NAVTREEINDEX3 = "dir_17a0c4358d096e2caf9f04fe2ab66c1d.html":[4,0,0,0,1], "dir_19ff327ef62766d556984fbbdb5e6cc3.html":[4,0,0,1,4], "dir_2248554564c3ddf80e1cd7e195a7aaf0.html":[4,0,0,1,11], -"dir_2cdd3c47e80335731aa10f67042c391a.html":[4,0,0,1,10], -"dir_2d04440730a0443b949b3f3ffedccfc3.html":[4,0,0,1,2] +"dir_2cdd3c47e80335731aa10f67042c391a.html":[4,0,0,1,10] }; diff --git a/navtreeindex4.js b/navtreeindex4.js index ccd37fe5..9a8787e7 100644 --- a/navtreeindex4.js +++ b/navtreeindex4.js @@ -1,5 +1,6 @@ var NAVTREEINDEX4 = { +"dir_2d04440730a0443b949b3f3ffedccfc3.html":[4,0,0,1,2], "dir_313caf1132e152dd9b58bea13a4052ca.html":[4,0,0,2], "dir_376e60ce810d8350ecce799c76db70f0.html":[4,0,0,0,8,0], "dir_3a277ada553fbb989028f9b071a02542.html":[4,0,0,0,3], @@ -34,8 +35,8 @@ var NAVTREEINDEX4 = "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], @@ -162,8 +163,8 @@ var NAVTREEINDEX4 = "group__status__codes.html#gafbc04b924d23cba05307e94972d7d607":[2,4,5], "group__status__codes.html#gafeff72bd7b618959d86b804a11f09063":[2,4,1], "hierarchy.html":[3,2], -"index.html":[0], "index.html":[], +"index.html":[0], "modules.html":[2], "n_r_f24_8h_source.html":[4,0,0,0,2,0], "pages.html":[], diff --git a/search/all_0.js b/search/all_0.js index 4362c771..2a9950d6 100644 --- a/search/all_0.js +++ b/search/all_0.js @@ -1,7 +1,7 @@ var searchData= [ ['afskclient_0',['AFSKClient',['../class_a_f_s_k_client.html',1,'AFSKClient'],['../class_a_f_s_k_client.html#a89c7ab4759d37c9a032ac29fa9782eea',1,'AFSKClient::AFSKClient(PhysicalLayer *phy, uint32_t pin)'],['../class_a_f_s_k_client.html#ac54633fe75157ce126e44e4e494266f2',1,'AFSKClient::AFSKClient(AFSKClient *aud)']]], - ['aprsclient_1',['APRSClient',['../class_a_p_r_s_client.html',1,'APRSClient'],['../class_a_p_r_s_client.html#a08e166ed706d79c66c1d5b48f195724c',1,'APRSClient::APRSClient()']]], + ['aprsclient_1',['APRSClient',['../class_a_p_r_s_client.html',1,'APRSClient'],['../class_a_p_r_s_client.html#a08e166ed706d79c66c1d5b48f195724c',1,'APRSClient::APRSClient(AX25Client *ax)'],['../class_a_p_r_s_client.html#afa314fad96837523df4a73cf47986f82',1,'APRSClient::APRSClient(PhysicalLayer *phy)']]], ['attachinterrupt_2',['attachInterrupt',['../class_radio_lib_hal.html#af142f747becacd1e3e13503f79fd5ebe',1,'RadioLibHal']]], ['autoldro_3',['autoLDRO',['../class_s_x1272.html#abb4bbfe8acc6026c833d267d78417b63',1,'SX1272::autoLDRO()'],['../class_s_x1278.html#ae02adcde8c2978c0d1b157729dd5df1e',1,'SX1278::autoLDRO()'],['../class_s_x126x.html#ab9ce38cfeaa36ddcc2d82b2974d7088c',1,'SX126x::autoLDRO()']]], ['available_4',['available',['../class_pager_client.html#aec073fa9e5adcff9730482d9583715e9',1,'PagerClient::available()'],['../class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26',1,'PhysicalLayer::available()']]], diff --git a/search/all_1.js b/search/all_1.js index 39179617..5b108975 100644 --- a/search/all_1.js +++ b/search/all_1.js @@ -2,7 +2,7 @@ var searchData= [ ['backupchannel_7',['backupChannel',['../struct_lo_ra_w_a_n_band__t.html#a3918faa9973af7255449d42e9d759746',1,'LoRaWANBand_t']]], ['baudrate_8',['baudRate',['../struct_bell_modem__t.html#a8e16be8997a90db9a4b2482ec7e93171',1,'BellModem_t']]], - ['begin_9',['begin',['../class_a_x25_client.html#aadeefb210a0b5170d4e8d281c2257e73',1,'AX25Client::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#a275a9a86934124eab4982ad52bf91aea',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a916fa8b4477199c92ca630d1de7fdab5',1,'APRSClient::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_bell_client.html#add9edc89cd6ff5c527ddbdabe79cb60f',1,'BellClient::begin()'],['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::begin()'],['../class_hell_client.html#a225775fe87f9ed3c3a04142697641242',1,'HellClient::begin()'],['../class_lo_ra_w_a_n_node.html#afcc515f5c2c7853df596e9096db76d28',1,'LoRaWANNode::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_r_f_m96.html#aef1588799e5855cb464259e8ce2d865b',1,'RFM96::begin()'],['../class_radio_lib_b_c_h.html#aba6f10d4ac2d40eb2222d1081a34c88b',1,'RadioLibBCH::begin()'],['../class_s_s_t_v_client.html#afd4257e858a88e5847854a46f166a9b0',1,'SSTVClient::begin(const SSTVMode_t &mode)'],['../class_s_s_t_v_client.html#a3769dcdebf8b1fa01eb2d8bd2bb3815a',1,'SSTVClient::begin(float base, const SSTVMode_t &mode)'],['../class_c_c1101.html#ad86f23bb3d113d20f6238a671f18b565',1,'CC1101::begin()'],['../class_l_l_c_c68.html#aa835ee301567f7dac079b42a2055c38c',1,'LLCC68::begin()'],['../classn_r_f24.html#a0ef68849f812367432f5a3798f94b8ce',1,'nRF24::begin()'],['../class_r_f69.html#a637ea5386066f5608bcbb4266e5c1bd6',1,'RF69::begin()'],['../class_r_f_m95.html#a5c37eaf6ae8c558a9a623157dd9f894a',1,'RFM95::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_t_m32_w_lx.html#a4f2a9b5a72b5238d2014199d91094f84',1,'STM32WLx::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_x126x.html#a936a40038e05740a528f2b53f8e17010',1,'SX126x::begin()']]], + ['begin_9',['begin',['../class_a_x25_client.html#aadeefb210a0b5170d4e8d281c2257e73',1,'AX25Client::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#a275a9a86934124eab4982ad52bf91aea',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a4d1468be141940a12fd3964957f79c1a',1,'APRSClient::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_bell_client.html#add9edc89cd6ff5c527ddbdabe79cb60f',1,'BellClient::begin()'],['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::begin()'],['../class_hell_client.html#a225775fe87f9ed3c3a04142697641242',1,'HellClient::begin()'],['../class_lo_ra_w_a_n_node.html#afcc515f5c2c7853df596e9096db76d28',1,'LoRaWANNode::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_r_f_m96.html#aef1588799e5855cb464259e8ce2d865b',1,'RFM96::begin()'],['../class_radio_lib_b_c_h.html#aba6f10d4ac2d40eb2222d1081a34c88b',1,'RadioLibBCH::begin()'],['../class_s_s_t_v_client.html#afd4257e858a88e5847854a46f166a9b0',1,'SSTVClient::begin(const SSTVMode_t &mode)'],['../class_s_s_t_v_client.html#a3769dcdebf8b1fa01eb2d8bd2bb3815a',1,'SSTVClient::begin(float base, const SSTVMode_t &mode)'],['../class_c_c1101.html#ad86f23bb3d113d20f6238a671f18b565',1,'CC1101::begin()'],['../class_l_l_c_c68.html#aa835ee301567f7dac079b42a2055c38c',1,'LLCC68::begin()'],['../classn_r_f24.html#a0ef68849f812367432f5a3798f94b8ce',1,'nRF24::begin()'],['../class_r_f69.html#a637ea5386066f5608bcbb4266e5c1bd6',1,'RF69::begin()'],['../class_r_f_m95.html#a5c37eaf6ae8c558a9a623157dd9f894a',1,'RFM95::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_t_m32_w_lx.html#a4f2a9b5a72b5238d2014199d91094f84',1,'STM32WLx::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_x126x.html#a936a40038e05740a528f2b53f8e17010',1,'SX126x::begin()']]], ['beginapb_10',['beginAPB',['../class_lo_ra_w_a_n_node.html#a4cc7e7c9dc84c925c81247f4679cbe62',1,'LoRaWANNode']]], ['beginble_11',['beginBLE',['../class_s_x128x.html#ace5ede905bf85aada0c61b9cfaaea127',1,'SX128x']]], ['beginflrc_12',['beginFLRC',['../class_s_x128x.html#a2c4a24623c5fd27b3cc937e55783d709',1,'SX128x']]], diff --git a/search/functions_0.js b/search/functions_0.js index bae3f873..0da04b9f 100644 --- a/search/functions_0.js +++ b/search/functions_0.js @@ -1,7 +1,7 @@ var searchData= [ ['afskclient_532',['AFSKClient',['../class_a_f_s_k_client.html#a89c7ab4759d37c9a032ac29fa9782eea',1,'AFSKClient::AFSKClient(PhysicalLayer *phy, uint32_t pin)'],['../class_a_f_s_k_client.html#ac54633fe75157ce126e44e4e494266f2',1,'AFSKClient::AFSKClient(AFSKClient *aud)']]], - ['aprsclient_533',['APRSClient',['../class_a_p_r_s_client.html#a08e166ed706d79c66c1d5b48f195724c',1,'APRSClient']]], + ['aprsclient_533',['APRSClient',['../class_a_p_r_s_client.html#a08e166ed706d79c66c1d5b48f195724c',1,'APRSClient::APRSClient(AX25Client *ax)'],['../class_a_p_r_s_client.html#afa314fad96837523df4a73cf47986f82',1,'APRSClient::APRSClient(PhysicalLayer *phy)']]], ['attachinterrupt_534',['attachInterrupt',['../class_radio_lib_hal.html#af142f747becacd1e3e13503f79fd5ebe',1,'RadioLibHal']]], ['autoldro_535',['autoLDRO',['../class_s_x126x.html#ab9ce38cfeaa36ddcc2d82b2974d7088c',1,'SX126x::autoLDRO()'],['../class_s_x1272.html#abb4bbfe8acc6026c833d267d78417b63',1,'SX1272::autoLDRO()'],['../class_s_x1278.html#ae02adcde8c2978c0d1b157729dd5df1e',1,'SX1278::autoLDRO()']]], ['available_536',['available',['../class_pager_client.html#aec073fa9e5adcff9730482d9583715e9',1,'PagerClient::available()'],['../class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26',1,'PhysicalLayer::available()']]], diff --git a/search/functions_1.js b/search/functions_1.js index d5e6dd15..20323c9e 100644 --- a/search/functions_1.js +++ b/search/functions_1.js @@ -1,6 +1,6 @@ var searchData= [ - ['begin_539',['begin',['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::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#a275a9a86934124eab4982ad52bf91aea',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a916fa8b4477199c92ca630d1de7fdab5',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_lo_ra_w_a_n_node.html#afcc515f5c2c7853df596e9096db76d28',1,'LoRaWANNode::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_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()'],['../class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3',1,'SX1277::begin()'],['../class_c_c1101.html#ad86f23bb3d113d20f6238a671f18b565',1,'CC1101::begin()'],['../classn_r_f24.html#a0ef68849f812367432f5a3798f94b8ce',1,'nRF24::begin()'],['../class_r_f69.html#a637ea5386066f5608bcbb4266e5c1bd6',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_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_s_t_m32_w_lx.html#a4f2a9b5a72b5238d2014199d91094f84',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_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()']]], + ['begin_539',['begin',['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::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#a275a9a86934124eab4982ad52bf91aea',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a4d1468be141940a12fd3964957f79c1a',1,'APRSClient::begin()'],['../class_a_x25_client.html#aadeefb210a0b5170d4e8d281c2257e73',1,'AX25Client::begin()'],['../class_bell_client.html#add9edc89cd6ff5c527ddbdabe79cb60f',1,'BellClient::begin()'],['../class_l_l_c_c68.html#aa835ee301567f7dac079b42a2055c38c',1,'LLCC68::begin()'],['../class_hell_client.html#a225775fe87f9ed3c3a04142697641242',1,'HellClient::begin()'],['../class_lo_ra_w_a_n_node.html#afcc515f5c2c7853df596e9096db76d28',1,'LoRaWANNode::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_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()'],['../class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3',1,'SX1277::begin()'],['../class_c_c1101.html#ad86f23bb3d113d20f6238a671f18b565',1,'CC1101::begin()'],['../classn_r_f24.html#a0ef68849f812367432f5a3798f94b8ce',1,'nRF24::begin()'],['../class_r_f69.html#a637ea5386066f5608bcbb4266e5c1bd6',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_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_s_t_m32_w_lx.html#a4f2a9b5a72b5238d2014199d91094f84',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_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()']]], ['beginapb_540',['beginAPB',['../class_lo_ra_w_a_n_node.html#a4cc7e7c9dc84c925c81247f4679cbe62',1,'LoRaWANNode']]], ['beginble_541',['beginBLE',['../class_s_x128x.html#ace5ede905bf85aada0c61b9cfaaea127',1,'SX128x']]], ['beginflrc_542',['beginFLRC',['../class_s_x128x.html#a2c4a24623c5fd27b3cc937e55783d709',1,'SX128x']]],