Reduce maximum wait time for get_operator_name() to fix hangups

This commit is contained in:
2024-04-09 13:24:56 +02:00
parent bd6bf6df26
commit a6fe9525e1

View File

@@ -246,7 +246,7 @@ command_result get_operator_name(CommandableIf *t, std::string &operator_name, i
{
ESP_LOGV(TAG, "%s", __func__);
std::string out;
auto ret = generic_get_string(t, "AT+COPS?\r", out, 75000);
auto ret = generic_get_string(t, "AT+COPS?\r", out, 1000);
if (ret != command_result::OK) {
return ret;
}