diff --git a/_r_t_t_y_8h_source.html b/_r_t_t_y_8h_source.html
index a25ab877..881b92fc 100644
--- a/_r_t_t_y_8h_source.html
+++ b/_r_t_t_y_8h_source.html
@@ -126,7 +126,7 @@ $(document).ready(function(){initNavTree('_r_t_t_y_8h_source.html',''); initResi
67 #ifdef RADIOLIB_STATIC_ONLY
68 char _str[RADIOLIB_STATIC_ARRAY_SIZE];
- 70 char* _str =
new char[1];
+
@@ -213,15 +213,15 @@ $(document).ready(function(){initNavTree('_r_t_t_y_8h_source.html',''); initResi
-size_t length()
Gets the length of the ITA2 string. This number is not the same as the length of ASCII-encoded string...
Definition: RTTY.cpp:22
-void idle()
Send out idle condition (RF tone at mark frequency).
Definition: RTTY.cpp:168
+size_t length()
Gets the length of the ITA2 string. This number is not the same as the length of ASCII-encoded string...
Definition: RTTY.cpp:24
+void idle()
Send out idle condition (RF tone at mark frequency).
Definition: RTTY.cpp:170
Client for audio-based transmissions. Requires Arduino tone() function, and a module capable of direc...
Definition: AFSK.h:17
ITA2String(char c)
Default single-character constructor.
Definition: RTTY.cpp:4
-~ITA2String()
Default destructor.
Definition: RTTY.cpp:16
+~ITA2String()
Default destructor.
Definition: RTTY.cpp:18
ITA2-encoded string.
Definition: RTTY.h:28
-uint8_t * byteArr()
Gets the ITA2 representation of the ASCII string set in constructor.
Definition: RTTY.cpp:34
-RTTYClient(PhysicalLayer *phy)
Constructor for 2-FSK mode.
Definition: RTTY.cpp:108
-int16_t begin(float base, uint32_t shift, uint16_t rate, uint8_t encoding=ASCII, uint8_t stopBits=1)
Initialization method.
Definition: RTTY.cpp:122
+uint8_t * byteArr()
Gets the ITA2 representation of the ASCII string set in constructor.
Definition: RTTY.cpp:36
+RTTYClient(PhysicalLayer *phy)
Constructor for 2-FSK mode.
Definition: RTTY.cpp:110
+int16_t begin(float base, uint32_t shift, uint16_t rate, uint8_t encoding=ASCII, uint8_t stopBits=1)
Initialization method.
Definition: RTTY.cpp:124
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:13
Client for RTTY communication. The public interface is the same as Arduino Serial.
Definition: RTTY.h:88