Skip to content

Commit 6650600

Browse files
Ari Parkkilaadbridge
authored andcommitted
Cellular: Fix AT command for COPS manual network selection
1 parent b87a067 commit 6650600

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
@@ -223,7 +223,7 @@ nsapi_error_t AT_CellularNetwork::set_registration(const char *plmn)
223223
if (_op_act != RAT_UNKNOWN) {
224224
return _at.at_cmd_discard("+COPS", "=1,2,", "%s%d", plmn, _op_act);
225225
} else {
226-
return _at.at_cmd_discard("+COPS", "=1,2", "%s", plmn);
226+
return _at.at_cmd_discard("+COPS", "=1,2,", "%s", plmn);
227227
}
228228
}
229229
}

0 commit comments

Comments
 (0)