mirror of https://github.com/ARMmbed/mbed-os.git
Corrected timeout for +UDNSRN command
parent
d96c9e8800
commit
bafb145dfb
|
@ -481,8 +481,11 @@ nsapi_error_t UBLOX_AT_CellularStack::gethostbyname(const char *host, SocketAddr
|
||||||
_at.cmd_start("AT+UDNSRN=0,");
|
_at.cmd_start("AT+UDNSRN=0,");
|
||||||
_at.write_string(host);
|
_at.write_string(host);
|
||||||
_at.cmd_stop();
|
_at.cmd_stop();
|
||||||
|
#ifdef TARGET_UBLOX_C030_R41XM
|
||||||
_at.set_at_timeout(60000);
|
_at.set_at_timeout(70000);
|
||||||
|
#else
|
||||||
|
_at.set_at_timeout(120000);
|
||||||
|
#endif
|
||||||
_at.resp_start("+UDNSRN:");
|
_at.resp_start("+UDNSRN:");
|
||||||
if (_at.info_resp()) {
|
if (_at.info_resp()) {
|
||||||
_at.read_string(ipAddress, sizeof(ipAddress));
|
_at.read_string(ipAddress, sizeof(ipAddress));
|
||||||
|
|
Loading…
Reference in New Issue