Skip to content

Commit c761c5d

Browse files
last fixes for javadocs
1 parent a023264 commit c761c5d

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

src/ArduinoCellular.h

-6
Original file line numberDiff line numberDiff line change
@@ -171,12 +171,6 @@ class ArduinoCellular {
171171
*/
172172
String sendATCommand(char * command, unsigned long timeout = 1000);
173173

174-
/*
175-
* @brief Sends an USSD command to the modem and waits for a response, then returns the response.
176-
* @param command The USSD command to send. (e.g. *100#)
177-
* @return The response from the modem.
178-
*/
179-
String sendUSSDCommand(char * command);
180174

181175
/**
182176
* @brief Gets the Network client. (OSI Layer 3)

src/ArdunioCellular.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ void ArduinoCellular::sendSMS(String number, String message){
110110
}
111111

112112

113-
IPAddress ArduinoCellular::getLocalIP(){
113+
IPAddress ArduinoCellular::getIPAddress(){
114114
return modem.localIP();
115115
}
116116

src/TimeUtils.h

-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ class Time {
109109
/**
110110
* Returns the year component of the time.\
111111
* @param iso8601 The ISO8601 formatted string to parse.
112-
* @return The year component of the time.
113112
*/
114113
void parseISO8601(String iso8601) {
115114
// Simplified parsing, assuming format "YYYY-MM-DDTHH:MM:SS+00:00"

0 commit comments

Comments
 (0)