mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/ping_zero_interval_cause_to_assert_reset_v4.2' into 'release/v4.2'
lw-ip: Fixed ping assert reset when ping interval is 0 (v4.2) See merge request espressif/esp-idf!12174
This commit is contained in:
commit
b58d888b77
@ -180,7 +180,9 @@ static void esp_ping_thread(void *args)
|
||||
ep->on_ping_timeout((esp_ping_handle_t)ep, ep->cb_args);
|
||||
}
|
||||
}
|
||||
vTaskDelayUntil(&last_wake, pdMS_TO_TICKS(ep->interval_ms)); // to get a more accurate delay
|
||||
if (pdMS_TO_TICKS(ep->interval_ms)) {
|
||||
vTaskDelayUntil(&last_wake, pdMS_TO_TICKS(ep->interval_ms)); // to get a more accurate delay
|
||||
}
|
||||
}
|
||||
/* batch of ping operations finished */
|
||||
if (ep->on_ping_end) {
|
||||
|
Loading…
Reference in New Issue
Block a user