Skip to content

Commit 797e58a

Browse files
authored
Merge pull request #11148 from AriParkkila/cell-sim-pin
Cellular: Fix SIM pin enter command
2 parents 08ecbfc + cbe2b50 commit 797e58a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/cellular/framework/AT/AT_CellularDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ nsapi_error_t AT_CellularDevice::set_pin(const char *sim_pin)
241241
const bool stored_debug_state = _at->get_debug();
242242
_at->set_debug(false);
243243

244-
_at->at_cmd_discard("+CPIN", "=,", "%s", sim_pin);
244+
_at->at_cmd_discard("+CPIN", "=", "%s", sim_pin);
245245

246246
_at->set_debug(stored_debug_state);
247247

0 commit comments

Comments
 (0)