* BaseChatMesh::sendMessage(), new est_timeout (OUT) param

Tento commit je obsažen v:
Scott Powell
2025-01-30 14:03:31 +11:00
rodič f94d5f7423
revize 9af5adb861
4 změnil soubory, kde provedl 11 přidání a 7 odebrání
+3 -1
Zobrazit soubor
@@ -277,7 +277,9 @@ public:
if (memcmp(command, "send ", 5) == 0) {
if (curr_recipient) {
const char *text = &command[5];
int result = sendMessage(*curr_recipient, getRTCClock()->getCurrentTime(), 0, text, expected_ack_crc);
uint32_t est_timeout;
int result = sendMessage(*curr_recipient, getRTCClock()->getCurrentTime(), 0, text, expected_ack_crc, est_timeout);
if (result == MSG_SEND_FAILED) {
Serial.println(" ERROR: unable to send.");
} else {