Merge branch 'fix_get_operator_name_hangups' into fixes

This commit is contained in:
2024-04-09 13:25:42 +02:00

View File

@@ -244,7 +244,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;
}