Merge pull request #12088 from AriParkkila/cell-cops

Cellular: Fix AT command for COPS manual network selection
pull/12132/head
Anna Bridge 2019-12-17 16:24:28 +00:00 committed by GitHub
commit 298f3f22b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ nsapi_error_t AT_CellularNetwork::set_registration(const char *plmn)
if (_op_act != RAT_UNKNOWN) {
return _at.at_cmd_discard("+COPS", "=1,2,", "%s%d", plmn, _op_act);
} else {
return _at.at_cmd_discard("+COPS", "=1,2", "%s", plmn);
return _at.at_cmd_discard("+COPS", "=1,2,", "%s", plmn);
}
}
}