Cellular: Fix SIM pin enter command

pull/11148/head
Ari Parkkila 2019-08-01 03:46:33 -07:00
parent 417a9fe2fb
commit cbe2b50a32
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ nsapi_error_t AT_CellularDevice::set_pin(const char *sim_pin)
const bool stored_debug_state = _at->get_debug();
_at->set_debug(false);
_at->at_cmd_discard("+CPIN", "=,", "%s", sim_pin);
_at->at_cmd_discard("+CPIN", "=", "%s", sim_pin);
_at->set_debug(stored_debug_state);