File tree Expand file tree Collapse file tree 2 files changed +9
-15
lines changed Expand file tree Collapse file tree 2 files changed +9
-15
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,18 @@ class ModemClass {
19
19
20
20
public:
21
21
/* *
22
+ * @brief Constructor for the ModemClass, which initializes the modem with the specified transmit (TX) and receive (RX) pins.
23
+ *
22
24
* @param Initializes an instance of the `ModemClass` class with
23
- * specific transmit (tx) and receive (rx) pins for communication.
25
+ * specific transmit `tx` and receive `rx` pins for communication.
24
26
*/
25
27
ModemClass (int tx, int rx);
28
+
29
+ /* *
30
+ * @brief Constructor for the ModemClass, which initializes the modem with the specified UART interface.
31
+ *
32
+ * @param `_serial` is a pointer to the UART object that will be used for communication with the modem.
33
+ */
26
34
ModemClass (UART * _serial);
27
35
~ModemClass ();
28
36
Original file line number Diff line number Diff line change @@ -54,20 +54,6 @@ class WiFiClient : public Client {
54
54
WiFiClient (const WiFiClient& c);
55
55
~WiFiClient ();
56
56
57
-
58
- /* *
59
- * @brief Establishes a connection to a server using an IP address and port.
60
- *
61
- * This function initiates a connection to a server using the specified IP address
62
- * and port. Internally, it converts the IP address to a string and delegates
63
- * the connection task to the `connect(const char*, uint16_t)` method.
64
- *
65
- * @param ip The IP address of the server to connect to.
66
- * @param port The port number on the server to connect to.
67
- *
68
- * @return `1` on a successful connection, `0` on failure.
69
- */
70
-
71
57
/* *
72
58
* @brief Establishes a connection to a server using an IP address and port.
73
59
*
You can’t perform that action at this time.
0 commit comments