| 80 | } |
| 81 | |
| 82 | void AtClient::send(const String& text, const String& altResponse, uint32_t timeoutMs, unsigned retries) |
| 83 | { |
| 84 | Command atCommand; |
| 85 | atCommand.text = text; |
| 86 | atCommand.response2 = altResponse; |
| 87 | atCommand.timeout = timeoutMs; |
| 88 | atCommand.retries = retries; |
| 89 | |
| 90 | send(atCommand); |
| 91 | } |
| 92 | |
| 93 | void AtClient::send(const String& text, ReceiveCallback onReceive, uint32_t timeoutMs, unsigned retries) |
| 94 | { |