diff options
Diffstat (limited to 'cc3200/telnet/telnet.c')
| -rw-r--r-- | cc3200/telnet/telnet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc3200/telnet/telnet.c b/cc3200/telnet/telnet.c index 3c28666cd..70e606886 100644 --- a/cc3200/telnet/telnet.c +++ b/cc3200/telnet/telnet.c @@ -477,7 +477,7 @@ static bool telnet_send_with_retries (int16_t sd, const void *pBuf, int16_t len) return false; } // start with the default delay and increment it on each retry - HAL_Delay (delay++); + mp_hal_delay_ms(delay++); } while (++retries <= TELNET_TX_RETRIES_MAX); } return false; |
