Skip to content

Commit ae1f919

Browse files
minimal modifications for github actions
1 parent ec50468 commit ae1f919

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

Diff for: .github/workflows/compile-examples.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,12 @@ env:
2525
UNIVERSAL_SKETCH_PATHS: |
2626
- examples/HTTPClient
2727
- examples/HTTPSClient
28-
- examples/TimeAndLocation
28+
- examples/GetTime
29+
- examples/GetLocation
30+
- examples/DeleteSMS
2931
- examples/ReceiveSMS
3032
- examples/SendSMS
33+
- examples/ModemTerminal
3134
SKETCHES_REPORTS_PATH: sketches-reports
3235
SKETCHES_REPORTS_ARTIFACT_NAME: sketches-reports
3336

Diff for: src/ArduinoCellular.h

+7
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,13 @@ class ArduinoCellular {
184184
*/
185185
String sendATCommand(const char * command, unsigned long timeout = 1000);
186186

187+
188+
189+
/**
190+
* @brief Sends a USSD command to the network operator and waits for a response.
191+
* @param command The USSD command to send.
192+
* @return The response from the network operator. (Note: The response may be an SMS message or a USSD response)
193+
*/
187194
String sendUSSDCommand(const char * command);
188195

189196

0 commit comments

Comments
 (0)