Skip to content

Commit 298f3f2

Browse files
authored
Merge pull request #12088 from AriParkkila/cell-cops
Cellular: Fix AT command for COPS manual network selection
2 parents 378f8c2 + 483c557 commit 298f3f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/cellular/framework/AT/AT_CellularNetwork.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ nsapi_error_t AT_CellularNetwork::set_registration(const char *plmn)
224224
if (_op_act != RAT_UNKNOWN) {
225225
return _at.at_cmd_discard("+COPS", "=1,2,", "%s%d", plmn, _op_act);
226226
} else {
227-
return _at.at_cmd_discard("+COPS", "=1,2", "%s", plmn);
227+
return _at.at_cmd_discard("+COPS", "=1,2,", "%s", plmn);
228228
}
229229
}
230230
}

0 commit comments

Comments
 (0)